From a01b279998a9d6da11fafd4a836c35b6952d6448 Mon Sep 17 00:00:00 2001 From: GetParanoid Date: Fri, 18 Jul 2025 17:41:15 -0500 Subject: [PATCH] feat(Gambler) --- user/mods/GamblerTrader/README.md | 3 + user/mods/GamblerTrader/bundles.json | 4 + user/mods/GamblerTrader/config/config.jsonc | 965 + user/mods/GamblerTrader/db/base.json | 96 + user/mods/GamblerTrader/package.json | 30 + user/mods/GamblerTrader/res/thegambler.jpg | Bin 0 -> 65802 bytes user/mods/GamblerTrader/src/Gamble.ts | 414 + .../GamblerTrader/src/MysteryContainer.ts | 338 + .../GamblerTrader/src/MysteryContainerInfo.ts | 657 + user/mods/GamblerTrader/src/Price.ts | 311 + user/mods/GamblerTrader/src/configLoader.ts | 4 + .../mods/GamblerTrader/src/containers/Ammo.ts | 591 + .../GamblerTrader/src/containers/Armors.ts | 7150 + .../src/containers/AverageWeapons.ts | 17 + .../GamblerTrader/src/containers/Backpacks.ts | 64 + .../src/containers/CoinFlip100k.ts | 19 + .../src/containers/CoinFlip1Mil.ts | 19 + .../src/containers/CoinFlip500k.ts | 19 + .../src/containers/DefaultWeapons.ts | 15 + .../src/containers/FlipBitcoin.ts | 15 + .../src/containers/FlipGPCoin.ts | 15 + .../src/containers/FlipRouble.ts | 19 + .../GamblerTrader/src/containers/Foods.ts | 59 + .../GamblerTrader/src/containers/Headsets.ts | 33 + .../GamblerTrader/src/containers/Helmets.ts | 8503 ++ .../GamblerTrader/src/containers/Keycard.ts | 33 + .../src/containers/LoadoutDrink.ts | 32 + .../src/containers/LoadoutFacecovers.ts | 103 + .../src/containers/LoadoutFood.ts | 38 + .../src/containers/LoadoutGrenade.ts | 58 + .../src/containers/LoadoutHealing.ts | 31 + .../src/containers/LoadoutHeavyBleed.ts | 32 + .../src/containers/LoadoutLightBleed.ts | 32 + .../src/containers/LoadoutSplint.ts | 22 + .../src/containers/LoadoutStim.ts | 47 + .../GamblerTrader/src/containers/Loadouts.ts | 19 + .../GamblerTrader/src/containers/Medical.ts | 64 + .../GamblerTrader/src/containers/Melees.ts | 41 + .../src/containers/PremiumArmors.ts | 39 + .../src/containers/PremiumWeapons.ts | 15 + .../src/containers/RandomMysteryContainer.ts | 59 + .../mods/GamblerTrader/src/containers/Rigs.ts | 61 + .../GamblerTrader/src/containers/Stims.ts | 44 + .../GamblerTrader/src/containers/Wallet.ts | 61 + .../GamblerTrader/src/containers/Weapons.ts | 112923 +++++++++++++++ .../mods/GamblerTrader/src/containers/keys.ts | 224 + .../src/fluentTraderAssortCreator.ts | 177 + .../GamblerTrader/src/itemCreateHelper.ts | 132 + user/mods/GamblerTrader/src/itemCreator.ts | 182 + user/mods/GamblerTrader/src/mod.ts | 242 + user/mods/GamblerTrader/src/traderHelpers.ts | 237 + 51 files changed, 134308 insertions(+) create mode 100644 user/mods/GamblerTrader/README.md create mode 100644 user/mods/GamblerTrader/bundles.json create mode 100644 user/mods/GamblerTrader/config/config.jsonc create mode 100644 user/mods/GamblerTrader/db/base.json create mode 100644 user/mods/GamblerTrader/package.json create mode 100644 user/mods/GamblerTrader/res/thegambler.jpg create mode 100644 user/mods/GamblerTrader/src/Gamble.ts create mode 100644 user/mods/GamblerTrader/src/MysteryContainer.ts create mode 100644 user/mods/GamblerTrader/src/MysteryContainerInfo.ts create mode 100644 user/mods/GamblerTrader/src/Price.ts create mode 100644 user/mods/GamblerTrader/src/configLoader.ts create mode 100644 user/mods/GamblerTrader/src/containers/Ammo.ts create mode 100644 user/mods/GamblerTrader/src/containers/Armors.ts create mode 100644 user/mods/GamblerTrader/src/containers/AverageWeapons.ts create mode 100644 user/mods/GamblerTrader/src/containers/Backpacks.ts create mode 100644 user/mods/GamblerTrader/src/containers/CoinFlip100k.ts create mode 100644 user/mods/GamblerTrader/src/containers/CoinFlip1Mil.ts create mode 100644 user/mods/GamblerTrader/src/containers/CoinFlip500k.ts create mode 100644 user/mods/GamblerTrader/src/containers/DefaultWeapons.ts create mode 100644 user/mods/GamblerTrader/src/containers/FlipBitcoin.ts create mode 100644 user/mods/GamblerTrader/src/containers/FlipGPCoin.ts create mode 100644 user/mods/GamblerTrader/src/containers/FlipRouble.ts create mode 100644 user/mods/GamblerTrader/src/containers/Foods.ts create mode 100644 user/mods/GamblerTrader/src/containers/Headsets.ts create mode 100644 user/mods/GamblerTrader/src/containers/Helmets.ts create mode 100644 user/mods/GamblerTrader/src/containers/Keycard.ts create mode 100644 user/mods/GamblerTrader/src/containers/LoadoutDrink.ts create mode 100644 user/mods/GamblerTrader/src/containers/LoadoutFacecovers.ts create mode 100644 user/mods/GamblerTrader/src/containers/LoadoutFood.ts create mode 100644 user/mods/GamblerTrader/src/containers/LoadoutGrenade.ts create mode 100644 user/mods/GamblerTrader/src/containers/LoadoutHealing.ts create mode 100644 user/mods/GamblerTrader/src/containers/LoadoutHeavyBleed.ts create mode 100644 user/mods/GamblerTrader/src/containers/LoadoutLightBleed.ts create mode 100644 user/mods/GamblerTrader/src/containers/LoadoutSplint.ts create mode 100644 user/mods/GamblerTrader/src/containers/LoadoutStim.ts create mode 100644 user/mods/GamblerTrader/src/containers/Loadouts.ts create mode 100644 user/mods/GamblerTrader/src/containers/Medical.ts create mode 100644 user/mods/GamblerTrader/src/containers/Melees.ts create mode 100644 user/mods/GamblerTrader/src/containers/PremiumArmors.ts create mode 100644 user/mods/GamblerTrader/src/containers/PremiumWeapons.ts create mode 100644 user/mods/GamblerTrader/src/containers/RandomMysteryContainer.ts create mode 100644 user/mods/GamblerTrader/src/containers/Rigs.ts create mode 100644 user/mods/GamblerTrader/src/containers/Stims.ts create mode 100644 user/mods/GamblerTrader/src/containers/Wallet.ts create mode 100644 user/mods/GamblerTrader/src/containers/Weapons.ts create mode 100644 user/mods/GamblerTrader/src/containers/keys.ts create mode 100644 user/mods/GamblerTrader/src/fluentTraderAssortCreator.ts create mode 100644 user/mods/GamblerTrader/src/itemCreateHelper.ts create mode 100644 user/mods/GamblerTrader/src/itemCreator.ts create mode 100644 user/mods/GamblerTrader/src/mod.ts create mode 100644 user/mods/GamblerTrader/src/traderHelpers.ts diff --git a/user/mods/GamblerTrader/README.md b/user/mods/GamblerTrader/README.md new file mode 100644 index 0000000..fd2bc68 --- /dev/null +++ b/user/mods/GamblerTrader/README.md @@ -0,0 +1,3 @@ +# TheGambler +SPT mod +https://hub.sp-tarkov.com/files/file/2013-the-gambler-trader/ diff --git a/user/mods/GamblerTrader/bundles.json b/user/mods/GamblerTrader/bundles.json new file mode 100644 index 0000000..f3edff1 --- /dev/null +++ b/user/mods/GamblerTrader/bundles.json @@ -0,0 +1,4 @@ + +{ + "manifest": [] +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/config/config.jsonc b/user/mods/GamblerTrader/config/config.jsonc new file mode 100644 index 0000000..263e92a --- /dev/null +++ b/user/mods/GamblerTrader/config/config.jsonc @@ -0,0 +1,965 @@ +{ + // Note: The Config stores all values that are configurable to personal preferences. You can manipulate Mystery Container prices, stock, and odd here + // PS: Sorry for the long and ugly file, I will try to make it more readable in the future. + + + + // Debug Option: Every Mystery Box opening will post its item information in the console before opening. + // This option is extremely verbose and will clutter your console with info + // + "debug": false, // Default is false + + // Custom Trader Settings + // + // Trader Refresh time In Seconds. Trader will refresh inventory stock somewhere between Min-Max seconds . + "trader_update_min_time": 3600, // 3600 Seconds + "trader_update_max_time": 4000, // 4000 Seconds + + // Custom Gambling Price And Stock Settings + // + // Setting Price_Multiplier for example to 1.20 will make all mystery containers 20% more expensive. Setting it to 0.80 will make all mystery containers 20% cheaper. + // this is meant as a quick and easy way to make all containers more expensive or cheaper if you wish. individual container prices can be changed below... + "price_multiplier": 1.0, + + // All Mystery Container individual settings: price, stock, ... etc + // Configuarable Options: + // - container_enable: + // - If false, mystery box will be disabled, and NOT be sold by the trader + // + // - container_manual_pricing: + // - If true, the 'container_price' option will be used as the price of the Mystery Container, if false, the Automatic Price Balancer will + // determine the price of the Mystery Container based on the 'container_profit_percentage' option, odds, and flea price of all rewards. + // + // - container_price: + // - The price of the Mystery Container ONLY if 'container_manual_pricing' is set to true, will be overridden by the Automatic Price Balancer if false + // + // - container_unlimited_stock: + // - If false, the container stock will be limited to the value of 'container_stock' option. if true, the container will have unlimited stock + // + // - container_stock: + // - Amount of mystery containers available for purchase, only used if container_unlimited_stock is set to false + // + // - container_rewards_found_in_raid_status: + // - If true, the rewards in the Mystery Container will have the found in raid status. If false, rewards will NOT have the found in raid status + // + "container_config": { + // Mystery Wallet + "wallet_enable": true, + "wallet_manual_pricing": false, + "wallet_price": 100000, + "wallet_unlimited_stock": true, + "wallet_stock": 50, + "wallet_rewards_found_in_raid_status": true, + + // 100k Coin Flip + "100k_enable": true, + "100k_manual_pricing": false, + "100k_price": 100000, + "100k_unlimited_stock": true, + "100k_stock": 50, + "100k_rewards_found_in_raid_status": true, + + // 500k Coin Flip + "500k_enable": true, + "500k_manual_pricing": false, + "500k_price": 500000, + "500k_unlimited_stock": true, + "500k_stock": 50, + "500k_rewards_found_in_raid_status": true, + + // 1 Million Coin Flip + "1mil_enable": true, + "1mil_manual_pricing": false, + "1mil_price": 1000000, + "1mil_unlimited_stock": true, + "1mil_stock": 50, + "1mil_rewards_found_in_raid_status": true, + + // Mystery Key + "key_enable": true, + "key_manual_pricing": false, + "key_price": 250000, + "key_unlimited_stock": true, + "key_stock": 20, + "key_rewards_found_in_raid_status": true, + + // Mystery Stimulant + "stim_enable": true, + "stim_manual_pricing": false, + "stim_price": 36500, + "stim_unlimited_stock": true, + "stim_stock": 10, + "stim_found_in_raid_status": true, + + // Mystery Medical Kit + "medical_enable": true, + "medical_manual_pricing": false, + "medical_price": 60000, + "medical_unlimited_stock": false, + "medical_stock": 1, + "medical_rewards_found_in_raid_status": true, + + // Mystery Food + "food_enable": true, + "food_manual_pricing": false, + "food_price": 33000, + "food_unlimited_stock": true, + "food_stock": 50, + "food_rewards_found_in_raid_status": true, + + // Mystery Bitcoin + "bitcoin_enable": true, + "bitcoin_unlimited_stock": true, + "bitcoin_stock": 20, + "bitcoin_rewards_found_in_raid_status": true, + + // Mystery GP Coin + "gpcoin_enable": true, + "gpcoin_unlimited_stock": true, + "gpcoin_stock": 20, + "gpcoin_rewards_found_in_raid_status": true, + + // Mystery Keycard + "keycard_enable": true, + "keycard_manual_pricing": false, + "keycard_price": 330000, + "keycard_unlimited_stock": true, + "keycard_stock": 30, + "keycard_rewards_found_in_raid_status": true, + + // 50/50 Case + "fiftyfifty_enable": true, + "fiftyfifty_manual_pricing": true, + "fiftyfifty_price": 2500000, + "fiftyfifty_unlimited_stock": true, + "fiftyfifty_stock": 5, + "fiftyfifty_rewards_found_in_raid_status": true, + + // Mystery Melee + "melee_enable": true, + "melee_manual_pricing": false, + "melee_price": 78500, + "melee_unlimited_stock": true, + "melee_stock": 50, + "melee_rewards_found_in_raid_status": true, + + // Weapon Mystery Box + "weapon_enable": true, + "weapon_manual_pricing": false, + "weapon_price": 150000, + "weapon_unlimited_stock": true, + "weapon_stock": 30, + "weapon_rewards_found_in_raid_status": false, + + /* DOES NOTHING + // default_weapon Mystery Box + "default_weapon_enable": true, + "default_weapon_manual_pricing": false, + "default_weapon_price": 150000, + "default_weapon_unlimited_stock": true, + "default_weapon_stock": 999, + "default_weapon_rewards_found_in_raid_status": false, + + // average_weapon Mystery Box + "average_weapon_enable": true, + "average_weapon_manual_pricing": false, + "average_weapon_price": 150000, + "average_weapon_unlimited_stock": true, + "average_weapon_stock": 999, + "average_weapon_rewards_found_in_raid_status": false, + */ + + // Premium Weapon Mystery Box + "premium_weapon_enable": true, + "premium_weapon_manual_pricing": false, + "premium_weapon_price": 245000, + "premium_weapon_unlimited_stock": false, + "premium_weapon_stock": 15, + "premium_weapon_rewards_found_in_raid_status": false, + + // Mystery Helmet + "helmet_enable": true, + "helmet_manual_pricing": false, + "helmet_price": 65000, + "helmet_unlimited_stock": true, + "helmet_stock": 25, + "helmet_rewards_found_in_raid_status": true, + + // Mystery Headset + "headset_enable": true, + "headset_manual_pricing": false, + "headset_price": 55000, + "headset_unlimited_stock": true, + "headset_stock": 25, + "headset_rewards_found_in_raid_status": true, + + // Armor Mystery Box + "armor_enable": true, + "armor_manual_pricing": false, + "armor_price": 115000, + "armor_unlimited_stock": true, + "armor_stock": 25, + "armor_rewards_found_in_raid_status": true, + + // Premium Armor Mystery Box + "premium_armor_enable": true, + "premium_armor_manual_pricing": false, + "premium_armor_price": 375000, + "premium_armor_unlimited_stock": false, + "premium_armor_stock": 10, + "premium_armor_rewards_found_in_raid_status": true, + + // Sealed Weapon Case + "sealed_enable": true, + "sealed_manual_pricing": true, + "sealed_price": 350000, + "sealed_unlimited_stock": false, + "sealed_stock": 3, + "sealed_rewards_found_in_raid_status": true, + + // Backpack Mystery Bag + "backpack_enable": true, + "backpack_manual_pricing": false, + "backpack_price": 45000, + "backpack_unlimited_stock": true, + "backpack_stock": 25, + "backpack_rewards_found_in_raid_status": true, + + // Mystery Loadout + "loadout_enable": true, + "loadout_manual_pricing": true, + "loadout_price": 400000, + "loadout_unlimited_stock": true, + "loadout_stock": 15, + "loadout_rewards_found_in_raid_status": false, + + // Premium Mystery premium_loadout + "premium_loadout_enable": true, + "premium_loadout_manual_pricing": true, + "premium_loadout_price": 650000, + "premium_loadout_unlimited_stock": true, + "premium_loadout_stock": 10, + "premium_loadout_rewards_found_in_raid_status": false, + + // Tactical Rig Mystery Box + "rig_enable": true, + "rig_manual_pricing": false, + "rig_price": 45000, + "rig_unlimited_stock": true, + "rig_stock": 15, + "rig_rewards_found_in_raid_status": true, + + // All Mystery Ammo Container settings + // + // + // + "all_ammo_enable": true, // This will enable or disable trader from selling all Mystery Ammo containers + "all_ammo_rewards_found_in_raid_status": true, // found in raid status of all Mystery Ammo containers + + // Mystery 7.62x25 + "7.62x25_enable": false, + "7.62x25_manual_pricing": false, + "7.62x25_price": 6000, + "7.62x25_unlimited_stock": false, + "7.62x25_stock": 15, + + // Mystery 9x18 + "9x18_enable": true, + "9x18_manual_pricing": false, + "9x18_price": 6000, + "9x18_unlimited_stock": false, + "9x18_stock": 15, + + // Mystery 9x19 + "9x19_enable": true, + "9x19_manual_pricing": false, + "9x19_price": 9000, + "9x19_unlimited_stock": false, + "9x19_stock": 15, + + // Mystery 9x21 + "9x21_enable": true, + "9x21_manual_pricing": false, + "9x21_price": 10000, + "9x21_unlimited_stock": false, + "9x21_stock": 15, + + // Mystery .357 + ".357_enable": true, + ".357_manual_pricing": false, + ".357_price": 5000, + ".357_unlimited_stock": false, + ".357_stock": 15, + + // Mystery .45_ACP + ".45_enable": true, + ".45_manual_pricing": false, + ".45_price": 8000, + ".45_unlimited_stock": false, + ".45_stock": 15, + + // Mystery 4.6x30 + "4.6x30_enable": true, + "4.6x30_manual_pricing": false, + "4.6x30_price": 9000, + "4.6x30_unlimited_stock": false, + "4.6x30_stock": 15, + + // Mystery 5.7x28 + "5.7x28_enable": true, + "5.7x28_manual_pricing": false, + "5.7x28_price": 10000, + "5.7x28_unlimited_stock": false, + "5.7x28_stock": 15, + + // Mystery 5.45x39 + "5.45x39_enable": true, + "5.45x39_manual_pricing": false, + "5.45x39_price": 10500, + "5.45x39_unlimited_stock": false, + "5.45x39_stock": 15, + + // Mystery 5.56x45 + "5.56x45_enable": true, + "5.56x45_manual_pricing": false, + "5.56x45_price": 15000, + "5.56x45_unlimited_stock": false, + "5.56x45_stock": 15, + + // Mystery .300_Blackout + ".300_enable": true, + ".300_manual_pricing": false, + ".300_price": 14000, + ".300_unlimited_stock": false, + ".300_stock": 15, + + // Mystery 7.62x39 + "7.62x39_enable": true, + "7.62x39_manual_pricing": false, + "7.62x39_price": 15000, + "7.62x39_unlimited_stock": false, + "7.62x39_stock": 15, + + // Mystery 7.62x51 + "7.62x51_enable": true, + "7.62x51_manual_pricing": false, + "7.62x51_price": 16000, + "7.62x51_unlimited_stock": false, + "7.62x51_stock": 15, + + // Mystery 7.62x54 + "7.62x54_enable": true, + "7.62x54_manual_pricing": false, + "7.62x54_price": 19000, + "7.62x54_unlimited_stock": false, + "7.62x54_stock": 15, + + // Mystery 9x39 + ".338_enable": true, + ".338_manual_pricing": false, + ".338_price": 50000, + ".338_unlimited_stock": false, + ".338_stock": 8, + + // Mystery 9x39 + "9x39_enable": true, + "9x39_manual_pricing": false, + "9x39_price": 13000, + "9x39_unlimited_stock": false, + "9x39_stock": 15, + + // Mystery .366 + ".366_enable": true, + ".366_manual_pricing": false, + ".366_price": 6000, + ".366_unlimited_stock": false, + ".366_stock": 15, + + // Mystery 12.7x55 + "12.7x55_enable": true, + "12.7x55_manual_pricing": false, + "12.7x55_price": 16000, + "12.7x55_unlimited_stock": false, + "12.7x55_stock": 15, + + // Mystery 12/70 + "12/70_enable": true, + "12/70_manual_pricing": false, + "12/70_price": 6000, + "12/70_unlimited_stock": false, + "12/70_stock": 15, + + // Mystery 20/70 + "20/70_enable": true, + "20/70_manual_pricing": false, + "20/70_price": 6000, + "20/70_unlimited_stock": false, + "20/70_stock": 15, + + // Mystery 23x75 + "23x75_enable": true, + "23x75_manual_pricing": false, + "23x75_price": 7000, + "23x75_unlimited_stock": false, + "23x75_stock": 10 + }, + + // GAMBLING ODDS SECTION + // + // README: + // - Each Mystery Container has odds that you can manipulate yourself if you so choose. + // + // Example: (This is not the Mystery Wallet actual odds, just an example) + // 'Mystery Wallet' Odds: 0.5 + 2.5 + 4.0 + 8.0 + 15.0 + 35.0 + 0 = 65% chance at recieving a reward! + // 100.0% - 65.0% = 35% chance at recieving nothing! + // + // - Keep in mind this applies to ALL mystery containers + // + // + // Odds Definitions: + // - container_profit_percentage: + // - This is how profitable the mystery container will be, and is used as a calculation by the Automatic Price Balancer when determining the mystery container price. + // - The higher the percentage, the more expensive and less profitable the container will be, and vice versa. setting it to 1.0 will make the container in theory average out to 0% profit or break even. This however does not account for the flea market fee. So in reality, around 0.98-0.96 is the break even point. + // + // - container_extremely_rare / container_rare / container_uncommon / container_common / container_extra_common / container_base: + // - Theses are the odds for each rarity of a mystery container, increasing or decreasing odds will alter the mystery container price generation and the the chances at recieving a reward of that rarity. + // - If you manually change these values, make sure the total odds for each container DON'T go over 100%, anything under 100% will result in a chance at recieving nothing. + // - Manipulating the odds values will also alter the generated mystery container price + // + // - ammo_min: (Whole numbers only, no decimals) + // - The minimum amount of rounds generated during a mystery ammo opening, is also used as a calculation by the Automatic Price Balancer when determining the mystery ammo price + // - ammo_max: (Whole numbers only, no decimals) + // - The maximum amount of rounds generated during a mystery ammo opening, is also used as a calculation by the Automatic Price Balancer when determining the mystery ammo price + // + // + // Loadout Mystery Container Odds: + // - Currently the Mystery Loadout Container uses many of the below containers to generate a loadout, so manipulating any of these odds will also manipulate the loadout container generation in some way. + // I plan on changing this in the future to have more specific odds for the loadout container, but for now, this is how it works. + // + // + "odds": { + // Mystery Wallet + // Chance for each possibility in percentage from rarest to most common + "wallet_kinda_rare": 2.5, // 2 Million Roubles + "wallet_rare": 5.0, // 1 Million Roubles + "wallet_extra_uncommon": 7.5, // 500k Roubles + "wallet_more_uncommon": 10.0, // 250k Roubles + "wallet_uncommon": 15.0, // 100k Roubles + "wallet_common": 20.0, // 50k Roubles + "wallet_extra_common": 20.0, // 25K Roubles + "wallet_base": 20.0, // 0k Roubles + "wallet_profit_percentage": 0.95, //Container Profitability + + // 100k Coin Flip + "100k_success": 50.0, // 200K Roubles + "100k_failure": 50.0, // 0 Roubles + + // 500k Coin Flip + "500k_success": 50.0, // 1 Million Roubles + "500k_failure": 50.0, // 0 Roubles + + // 1 Million Coin Flip + "1mil_success": 50.0, // 2 Million Roubles + "1mil_failure": 50.0, // 0 Roubles + + // Mystery Keycard + "keycard_red": 0.1, // Red Keycard + "keycard_green": 0.2, // Green Keycard + "keycard_blue": 0.4, // Blue Keycard + "keycard_violet": 1.0, // Violet Keycard + "keycard_black": 2.0, // Black Keycard + "keycard_yellow": 3.0, // Yellow Keycard + "keycard_blue_marking": 4.0, // Keycard with blue marking + "keycard_21WS": 8.0, // 21WS Keycard + "keycard_11SR": 8.0, // 11SR Keycard + "keycard_access": 40.0, // Access Keycard + "keycard_profit_percentage": 0.93, // Container Profitability + + + // Mystery Key + "key_extremely_rare": 0.5, // Extremely Rare Key + "key_rare": 2.5, // Rare Key + "key_uncommon": 24.5, // Uncommon Key + "key_common": 72.5, // Common Key + "key_profit_percentage": 0.93,// Container Profitability + + // Mystery Stimulant + "stim_extremely_rare": 10.0, // Extremely Rare Key + "stim_rare": 15.0, // Rare Stim + "stim_uncommon": 25.0, // Uncommon Stim + "stim_common": 50.0, // Common Stim + "stim_profit_percentage": 0.93,// Container Profitability + + // Mystery Medical Box + "medical_rare": 12.0, // Rare Meds + "medical_uncommon": 30.0, // Uncommon Meds + "medical_common": 58.0, // Common Meds + "medical_profit_percentage": 1.00,// Container Profitability DOESN'T WORK AS THIS CONTAINER IS BOUGHT BY BARTER + + // Mystery Food + "food_rare": 5.0, // Rare Food + "food_uncommon": 35.0, // Uncommon Food + "food_common": 60.0, // Common Food + "food_profit_percentage": 0.88,// Container Profitability + + ///////////////////////////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////////////////////////////// + // The following odds are for the Mystery Loadout Generation + // + // + // + + // Loadout Grenade + // Chance for receiving Grenade with loadout + "loadout_grenade_rare": 30.0, // Rare Loadout Grenade supply + "loadout_grenade_uncommon": 40.0, // Uncommon Loadout Grenade supply + "loadout_grenade_common": 30.0, // Common Loadout Grenade supply + + // Loadout facecovers + // Chance for receiving facecover with loadout + "loadout_facecovers_rare": 30.0, // Rare Loadout facecover supply + "loadout_facecovers_uncommon": 40.0, // Uncommon Loadout facecover supply + "loadout_facecovers_common": 30.0, // Common Loadout facecover supply + + // Loadout Food + // Chance for receiving food with loadout + "loadout_food_rare": 30.0, // Rare Loadout Food supply + "loadout_food_uncommon": 40.0, // Uncommon Loadout Food supply + "loadout_food_common": 30.0, // Common Loadout Food supply + + // Loadout Drink + // Chance for receiving drink with loadout + "loadout_drink_rare": 30.0, // Rare Loadout Drink supply + "loadout_drink_uncommon": 40.0, // Uncommon Loadout Drink supply + "loadout_drink_common": 30.0, // Common Loadout Drink supply + + // Loadout Light Bleed + "loadout_light_bleed_rare": 30, // Rare Loadout Light Bleed supply + "loadout_light_bleed_uncommon": 40, // Uncommon Loadout Light Bleed supply + "loadout_light_bleed_common": 30, // Common Loadout Light Bleed supply + + // Loadout Heavy Bleed + "loadout_heavy_bleed_rare": 30, // Rare Loadout heavy Bleed supply + "loadout_heavy_bleed_uncommon": 40, // Uncommon Loadout heavy Bleed supply + "loadout_heavy_bleed_common": 30, // Common Loadout heavy Bleed supply + + // Loadout Stim + "loadout_stim_rare": 30, // Rare Loadout Stim supply + "loadout_stim_uncommon": 40, // Uncommon Loadout Stim supply + "loadout_stim_common": 30, // Common Loadout Stim supply + + // Loadout Splint + "loadout_splint_rare": 30, // Rare Loadout Splint supply + "loadout_splint_uncommon": 40, // Uncommon Loadout Splint supply + "loadout_splint_common": 30, // Common Loadout Splint supply + + // Loadout Headling + "loadout_healing_rare": 30, // Rare Loadout headling supply + "loadout_healing_uncommon": 40, // Uncommon Loadout headling supply + "loadout_healing_common": 30, // Common Loadout headling supply + + ///////////////////////////////////////////////////////////////////////////////////////////////////// + ///////////////////////////////////////////////////////////////////////////////////////////////////// + + + // 5,000,000 Roubles 50/50 + "roubles_success": 50.0, // 50/50 Success + "roubles_failure": 50.0, // 50/50 Failure + + // Mystery Bitcoin 50/50 + "bitcoin_success": 50.0, // Two Bitcoins + "bitcoin_failure": 50.0, // Two Bitcoins + + // Mystery GP Coin 50/50 + "gpcoin_success": 50.0, // Two Bitcoins + "gpcoin_failure": 50.0, // Two Bitcoins + + // Mystery Melee + "melee_extremely_rare": 0.25, // Extremely Rare melee + "melee_rare": 2.0, // Rare melee + "melee_uncommon": 22.75, // Uncommon melee + "melee_common": 75.0, // Common melee + "melee_profit_percentage": 0.92, // Container Profitability + + // Mystery Backpack + "backpack_extremely_rare": 5.0, // Extremely Rare backpack + "backpack_rare": 20.0, // Rare backpack + "backpack_uncommon": 35.0, // Uncommon backpack + "backpack_common": 40.0, // Common backpack + "backpack_profit_percentage": 0.86, // Container Profitability + + // Mystery Tactical Rig + "rig_boss": 5.0, // Extremely Rare rig + "rig_late_wipe": 30.0, // Rare rig + "rig_early_wipe": 40.0, // Uncommon rig + "rig_scav": 25.0, // Common rig + "rig_profit_percentage": 0.93, // Container Profitability + + // Weapon Mystery Box + "weapon_meta": 20.0, // Meta Weapon + "weapon_decent": 30.0, // Semi-modded Weapon + "weapon_scav": 22.3, // Scav Weapon + "weapon_meme": 7.7, // Meme Weapon + "weapon_base": 20.0, // Default Weapon + "weapon_profit_percentage": 0.74, // Container Profitability + + + /* + // These settings do not work yet... + // Default Weapon Mystery Box + //"default_weapon_base": 100.0, // Default Weapon + //"default_weapon_profit_percentage": 0.80, // Container Profitability + + // Average Weapon Mystery Box + //"average_weapon_meta": 22.0, // Meta Weapon + //"average_weapon_decent": 75.0, // Semi-modded Weapon + //"average_weapon_profit_percentage": 0.78, // Container Profitability + */ + + // Premium Weapon Mystery Box + "premium_weapon_meta": 100.0, // Rare Weapon + "premium_weapon_profit_percentage": 0.74, // Container Profitability + + + // Mystery Helmet + "helmet_extremely_rare": 0.25, // Extremely Rare Helmet + "helmet_rare": 17.5, // Rare Helmet + "helmet_uncommon": 27.65, // Uncommon Helmet + "helmet_common": 54.65, // Common Helmet + "helmet_profit_percentage": 0.85, // Container Profitability + + // Mystery Headset + "headset_rare": 15.0, // Rare Headset + "headset_uncommon": 40.0, // Uncommon Headset + "headset_common": 45.0, // Common Headset + "headset_profit_percentage": 0.93, // Container Profitability + + // Armor Mystery Box + "armor_rare": 20.0, // Rare Armor + "armor_uncommon": 40.0, // Uncommon Armor + "armor_common": 40.5, // Common Armor + "armor_profit_percentage": 0.90, // Container Profitability + + // Premium Armor Mystery Box + "premium_armor_rare": 100.0, // Rare Armor + "premium_armor_profit_percentage": 0.88, // Container Profitability + + // Mystery 7.62x25 NOT SOLD BY TRADER CURRENTLY, ONLY USED FOR LOADOUT AMMO GENERATION + "7.62x25_common": 45.0, // Common Round 7.62x25 + "7.62x25_uncommon": 35.0, // Uncommon Round 7.62x25 + "7.62x25_rare": 20.0, // Rare Round 7.62x25 + "7.62x25_min": 15, // Minimum Rounds Generated + "7.62x25_max": 30, // Maximum Rounds Generated + "7.62x25_profit_percentage": 1.00,// Container Profitability + + // Mystery 9x18 + "9x18_common": 45.0, // Common Round 9x18mm + "9x18_uncommon": 35.0, // Uncommon Round 9x18mm + "9x18_rare": 20.0, // Rare Round 9x18mm + "9x18_min": 15, // Minimum Rounds Generated + "9x18_max": 30, // Maximum Rounds Generated + "9x18_profit_percentage": 1.00, // Container Profitability + + // Mystery 9x19 + "9x19_common": 45.0, // Common Round 9x19 + "9x19_uncommon": 35.0, // Uncommon Round 9x19 + "9x19_rare": 20.0, // Rare Round 9x19 + "9x19_min": 15, // Minimum Rounds Generated + "9x19_max": 30, // Maximum Rounds Generated + "9x19_profit_percentage": 0.96, // Container Profitability + + // Mystery 9x21 + "9x21_common": 45.0, // Common Round 9x21 + "9x21_uncommon": 35.0, // Uncommon Round 9x21 + "9x21_rare": 20.0, // Rare Round 9x21 + "9x21_min": 15, // Minimum Rounds Generated + "9x21_max": 30, // Maximum Rounds Generated + "9x21_profit_percentage": 0.94, // Container Profitability + + // Mystery .357 + ".357_common": 45.0, // Common Round .357 + ".357_uncommon": 35.0, // Uncommon Round .357 + ".357_rare": 20.0, // Rare Round .357 + ".357_min": 3, // Minimum Rounds Generated + ".357_max": 10, // Maximum Rounds Generated + ".357_profit_percentage": 2.0, // Container Profitability + + // Mystery .45_ACP + ".45_common": 45.0, // Common Round .45 + ".45_uncommon": 35.0, // Uncommon Round .45 + ".45_rare": 20.0, // Rare Round .45 + ".45_min": 15, // Minimum Rounds Generated + ".45_max": 30, // Maximum Rounds Generated + ".45_profit_percentage": 1.04, // Container Profitability + + // Mystery 4.6x30 + "4.6x30_common": 45.0, // Common Round 4.6x30 + "4.6x30_uncommon": 35.0, // Uncommon Round 4.6x30 + "4.6x30_rare": 20.0, // Rare Round 4.6x30 + "4.6x30_min": 15, // Minimum Rounds Generated + "4.6x30_max": 30, // Maximum Rounds Generated + "4.6x30_profit_percentage": 1.04,// Container Profitability + + // Mystery 5.7x28 + "5.7x28_common": 45.0, // Common Round 5.7x28 + "5.7x28_uncommon": 35.0, // Uncommon Round 5.7x28 + "5.7x28_rare": 20.0, // Rare Round 5.7x28 + "5.7x28_min": 15, // Minimum Rounds Generated + "5.7x28_max": 30, // Maximum Rounds Generated + "5.7x28_profit_percentage": 0.94, // Container Profitability + + // Mystery 5.45x39 + "5.45x39_common": 45.0, // Common Round 5.45x39 + "5.45x39_uncommon": 35.0, // Uncommon Round 5.45x39 + "5.45x39_rare": 20.0, // Rare Round 5.45x39 + "5.45x39_min": 15, // Minimum Rounds Generated + "5.45x39_max": 30, // Maximum Rounds Generated + "5.45x39_profit_percentage": 1.01,// Container Profitability + + // Mystery 5.56x45 + "5.56x45_common": 45.0, // Common Round 5.56x45 + "5.56x45_uncommon": 35.0, // Uncommon Round 5.56x45 + "5.56x45_rare": 20.0, // Rare Round 5.56x45 + "5.56x45_min": 15, // Minimum Rounds Generated + "5.56x45_max": 30, // Maximum Rounds Generated + "5.56x45_profit_percentage": 0.94,// Container Profitability + + // Mystery .300_Blackout + ".300_common": 45.0, // Common Round .300 + ".300_uncommon": 35.0, // Uncommon Round .300 + ".300_rare": 20.0, // Rare Round .300 + ".300_min": 15, // Minimum Rounds Generated + ".300_max": 30, // Maximum Rounds Generated + ".300_profit_percentage": 0.95, // Container Profitability + + // Mystery 6.8x51 NOT SOLD BY TRADER CURRENTLY, ONLY USED FOR LOADOUT AMMO GENERATION + "6.8x51_common": 45.0, // Common Round 6.8x51 + "6.8x51_uncommon": 25.0, // Uncommon Round 6.8x51 + "6.8x51_rare": 30.0, // Rare Round 6.8x51 + "6.8x51_min": 15, // Minimum Rounds Generated + "6.8x51_max": 30, // Maximum Rounds Generated + "6.8x51_profit_percentage": 0.97, // Container Profitability + + // Mystery 7.62x39 + "7.62x39_common": 45.0, // Common Round 7.62x39 + "7.62x39_uncommon": 35.0, // Uncommon Round 7.62x39 + "7.62x39_rare": 20.0, // Rare Round 7.62x39 + "7.62x39_min": 15, // Minimum Rounds Generated + "7.62x39_max": 30, // Maximum Rounds Generated + "7.62x39_profit_percentage": 0.88,// Container Profitability + + // Mystery 7.62x51 + "7.62x51_common": 45.0, // Common Round 7.62x51 + "7.62x51_uncommon": 35.0, // Uncommon Round 7.62x51 + "7.62x51_rare": 20.0, // Rare Round 7.62x51 + "7.62x51_min": 15, // Minimum Rounds Generated + "7.62x51_max": 25, // Maximum Rounds Generated + "7.62x51_profit_percentage": 0.95,// Container Profitability + + // Mystery 7.62x54 + "7.62x54_common": 45.0, // Common Round 7.62x54 + "7.62x54_uncommon": 35.0, // Uncommon Round 7.62x54 + "7.62x54_rare": 20.0, // Rare Round 7.62x54 + "7.62x54_min": 15, // Minimum Rounds Generated + "7.62x54_max": 25, // Maximum Rounds Generated + "7.62x54_profit_percentage": 0.90,// Container Profitability + + // Mystery .338 + ".338_common": 62.5, // Common Round .338 + ".338_uncommon": 25.0, // Uncommon Round .338 + ".338_rare": 12.5, // Rare Round .338 + ".338_min": 5, // Minimum Rounds Generated + ".338_max": 10, // Maximum Rounds Generated + ".338_profit_percentage": 0.91, // Container Profitability + + // Mystery 9x39 + "9x39_common": 45.0, // Common Round 9x39 + "9x39_uncommon": 35.0, // Uncommon Round 9x39 + "9x39_rare": 20.0, // Rare Round 9x39 + "9x39_min": 15, // Minimum Rounds Generated + "9x39_max": 30, // Maximum Rounds Generated + "9x39_profit_percentage": 0.97, // Container Profitability + + // Mystery .366 + ".366_common": 45.0, // Common Round .366 + ".366_uncommon": 35.0, // Uncommon Round .366 + ".366_rare": 20.0, // Rare Round .366 + ".366_min": 15, // Minimum Rounds Generated + ".366_max": 30, // Maximum Rounds Generated + ".366_profit_percentage": 0.97, // Container Profitability + + // Mystery 12.7x55 + "12.7x55_common": 45.0, // Common Round 12.7x55 + "12.7x55_uncommon": 35.0, // Uncommon Round 12.7x55 + "12.7x55_rare": 20.0, // Rare Round 12.7x55 + "12.7x55_min": 15, // Minimum Rounds Generated + "12.7x55_max": 25, // Maximum Rounds Generated + "12.7x55_profit_percentage": 0.98,// Container Profitability + + // Mystery 12/70 + "12/70_common": 45.0, // Common Round 12/70 + "12/70_uncommon": 35.0, // Uncommon Round 12/70 + "12/70_rare": 20.0, // Rare Round 12/70 + "12/70_min": 5, // Minimum Rounds Generated + "12/70_max": 10, // Maximum Rounds Generated + "12/70_profit_percentage": 1.25, // Container Profitability + + // Mystery 20/70 + "20/70_common": 45.0, // Common Round 20/70 + "20/70_uncommon": 35.0, // Uncommon Round 20/70 + "20/70_rare": 20.0, // Rare Round 20/70 + "20/70_min": 5, // Minimum Rounds Generated + "20/70_max": 10, // Maximum Rounds Generated + "20/70_profit_percentage": 7.0, // Container Profitability (Rounds are extremely cheap in general) + + // Mystery 23x75 + "23x75_common": 45.0, // Common Round 23x75 + "23x75_uncommon": 35.0, // Uncommon Round 23x75 + "23x75_rare": 20.0, // Rare Round 23x75 + "23x75_min": 2, // Minimum Rounds Generated + "23x75_max": 4, // Maximum Rounds Generated + "23x75_profit_percentage": 2.5 // Container Profitability + + }, + // + // + // + // Mystery Container Automatic Price Balancer uses override prices (if applicable) instead of the items actual flea market price when generating optimal mystery container prices. + // Raising or lowering any of the values will manipulate the mystery container price in that direction + // - Why?: + // - I made this override section as I felt ammo and a few blacklisted items handbook prices were way too cheap. + // These changes are meant to help realistically balance mystery containers further. + // - Blacklisted ammo/armor should be expensive and I have created override prices reflecting this + // + // Enable or Disable override prices + // NOTE: If you use the Blacklist Mod and are satisfied with the flea market price of ammos and armors you can try setting this to 'false' + "mystery_container_override_enable": true, // Default 'true' - Automatic Balancer will use prices from "mystery_container_override_price" if applicable + // If 'false' - Automatic Balancer will only use items' flea market price (or handbook price if item is blacklisted) + + "mystery_container_override_price": { + "ammo": { // Priced in Roubles + "57371aab2459775a77142f22": 205, // 9x18mm PMM PstM gzh + "573719df2459775a626ccbc2": 300, // 9x18mm PM PBM gzh + "5c0d56a986f774449d5de529": 500, // 9x19mm RIP + "5c925fa22e221601da359b7b": 450, // 9x19mm AP 6.3 + "5efb0da7a29a85116f6ea05f": 1200, // 9x19mm PBP gzh + "6576f93989f0062e741ba952": 350, // 9x21mm 7U4 + "5a26ac0ec4a28200741e1e18": 800, // 9x21mm BT gzh + "6576f4708ca9c4381d16cd9d": 950, // 9x21mm 7N42 "Zubilo" + "62330c18744e5e31df12f516": 260, // .357 Magnum JHP + "62330b3ed4dc74626d570b95": 300, // .357 Magnum FMJ + "5efb0d4f4bc50b58e81710f3": 110, // .45 ACP Lasermatch FMJ + "5e81f423763d9f754677bf2e": 150, // .45 ACP Match FMJ + "5efb0fc6aeb21837e749c801": 350, // .45 ACP Hydra-Shok + "5ea2a8e200685063ec28c05a": 600, // .45 ACP RIP + "5efb0cabfb3e451d70735af5": 950, // .45 ACP AP + "64b6979341772715af0f9c39": 320, // 4.6x30mm JSP SX + "5ba2678ad4351e44f824b344": 950, // 4.6x30mm FMJ SX + "5ba26835d4351e0035628ff5": 1800, // 4.6x30mm AP SX + "5cc80f67e4a949035e43bbba": 500, // 5.7x28mm SB193 + "5cc80f53e4a949000e1ea4f8": 420, // 5.7x28mm L191 + "5cc80f38e4a949001152b560": 700, // 5.7x28mm SS190 + "56dff3afd2720bba668b4567": 200, // 5.45x39mm PS gs + "56dff2ced2720bb4668b4567": 350, // 5.45x39mm PP gs + "56dff061d2720bb5668b4567": 550, // 5.45x39mm BT gs + "56dfef82d2720bbd668b4567": 850, // 5.45x39mm BP gs + "61962b617c6c7b169525f168": 1000, // 5.45x39mm 7N40 + "56dff026d2720bb8668b4567": 1350, // 5.45x39mm BS gs + "5c0d5e4486f77478390952fe": 1450, // 5.45x39mm PPBS gs "Igolnik" + "60194943740c5d77f6705eea": 500, // 5.56x45mm MK 318 Mod 0 (SOST) + "59e6906286f7746c9f75e847": 1000, // 5.56x45mm M856A1 + "54527ac44bdc2d36668b4567": 1550, // 5.56x45mm M855A1 + "59e690b686f7746c9f75e848": 1850, // 5.56x45mm M995 + "601949593ae8f707c4608daa": 2000, // 5.56x45mm SSA AP + "5fbe3ffdf8b6a877a729ea82": 340, // .300 Blackout BCP FMJ + "619636be6db0f2477964e710": 800, // .300 Blackout M62 Tracer + "64b8725c4b75259c590fa899": 1100, // .300 Blackout CBJ + "5fd20ff893a8961fc660a954": 1400, // .300 Blackout AP + "5656d7c34bdc2d9d198b4587": 315, // 7.62x39mm PS gzh + "64b7af434b75259c590fa893": 650, // 7.62x39mm PP gzh + "59e0d99486f7744a32234762": 1500, // 7.62x39mm BP gzh + "601aa3d2b2bcb34913271e6d": 1650, // 7.62x39mm MAI AP + "58dd3ad986f77403051cba8f": 600, // 7.62x51mm M80 + "5a608bf24f39f98ffc77720e": 850, // 7.62x51mm M62 Tracer + "5a6086ea4f39f99cd479502f": 2250, // 7.62x51mm M61 + "5efb0c1bd79ff02a1f5e68d9": 2500, // 7.62x51mm M993 + "5e023d34e8a400319a28ed44": 1500, // 7.62x54mm R BT gzh + "560d61e84bdc2da74d8b4571": 2000, // 7.62x54mm R SNB gzh + "5e023d48186a883be655e551": 2500, // 7.62x54mm R BS gs + "5fc382a9d724d907e2077dab": 50000,// .338 Lapua Magnum AP + "57a0dfb82459774d3078b56c": 239, // 9x39mm SP-5 gs + "5c0d668f86f7747ccb7f13b2": 517, // 9x39mm SPP gs + "61962d879bb3d20b0946d385": 850, // 9x39mm PAB-9 gs + "57a0e5022459774d1673f889": 1450, // 9x39mm SP-6 gs + "5c0d688c86f77413ae3407b2": 1600, // 9x39mm BP gs + "59e655cb86f77411dc52a77b": 150, // .366 TKM EKO + "5f0596629e22f464da6bbdd9": 1250, // .366 TKM AP-M + "5cadf6e5ae921500113bb973": 250, // 12.7x55mm PS12A // Prapor LL2 + "5cadf6ddae9215051e1c23b2": 400, // 12.7x55mm PS12 + "5cadf6eeae921500134b2799": 2250, // 12.7x55mm PS12B + "5d6e6806a4b936088465b17e": 670, // 12/70 8.5mm Magnum buckshot + "64b8ee384b75259c590fa89b": 403, // 12/70 Piranha + "5d6e6911a4b9361bd5780d52": 800, // 12/70 flechette + "5c0d591486f7744c505b416f": 900, // 12/70 RIP + "5d6e68c4a4b9361b93413f79": 600, // 12/70 makeshift .50 BMG slug + "5d6e68a8a4b9360b6c0d54e2": 1250, // 12/70 AP-20 armor-piercing slug + "5d6e69b9a4b9361bc8618958": 95, // 20/70 6.2mm buckshot + "5d6e6a5fa4b93614ec501745": 250, // 20/70 Devastator slug + "5d6e6a05a4b93618084f58d0": 120, // 20/70 Star slug + "5d6e6a42a4b9364f07165f52": 100, // 20/70 "Poleva-6u" slug + "5e85a9f4add9fe03027d9bf1": 4000, // 23x75mm Zvezda flashbang round + "5f647f31b6238e5dd066e196": 240, // 23x75mm Shrapnel-25 buckshot + "5e85a9a6eacf8c039e4e2ac1": 630, // 23x75mm Shrapnel-10 buckshot + "5e85aa1a988a8701445df1f5": 550 // 23x75mm Barrikada + }, + "armor": { + // Uncommon Armors + "5ab8e79e86f7742d8b372e78": 175000, // BNTI Gzhel-K body armor + "63737f448b28897f2802b874": 155000, // Hexatac HPC Plate Carrier (MultiCam Black) + "5c0e655586f774045612eeb2": 165000, // HighCom Trooper TFO body armor (MultiCam) + "5ab8dced86f774646209ec87": 165000, // ANA Tactical M2 plate carrier (Digital Flora) + "5d5d87f786f77427997cfaef": 175000, // Ars Arma A18 Skanda plate carrier (MultiCam) + "544a5caa4bdc2d1a388b4568": 155000, // Crye Precision AVS plate carrier (Ranger Green) + + // Rare Armors + "60a283193cb70855c43a381d": 475000, // NFM THOR Integrated Carrier body armor + "545cdb794bdc2d3a198b456a": 400000, // 6B43 Zabralo-Sh body armor (Digital Flora) + "5ca21c6986f77479963115a7": 350000, // FORT Redut-T5 body armor (Smog) + "5b44cd8b86f774503d30cba2": 300000, // IOTV Gen4 body armor (Full Protection Kit, MultiCam) + "5c0e541586f7747fa54205c9": 295000, // 6B13 M assault armor (Killa Edition) + "5ca2151486f774244a3b8d30": 235000, // FORT Redut-M body armor + "5e4abb5086f77406975c9342": 375000, // LBT-6094A Slick Plate Carrier (Black) + "6038b4b292ec1c3103795a0b": 300000, // LBT-6094A Slick Plate Carrier (Coyote Tan) + "6038b4ca92ec1c3103795a0d": 300000, // LBT-6094A Slick Plate Carrier (Olive Drab) + "5fd4c474dd870108a754b241": 325000, // 5.11 Tactical Hexgrid plate carrier + "5e9dacf986f774054d6b89f4": 225000, // FORT Defender-2 body armor + "5b44cf1486f77431723e3d05": 215000, // IOTV Gen4 body armor (Assault Kit, MultiCam) + "5b44d0de86f774503d30cba8": 200000, // IOTV Gen4 body armor (High Mobility Kit, MultiCam) + "5b44cad286f77402a54ae7e5": 245000, // 5.11 Tactical TacTec plate carrier (Ranger Green) + "5e4ac41886f77406a511c9a8": 195000, // Ars Arma CPC MOD.1 plate carrier (A-TACS FG) + "60a3c68c37ea821725773ef5": 195000, // CQC Osprey MK4A plate carrier (Protection, MTP) + "609e860ebd219504d8507525": 235000, // Crye Precision AVS plate carrier (Tagilla Edition) + "628b9c7d45122232a872358f": 295000, // Crye Precision CPC plate carrier (Goons Edition) + "64a5366719bab53bd203bf33": 285000, // Eagle Allied Industries MBSS plate carrier (Coyote Brown) + "628b9784bcf6e2659e09b8a2": 245000, // S&S Precision PlateFrame plate carrier (Goons Edition) + "628cd624459354321c4b7fa2": 185000, // Tasmanian Tiger SK plate carrier (MultiCam Black) + "5c0e625a86f7742d77340f62": 225000 // BNTI Zhuk body armor (Digital Flora) + }, + "weapon": { + "5580223e4bdc2d1c128b457f": 30179, // MP-43-1C 12ga double-barrel shotgun + "5fc3f2d5900b1d5091531e57": 151318, // TDI KRISS Vector Gen.2 9x19 submachine gun + "5b3b713c5acfc4330140bd8d": 158152, // TT-33 7.62x25 TT pistol (Golden) + "579204f224597773d619e051": 79363, // Makarov PM (t) 9x18PM pistol + "5ae08f0a5acfc408fb1398a1": 68358, // Mosin 7.62x54R bolt-action rifle (Sniper) + "59d6088586f774275f37482f": 78000, // Kalashnikov AKM 7.62x39 assault rifle + "5b0bbe4e5acfc40dc528a72d": 115192, // DS Arms SA-58 7.62x51 assault rifle + "5447a9cd4bdc2dbd208b4567": 65730, // Colt M4A1 5.56x45 assault rifle + "57c44b372459772d2b39b8ce": 135210, // AS VAL 9x39 special assault rifle + "5c07c60e0db834002330051f": 33000 // ADAR 2-15 5.56x45 carbine + }, + "helmet": { + "5c110624d174af029e69734c": 4000000, // T-7 Thermal Goggles with a Night Vision mount + "5a154d5cfcdbcb001a3b00da": 120000 // Fast MT Black variant + } + } +} diff --git a/user/mods/GamblerTrader/db/base.json b/user/mods/GamblerTrader/db/base.json new file mode 100644 index 0000000..69c4a2d --- /dev/null +++ b/user/mods/GamblerTrader/db/base.json @@ -0,0 +1,96 @@ +{ + "_id": "67b7b52a4767af842e0521d0", + "working": true, + "availableInRaid": false, + "items_buy": { + "category": [ + "5422acb9af1c889c16000029", + "5448e8d04bdc2ddf718b4569" + ], + "id_list": [] + }, + "items_buy_prohibited": { + "category": [], + "id_list": [] + }, + "customization_seller": false, + "name": "Gambler", + "surname": " ", + "nickname": "Gambler", + "location": "Streets of Tarkov Casino", + "avatar": "/files/trader/avatar/thegambler.jpg", + "balance_rub": 5000000, + "balance_dol": 0, + "balance_eur": 0, + "unlockedByDefault": true, + "discount": 0, + "discount_end": 0, + "buyer_up": true, + "currency": "RUB", + "nextResupply": 1615141448, + "repair": { + "availability": false, + "quality": "2", + "excluded_id_list": [], + "excluded_category": [], + "currency": "5449016a4bdc2d6f028b456f", + "currency_coefficient": 1, + "price_rate": 10 + }, + "insurance": { + "availability": false, + "min_payment": 0, + "min_return_hour": 0, + "max_return_hour": 0, + "max_storage_time": 99, + "excluded_category": [] + }, + "gridHeight": 150, + "loyaltyLevels": [{ + "minLevel": 1, + "minSalesSum": 0, + "minStanding": 0, + "buy_price_coef": 38, + "repair_price_coef": 175, + "insurance_price_coef": 10, + "exchange_price_coef": 0, + "heal_price_coef": 0 + } + ], + "sell_category": [ + "82e7fac0b7495d72d4083356", + "ac705d3440c1407645e33579", + "dc97aee367144dc03389405d", + "7ffcc96aa06c7e90940330c5", + "e8f46e3ad74b9d862121f9dc", + "5b47574386f77428ca22b33e", + "5b47574386f77428ca22b33f", + "5b5f78dc86f77409407a7f8e", + "5b47574386f77428ca22b346", + "5b47574386f77428ca22b340", + "5b47574386f77428ca22b344", + "5b47574386f77428ca22b342", + "5b47574386f77428ca22b341", + "5b47574386f77428ca22b345", + "5b47574386f77428ca22b343", + "5b5f71b386f774093f2ecf11", + "5b5f71c186f77409407a7ec0", + "5b5f71de86f774093f2ecf13", + "5b5f724186f77447ed5636ad", + "5b5f736886f774094242f193", + "5b5f73ec86f774093e6cb4fd", + "5b5f74cc86f77447ec5d770a", + "5b5f750686f774093e6cb503", + "5b5f751486f77447ec5d770c", + "5b5f752e86f774093e6cb505", + "5b5f754a86f774094242f19b", + "5b5f755f86f77447ec5d770e", + "5b5f757486f774093e6cb507", + "5b5f75b986f77447ec5d7710", + "5b5f75c686f774094242f19f", + "5b5f75e486f77447ec5d7712", + "5b5f760586f774093e6cb509", + "5b5f761f86f774094242f1a1", + "5b5f764186f77447ec5d7714" + ] +} diff --git a/user/mods/GamblerTrader/package.json b/user/mods/GamblerTrader/package.json new file mode 100644 index 0000000..cfc5151 --- /dev/null +++ b/user/mods/GamblerTrader/package.json @@ -0,0 +1,30 @@ +{ + "name": "GamblerTrader", + "version": "0.2.8", + "sptVersion": "~3.11", + "loadBefore": [], + "loadAfter": ["zzDrakiaXYZ-LiveFleaPrices", "platinum-theblacklist"], + "incompatibilities": [], + "isBundleMod": false, + "main": "src/mod.js", + "scripts": { + "setup": "npm i", + "build": "node ./build.mjs", + "buildinfo": "node ./build.mjs --verbose" + }, + "devDependencies": { + "@types/node": "20.11", + "@typescript-eslint/eslint-plugin": "7.2", + "@typescript-eslint/parser": "7.2", + "archiver": "^6.0", + "eslint": "8.57", + "fs-extra": "11.2", + "ignore": "^5.2", + "tsyringe": "4.8.0", + "typescript": "5.4", + "winston": "3.12" + }, + "author": "Hood", + "contributors": [], + "license": "MIT" +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/res/thegambler.jpg b/user/mods/GamblerTrader/res/thegambler.jpg new file mode 100644 index 0000000000000000000000000000000000000000..06dd6a2c55ca1c8de678daa492474172504cf461 GIT binary patch literal 65802 zcmeFacUTn7wl~^C&PWs_N)VNtGl*o#Ig2n1nHgke06{=SK~V%jP(YI8ERsP$MS>zZ zX93Aka_076eD~Ssoc(#t24bw|O`PC%2ruLXKuADHL`pzRNG+@JZtg8YmF!iV)M zZkCtdqXX2yJ6Iy$@5lYeO90794y+Zm0Lbw&Kz8B->~3N7j)#D|00{vB0U-eiAt4C` zF%dBZ4LJ!3ISm~Z6%7>?9R zg%AJ>`={^}0KtJ^W8q-o;^PtEVv`7iLJDl0vy_6k3VJqFY}aoK;ZZ+HF1*anL8Jf9 zR#?R2PKP2sXN1A(_%|q0l=kK8z;jBGhIY#DQ&3{3JB=n_YejeKy3mvBDqK%f?-fUV z=>EEqR#M+HwP|ec85Esf+R!__C9Z1X;1&EVqpY!SW}5=Q!UCJ4_EZWgtLN_ zIG_dB*{E=ZZa<;MSny82V^x^LcHHAmgrWfr6e;qJ6Axnm{yEY2ouCmZr|p!D#89w_ zUnczb7I6JG;dl@r!9Gco0+0vR2N_rNjwX|3+d?9hqkSH^#0$$LU_BNqHTxzX<>F^m zU%<{TP*If&wU}FgR6QUs8LQsUiV%fGP)x9Tx%ycaEWk)=xs#gd#^?Hpv?nuWr(>{^0Sb{n??p62-3 z?7e$v&)c6mV64@>yuoKD4ZRywJ*KRDQ`I!kwUO@rZsx78FZmU8-oqWHj>AH zYtArw{XAFjO}$l|=}wt|3W+%?tLV@=B!gFuu`JBp0UBr%6V(eqljmfZ5{s6alBc~ z?1e<*40pbjNKVf;Ol|}tCrb0kHok32jrv9@if0@K=JbV(Ea$c6ZOFYVX@%XAjjK5Z zGIkei_jswtomv%d?L5$GLKEH^3CKw_M*18MT#af;e!dJ@_McI|?m3d2>ObFEJAcm4 z%76iTNz=W_Wn{kY7Q9uZWpt_O7|`=sKCRyJ3GSkk94^XkRbb;aeY6le)ya~dXu|X) z?1>xMh?TKmfq+db&oR&xAQ2PLTY%fp@c!WH&12x9_RE<%0C0+6}xjgbYTU86f zQnW^QmD6)vbK@@|vMSQCk zS;ElZM%5TwZ2|3*J_*yAk6rq*tR=u=V{M|t3H zxi2ewNukz#!|Yb1aIyV*?bGo%5%}veD=zWNo*VMJbNAp(qUsrJ(X?@>XQ%o{%JxRL zMVlz)y%WjxWvy}+1CHC*hu!#IQQ%OqPv>ofECm>jSuUkl@m9)r6#ILvc`fPBSM(3i zw>CA}xV&g@Y`sNxKphgV#VcamgY=H@JtneVehqu$Rn58&VxQKFOnUu zlH2#*ULW8RdCq=|s^2uI$@3MLex80WwB}8EX|tJL93ulMvqgsw!>xHXm(z6D-Qf4n z$@E#c#q@4`4x!gVO$>xO`C2M)EP55`AWA+)MmaWzv7F*6svGlH4t3)VsO&=&2HsiU zu4M{e6WcMO%D$d=W>g z-o|l0eWBe)Hl|vhI?m#f%NW!zt^REUeut7q2#|2k^$S#rNijmm+Ngf1J2(UMq2yE-f+w?oPe9+xv#$gwKoXJ$Z=yw&sEs?@L+mzC%si zG0sHs!NR&&$k`>%U~BncwmU#?EH<(-!Kh`(2A--Bck7_s3uQn)wWaF3>REbxz=}|pQV43 zQkp~DKM$ROCeN=nZWcRyva?Jxx8d@^o5p3mu(_==!C-ywv5N0UzNV5k7OVgj`OoHl zMAg^zNH)jh%Ii$!pV=D4>aZYiS+1*zYiKK6} zhrv^qf^YRP0g+|HQ(Z8!jLz5A%Kg)QrOejQGTr%+^l927M1{xF*;e3Nzo%7Mk4_Gg zbnZr1q}w*uz{_Fx^`aicx_H$Q`Ea9;dSvLm)tCpXH*%$NV68O@(5u*%q7-WuhJLnl zCHNvn{_0ahI5+)769nfzAXk@dsJkbc&)gux-^d%5i*6Pd_IN#({Zy`DKL9nXHhr%8o1i4$Zjp$nE`v6q@lADG`-l0}~RhG0g z3*(sCjm>ZMj~%fOn4-jLU$)48*4nr_b1!o9h1Bi(>DHqH9lge~Q&6ji=x$RN*wOD^mDro#Q~diuvMT4AqFzqvGw?tAA^aYK=ct<-qyYqU$Lb_4l_g7ZdAVb?mm z;IuH!Qw!*={OR&&s{Js`H`zho1#dM5LHY+80VU6RV`ppAdZO)MlQJe8&hv@8iJN7I zxQU&6+)GH=%e~KB$SKcS?R~OVfxMh~M}K=!IxRUJJ785TM-)a>q--oE_Ug1ZJ@{B+ zcKCs3H6uvIP{)C50bdEBlWW-!ntIE!j;C*zYc}_$xrZ>XsBKZVH>J}1k-ho|GVCn4 zO+`b;p19cA1Rk$7!|QW!+^=|yUe*QyY8|YJV+Gq!aPDtgoPR9UFMr&*u2MBTKA|&Z z?#GoakMlM9&Sca>IMv+`KDXQgwrpUu^s*)LQQBqkUlc~wwnEj}XO{@FN}HfoE<4wP z!sK!FmdPTP)Vp)WiYlYcNE#b`2fH#?%6H1<0$#+9<;35_(#HMZ9TX9KYMJW2?`he} zkBsir`{$^wE#frh3rnkJUllKN?egAB3vEX(I{IIti(;~GOApA=@EeiS+ibtMVT$810-aFvTd|QD)qeEM^7HgRSH%j3Da4ScNx?o3#6@f zYX=PZB{uIkW#wM)euHIIur~U_COwnV%V)-@e*Vy!TbMGaFWA6zhOqTl!-q`0r*%uO#ogOs5vcJ@=x_hGn?RyXOU$4riV^&8qmB>T5@QV_4dh`3X& z4DII|t-Wu-YbALh^(0e{@6Hx`|eo@Lqk3rM-yEw z@9N&u?HcPl&hr)4JU%D9h;&U{m3!cqkg;cNa7239+YwST1mU;KxlA|}U zn$Z`7^JF(Z7UPQ+oh$Vnoh)0oJO;F`@A?_Yi^UecMj+=J9ASpDXWHc>_nURNbEGq; zNP->T61zAp$^;ZYFRePm;KJardG{FT+`BT$C?jxs9d0hUe*G)Q%_?%%aR8qnl+&py z-KKUHk$DVoEVE44g14+Go2oO6L%6xm&xwVrMK2?&=D41RH*gR$yoNVHU7Bu`JQC`y zGS%@%r^hPXaID8MR!J2(a;c5DbyYgKe@j}CtLcgx&VU=*Aa*!WRkFpmzad((vbb>4 zmw9YK^z8G+7xo=bp6)ep!X@&~+*#RhPI-sEHjlb}PLm9a)Z*h%afCNOslIbo{q-?$ z+%*%k$<`q4e^o>IQp7~NJ=ZoJ_@JLiSGp(Ovv@9Im`B*YV^8zNZPEvaEse(jj!*ln ztY_8W^>xp|>9F+i755{9V?a_h=g>AQ>X9Ye8Rm%&mW|;lLXJ?K{(b;E)jzE;G18b; z0;bIn%y~NxSlF$N?USs1{z}+qC;4_%MXT@UCB6slfz`Dy#ypa{rSA66e+Ym3R&~o* z&aq6cp}bhGRNOU?+$kbJC0c?|&D2=^`G?-+NU5F*v1oG*K1Sb1H$|1u%kGv_4F_ID zy+W$%CR^@@jd?d+>U;15v!*N`%;Fm8TeapQs4j*sb}9REywRU|r4h5tUY{~|`yem7 zDAv{PK1+DuZj;*MY%;UW3x%acs;`1Yc0-NRjZAmD%g$3+BtZCNyxofS^0%@FyqB?{ zmvY2r#PJsWhhoR&aE^hmPxWb=NW}|U;>(PUfP^>OEDVxi^7j0st`gM+{qhlCiQ$YYPS7LEH7S436Wax zddtkq&?c%BQPKC>l^z4CVx><)TwPzC#%k2`_v{JUg|>#1L)6O}>#;M{+LsW=-P7&` zq=n08YCZcDOQ?3U%k-*S3QNUx-+Run&m5-maOY-C6UwUzcsgC*mXepGUC42Gg|EQ+ zto60LnB3!*d4Peo<`Qx?zoS@kS$g3)#|Ol4vW1rK?K=uWs+8H*E_oaX9we$?2Yc`1 z0P+jIMbeB5-T*kE)VQlx%F|FU28Vg|I=hD-11(bYhx73pUb%~|!CwZQUNxJ~;qP({ z8b2hPrj3slS!35J511wv&n$Ol;tNZf%n5$Td667~OC#g*%40LU(o8Q?o($iuZ%YYy*cxNZNAt+f_01?DIv+kUV{G1%WLD+o zpPSf&4@nhdfgk*D4B%U@I@nd-J-f`3vN#1XSG)X1!oU?^;TkyrMaKI zjB$=Ob3NT;6`6^qx85c@IJN5$lt@?bXFBPPfHuh=LC>>_-4Q`-G z=wqq z@xVnvN`$Jaf2?I@-H4lR`c2^H)C?U)kuY~;usgnd@AZ3r1+JvIL(F_Gs)tOirca4+ zeDOD5ppJo5<9p(v@1p7wN5-Cy?QcFlQly$N4j-yw=wld^SL>kUxFe5VqairdkP0T? zB`HjKTU=K=8`7ryco>9;4m z#^BJ}7rlJcm|29UurZ|Jf1i1MA^^FUSaW~KTJW6wodm8+Z&lJdc|UtcizOcfe@`p;% zu#Yj5=i1moBn{WbqxmmErERC`GIyn&!|vWYP{_F#Z2NRV|Ku63_8c*XR})4C+`MlHO5fX^k_+kupGN$!Qg6_@HM=xAT9|I* zzoPF!=5scvM-uRCh>wKqO-(C4v7w_gAJ zM}n1<7T@ga0G2mS{xhoi8RLcq`WtkTuBqb4JTz?(WFz!3GG;@5oMq9}Du>%!S1QesjNC43Tp{GrNh}lM;hB=OW>se8(R4_^Aq1v@;%PX6(hq z_%~GV>?h8Rtz40OD{Y>3$H-SEX!jbA=Urb*);lzsIciR13|5V6nzNPKSt@c~JqKaA zMtI`<88Ak8CO204SAl3B`lZILK5hFU=glGO*_D8TV*sy$r*SVIW)%L-QNWk>NlMRc zY1+5Y_vl&hL9A~=Dy-+Ipext=W25Kbu*QpaO)T}{=>W;1U0*-ZD}C_XQwsRy7Kz0* zuQ$qwvP-rm3p+o#9tz_}xs{=#0($doMXUMw^KAXnTjRsJ;MZ}c@oQcwE!2{a_QCbA z&#s$1KO*TS>-&1uP)76v3n|s!YY}Nxk4j@dy?0J{2N`w}j*55i6uYZB_Xu`DhyOMI7! z#>Vdnq+RCe9aoRgGkkA9i~8oh3NU0h=%#nzW%bTAXEL696>(FC=ujuEP8CStFg~?} zI?#}+abuFE#$uZw!&WE*E>v$__S`NeGV3eth?p@e5i`FR)>Xi zeWMy|*mpOcS!rA8K+5;rw!%r2ZWfPpuThr{_CEs0xi(R|nUh->F$g=(S#6^eCq=W&epH%7|u zfODI~3Ip@8q@cDOCbImrtstoQne8{SQJ1JImZZxjOvk3TLEG#1SXPa4#H`?|y((V{ z)3XH%tL@)}rMb1z6n;LOHZkCX)awMhx2j8D9YJ&UEFvV25>zyXw}LkIaAR;M@aJ%&i$>&H9;KDm_P>_e z)_Iw$V!%m`pQNq4M7lhSB^xZ+6L%)iOtX{ z>{8#(7WgvEK_`1^n6_>@gTD}4RqZmz2CLSi?}Y`Bo|3t{4E~yNQG0f|Fv)la>TLrA zbnR*AoMvgih6v#F5zJucyQYj?b=>a45_hB`Ow&6F=r*6Ce1mMX%%YFM3NT6`R;2($NXgcCUid_?ob|_dEd@N&0EOjy%d$* zxIWgsE))<0eQ{3V$SrXrvZHG++N~w4fWNekG=r&XboNN^aIDqJAE7&UC{A}6%tD?m zc`GtZ>0vA(8g02H9b32sPf(}_# zEp9A2%x{5DP#!l)5L0`F(~Sb;3(BFIw(`rP#s!&uHI02ww z8;&*;n+m!Mt-zLcx?Gk0Yz#m8b7o0W2h>a8quZEM67eYbv@1GW*lRM+8qnIB6JXE; z=iRcMv&087JK+5@fU-@eO$6$OyoPz*SICN7lN;zgkfH^rBnBJHXks6F^&TBv% z=A>-T4sC@5yhB*ttCl`9mZ8Bkb1I;fNTQ$YeMJS`X{%rtG+EYOKqt(zPJ(hnSFmyExy;Yx~be0~;p)U~G_ z_d<5GC_pNsvEyUTfw27h0GaZ=$_&dCf$7OHWw9aaj3;zULr(Hn_UA|Dq_%achve0d zC@9~IR_(KIx%=W8RhRZf4>DTo*$nr!&uz>dw#~~5_dm1QDmvVU9I_wr#IxiwnNW;K z^W)PLB|eEZ>lTa`?dQ%crtLolHg3>u?itD-GUZ6;quG0r+)W$Wq9VQA>30-(!FLH7 zF-r%%C5cV8_cOB5_%-{)MF<89xAyiKD&Cx-rI8K4IQbTM+wyM6#5cK2|CqjbMu4F)cSTnZjGz1@tbvm^M&q&*3KIq+{vIdHL)*p;W~gjx2(rE>_C0{E2LfSl z07IeOb!?rXppXR61v~%*_-7BW0tNsKKmlmL9TOEmbFPJ))o0nqV0h4{N+)0b5;7~0n71s)R&s+Sc( zYcL=cK;Mp))eeESy@dFJ@t$0&9`OIdyX^X3^)7qZ85+S+D(w2Mn7aLSU3Rr&{datQ zq$}!#uj}o4N&lBRktYm_LU<_IplmQXI5AS!K^OV6RbXh0GI+g$r^$f zn17e70o3(7U)KYA$qW<2$#n|qfp9l*gn^X{wooUy!_VR)!wB?2n=T_zD1@6U0`Bl5 z2+2-gVZ*s~b%zZD(-zmc7k1tw~+ zGk(t<4hB&LoZykZmz=|M6vWQuzPm zXdxZ``GtgMufEGhEu znOFPC26K*Y2eY?9pA5l-o-hy8zfm{-$^NH0v8{t5!WH51N8wU@kN>jjF98??&_=*9 zWle}exPxEiNbrTg??I8s6&wuz3zx+9Wbphid}6SQ9sgDRqz9hIBm{m}gUwlf^@RT3 zb1_)R?@jo7PsL~eEH$8m=^RPlKaei~ga;%+v>_dc9{h_g{EII9i!S_&F8qrw{EII9 zi!S_&F8qrw{EII9i!S_&F8qrw{EII9i!S_&F8qrw{EII9i!S_&F8qrw{EII9i!S_& zF8qrw{EII9i!S_&F8qrw{EII9i!S{C09|xl}= zMV9Skmm^kFEnQYcga?dOluwu!Dj+DxDkjD!C?YB*Cdk7oBp@inF980F@d}DaiHb=H ziL?H=*ud00?ChoVl~jJD1^Q&!eq_qa%ZtxTm=EFMz%M8%DT#?gNQf8I;6>hmqino+ z;YjwMF(|>1P!FdQd?G6*Mi6_4M#-{)mVVEIoBOY5|7}_Qp{S+xKdZXAVG7_RS|m!@ z6HMiQsstnkjl!=FLn6=~P?)kO431*|8Qc!~E37++$2rNV9h4vD3UdS1kYFVW{z}UI z=f+sSg8U;Nzr-gsk4eB?O3?#m10oR(K@{T8iuw(K{m1rNf9S(N;378uBrt#13M7m_@5~w?40ax{3ohfT2kt8B+3R3g{dpavVoc4b8@ni z5)oDsmJkya5RniPP*xEXln@XSl28y=RumN%5mylvJ+TQ4tAv1}F(vmitQ{t-(0>;8 zJ6Oxc_5UmmJE)XB!o$r5Yz$6rHV!a;XLpzb8|$xHkvhR2X(8;uq80v=udb*FqH*n= zTtNX6M6$A~D=Uf#N{Wf`3h@bI8aG%5V9wN>kYG*T_|aVqVAp?8u1>5cZBWVvih<_J zvOzI*4zpwX!FKw0rTM>>$oD9{Krre5*bu&}ArbZ{FB=b-f&*Cc|64ob|L^QZ+Iapi zR{yVU;QyZ0KME7-XajeEfukos8zvw8m~rNNRq+37EuF~z7?Xagg99Cg{58VL{TvDZ z-v5@s-xBy+0)I>3ZwdS@f&U+s!0$O43=Te8c!4vp;|UT|@VU@hS6@d(T~qmFI!U6Y z=>$h$fr};Fz|~Ng2Srmeb5{ITaIpj-xNZYn7GVQLx@#GzV3v;o;6o%U=4lc`|G2;@ zDYzRPW?~9-@v7;vvi{)zr#A|yy9c-|3Ze@J5ViwnTOfTGq+PvG?ifA><4$esf}yc6 z3pA)bKm$RV4nsS9r!kOrYTNJhB@Aun1_zfzU}0=_w{x?@&>ukhz9$;9OafaIq=P)2 zU|t~I4bmL0Xg4R2#;nVsc7xe~OE+*Z_<0T#4C)Bd0w7J|VWTmVJH-@E;w z0OfyqQa@pTcm7A=AA0{2iK*M~@^!tFI)l)D{>}Rx@;46w?n^8Iu7Sc1|IM?F0f4f5 z06;hRo5zs^{xWeF07~2b$PX>1z5Frhc7j3qFa`SS`d<}(Y5w=bAL;R7()%^bVO9FR z;DZ&@s-fTl4zvd=68zl)#>)GzjrjjK;2&oFVF!;s%pT?e181A8#$YQ07tMjy4YzZ` zOr=weDHAqmU9s$(We88zTY5;rbGk`-y3}9O(fD*{BdebB{ z27f{V027v(@9iF>LHUXM4+kp@^kN~MP8JaXiu#7EP_&2VcNHAW4HsNFM-ET}^xzKN z?7(?&HJ1<|4oCx+0A=6`paU2JX24Yd3jRpt2Cg#o0&W7gfgs=^5Dr8Eu|Oh_3S1d_0Smw?um$XcyGY|hNFh`ZdI$@I6T%Gn_$~tmjxSv2w9WvEE@dWA$Kt!CJuD1ULC6#-_zS zi_MEIfvt$GgKds&kL`i&j~#*?jr|fkAG;E}5xWcf3-%)RE)E_J6%H#7FOD>h8jcYT z6z4jQKh7hZSe#6pQk)MsT{z=7t2jrvq_~W@+_+M>>bR!34!B;pLAcSl>9{4h^|(E_ zQ@C4rczCpUTzKMmYItUN&Un6fkMQF03h>_Ib>L0nZQ|qO)8ljF%i` ztR!qBoFd#Oq9EcTk|i=EawfV>^qeT4sGew;Xq}jtn2lJHSdZ9=_!jYV;#b5?#N))f zB$Ol&l+HG?z*lp%!SHNzky z7UM-meMVo#6voetn@r41s!Z-oF-&z#i_EmlmzbTIpEB1l&#_Rk$gw!FJY}h6nP;V8 zRbX{xea`xUb@eRcS+%q1v&m;$&+fBvu^F-5VJl!8VJBjjV7F&~%Kn~xm4k&ti{mCo z4#yxTA*TeVBj+>DM$YYXT<1*A1)nQBH_JuGrOxHUmBTfBp7gx@`RnIjp6|YZcR}KU z%Z2z0?H92wie7ZQ7J{-TepfzdkZ2fa#A-}vUexr^tklBNx}p`SHLT64 z4c9Ky0d&-LB6UV|xpc4VR_WpC>FUMlP3sHl-_&n3pfa#F$TrwAylfa|IAnC*2yOJ< znB3UXILmn3M9Cz=n@vvPBMb7S*#^Gyq7iztgJOHs=p%U&xkD{rfh zSI=B^y;^NeZf#>-bPe~K$+hfj2R1r3FKsq$)oowcu0j=|&!7u-m+YR}&B0`05wID1 zS^Eh4SqE8%NQXH`dBnlFwo)c5_(vo~+w9QRZ3OZJEO+xou`U=O$(Fm+4yR_1M@+b*|T z?g-q8xU&&x5?Fbc>F%w&llN5bD8uD}_$~x*} zv`BQ~GookcXJ4LcJ}-~qhzXB5h;@wZiMt$E@PhHhgBRQJcJZAFmlE<5nGzo+?j<=T z^(U()m%cprGCBn>#WQ6()i|{=O(HET{Y?79^ur8z#+OX}%nw=OSy|bP*B~^S?8E?+MiL0im4yz%mxm$Bw>r=b=*8T0`JBN3Z@2%et)tT0H zf6)8TTCY*x)S%K(*Qn4~+a%lc=A+cdicb=s%9_QROFxT#E@=^MDQOjJEo~ETD{q%< zuk4WNsOgmNeAlJa)zGcp-Q1(y)6r|x+uvu|_od&ie|Eri;M<_*;Qr99Vcg-6ky9hl zql}|3$1aQ&d=dLnJ+3tVdBR{~Xc9WP@D=&>VCwEP>2&lA%S_g+(CnKzmAUqLi}|Sq z_l5n%pe2f>7t80Di&rkKd|owOo%-hS?Rf3cI{kXahRDYIP2J7WEw`=x?T{V%oy=W{ z-NrqWy_tQl1N?*MhZhbjk2H>kkKMqP>c7vWxCA~6d_R}s`>7BAk&E^F!v1yr5fXC> z1J*CWe@YymoJ-LJG+{%)gB*UJOF<8wO94LC0(e;9*$Tfdd;&aN971d&@O%#NTnYdW z8%+O~5ENnKV-Y|I0V3j402TxrJedL;V-Xe}AsPanSwVqIiFX#CiVYwTq*f4OryKi0I#Sh;oe^h~4=X@lweUsjMQd3O#RRY;xxH`_73q zyFgUrU06y{UDxCV3Hx>QMM)_&^()}RnuDX0v!|E$4WD~K!S^48JdKKe_B0y=6I{N{{)9$9*_KwAu#n?jhoZ;o>G3-v;DH)+P^E7# zU!N1DHxyI0<03)^MyjAN_8P&^#^QJHofy1+;mp(2V$6{mQQyzhIIn7AFY)VGjo)W# zsF^x?-+!K2-qb(4BdKoYbmKuxR>jAGx!sFWSInJ#LSnNkKMl_B{qyLHE(5sT>ovrg z&7%uX&T=nw2U-~p6FtEFC=~HwpLbZz^#0}?I=p+5QOb1MBgSy}x%@U)c+nO9BQpa; z$9b0JAz$uC;I`>)36J8PIH2j3nI45OZf+N6kEk#`=|_G<#>VsU@f-N4OAT)*dVVk~66tH&xaP4{?^mvM9dT20@xxO}&-ryJwN~%j z?Hy@jJgzC?zAhYR961CNgFod;+Xg@{~kTr(6Gek^pA5P)xnC)Bk3=juEc!y zcTRUr_4vrq6(iW*PX0PQM1flBsWj`R#VyLwHO8T+vB&TzQXq{WlTpr^zbL04sbpc5 z_2_*k)`#AtuD*jq8gu>`<$NB||iiOgI%|TCCXPgR5gY zP8LJAahmcxWK`(r+phE_*v8P;L}yosuFa|QulI~RH6?Q88%%30VFl_C{cl*#HDO>xz&(Qi(6yf9cBFJ2a>sVsz_EbDf&Tw-JR{Chy-29QB z%C&Bzk58^RXAa_DF$~H+pZr={SJg^dbs!Vk^_qvhxcvBhvHJjn{5nb^2;A zKjGK3dQYwRWyfj22e_bpYt1M=CRAPYpzX4}3hZ^~mYWP|WK(!|3FDdhxBxrzQGH1H zmeyytqXou;Miq;T$3R#TJGCsSv`PVwG_kwN0OM@~{fRMOz1@JOHB)!LAb47jjoXXc z?IAr*Hw0!sJn*oto58B7+QhCmQeJ{0wjH_#$V1SNHc(V0_oN`cwpABsKQ{}0>^pmg z^k^%|q8B&@Jclh49fmZFx0oN4vEmkexq;FQcnH&{VX5~Z_HO1~aDJwb?RLdnm!Q0) z@${Bhnh$w+<)wmWD#R`@p$D($Ouw$-ZA2osOXT&*Pp<`pz3S=Pk2zbAsIrx#hU+Iq zpfW;DX@%p9oXRoi0ujClKE`Xw~F)P zk;7UwE$UNkd-94c(HHAZA9T*vET4Il>j%64)Z{Dac7iG8#d$ugZeu^4$S21D^%eqW zX8Xnaiq+Ex*cs-dRVdz!L&jquI7ee3`~xwfO<-9JNX13Ntze>PEng z`o+RrChk6MDbNYlp6{$F&S8bD`0dvZO_6x*({vNr-Y*6PJCU4omM{Xw^Xu@Gx|@NuX@j- zhFMnQy)q+|1_I6scNe!SEy;fymilV-m31fjTuOEl5lwLRmtkMzcCere%A3`PsGHV$ zEg|=r@5PG|jCdkz^3w~)?Oj|>KHK@akYj-V;`q^Mw#NR&kqhH_J_4_fx@Ot~&4Th< z5q@!j4QwBue4Z{W&ldG;PefW9I@$6yZm<-m~Y75tk^nYO-4s6sCuc>#-dDP)L#B&KTC!w+3~QR)~# z>vfGA2cIokkF?1)S7S>vWaB~WIT5ti-m9(-{$hqEd>Sqjwl7z$CY+abcTg^3BbiRV zIH0hH_vYqK**C>JslcLbvCjF6OeN)OJM+)KnQ4k@zUr`DpnLG)X|dbcK=mgg;SzkZGs5%e1P>te%DfI+@;T+1d%j#e8OAq3uYuRBTHSQt~xyq_tp?D zCEFZ<%W7-7+qv1qe zg56Ei29`|pzFv@6uo(|g5wx? zwg_xEkc{b?@pkJHMYv;uX4gMykJ4E)mjfb% zgK{odL~HVFGNZ0_?PjyfXW7BdR_~TpFDvyhy(vsy=TyiTh&~KVk=T~I8oV($!S(b8 zU~00o6W}!8G`ro`!2ET{LM13}qE`Q$G|l}))xG?=kp%aC<}xa=||O& zc>2lQ$TQqdNibd`iu0}!oWqN;s(ZWWNR{Mk{zlzEL7JnVlpcq#-|VH{Cr>9*?`5Qm zd}AqwCaHc6sFS-jyni*KD!ueIih1>;LB8USD4)rNN*@z;&5a53kdfN*v>V335TVbU zA*ROSw+$E447-rh+;dY=_dcX+?vB?wfTtGd&1N41@H=$x?(ouV?C9*)@?}~SRrdLy znU`7?<=(wBT59PCd{J)^mL=HqD9u>S<-BvULq-#He*B4DkatYV6UI|FwgiI=<7p~=<{8gmXe z+nGW>K#QzkffsIN2sZmJO_7nT8^mt zI`(&O7`o;ytqLdaQF&M)L==4iO%_pa( z_I*s0zxfuJOik}EW$vG5!BxRd6I&z=Q7^>Hz93{4T5n=v75!8_T}GLcnN1v*=WE+M zDeILbwyi5Zk043JG`g0-jyy0?0X^A^sBpB4X|e-gy*_O zOs=CwhvsAgeC)h>`7-Fuq9sz(lA@*F+l#L2KBtU@aJomFpIDcEeg8ehq4FpAvRIC6 z2-B9u+ddU7X1ZhV4O*WT$2Hm3@o?3u zdY+jaU3$g&qE;6pJ&TOt^B4CNpOdLBxx|`0xD}qtpUPl8kjSr;SPS=DScrPu>!#0b zh-H2!D^ZTarz>eioa38Y$8xm$vul?bDXGtFpOSe~)76u?ytMu;F4txxF4E0Yh2=s& za;rwz5wTMGIZfHp@L_xyO?dV*+9drvzP_P+d(l(#s@~779(2;exj$K03hUs_%lpJ7 zg^d^_RTC1w52@&uNW2>8sqDk?yMyE70YUlns1Q zxAHaUPNSS9N(IGtb>050Tx)Pl55q11quJqH=%}fd2+I`*;4d0yE zbzOJue7+?&&8fU|yHVLNaWsg@D3lSAo#J zH+Y$6pK;s0Cs&R-I=)o75I1x8*I%WldAr%^a&ojLPaO3O zEF+bjHWnzu>$+qmeVdKNeN(+wP_u@86G^fLGp#%bPdB9{tL7I=nxz4mMR6e+-O}<&N zXX)FGGv~9HP{#V{FrF-tk0%^?{6?nijmsuM2q9NFU_sT938&a*imMB5wnR2IKYoM-+jc)3W2WkK2E zDeWl@nzWSX@1Ey#zjKzq#x*nbSeCxEy$$J+t~ibz%NXnT;*wlEO=w%K7ryOR!68+G z?j7FJ9zC^>LhQQTcIO_Sx401fDCVA0W=^(xn)8D$J%09AJld{{Nh}Jp zHGzvsa)B@Rhq9Ij+<3YH3$>fRu;69f zR&Xr?jSltE*M()jLKmY7>(5!ZbVui<?`4@=C&038pmw7NW!zX7i zULWu;Sh6JJ!dH%1^sjE3v`fo>3zr(C*D|te41Wg=XXRasbJ9WhLGi`@u4OOKSxNJYI z>I~*_952u`?>5k%6z}1LE7EXXgOY@a(CvDuWu_;JDr2c?MTpW+3ZLVL64yRd4;|veeCXs3USpLFp=KlewKv=(^%lW!>4hL&b@x!rk zRk;bW+vlTpr1`mWSqW=qk1dF!gBKD)vI6l?&5ovyFBvQf#Jr0G?AK+zF49Jy4Qo%g z{M`|5yMBn3-l2h@K9v6e4?~B1mQ>{{Ta>;_IN0>XMT?i<(+Il{Du_ zw2;pqq}XbVs}2viqnhn6E%zB?V@llWUz)Z-AL`>?hI<6o(%Hnyxe(C*0Hzo{6s^IV z#$dW{W=}~>u+~2L+&*c67kHMZAVQmS`5)_B+3a@mTyGa@$FxAdwu7f(xrz;<$S9-u z%~ScFjSoe9xb3PPiMV>(VD8$ibtJU$W-73QFD(@{Wc21ZzTzr&m0)U^(!{=noW$EK9&4(Yv% zmt#>*pSsuN9#5~sHa96zjuJ)@rl*nPmNS1#hDHp!4?KTQX?HGM`qPvJfv;4DeMqg$ zWxEd^jO<@1cJvr*P8)J|q<_Y@1zgkOGB~>Sl)+Ra7F_S|DW`^Jme+O{zxaCxzbbAs z++0r%+};doH3l3<^l_idqYvMER8hkex2xhm0zADndJng(`A?bq_hI2gbbXVJ$k9}q z{1@=dE=6Z6P-C>UMOF2zZ5xY{KEBo2@}pcj$MljQ9o1k!r>99|-fiG*anBpIX+UfF z_5ae;J3rL>Y@Z7Q2;* zxV4ZnaQhF>p)JnQeX?!_&iWFP4jzPhj-u{;yPDm5lM}YK?mDY2oz2!!;&E8&IGS3D z%#K2^Qqj{yi^+LskPCmY`g`8m!Zc@N+tXKrRTOdR-~LQ>{{U zL)Z8@YH}K0Ty9G*Q%aSY`W2l&X=kFZn5jc!Z>O-g(Jtw8xGlngGrpnzm&^U0qzgUq zwp&f2YZoRM(@TG*tw=xQ`E&&DPnJ6~wf1y18|!}WT&+%DB`hztDDvNBi@?OUSZZT{ z1=kd6qku~vcZXxRw3|dwCY2u%&3Zk4blR`1%WfAFG_2nMGy~_+9q(_DIljo+yGyLw zCnisB>{^?Jp~h~v>aiwjrnSz0sjDB{ve;Hw&XRr zgnvh`Dg7yZYtvkwswW@O;{O0{3jTi{?^;L?%dLuN9T=Xr>CV93^3vq?cErhU$RcWb zdYY(dJd_YruvQQ>(iMy_zdp!sHyEwUEVF3iLFe}Ld$w&?cluu1(WD#>FgiHhoA8t6 zzgzWYTjX_43l+C;n(N2)fbCtvs1%tR6{J4C& znYlxdV7!A}$S6S{u=)D+W;;vyCF1iHv~~C%+ssmBJU~GU(?g;&saLo%9 z(`Sj*ij^Yc*gN{`xk};`wqE1s{;%iMjD54&;*8u$cHj@Qqa8>5rgt9L+*@a^w-(&Q z?x;7cn95l5RMcVw$yDkQx@KggSdx~OpAfZAR_e;`qf(Gwz}_wEaq&_KA|h9&nsCYW z`Efl3FF9jsjUM9K=Ts4ss=P%9`FIbXL#EgMNt;uv^04K19%mIvO0vAIO@@Mc^CLUL zCZ0`e1S$JS0;p!tMajALpL^W*covhDRi~Cu`M;k=dj`R=-F~DD&g009Bl+b1&VX;` z&+wlSzWPd=GqEc2*_!UQz`X@7HzN%+;~j*?;VbK@s%WC7@y!)F&p^>n5|=iaWE_KZ z{I|?9Cg&Qwhe;rMW3O{(D#ISpG|31O3ZFAWkMs4dU%@@sm%;8X)Y-LgRMS&Uv+J^v zK_%@)UrRMT9eLC^(_bA#WEC3QkB=ttnrwzhxjNGICLa3}9kLW@6)r3R$wbOsXm;3{zmlD%#wn4|l zZi~cunz~sG&{Wh@$Tbfn6G;S$q*;QzOpXB`TONIh#k_CY=nDMBf0slu&iP>EACc)F zRgkEfNh31IRi!Saq;ksIu1cL(8oxiA`!HBkQ%a7B9hk8Nj~|~({3dFl0tqLT^nd}8 z*_zz_Nn%C69?{Qir+}g8(%R*t02Zj}R&xdIce(o9pU3;*?Jt9;i0N0<7U{Din<)`g zdvX0utbkw&b3Rj@xAyj0P$lj-J3vu+n(3{+kW+@#29$ghlC0Lqt z^Nq+dMvJP!exFaNvF5|^?Wtl0xIHL>T_97h|I^l6rSlp8o)s z{b%v-n;#c(`3*D6mF?ZOYFH}TDAd$R5KslKvH(Z=*Y+fBIPPqyP{F@ zvphOZRRYN@_GDR+pUWU3l zxZ_Xs{+{lv9M`RoRY-46t}oyo`RoioT-DR;Y<3$n0&Zw&^Yqz@mw-~mP!*P<4;q#% zscR3^bw=}r5jP;51&>~+*nTZ-MvBH<8tquZ4TL9 zoZobqeYZ%S7%NtzYUCs|Q_LUFBi1MFf;dxRIphQEFRX2MD+r^FyhfR7Yr`X{8<@6z z%JXO4uC8Z63R}5V^&w9a{tmUh>B<~zeV<5jRKh%QtcfJ4si%b*VpmXF7~K{-ARn)V zVlQi(`;fO+VQ%G4MRC*>v&OG^4xxfa9=2KPZNPD~xHPA#HCVir0&Oa}kRM2CRaJ4Ul&G$V%1SZwMqQbMkfePG|1ZSw6Y|60AUVq zY~&9ZV@@?VJzHejygT^WCLn4CloTV&{f>xc_pE95#_X%Cq%{%LVfPIy)6Ac91d)st za)40-YmZc+dE}69>Z-l@@^ijQOCARS zO-R@}`6;6FNk=YMF;g#&l9jwspm=CCT#?B7dz<%*gc~l00^lVA3lWh@>RUnD6w9+k!pAfAC)WBHt*kn{{SX- zk9p<#3mvfX8^3hpk!xvkxFjvNtMD}srjtATQhyyaEgY&v^|qyJj(x~hJEffVt9Bbm z;6dUD^6D+W+V1Txn$)hTJc!^&ugm5SMgp7pFMQ6dhMIMQtm4R3Q8j8|<=)VxN~-hW zmT^dFqnMsPw*LSddvQ0bLQ3g=JZaKr*)Ia?sv7?QOF!W1zq?nbdoQ6km49FMw$`rN zTc;kPW~8erB|U8`J1lkh%IHf{4$8(?`O!+lMJjFX@u5y}|nFXsTvr zzxBHN){{#0uuVwl`hP7PeI+N)ABvJagc0`s-;Yz9`sI$QHNF0pW&nRrX|7b5B(JAW zL;a$9*R9e20GzLWH^%<}g&XF-5|pxUKG|mKjk48|M>p9)xM^w=Igy431!R_s4rD4w zuwp%x+Q72RDljwB*dG3bT6n3OBbTAh zRA6xul?XhQ6=JR@Kb?2>>9=31Wu^(Q`Fd-`J_u^}aO*|T=anGuGrPX05D{ zpH%g=61>$CF&t`=SqVSm?B!@cr$|m0k4kDxq>BiGs2Sn|faI22j&%Kb=iiIwQx9x!)3nnFDyy-EgP4Hp2GK@>zkX2-^5BKanZi@ zx9#?p(S1C+rlwDk=vMecKV@fkj^x<=bw!uUR%Eb~=4&W%A?2PbOj-}Ptcn%Cl2`)` zAaZYSY59W5Cypsfg243WDsIzl*D}T&h?rFTsnOoU{G+AWs&@5#2JY=Fn${h^xv;s# z$x!`@)sf>x)@fJYB6AZSQ5 z>SeXvQ+=`!ZP+QX zc$NVh+0~XcWzm- zf~wy=mxjWoIcQ;BytB1VOCtm%N@;>a1Hnuw$+|p}Mpayk9!I$H>t?>Zclvu`MNWK& zQx%6ZZCh+9^;b#=9}k~Ld#CuR6@*m^I#_HOvw*Bu8uh>}lqMB-&J;9R0 z;xcL}guih`MMWf#)zwVK5)F$I0kGvqwaaZL@3*uTjag6O2ub@eKbh#J>h(4q%v@hY z%Mjq~<4O6NpD#cO1jLO~pCXj*91CWIpq z8I7G9#dQYb*&W9#?lvGhz%h&ymjjXxDZQL1}^sj^58#jE=(b7?U z^!00v^HVBBqwWeULP?pRBbyJW_4ecKgaJtri8#+jcH5DonJnfCqNLLpSTN}p|6COU&xj8ElMl$j-vlCAn|J&3G!p>1ZN{xV54;nZQf z?#Xw%&hZLHFh4Id=xfo@*}a9haQG~hZG7`qWGiBl6snr1h*nU2F{m~klm6S=o)8BZ z9Wt`9Q=IfxzHaqi*ZBwWQ+94?>*=NJ&X=c~c5PbYA{xrPLdX|zZOLVS-IkJASjvlX z7E}k@_LF!QC@a|5Bkke)IxoJr@vY@*cc|14_2dc~O2qKF;qa7U@CpbVX-vCDYUn&t9!JZ~p);{NCs5=F4RET{TaNl+6`>0n(2l z6k$p7m|95;=t7>&{#+@R8!V6YPelO2;WYkK8M+asIdTLbzijfir>Y!EVl5ok^CaP zfB)6fE_s$L?Nvx%7Cfb9vMpkUu0Y`b0AES=_Z%LyJi0ue3@a0Ce5m-}o_PW#A8~9+ zOp4z`pE*koqSySa{@A!cVUT&#r(+;GAD>$g{{X_5I}iQI{9Ee;sUn)66TSDxhsQ|qkFJQ;Z72MFq1(_=+wAH4rtVNWtzO{m$o7x&Rrt-)*t(wIzz8ZXbP49wDaYhw}>0@}c91J5?( zkL$;^ajufp#bmWb5G+*ULf$pE(VUwB$IyL!q*w~IV-y`Kdzye5 ziyyZg4nH4zkFxp~u&{lX)mwmV4att2Qd49ir;e(fXe#868o2Tll7k&(J141;xb*wH zw&^NqabB5@cSqKyhpVw)hd)1lMbUP4@2=WCaUC6QEjPwPwei%DVrn;z28SGX9VA;L z8;+(g7UZcg0UMS}$^wQOf%X#I?d)WU&XzMOnh&4Pp}xhvZgw-l2$@#ZAJY5xE%dJMa7;-7cz%F2D- z(NbjgwoJ!0CgZ1}sH+sz7UKxIm2q5l5kIApE@P(!XtdDBPX3w7-sGyT_{YTh0MaxDBZm*{H|Q93n#1jks&0 zz|T_z(W-$E0!32Sc3X05`{QkbB8zDEIgsTT+8(mZWfOi14vaBC(!oP zf3wxN{{Sj~iGLvb2CKJvqqn!kX2jZ?M`+hex3F{`W~ST}If_c5S)HO%v7n-)r=Ter z(vE^+LaB4^Ip#Z^s^;$5_SDxSD?73LIy}B)gVeFgR$JwTjoNOkRwZ;u)qM4w8u?@n ziRW>AGxc6FjX?WKI+D1_a-{CJ-4fI_0lBG1s+E$wkvVsXA1C@3d6{Q zQrU;G2QF^>vbK>)409|*QK;Ha@+0l&In4aE&X@O>F}2;Hofs6>nt>nfff(UVttaC* z!OqOeZuH$9gV;THy!uaKPmZkF8Egk#}i62eE zhxOPiz3+Q)o=CQ+r4CqvS<5L06*Z{@eYEIRv+~yK95F8SaSV#8qy&s1QZhi(K|}Ue zs?+U0@LkXH=f8#-a#*@OpW9i?4j#6mRB2lygqOpgXr_ReR-RnZs4+wdD-lgzqTa_= z+gri5ZGpfoBq~qmk^HIDV*JLk?>n=^$4oa4p!xQi6ZR8cmHVH(`?qRjs5dld|h6nf@Fs-u;nl2d&br0+h94EXy2re+JIe&z}+Q`n#bko(I&|r*!-%O3ZPww0G~Sl0Gq2kUeet=17&U8uF2bZ4gUZ^ zl8&C1ryq{UM+4Hd$`q`MO~QUh2iZr4CY91=2~U?oc$Mv~V4BhsE~-=mk<|+P@pyYv z*6laR<`v6#%t)aZAKYJsSRrCK07k-{X>%znPcTQ~To*DcBrz!E_FI*hro z7Wq|^||&_ zz1=qF^vnrJ>7ImqrDD4i?h)znX0AA7d3FER(r5UApCyxx+Ti3XdFSc(GT#3H;ytJW zqP=>YIv#q@u&TDsQ)%v4q(6JI_g3G{qK5S{;WE^D1Q-2YsOiZ60AuaBMM3%Xv4dW& z$NB7cMIUW^nCbkzB*5Y*J~MU3ULV}mrfuIHUUEe?HVhD@{{TMH*`|od`Sk4Ou01K$ zL00eG!Jq5Rt%}_>?>^h>`b@<()}$iQP*P@c)fsxo;$O_QmDAj})bag2tw_Kny?Rc> z)DDD?i{CAJJE3tK`VPwSqAC-xZ0bT1up+dE3<_>7r6V z0e~LqBu?aMlSu18fO0F*IPPuxwEGXUa~qps^~M{jHl=KdRgc(Pe<53w#o;u>BQe2Q zU;a@imO-e4U=P#V$O@=dYLVB4DoE)GNg-Ex0p>{9kPkQ2W&Z#R4{Y4z#(sb1>ch{k zLs)*`MIj_e2-Hpg06c#~aqo1+di610mwQ(tBdL;tVyzuUqXRe5WGiMt{tiB$;yviC zI`ul=lld!m^*?d^A=(>fDOnXx=jrT}`vWx;k_W1Mc0HC%1w`secaD5(s)ByHNc?*X zZZ`TZ7}K@0(aoHiq6&Pm)f)c*GCzvhkBvVd^EILHCt!9)YbRgS@=)#^LC?X3iNA_N zhOgPdA>(Uuc@%JDZhI)@u3rYp)Z-sY=_K?ROR1tmG^= zK@|;n9TXJ@?9c5TV)$F#U58g%-B-LI!)5kY@fVHPaZ;L?Dc-VGNn|D>vc_Glb_}{) zujlC>a}~4@AE~w^N$5J7c^>k6vTSc64G_g?p02+q)ZGix-C4c+Qo9d=k1J2NGc{D+ zI*Nfzlm7q?oug=CsH&+-Sru7W)G%g^H8sVq0?BuKbgLA%EX9ZcN6-A-NOEmaR9ZOlctFaA&rOfTTwDg#%@mXvvQ&eJ223E34 zfmMyIGDRb!n5DL$6rDcKBHQJ+xPnQdku8}@mSs59q#D!9qFcM@F0F23w3aDuk=3*- zEqhoI=jGA#hY`?S*|-kS-M_%($52Y196Yn<=boM11?e$g+DGE3V6LQAmGj3Dk}Kp!dI>&F zcD@he=UDDa;E3BlW$pZ?;mQ914X0S^>v32bIr0^dgEZa~S6LlDh9d3*&mjJ`_J?nR zZO?nN+o2(umLin}5el5-MH@(lu zz1+J;w6mR^xcAP&OjIwF-V2f36U~(?8bcY9rUt30@yyIs8sCq3Q+u~c?Qa}NNJId7 zcH{h=V7->+V>c7K(Vf_l=5=TD>C%FC)49 zv%6o}PF@ccd*?yY2mkWE~KC%f&Tz!9RYngzUVU_8zkC$j(Tme*d0$wavOgm z=2WEKm|9g5M~JJ9Nh2c^Xi%PYaKrQL>i1_?xHBljarqvA)?4h>&ig^?!6HDxu_#ZF{p@!CYc0Fn=|)y~Tz&4~4y^&#y%+Y-U0 z?hI>80mi)$TCb29Ey?mf1=`(%EPJ+xA6-X;$UN|*a@OsrnA1rk1p!*AVsiKVk?dDx zwWM2dwpFIApSPd}^SxZ|8?)cMnwU@n{Sm^w7~b^m-k$2d%Au_4?a!aeV7D#~pEF!q z864p<4h!z9WReV(F)kX5D!*wd9IDDyyiNWWJbT-UuU_bH%x2Rn{{X3{qNQCZqw(&lfGr1JW<4hRH*(WK z4m)ULv@AH-qn{?x+R{&N+ovY>IuADYb?Sf8Q;d-at8R%-_inPEL z%velpF-elkN(Va9HKzmhNKYlJkR>G(phg{jl^2@NPLI+PY#an z!$0OJ+TRXpcdLAT#n*1<-`J{3T&72TV&5CFaaDM!SkrDep{16k>Lq|oV`$Arxm1Nw zs@~Jhv)f&SR(B+1kN_XF*QX=CmI6ps7~xu<<r7JvBssaTP>@o+{`aqtzNp zKu;r(7+e#nMZLkhzTBoVT%8|h4zgdA_s5Fi1Y`+o_EdFZy|?qrWa4_Kcy&iEw8umS)65T_}Yj!)iq{s0WC~}Fxb4M z2Hu)F+RA!GP_aiM&d%TuP0zV6bKED20TWqjkgpt4qspB|oUh5(Tddz%YkU$tbt6$y zLE>tE!&BDE-x#~6;zrNweWmgDtMk|jZT+-&6;5XZTTPq(C7H|Q_fItX-(JU;>tX^?_ zT>BAwH_H?6eA4$|>9@3voUsIrOf(|>rlkH==n3!VG~4X_sr$GZ++ND46ddSY_djI- zU$uu?#AZ4lvvGxb!_PenK?Y(a{qD5T(yc=lZJ zJV#5R4d_7!`SiVATvZ4o<({I(H89`C_wJ5#0E`!^<7DxpBKnO~cihx>?z2s`m{ALbXN)x}L!$85(x<*k1RyKFRLW zOo;KPoee+3(#Tn;oFh>IHn4xxW(rM1^2ZXALS4y=u&6{SJ`U4Q@3 z(Xwn|TAY(KV7!?c_jD%0SemL^uhPMQ`g?eA>)k|)&y79?GJS;1vQtdgy)8lz>8$af z1|MH`2ljQYjJI2D-S4=umAPHNwDQ?Hc&Z4duV@m71N>50v;g_sl$3aNDE^|RZC~N^ z_L_URErIc7RX(17vybxWR2Fwvlorr4pODAx;n3NE{#@TLH=R4?ak~PeAZy60Y2t%% zRly@v8=y?3Cf%sR)G-Fb!&4xz;QJ+)nzn0pD)%D4m-+fXhm*J2lrr0(A2$C0Fg-DD zzvX@NixWpxT>T%pYboJE?9_Ptx`y;SXi2NFR8(yxk+?E~N}uWOsm;3_rh@PJf0&-E z{F%%M3kzgpP64z0!04i7ddIQ4*(s>E&cWS#Zl-yjBuu^*wvfp`lShgPnj=k9BQUb6 zIb--9&h0O(?-sVVNhkVJ3H_XU58c>a*qt|)l0<)`2p_kB{k<7}tN2^;2eHcK4$^&% zx8{x+7d_Z=w%SLdmrMERu+zr-g1vM$pjMbh!rrleXV&{3<9hMBLQ)at*dLJMe`iED z8^w*jq%!N1(R2LxbaHS%5juyh+LE(yZke~%;h_dvvpymSabm7AvP3a7l~d18PaG@< z?@F~2Uy#Z40;_F;($Fi)-Xx>cWAYq7ZF(b@b-KAEDDdO-2S1tW2V?dPGtW(nia6U3 zNfgxPlBSt5bno{T5{im?&)KL_5C+zyFyra%O!6q~1GlQf2|eC@6rRuD87!SE(3xrm zJ_AmX)2wSvMG8Y3XpWYOn2K6hlV1T83vuk4`etO%J|E@LrL191e-Y>|=uXU!tNujw ze)-59Sh_s?m@MzFN*osL$JXs!sh5zx7^yP`Mg-V|KEj)fUOl|gk&-$*wR05FxI75x zXYVQuw^Vi>UOGvt5|m^l$zUsEcQMV3l2arTMK9A`KM5!o(<+~*9^+QBNp)LHGB7@4 z)9v!=QnuV=h$ZE_9Me!Ag}l$$+dJd* zN?9gpRMbNWt>@4P1+H!E7t9-G@wEtN+oW%#Oq2wS`Te-+P30b7*ta{0;oagxdnv?( z1LP@6@Xw#+)zox;)cKFGcM^5qSoRLt$80+4_-gc5(ruZij*@U9YRYPfaZ=So<%X@a zHJ?_c9O@(omzadMcLj{AcjP>)!_SAMM^ZfSZnoEUYX#&_wkqV61%lSJ6yw7c;nU~K zEWcTGrdO+|aN9dJltJ}B?HD>n8(^TSStljk)i0C7wr>5KVm?~LnU8Z%0 ziYScwqg7@od3SE#xq?fZbq*|F;;A&PaZjH}dCQqL9e`VIH&cl>6g`H3wLI(RPnYcL zUVg>-E4lmIcEh^!W=ce&l6pLDC{N{rl9<#q#gu47XPrv^4YYs>7WbE&hs#!csk9}H zxeYU&QavfDsl(QQaQx4oSX6qBhwequ3 zLax{S&*9a>BSCAAq9PB)y_d_e?UQhXqklyI0FcylvOUuFAS&U<^oRLz(L(KRu}-|J zqpQJYsxy0fzG}J=J$w+-5G2hN=qujW~}C&`0D@)fF)PxQSbXDn3uXu)_K{rN2!DS$SkG4;!>wa13k7(kzCRVCE zW-|qt%w#H7Lr;&!W2)=x=Mcuy$>F7@idp2*8nYcMz!&$XV1rW-2U{88*ZMm14Gu~`e@#koNP7POoA(>2%I((XIQ>r^gqv?A?RIi2ZZipG^si_?XP@U@ zuaD!$#=WDBg|n2sKejd=9+$@?d2FO7JGyFQf;xF2k_^6O>t&@xjTmU8YI=Pq(;C~@ zMnv4ND)&>qkG7xjeG5E$3pEj1MwR&ikMneu?;hjFV6(FATs?bHBv~44K4O}a9FWw~ zMNy(@TB|i&=+a0ir4z>_G9*O^RbqWCSu`vVlmG$4*ZrQBTQ;X(5srEx9nbSe4cGW; z9A!4;&Ss*5WU9eaQF!6Xt$iGo5&fMsbFA@IB#9@UddY|a>J$@o0zOgYEz6khT~I7` z%0{<20=__bvGN1$BnosN=MHAu`F15N#!IIMLMfp%pd_EdzNhj4o~y!7m$=^D%gIla ztH@w-kk2YnL0Kj~vXfMkwBirEnv7&9<$8-4i#difU^FNMWVb7FuPpNUQ*CXpaU5lq zjNk1?!k>_@sXb%IGV?DmZ{WvubE9wL;YU?ZwY=Q@rk;RwsBQgR%RMyG8C;SjGqkNz z83vn8BQrZXaBdBa?g{ocd5ARV9eoxoy?L3dD zRP><*2qU7kxv}BuB`%?qon)JHdyY+qApZci_FE!XK7B8Z=mvT&yW1S(R4PQp9%2-5 z!on!j+Q;#4Wmgeay%<2*spzV1JXD@Z71fnkz0c5#-oRVvZ|sI-rlN69jbm+8&U&!k zxX;&L1U@2=a#29F7}MKY$+RZQ$H9 zFTip?)&35I`+eK0YF9ddq4Xo?(P7T@*8J)%#=C=U)k{%NOE-}#Xp6+J4yGC_Y1GKr z`lM5FFbxgv(nSzc#A!&nCJU&f6dX<>F=BW03}Jiqp@bT9{PJPW1qWrdAR8R{k?BgQ~{H!e2vJk#)ZxUv0^`+eLK^nQ~`y zN)N;So74O~SuCb_CAg&{Utd47tnt;ABb_=|kfdCVLjM3$V(571*^0lHNeISAKwocB zCPx*zF?tAUoPH;DP)L9qRz*`L8zffu^#ctNVgCR(4gHmFaV*hK4Kh?P`$4Dqzi&(I z9LDjtp`rf(5Bd79ysk#JiCDcktBG%^Oftthfx*)xdZRY}gb!eLC29!hQYd`$(ngze z;wP!`Ow&OnxYy`)ZhZ&(k8JpfT=D9}Q>A@2LYZvT?vh{oY|Qt+BIf6xexTqw(XSqq zC@8X&&mKmhVErB%m=^LQt9muw;p4gFe@}I2!4(5NcoGj*UGVp1KUi%|)85+;b!^?w z+c=y~R{?Kexez(+U#z-#X}S8!1X#`Zaamlg<3KXmVeFBfv5QM z(7g+jsNR`W!{%kBhDwY@B!z0}=Bb(9Xqt7A^-fXbArJ&82Axb4Sn+KkvP!&xlyK-f zE%nym%CW{&lbT@lU;Xp*cC&PD9mtzru9A}jvbOGGNa>-5C@G&I1tmgbiHe;gf<&hb z9_Uql1Rf3jk?t1{E5wV9OfWqiKqCBm7mLFyRDzc)#DABdkJD%rEvntPH>Xw&)m@I8%L74LB@)!F zDpFPXANS0Z%cd=8NN*y-3Ll}e4`OR;pQwo#{9sV@QFCr$ay+^aax)3|U{1SVSNN0l zKT8XbZ?!8fC)cXodlN1lDVQ6s@${3aaKdf`89Jp{E)Lhl60tH~ujN`WHj^y^c8 zeUt7Rlr~aF6v)J|tw6;;Z$?&jvRorNFrYN(E8SFTk;Nk;v@;!1)Ck^Hf=;>BOYIykm{561@`H1EFK>}fkEeAMkM_C;_s8-}`?o|b6ot1*z%&`2oB zFxNvYP{UGbi|HDFSG2KMTeLBUgci~&db8cmBy${uEqHV+^smf~=hK<`P5%Ib+1*+F z=fTfQQ;)3A;xZZR4K`XCR4#Tsi~LbAc|5#qRHQN}q(gapMnJ5!U7FLyTZXMhKh%AH zpGu#3zH3*r*GOB9F<+P2^5|{vf96N>OXQtqH#hPNv-j5Zps1QTD7Ho}DK?)~;0+|Q zM@%rg4;Iv0exjkmmujhDsjDpaX_$)xL|Ee#Md+-lK79@yWtOAeTO)2|Qjnz!pR8rm9}Bws8N zEtQrzqIjGRQbZv81zte#Ou>Z%WPHK@0B0QvEu2djWjPo>Xz0D~Dp+1|SxXR#!%GCY z*00VVZ$y#F*P|hsg^jRks_v3awm|JsR{m|53jVQ=R~U)?deQb zrbwPj&<-Cylvth5Qp};=CuQO3U_FGJt(ybqNk%Z@=xZD z{mD{hnk=1F6(n1FT1bSrMwF2fk>!e18Uywk{JLEPpHa55L`RB2`)l(Yeq9#r>y^GoAxBMKYbr6H zV?{nu3GkCojHMstC`d^3OpO+x$4jNHYkM(4T?|%;)gXEC^8WxgNaUc@p!Y2SKbKu? zoxOz3;=K9XMFmxDQY`g#GQ%I;YE=yyApxXty7g`X9b5-KigC`IGNGS9W=uXSZ?fuw2L35R{zQ&cIzr1KjgTMCuj%ZgY`l^yhqt&Cejk|V!uH){gh?JpR$GtC z(&n+$mDG|XkW@X%E}lXJqOAaCmHA`?Y*)xIEpRRM^7ZVZJRAd zM8^t)J$43F@$M{Tu3A9!Bkm(n{_cS-_2j2{vln)5RDQI5!~CQ3AK>X`-Ed&I0gvgv z5BU#K@fc_;ar83KR7X89S_-;Ks&_9HL^=b(JZ*nmb5qH2eh6=15O~v}T{>gl+d7)J zA5`85#F9qW(2A?+7yT>3T>k(;$@=r|;F4?jy43){9T6?ZwP(fVY3iu;Lsdmql{C`Z zh~|m)M{)U#o*Vj)ZaN22t>!wilU|%QJ|=C++Vl1N7z&)_e`n?~F>TBx1V&1{#$#|v z95k59RV7HCrz0th5<;s2NdOb=94rw?egg;c>f~gewvvzj6K}gSzZ-Bn*RLu%({^s% z&9Jd~={DsZM6{W@%Iv-^YpQAR`=c%w9R^nsQ8|GS$sAJ4Ph$6Llusj>bt{my!1;Ax z(dp7xJySPUe=IMSotN@IV*GmCU2C{-GiP^>Gh}7^Pa};qJ$tgSTBI4gw&TmzOHYfy zXYhD>I;kVYPcl|lRz|Quk~^-Y0^tIl?DbaoLsy4FPQu62Vll0^skJRW-LA@Qs&$i3 zkzv5(YOyexblFx$hK);GjaT-tWPV*VG6zd4nJZ(0b3p_%S0pku40UomRI*isb%82n zjyWWb7IFhRsVcmVecW|Z$2~^EZF5OamE0N1qm$hgn8|7C>rfSfmYk`OW3kk%@Ai1u zr2wpISlnu6W+eM|+>vu`N0YDkM@`L`WnUtv{2d2>ezCoWJdyzV51}M+^#1@3J;+s| z=p{~q-r>%z2HvEOG9Ie0EkhkD19y2GOo2k$!k5- zU{Y$O$iV1QMnVIgg()_LEIVTnLE}0_JoS?(wYA2eYkTlVJbMRyYa6SFC(HrRz*(er zkglJ@Q_*#*$IO)z_`y{2F+f8thNGklfq!CX z3Z|-eN?cYx5gklgr2V&&RB*tM1+VTBxPaT;N2x$!YE%Q-JxMtIole%Xi-=ppB(DI( zjGsU_{%4^lw(4>j01t0*fXn;$`6OP9&BgDh(aq@$(| z8NYTGkU2|^Qf^l<&upS4V2%`%&k1NblCiXt*BgP9=aOXYO*xcj3zP53%g47)e4eH3aMcux1@qczgw>0EaHV! z8E`5=u1-J94_3O8#9T`@x<+bf4nNiAdUvF!mmQ1~iYnM%R1(CiPg4_8L|0T%-D3e| zL?Ywpwzs^Z*{z<}Y_NgF9U(AndK9 zRSkW95~>)h>uIAj)#d3~St)l0IE9}bnxYC7wTn!gg1`gpJG$EID|v1~bTmG{pP?Nb z*iEFHc}Ht-{{UmDoe|!i43$RE%fE|VL(Pk4YoUTu=2~=S{@emhHYeyk(`?-P+S*gx z4nAYAUfEE1sl(5s<&VtJWDu!z9z+968;LxL{m~^kT&^z#n8^zG zp{1Q<@zcu|Me1aRpeNi$Q^u|%V4$Y;2qA%>JV%$>dURB)dV$x_@1SY18(XZlp1?U; zJY3Q4{>0iFTAH>~=E)3h@Z8yGXfeRt&op>Bgs8XT6u97fMjJXw?&_d$AY-A{9f`K+ z({TXuKn=gtCJPoSb4$ESc>e%<_jtdxi2ndce}r`0g0ac| zl>Y#OqQ#TW3P{#gZ~}lmR{DT{uh)PFvFUv^C!n~Dwg*Mid~V0i?@hT$P7Lv4AMYWC z;H;ITH-c$(5Q`Nlyo9#{NWUJ-ZYS3~N(KS1`o7MVLk^f^B;@1$UvER^3bm;)HTg%G zr>cV+RM_PJi7KmVlk6$#K^E4pQ8`EjuFIvHlq1=!EJ7Csr_1JgFK|l*rYoPbt03!d zn=o{5SM80J+CLCJKm4A@Z9HBsfwFtYW#X54OM<7yB+}BySxJeRvXbrCkSvuFBh12f zP?c1ag|3l6s?|~n^lv{r=cS|{Fn^I($jVm0_jke0#rV~_GW618m$806?&nGzB$Z=N z@dA*XveM#oif2-1DU@$G!=wj(?nfSdzbF%4RLm>xeS9S#oTvEHy&w=vXH z0+g@Vf9KQobz0vwf0x$N>b<`&aePYdydTQHkJ7Tt`8rxdhV1Q~6slxccV^g$M0E>H zr%aQ<94~dbgbsa(xo@1__V4#r`DASOKO_E!C)iF@pF&9VJr-`eAJf70yL6)B*UWx3 z`#|ITkISl(pvzIvRi#|C5=xQ2wv8$bY(TxhZ~-3VhK-nM)lbWym((JiMGs&9)zw3< zYUkS9&-=p^5zCOL$<|LwD%2QKt|=y`p|7RTR5_+Hp^s6~t!{3-dyKABT`_>4)32A? zQV&w)m2Gs*PWpd8B04kG`^tPqHY~8lQP<~MqFR}9IbgMtq;D7Mf+y08R@E)7q#=%z zWwG^pv)HW4A}&N!;4#yUc*uN810l^$dM+EEd^JuUSz*KDU_!ccwM#seHL&Gp47E8N za!%jmGE`F&5FWH3m2bzk*3V4TGB&RvODWyItc1$@cBH9 zSFrx~y`RZGBX)Z|02Hr0)a@X=Z z_!2;QxgovF@dX4DAMNhyC37JdE34DDp}Pk?KvFTAmZvJMpsZEXoV3xWA6jbmrp`pm z_$x1``X6So{{TWle%${6hdm@?T(n?+FZMbKdx>jcnX}XoLqoaarx3}Oq=C#CylN`z z!tU%#M;Xgw=PPKYXvIw{k4cbRg8ji*4;C>=y?sZc4>A15ODx$W9TB`ETPgMFQk{_vdtrAR zb9kz@?NFo4k06U)+sjK&Pn36G?VM#qFjgi0f(N(iKGJT5Z*4V<%NBnl$NYzJZ=|bzMZW}puk0!X4@Xt#4&C)pOsoSdTUc9I zD6#!kKTt{cagH5$^uPFByrabTgj+(n;);`bY`>+ z(MwTY)vC@c%%z3wPqM_x`SqY^wDRcOW$I#&A30E=yb?Q~ryetMPxt}t`s1x0zE+f( zC8zlT@)riIpr-Yv9|X1A_uI?XLI@L_%WEAPCA+^$u&)NeOz%WkL@=$ z0H0#ZxrA#{)D)@cjszz(=mO4Ta{C{(x7Nqql$3Msjh(vlJ1;wq#%1xjTw3L}wo0QF zl%`zvDyp*^lf=i6q?7mQrD|zWLx*)Bf`psImr?Wlzi&n+G9ywAG5)H2`Z9YvKS>mD z*JUbJwar8oF~Csdx*~k6d&rX zetizKdzT)yH1gJFs2e#oL~=ooS#`^f5-H-LlUjKdh-UgTFt;CrIHy2!Al7`kK+!P- z1R;6@J8NV|gK?XK2}PXRxfuYek>T;=aJ90ZtJTx#kWy7W+Bq0$S2_v(B*h%j%MZ3l z`;Okt^e)7a$3qk6{S)MTxF0U1{!->kP0|$GcQ{br#-J;3E(Zb+@qxs7jQaE%?0&=D z9YL9cKeRGc)9qZe(qp#<02|keQr1r{J_Q0CX5pr^mC(kE z>4rL(nobBXwj3)8xv0?XoJ+JO_&0<1pR%V#(|YsEe9TorhO%p znzuzuF}SA0RaHF|TE>+svDL()CN8Ne%B-G1-YJ#Tm1VI8;`ToGC9=z>w;H!U$nZEMlN~l1_grbSTr;QB^yxA8fRd20APE z4Q!Asi(*yN9Y$jc3FHQ2>}(33f;@Vk_Bsg#BD&u`gZ%wH3LVQlK2&|VOTn^HopBH$(*pwS}$q z_MTxboY0P)iI6rbI;;-k+A!^n({tgMnRFWA+?EK?=5M=UcTNuhu2kjlhc`g`=C#>9&0Jz703pdW~I zJar#ozU$evKX+2nSK?RrCRJFGBTtWwW1^^Qexw7!AvZ$*GNs$l{v529_{xbcrF< zzwCY1L=KLgqpk4k>4W^Qw|xfV=`FXLqn}va9ci(0iiG|)_Gf$Twv;L47o;?o{{UQj z4=F0Z5t@I1)2*&h{Et=}yt8r9?Y#Wu^qPDoT5xZ69xQ!CmmlNl_Weh%S|*)*rSdz3 zQGB@V=-u=tUw7xL)ZBW@XR=X9d9Y#|PqS$L1p5bDW0vUJiB?1nbs@(EK8F7QrpEUc z)yKCueZ5zthT+9!v+=`$+xXmudvRxLsIYhp9xeu|$>(#~dbqLJd`32v3YqKjc?ziE zg?^?-9`753k~eMvf&H23sX-{fd5(?@{{R(g{{WSjUcb#BmOI-Uwf<&FN0-L@F!;f= zGWZ?Mm)V=@uM?5NN!;DTm85$7PuumxSr)6K$75xwfil9JR8*Oi(;}w4{o!)Tg0{or zKQG}QZ=cG&AP|&QM6R-bXV0x}aJiJ9Az4=;sHm>5t(vN?zauEB)l)3(EYqznm5QQC zT->!mm|WjTJp0r#YLVCzQh(J!{(hFa&?@->{;c$8c3aa_D#=&4AjfMqnzp*8)l7!N z$4)?JjY$6hQaJhxdpfru(6p53vS56puSTP6RqPrH2{t_PKv2 z+Uhqai;z8^K-TKCT>XQhsa9f1ZXa(#T_sdm8fj@F#coQfDWYg*8A=>=9X&)+4KEp{ zs(Bp7!|-fmo}N%^S$F(2~PL-%|Y>@Jv6=Jh3j6D1JAat-j=TZ&THqfp z2iK{0mid}3-T}8?kT)T~@Dc&%@^4Y+#B?0)K@Q^hnYw9eG|64Cx8^G;j%GKKDjcbb zimeo$bOTUH{{UauD$tvLYPMyNKD3}3kLT3QYe5c&YWDS-u9~mKRZkkk zvq2g2HA_bii3YhENm+<<5&|uxF*g?af$UKf>)|64TJWbta-j^s4jmM2^(7kAPaPF% z*F=WxQerg1X%gmP1ac{V3X%e|^5dHe+u4=4dR5Ym>Bs#?qM5Xg)M}28_RhgWx3&h% z+w8!uGYd*)xGrA1ARi-G>lq(YS5)Tz0D)`!nl_t%r`xRI7$E^aY03U)sC#mp++W>I zUMy+$3=iZwU19}Jl3|7jkhO%>I;!d%g2&MjD->W`{B7*kFlm8~kdi$3bgoFHjuqA? zb{4y`DuUPNO0J)-zo$QsZiU81dewb8K<<;O76b$!X)9tcsMw3}NdEwR_4i4B8g+H! z)nI&%AMSS;M6Sr`QW+b78ZQu5BkOxfZ(x1+QQ@KDPx(3#ZGQ}y^ynwqd6vaij!vCw z*8aEP`!2GWp{0EKFqJi}IyDqkIPJ-cbeR>{p*BB@kL;Gcy`QTj$U)=LTLz7~2X-D} zO_SLf91}<)$LHVe7s!8ZI<;n+f>1u1q;k;Qb7?(>?i0eebsP!k);8A~pFWHpR;EoY zdyng=`hac-Vfc0TPd=O!=pfHb$XV2#aWcr4-~x@QPXzI-4|k_q>wUlEPuw!@FO0oV z^))Lbn9YaT`&OU{H8LHy*t=p}de3&cPBHllk^ZHDA75lwC>G_w;m7v%5yK?wu3Hv43~7Xwyi z13lZDzoa)t&g`AHiN@t~+aq>u{n>(#J4-!w-#MHHN(`4y_e^#Ben=AXz`-{3u*+g&vQ zGB4yhM=T(M0w3Gaz}Z`;A(j!PHd`-P++&Y4W}C2Gl270GIPNavIA#R>Ll z3y1B7KN3NMnkf5EugF*O=)OfL14`Od`BS+5Sf|>05jQT!-`QMDl;KTy zM{n*rsPh?MW?A4hwKBavksBmtqDW&9&E)jDJ?x=P@9sIhwTzHL(W}S#nve4JC)!-U znW~Zgsved3e52J+R7jG|R_!LXk>f;le;8Jc^w^a}7B>s@`VVF{h!s!}0H;ZAShliF zO?dQKciutAjOc)OOSYh%x$q^-m z@iZ`i%cd9}rc>$Cy7D#69X_omoeBr^_N5w35I|mP{bSYsHh-u{V(l_OVHGG z>S?H<>aRP;B_&qvN;kcz>5G-VqLNg~bqkYlp<*7uo7|eN5;MU^_GK3xtN?ZPuy9Cl4u zIjf~coZQ_i&}gcR-p5i-t@QeX$Fz!S0Uan6;nGJdF_B~qd+Fngo<+aj{qL)FwJ-c9 zW40h2ecu~0wyt{0t$~b_vGLeSVvAiq7c-5f#OEN#Jgg)0RcAI`6gDQyHBuA$y_R1n z62&Kx1b)t{0jV8bmf`J6j>zjh^Sr4kvb$#$SJid{b<*w?*9OW7VAvK zMS{&uQ;m^dkW>7=nH&T3^&_8ZZH*^G_WuBbrll1|>a~takmafV>L!+rQc+YnEozusGWnsG)XKh zy1wc^N*0DssbRqOQE70lp-Te8AMAa-EWNg5W|b7^KQ13Xv!@-SS%!MlU+(Q3lSIB& znzt#CH0rBh&e26JI3N@HOB?$p#cmenk^ zUn=>0`m&Ch#MR<4RFFs^p`?ZcSSaI#DWj)FUL&Wbj=>lDv$Hc3{=?Yj$}bKy6aWqb zpv}{Gk}(-RXQ9HcF+>%qmZe^B2l*?9idP(h>vUj2Kbzay<04X(&q+eJ5;4(K?(AkW zap5xfy5MQ1l9pDYl64yC>fSRPQpWalmX>xt8LUsGysF&a#>>?#FMnsvOz_TfP=24W1=vm zC}tM-D+z+ChT}{D=l-u=qd^lnIsg>&JO}yD%crb<Y!#CyHIqoL0z7T~ZFYL@`rE7#dZ6t?uF7$92GrdMK%<`eUEBfa$hHL)#I5naA=N zr|s!|jq81jx#&R8nRiK++A4C@wSq|AOaB0suiHsXkdQe65L@ZbwUOIfOo3zuLF&ZU zq|b428`V1xpaY~v;P~O6#<{NQt?8G?!EhwQZYrrV7)d}3LZuw7Dgh(dTR?q0i2)WY z$+XC%wUx^+$%!lbKh%DGD35Yh?Yo2@m=rx%4|Z)m?YDQ8ZD#M-g z(8head+q5(Sw5w1Z+<`47Qgkm9kdGus{C48{#UyK{Nrn9ZL8g1(C&D&YNvClk^ zMNlQc<#Txa%tF$0OETtg^x`>I&bMoQPqepa9^3k0)O`BVd~`S+9!#&!?~uf2>o*T! zWwMl+e0@egC@SS^Pft2DLIE*lZE}{=&B?#Ah_%S#Fto2vyhxz2JUXWSS@)*Y#H5M7!$#8rp*ZV_}k{0LZ0~=wWfF2eGxl`iG%9WI}jn z{2ft-phrX(6^o8ce0h1Cnu?m(rj88-lv2k!tRb&(M1f0Nn}R)%ZkK*F!9~abiu~!G zj_fV`IDAIpO-I?)#eXtQ<+Qi<7veVT!BAl+GVj;5Sd9EQOidmtjHNv;9K#FK(nlO_ z%Kkug1Hu0QA8`Kwx6$6)P0aS!48;~;RFX;J+0W(Fo6PTTIN4^2S5riF06s&@_VrH- z)O*i%?)-k;>+Q3c+&hDHR>w)V_Ws|;RoB+$vQ_mfO+kpl(9p#_MQ&EUvOyFyu_H*% zcoz3C*qUl*^Z45Z+sZ;zM9zeeY3Zu*!}C#7_AZJd%xr6 z;(h(G_I*T?EHKdaMlx(>4}JB8T}P2jO`OD0(n=U;sAI>mhTY8DUGWN%_;PwRDPKzP zuS6G{9qp!Fbtv?$e_{UsC3++|rJ>5wn5*KBVWhMb2*qk3dj?tQsuxVL8(51H2>OHU z@5G49 z1&Obx@S|pSstQ-up1+s)Ix)70Gk~B5Kg{+2($coIyiZwC_@~R)K_CiBpB_T009^2? zeHQ-!8~Y4MD>EqbAMErsg@=O~^fdj4rJfyTlNBuKbVC~y3;<05_~enM{{Tdfdrkxm|o#l+iBS{!tLlbNN0A~00d$Tx(@;Nww z5ACN!JJR^JtsQ99AK~fNlW^rTQ%#i0&eLQn)YMfFN<&Xh7^XKDOutB}Aw^cx`A{$U zBx@YZ^=CC>{-8Pt$r7a%1_%0y=~IcwPLlfMca3cFJ2+zUA5kTM`mr~$_Msa!^65LE zBZouw(cj-?;zz6h01+EWXZ!%Ve@%)10AuXV3yn0-Mblf8kTKDl+r5VsL{Nul+Sb$K zAh6)5GHbYC2|Rsm?Aj~Jfm6|QK~E#n!y=n=bJ5gOW+~{Z@v}n0vYNU$swriRrR5Vx zQXV!MZ*oT;>^;2BlB*Kd1n3& z=vif7mudZn{QWPBdbN}LKv4YhKbQHs0(YL$-P>{&i*fCo-W){wT3YONN>g2U^j3s= zIR(CjWFY$~ytcW4bk74X+6_N%4ve9m8M7R!-=Fz7^orY6!iO_V`p1fU(#&;OD$Q*S zPdC#lsrnyfifBhq@aRCQs3oLZo-h4=qT=6A$LHJQCY^8d=r+hy)J2qzcqC<>nn+}& zVQa@EQh8!z2IAswf7kZRpBGy5=y>hlkomsOg8@TLx3>P$TxK4gn>2RNt4e(Cdrq3X z$d0N;G+NTgkfC_vV(hF#3pBB$WRw{`eQdEH1H+>3#iVP<%_Ev#hvqh(XKw-;jVxpw9k8dnT#PNS=u5Ya^f$?smRvtx#e`g++TWz=Zgnc!f zt`C?~Pus)!^f}RdU#ZDr(uDs23foH>MH)?7l@+yclu#m!QPQ17?f|i1eTA-f-KG%2 zC>mK0p8@+%`MMTa@~-nSR-WQGV;)56Ke2KA`Z>6-i;#SVkFR>?A4j@(e(Tw^Vmxj$ zYRyYQHB40t95s0?v(!@8MT^A4;!x7fG$|Vqsreqj)|X>zn{c`e7Ae}MqM&*K>VMTv zhbgix=(M&+X>KDF0dZRKCyfW%dcI$P{{YFKth$beBfI;u597P5H;k^s(cpIGdo@Q* zx3z37(~9Xsn8keC_{j47BaI2qMq{@=6m9;J&O_fH8TRE~S99$w z7UH1Ibk^hD8H(&q_}Tevd53UdcBVqR_?1ozb4!ec(t%vGGdJw&KzSyEa=W#1l3mF5 zY(}8RQ!mUM5(kt%2;`ltu^(Cp2bwWuu>FIDautelwa)dnUAziyMR zvw0~JvW5TxK(tcS&PXM(s7bKf6RZw z)dg?o%I^L4yH0{(N#~)Si!n1(twM-?{{T!SVl1)B^)SZD4gUa35)aV(GriYyD?p8; zFroV^(H-XL4$ow7q(JTuYLiOPX1^iV|I^c-v-*d#`oAZfq~F^kKenl-+*v6ovN;MC zlMz-Lu)8H5YL(~2Njg*#41QlCpQ?-d23l^rZsb-=8^n--kPb)Mrj7im(DrS<_QW)I zR_udSK_dt3BM0{N>^!WvIpS4{QygS6GWkA)-GR9P-rO7W?LwN!deQAeOrC*^$s$>% zBH}$#pX`+iz?-GCi`((__H$z4E+VfA)Asa7xDOKEQU+;WvQlPg;-rn*NcGO`ETZ-| zQ=%jTgJg{W_Apt3sHx~C@s@A1tiRq0ny=cUwLLN$yzRoD`MAda0E=)r_kXA@K)(-F z@IW2eKAkvYw_Pn9qB=8QlB{EQmMvv&--J+F=KlcU?bNsf3JEPFk z?MY}|2_zN%T_vQ7*i&A%e)vEC013(Xb=p50F#F@?Usq)7`$x6tDK}0t7qqjreScln zds8J!XWR4-E(QvAtle2U3W)0~#bQq#B#j&>p`($SE#7xHr@WFoI3rti#dM0X^ELGJ zr`yoaZ?>8!RNP9&Q<_xJ4@!Fa^a1>~{{V!w{1Mojb1RbSkCA^Sc3$tO!{u_De{1KL zt-CV?57@ypsgT@tRrv0|%2419L_!kcxvC^>UL|skU}p8rdw#&M{c$E&;H&Xaabr>d zQR+^34u<@@%3H@XyyI<+1W|lW&~8dhel%fPAH1ipYMsjl1SC??g5yrTOblvE*-BXb!sVBXQwyZj0SwT!2s{X- zNgq0A%cp1Ljq*8KF)gDy608vQpm_w!coWptbMGy=B=$FR)RSmxfs*_9FN)7?RhVDl0zKt96%Zz z>iwE4zfAS~6xERI&4)l1v_U0y zW!o>4m1*J?Gs_N3HRqC8^t^XinlPd5aD6~Kcg!1w&aiGKIN-P*gA4v%g?2oXUP3j{uA{5=?5U2TvhB$0IwAF1tA5|Xa}00{C`{{TO!F78Pjtp6wu8vK^Q-sCq3thT*{TRkNiJSBs0$2BRXPoM99&&2w(@sF2^6o+ zv;_JNKV~|KebP4ez67WO+{_4|^QRN})}PObfiUo`HVOFKy+y~UzN?M$DOMP{% zH9uZ%O~FcK@Vak(gPx|N{`64DPC@*ktAvwMIiO+55?Du$^(mZ8Z@LR9)7UKAPFU-ORA!adJxYujb~XhCp2Ngo&cWe4Ze7f@_B z>R!hAV37V6s9ODphvZ1=t|jRH&Cc%)!?ZST*vNKA@SLq~A-68a#bt7PTP7fp;W-?3 zVyc538OPKsYet!3Vfj#f$Vs``q%hn|FpY=@OAr`*ii(=_6aC$LG?Kv$vq?flR2@IG z(0cSD?N8;U@^?Iu%b162?ARUAL^-_Zp1waT0EOvjBbpe&EI(Ah-`kUOg^Ge9j%f(= zS`YZu5Ay4FyotKYM!1?7RQk4~`xc}5^*?j}04~1tz(q7vIsLo1W}{b1VcfwRTz4A)l?1s(Bbl z(aSS7l1=?Un;uWKmhm)%G_6z963VNH)`O!9io{DvPaITG=m02IjF7|qNc4hiPvhCT zMpZ=zMU3@5$30s&@}28Gv)$h%_NM#!2bag=`j4t|5blX^nP(3U`QBKqHJfj37-W%F zOkEXvC3SEimPCPJBlk^-H@(TNVK#{Log<@NW? z4xZn&DUZN!3^i4JvZ_N)mDKAb!QV(|<1P-L^}T`hk0L41fL4_vol;-Vf96?)i)-&~ z?bKCRjnACM_C6B{i~ciEqit4Vwua@TGhlNSKX;E5Sk1#ji>Qo9Cx~jQbFE3#Absjd zcisN=rUXD+O5l83CRPEPgz^b`*eE;B*6qSFOJY^dJsQSQC2#S0s#sM;iPnV z_6PGL*}p!zvk9}Yoj1Dr_j$vLqQmz7V=-ThO}DWZFMx__`d+l&J5sANi`}(5f{=Ju z8!WVSII4P)B}_%4O=`K9m{)hRx7r}H3e2pnC^|v`MLHINyTxb-(g&#npkF5PRmFzw zChd1|TUZ=0LNys%h*veB(r8$MNvD;1f!JRdJ~Qv>(mnIjJzcvhgb<=v&4I?!XBh;1 zEO~5fG?`NrF@T|r#@71#B7odk=#Jjyf`Py>&*X8`t29=(;LAO#79`}T{{RTieL4v1 zz6g9b`x?4M>Pjp;F~bYH<9Al?qN;^skeYd5nC=-GFAUexMYOQ|+HSrDi#m%A9R_-l@UjHmL#_)EC*wDlF+OLk_at5;|s&-Uj1dP&halAbhdwIi}J zix~WYNc?+xE!%QhM-<4o{uTcKH&mCFHs;km#k0CE9_J%JV^*CLznnkFi{pQ6?J5kn z#@voepgT&MKStSH)>6B!_rx@iwyZ^cHsGtyR&6ZJV0AI%=%kXIF#YOg1jwR&mzz%C za}sXKX0>iK06L#hys2n=9EdKy-V*5kpQ*BHd)NY!eiu)3aE4gCEvb1ZuJ4&M= zhoXj9QJc+MNw>D;Q)wE!Yf!F7sC$p@9&J!w2=zy=NT;5P79-_W1M)pf_GxCTakVVM zDV+q3UJ4|rKu$73vs2KHj2`Oj+BVAd>@}F&+a*qaGgmDJKM`4ytb&??jVK5ww(fY${S=-OYVGl0wZQ z$8h1)JvswAyb`I11CYUi@-!g-06rW#E!(dQ)+9?4tllLwva%KPqXrcRJU(4%oBZbY zG`}UjR6Z_;9a*@reI19%Z0M-)Pe~+I8H|oV!7~xo^3XLcsKAtcD3~zp0>FoM2 z6a^h)hVOUvml8-#K|O!})vt}^@GoU|W7Jj9(Z@$6MO8sFc>HBq=5ku?WgvZj2i$%x zo)b{rN|J4{+|r_lrN>QwFTakT94e*Ud+Qet{LM=kXp=ErO+Ggqis6^RO4`~My@7NH z6$uKN`WM7H5s+F!51gld~!s`OmWoxpUCucBy5XTlTYW-M%^DV zcG^i@46#X?j1;w1M6p8&h%>Z^L@7Z4WMZdK0>pknx3#HnaUktbqd)5N=>y&*btTJw zeG=}<`Q46=X=A3YprM{JMLbxu_mzdkz|}gH4_kE#zKKoPY!}`ZWcE#vD@9o@-YAaK_s344kVu;(#5(@z435KQ&rQwyF*J1 zLau6wy6L1tI1>LMGp?4^C`gn_9*iT(f)7H8vPLr7Z-<`t9^q+fO1dz$$mY%ZfJTj>(D$5*^q|s<$Vhu-xsqvSuC_dVK11X>FtCjx zXp4{29$)J9>GyGU4`_UUTAa@P+xvrKQfw$HGdb<)8&=TZuynXhu*-PGv@0D%(wWcM(2%{mF0hIdjX2Zu>s#vYkhH&OHvId+tMIj(f;@!u zFOym0sD?`KG?K`ISpay$m$UE)_S0++;z@EXX*QEe4AzIE#paoO1+;6jZHo$u;*}j* zZ^GZ^gM;bXO0A1CWTK-)6tK$T`RmuahaZBAGnK~X%(251b$JS? zBZLM*9vGcuT9GV~g+J;?_4@k_$z<>`Ege8UW2qM3aEj&-A-K|8(2V+V=-OmE8j~qe ziQIizyOOqsrm=AuZKIp1j=C9X>a_XRjjF@d6oH!hLpo{XSPT0{Jp*cqsq*9g9*-=X zOA|qP5ZA;y;)H#jWXSeD%IaLU6K`(yr@>)+10_^;>eW=cP}by%q_tF-Y^_GPX>yds z%dINPtXGsqT|gu+;hMBW#CVbA{%(vk&v=BvKlsFAlsG4k;ru}Q)2Lmk+L874+Bpu| z#^HB|OiP}{P||iL2B$0cyHZSrN=1y9bwQ6>e74!Bh{~ukG?L3g8Gx1I4R2~@s>HrJ zEU;Gud_(QvL8q9Z+NRJal`mJXC*qmD?5GWk_;x!p%;^El9Ho8q0Dcw+2QM*!ef& zjQLiXBj?0*b+-EJnIVlnn|Y-Q3`aQg)2j;O%}D_HbQb(*_^pWe`PhB&-&=1vmEAaR zlwFHU*|I~Qc;~I#RT5xnF%;W&k1c&wJ8B~olViN=9MsDxf=yOeb@R^h+ik9pfo}|2 z5}%5!Sh@L{(EXhdM`H!O{`CR8XS}$WJ5+ocQCC9xs_DS_;=M_W3!KILh3&5G+%>rD zZ(MahN5`;mqNcW{Lq6=?8JW8qd*9X4vO?g#qwGfpz-GPMHY;Ft zv5MTaGlE)oA0;J*cmO&BZd}b4*UNkFHtr0fDC3^(RGJDf3v7nJiNH=7)W@xE_Kwf2 zX)3Go^Uqb5$z&_@Ih>5=RM`y1TDEM4R=!yuQ@pj6)e=Zx*U2OVXjyDNaOGQydHB458kUNm>E(hYwJ;pL>dgvWZv8IhB%{r=n>iKDs@nkaa zSJZ@P)A-5b^h*A4bQLXPg z`1gZt+Tfb^bz?<_6lr89(@F#R`gA>F{{WW1$j!p>Rdxp5?cKul3bKC*!)=<}4n4uR z)8#*LUo2PS(qkv{Z)X-y$EWEy(9>ZK70)Yde@tyH~wv+&J(gr2RhFBQVP zR1HG3LKGc9;+P{f>eqIk^2X|2ufI1ue`lQeEsVkLS{}B?Qcaq~ZR}P*eoc?T@w zHYH}|r`$Pga?JDN@jr01)wESn3YJy{iS*lC7gn*GZTj9hPj*2kPob?SPno4hkUbJj z%d#YQFtc2vvXu+~?Q$@{1Kp>ME1xsdcgwE5_#g0#Gtil?<=I_})h)O;7U9fwrt;Vu z8i^YRyt@ehJPNB z_PJ^XP+E$?bmI%=YFpHGCVk)eX>5Jc<-OONd6HAhwgO3ttRzb$k(1ztU|OIPshf(G zRIM}7tJ|M9J`Z_wd!Co%?^45wc6)dRp+o}V^S)#C%2EO3PpHv^3PpPPI={foti;u%-4jJ zO=+kpP-Ur$1yNo_C0T=xzzA@|qBrt`HT;(=`_DIm`4NfObN4>-$z=CGU~Ylc+1&HT zR}K_}%H?-n!KTL1)l=?jd`xdfX`leq&Rx`Cbdn(pZ(MH4@5HGLp>oM^rjkvl7}xNhhjy`5p0};#@oLq`Pn7 zR^RRppTyN;YPTk17rSzqtTy4rZ)`qZnrwYW3m2TK%I-a_4J8z`^)%J7WSwdrVD#w% z#Aki*Q&r25nKnlD-Frw+l9~LK85)zfvpCZ} zN}=x3PWq*hxn?JyauM5Y7y%`^AINoyjn5m@PSQuYO^g-Guonf`2+zoe{jh!oIScI}8kT+P;mCt*eZw zu{Q!a%BZ;Gk8U>CXy52V{2f1U?tb=^)j47F0RI4!pyFSJ)cCoLe$3ptYz;!6^Hs>X zItf5LEb&X=kc%Iva7VN^9KUTkmDES`=ux-(vvU&TYLh#i@uWorDX)P=SC)3%)pG}A!paZ#ub z&2#*^a!;7QEIQJ9N~d1b+s%lYIq9llr2ZuhHB19cRS{IuOH&bLPBjziLP6mB4cvQu z7zD{@`HKGllc_gs_k_%2`c3*a`4#~F#sjM>_;dW~@wxg zags?eUn2OjbP)+D=f>^~V}9)=RV>j@1mHYwjsf-w-FYVWZY@6C3&Z%3=N@#g`FfeT zYuxJ{)#8JEb%yK?$=A0&L5RgYPxv~zUbXEy?~Koo%V75u-!lFH_7)<#TCK?|MZ9|p zrEs}Ac_^zkw{hU1il(DGv?+0pAzbiM8Y?YqaWeU23CV7-xsnK~2gMN-KWMK4JwIos zQgCs*MvHMe!FONNolj$$)MQei`5raF9(@Sg0;a#>@NUZM6q~-kmuG4)pvYq@VVgIU z=_*aY{{U|`-O4pe%^v0J0BTG$mD&)m9ay5ny*Z?bXzq0;-m)W$b+P^p&{%xh)kdP~(=Gp=ltlsEZv&N>d5slg0r2fJDu= za*oNiZgcL|mh3MiuNEa&R#>W>DQ`2znDgrkIk(?Fb>{9^v*kV3;vd~ml|QE%q>^}I zk%?So)i|n}3gpy*)>v?<8CC%pF>8>ishdrf+_M4)#x=Wl+{dQ@XnfJ-(ZsuWDjxRi&FHj=)q>*3#ti zK15il(r9FaO(L_YK*QUseCZRIBQGs5I8^l9J4L;S;7VVh2u?d(Pz-_rt~iZEaXfm+u3X!Fz2zHMxY({FX(NwR znq-1aZ6VUtZW{0%kyud$K&j}Kc1QCi`EP~o&7p?)$G1AiI zHWM|3uf$b#M`0XIPTs`gtMQw&2Q5uBe_=sWI=wo)gUD1H*z(jDmh#-9Xqg&>P!dim zq+n>Kahm3|$3QM?_ffffcC@oMZE?5F0?4i$u9fc6>PoYT^@60gX-Y1Td%Cjkk3Y=GjLo7LDlkMLj zFPa$VNM`mngE61%$K1+PW?B4GAPx245zRC7BFE_cWsGDu|zU7+{nZwj=-N~NC?4G#k#Hnmm zZc3)VbLEo1H5yVJ+>}*SUuy7EJTUti10a1NvHoxMRQdH4EHId&E})(~F`hN~c@Hj- zzbG(Nc+4K(&PCW%l(_-8=r)4&<_|r&cZSr(?mWID`|sX+yJ_cg*-WKI6L0OU(VN6! zYblnVj-&XIsHUDNjSJOO7w_Pk5M0;18hX$ZT>74m`7of~!o<2sjEz82fr_Z97@%7E z{>t>X_}#I3qZ3oN^ZUPd;b^xNUKj4RhSH|R=S@r-DmKg0Rc{)qdYmp_ZPiZ{P|K0a zQ)Q}XXzKCqiAgw>?Hpx!HNz#&lqCTbB#g201aJ$0I>{}P!)ms<+f4UJg~8G&XtAwm z#Vc274NfagG$Mnc(|GNAxc+E&cHeCF)y-4o_is~eEavRbR8H{Hbw1SV-ItZF%H^>; zdZQarOSdsm;ize&%uP)t6m>N5i@A_LyH#6nwjM45nh|AEj!)@qkx5U}q$BV)`pNlU3IJe&NP-Pl(7cXWirioI zeNX#)d-XuaRq?88sDslyyK0(XJdl+v#hyk`@!f*y(mA@454%^_r;_eOH4ToL>h^Rm zVycqd`eIeVS{h7KWF=zIE+{~krG}q&)C30MWl+dgaEY{)jZvc^ZF5&p+YPOaIwzLUt**Ywu)-u+io zS3^~gnRb5Z$VWi*)sZ|hBja+7lg1t#>D3VmKp=Y#-}09)?h>Ta*bfy=Y6(;M)61zJ zWcTyjUSGDB&c}P#Z0bQ-BS`@HuA$oAgk*Hvi|fwM#ceu{yT<&I?_5^St;@xilWgO+ zJscSN{Df6aSsGVT#fwGBQLSs4e%*(O=98Xp3I*IhvT~z*v$3|azVZKpzPeV}j_h9yKeOL5`7b}U()I*KM)NM*R zs_|8mx}euy?x<*-rj5?yG@W>AKtbSj;59xn%a!+i5D95&PzLx( zF$pTIFGEl` zH8iU#z{b-gWH15b=S}iUs8Kl%`}cE^NlcL=1>j3W1Flk4P#j4btaVoWlc)J@YJAyejq4%X6qfd*AsJ$w`8uCXxc@=8yWxEeDIY; literal 0 HcmV?d00001 diff --git a/user/mods/GamblerTrader/src/Gamble.ts b/user/mods/GamblerTrader/src/Gamble.ts new file mode 100644 index 0000000..415b2ac --- /dev/null +++ b/user/mods/GamblerTrader/src/Gamble.ts @@ -0,0 +1,414 @@ +import { DependencyContainer } from "tsyringe"; +import { ILogger } from "@spt/models/spt/utils/ILogger"; +import { RandomUtil } from "@spt/utils/RandomUtil"; +import { HashUtil } from "@spt/utils/HashUtil"; +import { IAddItemDirectRequest } from "@spt/models/eft/inventory/IAddItemsDirectRequest"; +import { Item } from "../common/tables/IItem"; + + +import { ItemCreator } from "./itemCreator"; +import { Keys } from "./containers/keys"; +import { Stims } from "./containers/Stims"; +import { Backpacks } from "./containers/Backpacks"; +import { Rigs } from "./containers/Rigs"; +import { Headsets } from "./containers/Headsets"; +import { Ammo } from "./containers/Ammo"; +import { Melees } from "./containers/Melees"; +import { MysteryContainer } from "./MysteryContainer"; +import { Foods } from "./containers/Foods"; + + +export class Gamble { + + public newItemsRequest: IAddItemDirectRequest; + public name: string; + private count: number; + private mysteryContainer: MysteryContainer; + private currentID: string; + private currentCaliber: string; + private currentMagazine: string; + private currentMagazineMaxAmmo: number; + private currentWeaponType: string; + private currentHeadsetCompatible: boolean; + private container: DependencyContainer; + private hashUtil: HashUtil; + private logger: ILogger; + private randomUtil: RandomUtil; + private config: any; + + constructor(container: DependencyContainer, config: any, logger: ILogger, name :string){ + this.name = name.replace('gambling_', ''); + this.logger = logger; + this.container = container; + this.config = config; + this.count = 0; + this.randomUtil = container.resolve("RandomUtil"); + this.hashUtil = container.resolve("HashUtil"); + this.mysteryContainer = new MysteryContainer(config, logger); + this.newItemsRequest = { + itemsWithModsToAdd: [], + foundInRaid: true, + useSortingTable : true + }; + + } + + public newGamble(name: string = this.name, roll: number = this.randomUtil.getFloat(0,100)): []{ + //console.log('NEW GAMBLE: Creating ' + name + ' roll = ' + roll) + + switch(name){ + case 'wallet': + case '100k': + case '500k': + case '1mil': + case 'roubles': + case 'bitcoin': + case 'gpcoin': + case 'keycard': + case 'key': + case 'stim': + case 'medical': + case 'food': + case 'loadout_grenade': + case 'loadout_facecovers': + case 'loadout_food': + case 'loadout_drink': + case 'loadout_light_bleed': + case 'loadout_heavy_bleed': + case 'loadout_stim': + case 'loadout_splint': + case 'loadout_healing': + case 'melee': + case 'headset': + case 'backpack': + case 'rig': + case '7.62x25': + case '9x18': + case '9x19': + case '9x21': + case '.357': + case '.45': + case '4.6x30': + case '5.7x28': + case '5.45x39': + case '5.56x45': + case '.300': + case '6.8x51': + case '7.62x39': + case '7.62x51': + case '7.62x54': + case '.338': + case '9x39': + case '.366': + case '12.7x55': + case '12/70': + case '20/70': + case '23x75': + this.openReward(name, roll); + break; + case 'weapon': + case 'average_weapon': + case 'default_weapon': + case 'premium_weapon': + case 'helmet': + case 'armor': + case 'premium_armor': + this.openPreset(name, roll); + break; + case 'loadout': + this.openLoadoutContainer(name); + break; + case 'premium_loadout': + this.openLoadoutContainer(name, 10.0); + break; + default: + this.logger.error(`[GamblerTrader] This Mystery Container Doesn't exist! Contact Author!`); + } + + if (this.mysteryContainer.isAmmo(this.name)) { + this.newItemsRequest.foundInRaid = this.config.container_config["all_ammo_rewards_found_in_raid_status"]; + } else { + this.newItemsRequest.foundInRaid = this.config.container_config[this.name + "_rewards_found_in_raid_status"]; + } + return this.newItemsRequest; + } + + // Opens all rewards from the loadout container + private openLoadoutContainer(name: string = this.name, roll: number = this.randomUtil.getFloat(0,100)){ // 74.3 - 82 is meme // 82 MAX + this.logger.info(`[GamblerTrader][${name}] The container roll is: ${roll}!`); + const rewards = this.mysteryContainer.getGuaranteedRewards(name); + const randomness = this.mysteryContainer.getGuaranteedRandomness(name); + let currentCaliber: string, currentMagazine: string, currentMagazineMaxAmmo: number, currentWeaponType : string; + + if (roll > 90) { // _scav + roll = this.randomUtil.getFloat(44.3, 74.3); + //roll = 65; + } else if (roll > 82) { // _decent + roll = this.randomUtil.getFloat(19.3, 44.3); + //roll = 38; + } + + for(let i = 0; i < rewards.length; i++) { + const current = rewards[i]; + + if (this.mysteryContainer.getName(current)) { // Rewards is a container + + if(currentWeaponType == '_meme') { + this.newGamble(current, this.randomUtil.getFloat(5,65)); + + } else if (this.currentWeaponType == '_meta') { + + this.newGamble(current, this.randomUtil.getFloat(5,25)); + + } else if (this.currentWeaponType == '_decent') { + + this.newGamble(current, this.randomUtil.getFloat(12,50)); + + }else if (this.currentWeaponType == '_scav') { + + this.newGamble(current, this.randomUtil.getFloat(35,70)); + + }else{ + if (randomness[i]) { + this.newGamble(current); + } else { + this.newGamble(current, roll); + } + } + + if(current === 'helmet') { + if (!this.currentHeadsetCompatible) { + i++; // Skip the headset reward + } else if (this.mysteryContainer.items['helmet'].headset_incompatible_helmets.includes(this.currentID)) { + i++; // Skip the headset reward + } + } + if (current === 'headset'){ + if (this.currentID == '5c06c6a80db834001b735491') { + this.openReward('headset', roll, '5c06c6a80db834001b735491', false, 1); + continue; + } + } + + if (current === 'armor'){ + const currentID = this.currentID; + let truth = false; + if (currentID) { + truth = true; + } + if (currentID && this.mysteryContainer.items['armor'].armor_rigs.includes(currentID)) { + i++; // Skip the rig reward + } + } + + if(current === 'weapon') { // Ammo and Magazine generation + currentCaliber = this.currentCaliber; + currentMagazine = this.currentMagazine; + currentMagazineMaxAmmo = this.currentMagazineMaxAmmo + currentWeaponType = this.currentWeaponType; + let magazineCount = 3; + + const badMagazines = [ + '633ec6ee025b096d320a3b15', // RSh-12 12.7x55 5-round cylinder + '5ae0973a5acfc4001562206c', // Mosin Rifle 7.62x54R 5-round magazine + '587df3a12459772c28142567' // SKS 7.62x39 10-round internal box magazine + ] + + //push magazines and ammo + const caliber = this.mysteryContainer.items['ammo'].BSGCalibers[currentCaliber]; + if (caliber != '20x70' && caliber != '23x75' && caliber != '12/70' && caliber != '.357' && !badMagazines.includes(currentMagazine)) { + //console.log('caliber: ' + caliber + ' magazine: ' + currentMagazine) + this.openReward(caliber, roll, currentMagazine, false, 1); + this.openReward(caliber, roll, currentMagazine, false, 1); + } + + let tempRoll: number; + let min, max = 0; + // Depending on the ammo type, we want to generate a different rarity of ammo from the temproll + switch(currentWeaponType) { + case '_meme': + min = 5; + max = 30; + break; + case '_decent': + min = 10; + max = 45; + break; + case '_meta': + min = 2; + max = 26; + break; + default: + min = 10; + max = 90 + tempRoll = roll; + break; + } + + if (caliber == '20x70' || caliber == '23x75' || caliber == '12/70') { + currentMagazineMaxAmmo = 10; + } + + let ammoID: string; + tempRoll = this.randomUtil.getFloat(min, max); // random roll for each ammo reward + for(let i = 0; i < magazineCount; i++){ + + if (!ammoID) { + this.openReward(caliber, tempRoll, 'NaN', true, currentMagazineMaxAmmo); + ammoID = this.currentID; + } else { + this.openReward(caliber, tempRoll, ammoID, true, currentMagazineMaxAmmo); + } + } + } + + } else { // Reward is an item + const reward_amount = this.mysteryContainer.getRewardAmount(name, i); + const stackable = this.mysteryContainer.getStackable(name, i); + + if(!stackable){ + //console.log('OPEN GUARANTEED REWARDS: Item exists and NOT stackable... Adding to newItemsRequest...') + for(let i = 0; i < reward_amount; i++){ + this.newItemsRequest.itemsWithModsToAdd[this.count] = [this.newItemFormat(current)]; + this.count++; + } + + } else { + //console.log('OPEN GUARANTEED REWARDS: Item exists and is stackable... Adding to newItemsRequest...') + this.newItemsRequest.itemsWithModsToAdd[this.count] = [this.newItemFormat(current, reward_amount)]; + this.count++; + } + } + } + } + + private openReward(name: string = this.name, roll: number = this.randomUtil.getFloat(0,100), id: string = 'NaN', stackable: boolean = false, reward_amount: number = undefined) { + this.logger.info(`[GamblerTrader][${name}] The container roll is: ${roll}!`); + const odds: Array = this.mysteryContainer.getOdds(name); + let guaranteed_rewards = this.mysteryContainer.getGuaranteedRewards(name); + let reward_rolls: Array = this.mysteryContainer.getRewardRolls(name); + let generatedRewards = []; + + /* // Not Implemented Yet... + if (guaranteed_rewards) { + this.openGuaranteedRewards(name, roll); + return; + } + */ + + // If there is no defined ID, we need to generate a random item with a determined amound of rolls for each rarity (i.e. Medical container) + if (id === "NaN" && reward_rolls) { + const rewards = this.mysteryContainer.getRewards(name); + for(let i = 0; i < rewards.length; i++) { + for(let j = 0; j < reward_rolls[i]; j++) { + const item = this.mysteryContainer.getReward(name, i); + if (item == "NaN") { // Nothing + continue; + } + this.currentID = item; + this.newItemsRequest.itemsWithModsToAdd[this.count] = [this.newItemFormat(item)]; + this.count++; + } + } + } + + // If there is no defined ID, we need to generate random reward(s) based off property (rolls) + if (id === "NaN" && !reward_rolls) { + for(let i = 0; i < odds.length; i++) { + if(roll <= odds[i]) { + //console.log('WIN! Creating ' + name + ' index = ' + i + ' rewards = ' + this.mysteryContainer.getReward(name, i)) + id = this.mysteryContainer.getReward(name, i); + this.currentID = id; + if(!reward_amount){ // determined amount to receive + reward_amount = this.mysteryContainer.getRewardAmount(name, i); + } + if(!stackable){ // Item is not stackable + stackable = this.mysteryContainer.getStackable(name, i); + } + break; + } + } + } + + + if(this.config.debug) { + this.logger.info("[GamblerTrader] Weapon Mystery Box Information..."); + this.logger.info(id); + } + + if (id !== "NaN" && !reward_rolls) { + if(!reward_amount){ // ammo has min and max amount instead of a fixed amount + reward_amount = this.mysteryContainer.getRandomAmount(name); + } + if(!stackable){ + for(let i = 0; i < reward_amount; i++){ + this.newItemsRequest.itemsWithModsToAdd[this.count] = [this.newItemFormat(id)]; + this.count++; + } + } else { + this.newItemsRequest.itemsWithModsToAdd[this.count] = [this.newItemFormat(id, reward_amount)]; + this.count++; + } + + } else { + this.logger.info(`[GamblerTrader][${name}] Case Opened... Received Nothing... Better luck next time :)`); + } + } + + private openPreset(name: string = this.name, roll: number = this.randomUtil.getFloat(0,100)){ + this.logger.info(`[GamblerTrader][${name}] The container roll is: ${roll}!`); + //console.log('\nopenPreset()'); + // ItemCreator stores all preset creation functions + let item = new ItemCreator(this.container); + let preset: Item[] = []; + const odds: Array = this.mysteryContainer.getOdds(name); + + for(let i = 0; i < odds.length; i++) { + if(roll <= odds[i]) { + const parent = this.mysteryContainer.getParent(name); + preset = item.createPreset(parent, this.mysteryContainer.getRarity(parent, i)); + this.currentID = preset[0]._tpl; + + if (name === 'weapon' || name === 'premium_weapon') { + // Store values for possible future use + this.currentCaliber = item.caliber; + this.currentMagazine = item.magazine; + this.currentWeaponType = item.weaponType; + this.currentMagazineMaxAmmo = item.magazineMaxAmmo; + } + if (name === 'helmet') { + this.currentHeadsetCompatible = item.headsetCompatible; + } + break; + } + } + + if(this.config.debug) { + this.logger.info("[GamblerTrader] Weapon Mystery Box Information..."); + this.logger.info(preset); + } + + if (preset.length != 0) { + this.newItemsRequest.itemsWithModsToAdd[this.count] = [...preset]; + this.count++; + + } else { + this.logger.info(`[GamblerTrader][Weapon] Case Opened... Received Nothing... Better luck next time :)`); + } + + } + + + private newItemFormat(tpl: string, count = undefined) { + + const item = { + _id: this.hashUtil.generate(), + _tpl: tpl, + parentId: "hideout", + slotId: "hideout", + upd: {StackObjectsCount: count ? count : 1} + } + + return item; + } +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/MysteryContainer.ts b/user/mods/GamblerTrader/src/MysteryContainer.ts new file mode 100644 index 0000000..140c5b6 --- /dev/null +++ b/user/mods/GamblerTrader/src/MysteryContainer.ts @@ -0,0 +1,338 @@ +import { Ammo } from "./containers/Ammo"; +import { Armors } from "./containers/Armors"; +import { Backpacks } from "./containers/Backpacks"; +import { Foods } from "./containers/Foods"; +import { Headsets } from "./containers/Headsets"; +import { Helmets } from "./containers/Helmets"; +import { Keycard } from "./containers/Keycard"; +import { Melees } from "./containers/Melees"; +import { PremiumArmors } from "./containers/PremiumArmors"; +import { PremiumWeapons } from "./containers/PremiumWeapons"; +import { Rigs } from "./containers/Rigs"; +import { Stims } from "./containers/Stims"; +import { Wallet } from "./containers/Wallet"; +import { Weapons } from "./containers/Weapons"; +import { Keys } from "./containers/keys"; +import { FlipRouble } from "./containers/FlipRouble"; +import { FlipGPCoin } from "./containers/FlipGPCoin"; +import { FlipBitcoin } from "./containers/FlipBitcoin"; +import { Loadouts } from "./containers/Loadouts"; +import { Medical } from "./containers/Medical"; +import { LoadoutFood } from "./containers/LoadoutFood"; +import { Loadoutdrink } from "./containers/LoadoutDrink"; +import { LoadoutLightBleed } from "./containers/LoadoutLightBleed"; +import { LoadoutHeavyBleed } from "./containers/LoadoutHeavyBleed"; +import { LoadoutHealing } from "./containers/LoadoutHealing"; +import { LoadoutGrenade } from "./containers/LoadoutGrenade"; +import { LoadoutSplit } from "./containers/LoadoutSplint"; +import { LoadoutFacecovers } from "./containers/LoadoutFacecovers"; +import { LoadoutStim } from "./containers/LoadoutStim"; +import type { itemProps } from "./MysteryContainerInfo"; +import { MysteryContainerInfo } from "./MysteryContainerInfo"; +import { CoinFlip500k } from "./containers/CoinFlip500k"; +import { CoinFlip100k } from "./containers/CoinFlip100k"; +import { CoinFlip1Mil } from "./containers/CoinFlip1Mil"; +//import { AverageWeapons } from "./containers/AverageWeapons"; +//import { DefaultWeapons } from "./containers/DefaultWeapons"; + +class Container { + + public name: string; + public parent: string + public rarities: Array; + public odds: Array; + public stackable: Array; + public min: number; + public max: number; + public isAmmo: boolean; + public isPreset: boolean; + public override: {}; + public rolls: number; + public rarity_average_profit: Array; + public profit_percentage: number; + public guaranteed_rewards: Array; + public guaranteed_stackable: Array; + public guaranteed_reward_amount: Array; + public guaranteed_randomness: Array; + public reward_amount: Array; + public reward_rolls: Array; + public rewards: any; + public presets_invalid_tpls: Array; + public calculate_preset_prices: boolean; + public presets: Array; + + constructor(name: string) { + this.name = name; + this.parent = ''; + this.rarities = []; + this.odds = []; + this.stackable = []; + this.override = {}; + this.rarity_average_profit = []; + this.profit_percentage = 0; + this.reward_amount = []; + this.rewards = []; + this.presets_invalid_tpls = []; + this.presets = []; + } +} + +export class MysteryContainer { + + private config; + private logger; + private containers; + private containerInfo: Record; + private names; + public items; + public simulation; + public override; + + constructor(config, logger){ + this.config = config; + this.logger = logger; + this.containerInfo = MysteryContainerInfo(this.config); + this.names = [ + 'wallet', '100k', '500k', '1mil', 'keycard', 'key', 'stim', 'medical', 'food', 'melee', + 'backpack', 'rig', 'weapon', 'premium_weapon', 'helmet', + 'headset', 'armor', 'premium_armor', 'roubles', 'bitcoin', 'gpcoin', + 'loadout', 'premium_loadout', 'loadout_grenade', 'loadout_facecovers', 'loadout_food', 'loadout_drink', 'loadout_light_bleed', 'loadout_heavy_bleed', 'loadout_stim', 'loadout_splint', 'loadout_healing', 'ammo' + ]; + this.simulation = [] //['armor', 'premium_armor', 'headset', 'rig', 'backpack', 'key', 'melee', 'stim', 'food', 'keycard']; + this.override = ['ammo', 'armor', 'weapon', 'helmet']; + this.items = { + wallet: new Wallet(), + '100k': new CoinFlip100k(), + '500k': new CoinFlip500k(), + '1mil': new CoinFlip1Mil(), + keycard: new Keycard(), + key: new Keys(), + stim: new Stims(), + medical: new Medical(), + food: new Foods(), + melee: new Melees(), + backpack: new Backpacks(), + rig: new Rigs(), + helmet: new Helmets(), + headset: new Headsets(), + weapon: new Weapons(), + //default_weapon: new DefaultWeapons(), + //average_weapon: new AverageWeapons(), + premium_weapon: new PremiumWeapons(), + armor: new Armors(), + premium_armor: new PremiumArmors(), + ammo: new Ammo(), + roubles: new FlipRouble(), + bitcoin: new FlipBitcoin(), + gpcoin: new FlipGPCoin(), + loadout: new Loadouts(), + premium_loadout: new Loadouts(), + loadout_grenade: new LoadoutGrenade(), + loadout_facecovers: new LoadoutFacecovers(), + loadout_food: new LoadoutFood(), + loadout_drink: new Loadoutdrink(), + loadout_light_bleed: new LoadoutLightBleed(), + loadout_heavy_bleed: new LoadoutHeavyBleed(), + loadout_stim: new LoadoutStim(), + loadout_splint: new LoadoutSplit(), + loadout_healing: new LoadoutHealing() + } + this.containers = this.setContainers() + } + + private setContainers(): { [key: string]: Container } { + const containers: { [key: string]: Container } = {}; + + const generateAmount = (length: number, value: boolean | number) => new Array(length).fill(value); + + const calculateOddsAndRewards = (container: Container, item: any) => { + for(let j = 0; j < container.rarities.length; j++){ + const key = `${container.name}${container.rarities[j]}`; + + if(j == 0) { + container.odds[j] = this.config.odds[key]; + } else { + container.odds[j] = this.config.odds[key] + container.odds[j-1]; + } + container.rewards[j] = item.rewards? [...item.rewards[j]] : [] + } + }; + + const applyOverrides = (container: Container, item: any, isAmmo: boolean) => { + if (this.override.includes(container.name) || isAmmo) { + container.override = this.config.mystery_container_override_price[container.parent]; + container.stackable = item.stackable || generateAmount(container.rarities.length, true); + } + if (!isAmmo) { + container.reward_amount = item.reward_amount || generateAmount(container.rarities.length, 1); + container.stackable = item.stackable || generateAmount(container.rarities.length, false); + if (item.is_preset) container.isPreset = true; + } else { + container.isAmmo = true; + } + }; + + const setContainerProperties = (container: Container, name: string, item: any) => { + container.min = this.config.odds[`${name}_min`] || 1; + container.max = this.config.odds[`${name}_max`] || 1; + container.profit_percentage = this.config.odds[`${name}_profit_percentage`]; + container.presets = item.presets? [...item.presets] : []; + container.rolls = item.rolls? item.rolls : 1; + container.guaranteed_stackable = item.guaranteed_stackable? item.guaranteed_stackable : undefined; + container.guaranteed_reward_amount = item.guaranteed_reward_amount? item.guaranteed_reward_amount : undefined; + container.guaranteed_rewards = item.guaranteed_rewards? item.guaranteed_rewards : undefined; + container.guaranteed_randomness = item.guaranteed_randomness? item.guaranteed_randomness : undefined; + container.reward_rolls = item.reward_rolls? item.reward_rolls : undefined; + container.calculate_preset_prices = item.calculate_preset_prices? item.calculate_preset_prices : false; + container.presets_invalid_tpls = item.presets_invalid_tpls? item.presets_invalid_tpls : undefined; + + }; + + const createAndConfigureContainer = (name: string, item: any, isAmmo: boolean) => { + const container = new Container(name); + container.rarities = [...item.rarities]; + container.parent = item.parent; + if (item.price_generate) this.simulation.push(name); + + calculateOddsAndRewards(container, item); + applyOverrides(container, item, isAmmo); + setContainerProperties(container, name, item); + + containers[name] = container; + }; + + this.names.forEach(name => createAndConfigureContainer(name, this.items[name], false)); + this.items.ammo.names.forEach(name => createAndConfigureContainer(name, this.items.ammo.items[name], true)); + + //console.log('THE CONTAINER!!!'); + //console.log(containers); + //console.log('TO SIMULATE NAMES') + //console.log(this.simulation) + return containers; + } + + // getRandomInt(3) returns 0, 1, or 2 + private getRandomInt(max: number) { + return Math.floor(Math.random() * max); + } + + public getName(name: string): string{ + return this.containers[name].name; + } + + // Returns all containers that have presets to price calculate in the simulation + public getPresetNames(): Array{ + let names: Array = []; + for(const container in this.containers){ + if(this.containers[container].calculate_preset_prices){ + names.push(container); + } + } + return names; + } + + public getParent(name: string): string{ + return this.containers[name].parent; + } + + public getOdds(name: string): Array{ + return this.containers[name].odds; + } + + public getRarity(name: string, index: number): string{ + return this.containers[name].rarities[index]; + } + public getRarities(name: string): Array{ + return this.containers[name].rarities; + } +/* + public getOpenAll(name: string): boolean{ + return this.containers[name].openAll? this.containers[name].openAll : false; + } +*/ + public getGuaranteedRewards(name: string): Array{ + return this.containers[name].guaranteed_rewards? this.containers[name].guaranteed_rewards : undefined; + } + + public getGuaranteedRewardAmount(name: string, rarityIndex: number): any { + return this.containers[name].guaranteed_reward_amount[rarityIndex]; + } + + public getGuaranteedStackable(name: string, rarityIndex: number): boolean { + return this.containers[name].guaranteed_stackable[rarityIndex]; + } + + public getGuaranteedRandomness(name: string): Array { + return this.containers[name].guaranteed_randomness; + } + + + public getPreset(name: string, rarityIndex: number): any { + return this.containers[name].presets[rarityIndex]; + } + + // Returns random Reward from possible Rewards + public getReward(name: string, rarityIndex: number): any { + const rewards: [] = this.containers[name].rewards[rarityIndex]; + const randomNumber = this.getRandomInt(rewards.length); + return rewards[randomNumber]; + } + + // Returns the amount of rolls for each set of items in rewards + public getRewardRolls(name: string): Array{ + return this.containers[name].reward_rolls? this.containers[name].reward_rolls : undefined; + } + + // Returns all rewards from possible rewards + public getRewards(name: string): Array { + return this.containers[name].rewards; + + } + + public getRewardAmount(name: string, rarityIndex: number): any { + return this.containers[name].reward_amount[rarityIndex]; + } + + public getStackable(name: string, rarityIndex: number): boolean { + return this.containers[name].stackable[rarityIndex]; + } + + public getRandomAmount(name: string): number { + const min = this.containers[name].min; + const max = this.containers[name].max; + return Math.floor(Math.random() * (max - min + 1)) + min; + } + + public getRarityAverageProfit(name:string): number { + return this.containers[name].rarity_average_profit; + } + + public getProfitPercentage(name:string): number { + return this.containers[name].profit_percentage; + } + + public getOverride(name:string, item: any): number { + return this.containers[name].override[item]; + } + + public setRarityAverageProfit(name:string, profit: Array): void { + //return this.containers[name]['override'][item]; + this.containers[name].rarity_average_profit = profit; + } + + public isAmmo(name: string): boolean { + return this.containers[name].isAmmo; + } + + public isPreset(name: string): boolean { + return this.containers[name].isPreset; + } + + public isMysteryContainer(name: string): boolean { + return this.containerInfo[name] ? true : false; + } + + getMysteryContainerId(name: string): string { + return this.containerInfo[name]._id; + } +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/MysteryContainerInfo.ts b/user/mods/GamblerTrader/src/MysteryContainerInfo.ts new file mode 100644 index 0000000..2046d04 --- /dev/null +++ b/user/mods/GamblerTrader/src/MysteryContainerInfo.ts @@ -0,0 +1,657 @@ +export type itemProps = { + _id: string, + _name: string, + quest_id: string, + name: string, + shortName: string, + desc: string, + fleaPriceRoubles: number, + handbookPriceRoubles: number, + prefab: string, + width: number, + height: number, + barter?: Record // barter cost object: {key=itemTpl, value=amount} +} + +export function MysteryContainerInfo(config: any): Record { + return({ + wallet: { + _id: "67b7b98b4767af842e0521e7", + _name: "gambling_wallet", + quest_id: "66b57e52fcf263f4d70af3e0", + name: "Mystery Wallet", + shortName: "Mystery Wallet", + desc: `Wager your Roubles to win more or lose it all!\n==============================\n0 Roubles - ${config.odds['wallet_base']}%\n25K Roubles - ${config.odds['wallet_extra_common']}%\n50k Roubles - ${config.odds['wallet_common']}%\n100k Roubles - ${config.odds['wallet_uncommon']}%\n250k Roubles - ${config.odds['wallet_more_uncommon']}%\n500k Roubles - ${config.odds['wallet_extra_uncommon']}%\n1 Million Roubles - ${config.odds['wallet_rare']}%\n2 Million Roubles - ${config.odds['wallet_kinda_rare']}%`, + fleaPriceRoubles: 130000, + handbookPriceRoubles: 130000, + prefab: "assets/content/items/barter/item_barter_walletwz/item_barter_walletwz.bundle", + width: 1, + height: 1, + barter: undefined + }, + key: { + _id: "67b7b98b4767af842e0521e8", + _name: "gambling_key", + quest_id: "66b57e52fcf263f4d70af3e1", + name: "Mystery Key", + shortName: "Mystery Key", + desc: `So you want a brand-new key to your favorite looting spot? Or maybe you're looking for that pesky quest key. We have it all! (Seriously every single key found throughout Tarkov!) Try your luck!\n==============================\nCommon Key - ${config.odds['key_common']}%\nUncommon Key - ${config.odds['key_uncommon']}%\nRare Key - ${config.odds['key_rare']}%\nExtremely Rare Key - ${config.odds['key_extremely_rare']}%`, + fleaPriceRoubles: 90000, + handbookPriceRoubles: 90000, + prefab: "assets/content/items/spec/keys/item_key_14.bundle", + width: 1, + height: 1, + barter: undefined + }, + keycard: { + _id: "67b7b98b4767af842e0521e9", + _name: "gambling_keycard", + quest_id: "66b57e52fcf263f4d70af3e2", + name: "Mystery Keycard", + shortName: "Mystery Keycard", + desc: `So you want to get into labs? Well your in luck! I have a few gambles I can offer you for the right price. Maybe you get the card you've been dreaming of or maybe you don't!\n==============================\nAccess Keycard - ${config.odds['keycard_access']}%\nNothing - 33.3%\n21WS Keycard - ${config.odds['keycard_21WS']}%\n11SR Keycard - ${config.odds['keycard_11SR']}%\nKeycard with a blue marking - ${config.odds['keycard_blue_marking']}%\nYellow Keycard - ${config.odds['keycard_yellow']}%\nBlack Keycard - ${config.odds['keycard_black']}%\nViolet Keycard - ${config.odds['keycard_violet']}%\nBlue Keycard - ${config.odds['keycard_blue']}%\nGreen Keycard - ${config.odds['keycard_green']}%\nRed Keycard - ${config.odds['keycard_red']}%`, + fleaPriceRoubles: 325000, + handbookPriceRoubles: 325000, + prefab: "assets/content/items/barter/item_container_cardholder/item_container_cardholder.bundle", + width: 1, + height: 1, + barter: undefined + }, + bitcoin: { + _id: "67b7b98b4767af842e0521ec", + _name: "gambling_bitcoin", + quest_id: "66b57e52fcf263f4d70af4e2", // NEED REPLACE + name: "Bitcoin Coinflip", + shortName: "Coinflip", + desc: `Feeling lucky? Looking to double up your spoils? Try your luck at double or nothing!\n==============================\n2 Bitcoins - ${config.odds['bitcoin_success']}%\nNothing - ${config.odds['bitcoin_failure']}%`, + fleaPriceRoubles: 1100000, + handbookPriceRoubles: 1100000, + prefab: "assets/content/items/barter/item_barter_valuable_bitcoin/item_barter_valuable_bitcoin.bundle", + width: 1, + height: 1, + barter: { + "59faff1d86f7746c51718c9c": 1 // Bitcoin + } + }, + gpcoin: { + _id: "67b7b98b4767af842e0521ed", + _name: "gambling_gpcoin", + quest_id: "66b57e52fcf263f4d70af5e2", // NEED REPLACE + name: "GP Coin Coinflip", + shortName: "Coinflip", + desc: `Feeling lucky? Looking to double up your spoils? Try your luck at double or nothing!\n==============================\n50 GP Coin - ${config.odds['gpcoin_success']}%\nNothing - ${config.odds['gpcoin_failure']}%`, + fleaPriceRoubles: 400000, + handbookPriceRoubles: 125000, + prefab: "assets/content/items/barter/item_barter_valuable_gp/item_barter_valuable_gp.bundle", + width: 1, + height: 1, + barter: { + "5d235b4d86f7742e017bc88a": 25 // GP Coin + } + }, + medical: { + _id: "67b7b98b4767af842e0521fc", + _name: "gambling_medical", + quest_id: "66b57e52fcf263f4d70af6e2", // NEED REPLACE + name: "Mystery Medical Kit", + shortName: "Mystery Medical Kit", + desc: `Hey soldier, looking for some meds to help keep you alive out there? I have a business to run here and I don't have time to sort through all this stuff. Take a chance and see what you get!`, + fleaPriceRoubles: 350000, + handbookPriceRoubles: 350000, + prefab: "assets/content/items/containers/item_container_meds/item_container_meds.bundle", + width: 3, + height: 3, + barter: { + "5d1b3a5d86f774252167ba22": 3, // Pile of meds + "619cc01e0a7c3a1a2731940c": 2, // Medical tools + "5b4335ba86f7744d2837a264": 1 // Bloodset + } + }, + sealed: { + _id: "67b7b98b4767af842e0521e5", + _name: "event_container_airdrop_01", + quest_id: "66b57e52fcf263f4d70af3e3", + name: "Sealed Weapon Case", + shortName: "Sealed Weapon Case", + desc: "Looking for a weapon with some attachments that are left for you to attach yourself? Well do we have the perfect container for you. This is the same Sealed Weapon Case you would find in an airdrop and is not custom in any way.", + fleaPriceRoubles: 450000, + handbookPriceRoubles: 450000, + prefab: "assets/content/items/containers/item_container_weaponcase/item_container_weaponcase.bundle", + width: 5, + height: 2, + barter: undefined + }, + food: { + _id: "67b7b98b4767af842e0521e6", + _name: "gambling_food", + quest_id: "66b57e52fcf263f4d70af3e4", + name: "Mystery Food", + shortName: "Mystery Food", + desc: `Come along friend, you look a little hungry. Try your luck at scoring a delicious snack!\n==============================\nCommon Food - ${config.odds['food_common']}%\nUncommon Food - ${config.odds['food_uncommon']}%\nRare Food - ${config.odds['food_rare']}%`, + fleaPriceRoubles: 35000, + handbookPriceRoubles: 35000, + prefab: "assets/content/weapons/usable_items/item_mre/item_mre_loot.bundle", + width: 1, + height: 2, + barter: undefined + }, + melee: { + _id: "67b7b98b4767af842e0521ea", + _name: "gambling_melee", + quest_id: "66b57e52fcf263f4d70af3e5", + name: "Mystery Melee", + shortName: "Mystery Melee", + desc: `Looking for a shiny new weapon to beat your foes with? Come test your luck!\n\n PS: These weapons may or may have not been stolen from a sad little Timmy who didn't shove this up their pouch in time... poor timmy :'(\n==============================\nCommon Melee - ${config.odds['melee_common']}%\nUncommon Melee - ${config.odds['melee_uncommon']}%\nRare Melee - ${config.odds['melee_rare']}%\nExtremely Rare Melee - ${config.odds['melee_extremely_rare']}%`, + fleaPriceRoubles: 82500, + handbookPriceRoubles: 82500, + prefab: "assets/content/weapons/taiga/weapon_usvr_taiga_container.bundle", + width: 1, + height: 3, + barter: undefined + }, + stim: { + _id: "67b7b98b4767af842e0521eb", + _name: "gambling_stim", + quest_id: "66b57e52fcf263f4d70af3e6", + name: "Mystery Stimulant", + shortName: "Mystery Stimulant", + desc: `Looking for your next pick me up? We have all the drugs you could ask for!\n==============================\nCommon Stimulant - ${config.odds['stim_common']}%\nUncommon Stimulant - ${config.odds['stim_uncommon']}%\nRare Stimulant - ${config.odds['stim_rare']}%`, + fleaPriceRoubles: 70000, + handbookPriceRoubles: 70000, + prefab: "assets/content/items/barter/item_container_injectorcase/item_container_injectorcase.bundle", + width: 1, + height: 1, + barter: undefined + }, + fiftyfifty: { + _id: "67b7b98b4767af842e0521f9", + _name: "gambling_roubles", + quest_id: "66b57e52fcf263f4d70af3e7", + name: "50/50 Case", + shortName: "50/50 Case", + desc: `The true all in or nothing. This case was taken from Reshala's stash and has a 50% chance to double your money!. This could be your chance to win it all! "Scared money don't make money." -YG \n==============================\nDelicious Can of Beef Stew - 50.0%\n5 Million Roubles - 50.0%`, + fleaPriceRoubles: 2750000, + handbookPriceRoubles: 2750000, + prefab: "assets/content/items/containers/item_container_money/item_container_money.bundle", + width: 5, + height: 4, + barter: undefined + }, + weapon: { + _id: "67b7b98b4767af842e0521f0", + _name: "gambling_weapon", + quest_id: "66b57e52fcf263f4d70af3e8", + name: "Weapon Mystery Box", + shortName: "Weapon Mystery Box", + desc: `Weapon Mystery Box, contains over 1000 different possible weapons ranging from premium meta weapons, early wipe weapons, scav weapons, meme/cursed weapons, and everything between... \n==============================\nFully Modded Weapon - ${config.odds['weapon_meta']}%\nSemi-modded Weapon - ${config.odds['weapon_decent']}%\nScav Weapon - ${config.odds['weapon_scav']}%\nDefault Weapon - ${config.odds['weapon_base']}%\nMeme Weapon - ${config.odds['weapon_meme']}%%`, + fleaPriceRoubles: 200000, + handbookPriceRoubles: 200000, + prefab: "assets/content/items/spec/item_spec_weaprepair/item_spec_weaprepair.bundle", + width: 4, + height: 4, + barter: undefined + }, + '100k': { + _id: "67b7b98b4767af842e0521f2", + _name: "gambling_100k", + quest_id: "66b57e52fcf233f4d70af7d4", + name: "100K Coinflip", + shortName: "Coinflip", + desc: `Wager your Roubles to win more or lose it all!\n==============================\n200K Roubles - 50.0%\nNothing - 50.0%`, + fleaPriceRoubles: 130000, + handbookPriceRoubles: 130000, + prefab: "assets/content/items/barter/wallet/item_wallet.bundle", + width: 1, + height: 1, + barter: undefined + }, + '500k': { + _id: "67b7b98b4767af842e0521f3", + _name: "gambling_500k", + quest_id: "66b57e52fcf253f4d70af7d4", + name: "500K Coinflip", + shortName: "Coinflip", + desc: `Wager your Roubles to win more or lose it all!\n==============================\n1 Million Roubles - 50.0%\nNothing - 50.0%`, + fleaPriceRoubles: 650000, + handbookPriceRoubles: 650000, + prefab: "assets/content/items/barter/wallet/item_wallet.bundle", + width: 1, + height: 1, + barter: undefined + }, + '1mil': { + _id: "67b7b98b4767af842e0521f4", + _name: "gambling_1mil", + quest_id: "66b57e52fcf244f4d70af7d4", + name: "1 Million Coinflip", + shortName: "Coinflip", + desc: `Wager your Roubles to win more or lose it all!\n==============================\n2 Million Roubles - 50.0%\nNothing - 50.0%`, + fleaPriceRoubles: 1200000, + handbookPriceRoubles: 1200000, + prefab: "assets/content/items/barter/wallet/item_wallet.bundle", + width: 1, + height: 1, + barter: undefined + }, + backpack: { + _id: "67b7b98b4767af842e0521f5", + _name: "gambling_backpack", + quest_id: "66b57e52fcf263f4d70af7d4", + name: "Backpack Mystery Bag", + shortName: "Backpack Mystery Bag", + desc: `Need a new bag for your next loot run? Come try these bags for size!\n==============================\nCommon Backpack - ${config.odds['backpack_common']}%\nUncommon Backpack - ${config.odds['backpack_uncommon']}%\nRare Backpack - ${config.odds['backpack_rare']}%\nExtremely Rare Backpack - ${config.odds['backpack_extremely_rare']}%`, + fleaPriceRoubles: 79750, + handbookPriceRoubles: 79750, + prefab: "assets/content/items/equipment/backpack_pilgrim/item_equipment_backpack_pilgrim_christmas.bundle", + width: 5, + height: 7, + barter: undefined + }, + loadout: { + _id: "67b7b98b4767af842e0521f6", + _name: "gambling_loadout", + quest_id: "66b57e52fcf263f4d70af3ea", + name: "Mystery Loadout", + shortName: "Mystery Loadout", + desc: `Contains a random tiered loadout with mostly premium items and gear. All loadouts are randomly generated and corelate by rarity, meaning scav loadouts will generate mostly scav gear with an added chance that gear and items can upgrade tiers for added randomness. Same with all tiers of loadout. which means you will never recieve the same loadout twice. Items unboxed include:\n Weapon, Extra Magazines, Ammo, Grenades, Armor, Rig, Helmet, Headset, Backpack, Food, Drink, and Medical Supplies.`, + fleaPriceRoubles: 600000, + handbookPriceRoubles: 600000, + prefab: "assets/content/items/equipment/backpack_blackjack/item_equipment_backpack_blackjack.bundle", + width: 5, + height: 7, + barter: undefined + }, + premium_loadout: { + _id: "67b7b98b4767af842e0521f7", + _name: "gambling_premium_loadout", + quest_id: "66b57e52fcf263f4d70af3f4", + name: "Premium Mystery Loadout", + shortName: "Premium Mystery Loadout", + desc: `Containes a high-tier loadout with mostly premium items and gear. All loadouts are randomly generated and corelate by rarity, meaning high-tier loadouts will generate mostly rare gear with an added chance that gear and items can be downgraded to average tier for added randomness. All tiers of loadout can have some items and gear go up or down rarities as well. which means you will never recieve the same loadout twice. Items unboxed include:\n Weapon, Extra Magazines, Ammo, Grenades, Armor, Rig, Helmet, Headset, Backpack, Food, Drink, and Medical Supplies.`, + fleaPriceRoubles: 850000, + handbookPriceRoubles: 850000, + prefab: "assets/content/items/equipment/backpack_6sh118/item_equipment_backpack_6sh118.bundle", + width: 5, + height: 7, + barter: undefined + }, + rig: { + _id: "67b7b98b4767af842e0521f8", + _name: "gambling_rig", + quest_id: "66b57e52fcf263f4d70b0f45", + name: "Tactical Rig Mystery Box", + shortName: "Tactical Rig Mystery Box", + desc: `Looking for a brand new Tactical Rig? From Scav rigs to Boss Rigs We've got you covered!\n==============================\nScav Rig - ${config.odds['rig_scav']}%\nEarly Wipe Rig - ${config.odds['rig_early_wipe']}%\nLate Wipe Rig - ${config.odds['rig_late_wipe']}%\nBoss Rig - ${config.odds['rig_boss']}%`, + fleaPriceRoubles: 79750, + handbookPriceRoubles: 79750, + prefab: "assets/content/items/equipment/rig_boss_birdeye/item_equipment_rig_boss_birdeye.bundle", + width: 2, + height: 2, + barter: undefined + }, + helmet: { + _id: "67b7b98b4767af842e0521fa", + _name: "gambling_helmet", + quest_id: "66b57e52fcf263f4d70af3ec", + name: "Mystery Helmet", + shortName: "Mystery Helmet", + desc: `Are you tired of Chad PMCs one tapping the largest part of your player? Well I can offer protection for you! Purchase a Helmet Mystery Box today!\n==============================\nCommon Helmet - ${config.odds['helmet_common']}%\nUncommon Helmet - ${config.odds['helmet_uncommon']}%\nRare Helmet - ${config.odds['helmet_rare']}%\nExtremely Rare T-7 Thermal Helmet - ${config.odds['helmet_extremely_rare']}%`, + fleaPriceRoubles: 100000, + handbookPriceRoubles: 100000, + prefab: "assets/content/items/equipment/helmet_altyn/item_equipment_helmet_altyn.bundle", + width: 2, + height: 2, + barter: undefined + }, + headset: { + _id: "67b7b98b4767af842e0521fb", + _name: "gambling_headset", + quest_id: "66b57e52fcf263f4d70af3ed", + name: "Mystery Headset", + shortName: "Mystery Headset", + desc: `You can't expect to hear that sneaky USEC with those flimsy pair of headphones. Buy a Mystery Headset today!\n==============================\nCommon Headset - ${config.odds['headset_common']}%\nUncommon Headset - ${config.odds['headset_uncommon']}%\nRare Headset - ${config.odds['headset_rare']}%`, + fleaPriceRoubles: 79750, + handbookPriceRoubles: 79750, + prefab: "assets/content/items/equipment/headset_comtaciv/item_equipment_headset_comtaciv.bundle", + width: 2, + height: 2, + barter: undefined + }, + armor: { + _id: "67b7b98b4767af842e0521ee", + _name: "gambling_armor", + quest_id: "66b57e52fcf263f4d70af3ee", + name: "Armor Mystery Box", + shortName: "Armor Mystery Box", + desc: `Need protection? Better be safe than sorry. Otherwise, that Timmy will catch you lacking.\n==============================\nCommon Armor - ${config.odds['armor_common']}%\nUncommon Armor - ${config.odds['armor_uncommon']}%\nRare Armor - ${config.odds['armor_rare']}%`, + fleaPriceRoubles: 130000, + handbookPriceRoubles: 130000, + prefab: "assets/content/items/spec/item_spec_armorrepair/item_spec_armorrepair.bundle", + width: 4, + height: 4, + barter: undefined + }, + premium_armor: { + _id: "67b7b98b4767af842e0521ef", + _name: "gambling_premium_armor", + quest_id: "66b57e52fcf263f4d70af3ef", + name: "Premium Armor Mystery Box", + shortName: "Premium Armor Mystery Box", + desc: `So you need something a little better than a PACA? Alright... sheesh.. Since I like you a little better than the rest, I have a sweet deal I can offer you. I don't have much of these left to offer, but you can try your luck.\n==============================\nRare Armor - ${config.odds['premium_armor_rare']}%`, + fleaPriceRoubles: 350000, + handbookPriceRoubles: 350000, + prefab: "assets/content/items/spec/item_spec_armorrepair/item_spec_armorrepair.bundle", + width: 4, + height: 4, + barter: undefined + }, + premium_weapon: { + _id: "67b7b98b4767af842e0521f1", + _name: "gambling_premium_weapon", + quest_id: "66b57e52fcf263f4d70af3eb", + name: "Premium Weapon Mystery Box", + shortName: "Premium Weapon Mystery Box", + desc: `Contains a heavily modded weapon, currently contains 250+ weapons in the loot pool\n==============================\nRare Weapon - ${config.odds['premium_weapon_meta']}%`, + fleaPriceRoubles: 300000, + handbookPriceRoubles: 300000, + prefab: "assets/content/items/spec/item_spec_weaprepair/item_spec_weaprepair.bundle", + width: 4, + height: 4, + barter: undefined + }, + '7.62x25': { + _id: "67b7b98b4767af842e0521d0", + _name: "gambling_7.62x25", + quest_id: "66b59e1cfcf263f4d70af000", + name: "Mystery 7.62x25mm", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Or maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nUnboxes ${config.odds['7.62x25_min']}%-${config.odds['7.62x25_max']}% Rounds\nCommon Rounds - ${config.odds["7.62x25_common"]}%\nUncommon Rounds - ${config.odds["7.62x25_uncommon"]}%\nRare Rounds - ${config.odds["7.62x25_rare"]}%`, + fleaPriceRoubles: 10000, + handbookPriceRoubles: 10000, + prefab: "assets/content/items/ammo/patrons/patron_762x25tt_pst_gzh.bundle", + width: 1, + height: 1, + barter: undefined + }, + '9x18': { + _id: "67b7b98b4767af842e0521d1", + _name: "gambling_9x18", + quest_id: "66b59e1cfcf263f4d70af421", + name: "Mystery 9x18mm Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['9x18_min']}-${config.odds['9x18_max']} Rounds\nCommon Rounds - ${config.odds["9x18_common"]}%\nUncommon Rounds - ${config.odds["9x18_uncommon"]}%\nRare Rounds - ${config.odds["9x18_rare"]}%`, + fleaPriceRoubles: 5000, + handbookPriceRoubles: 5000, + prefab: "assets/content/items/ammo/patrons/patron_9x18pm_pbm.bundle", + width: 1, + height: 1, + barter: undefined + }, + '9x19': { + _id: "67b7b98b4767af842e0521d2", + _name: "gambling_9x19", + quest_id: "66b59e1cfcf263f4d70af422", + name: "Mystery 9x19mm Parabellum Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['9x19_min']}-${config.odds['9x19_max']} Rounds\nCommon Rounds - ${config.odds["9x19_common"]}%\nUncommon Rounds - ${config.odds["9x19_uncommon"]}%\nRare Rounds - ${config.odds["9x19_rare"]}%`, + fleaPriceRoubles: 10000, + handbookPriceRoubles: 10000, + prefab: "assets/content/items/ammo/patrons/patron_9x19_7n31.bundle", + width: 1, + height: 1, + barter: undefined + }, + '9x21': { + _id: "67b7b98b4767af842e0521d3", + _name: "gambling_9x21", + quest_id: "66b59e1cfcf263f4d70af423", + name: "Mystery 9x21mm Gyurza Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['9x21_min']}-${config.odds['9x21_max']} Rounds\nCommon Rounds - ${config.odds["9x21_common"]}%\nUncommon Rounds - ${config.odds["9x21_uncommon"]}%\nRare Rounds - ${config.odds["9x21_rare"]}%`, + fleaPriceRoubles: 19000, + handbookPriceRoubles: 19000, + prefab: "assets/content/items/ammo/patrons/patron_9x21_7n42.bundle", + width: 1, + height: 1, + barter: undefined + }, + '.357': { + _id: "67b7b98b4767af842e0521d4", + _name: "gambling_.357", + quest_id: "66b59e1cfcf263f4d70af424", + name: "Mystery .357 Magnum Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['.357_min']}-${config.odds['.357_max']} Rounds\nCommon Rounds - ${config.odds[".357_common"]}%\nUncommon Rounds - ${config.odds[".357_uncommon"]}%\nRare Rounds - ${config.odds[".357_rare"]}%`, + fleaPriceRoubles: 13000, + handbookPriceRoubles: 13000, + prefab: "assets/content/items/ammo/patrons/patron_9x33r_fmj.bundle", + width: 1, + height: 1, + barter: undefined + }, + '.45': { + _id: "67b7b98b4767af842e0521d5", + _name: "gambling_.45", + quest_id: "66b59e1cfcf263f4d70af425", + name: "Mystery .45 ACP Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['.45_min']}-${config.odds['.45_max']} Rounds\nCommon Rounds - ${config.odds[".45_common"]}%\nUncommon Rounds - ${config.odds[".45_uncommon"]}%\nRare Rounds - ${config.odds[".45_rare"]}%`, + fleaPriceRoubles: 19000, + handbookPriceRoubles: 19000, + prefab: "assets/content/items/ammo/patrons/patron_1143x23_acp_ap.bundle", + width: 1, + height: 1, + barter: undefined + }, + '4.6x30': { + _id: "67b7b98b4767af842e0521d6", + _name: "gambling_4.6x30", + quest_id: "66b59e1cfcf263f4d70af426", + name: "Mystery 4.6x30mm HK Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['4.6x30_min']}-${config.odds['4.6x30_max']} Rounds\nCommon Rounds - ${config.odds["4.6x30_common"]}%\nUncommon Rounds - ${config.odds["4.6x30_uncommon"]}%\nRare Rounds - ${config.odds["4.6x30_rare"]}%`, + fleaPriceRoubles: 23000, + handbookPriceRoubles: 23000, + prefab: "assets/content/items/ammo/patrons/patron_46x30_ap_sx.bundle", + width: 1, + height: 1, + barter: undefined + }, + '5.7x28': { + _id: "67b7b98b4767af842e0521d7", + _name: "gambling_5.7x28", + quest_id: "66b59e1cfcf263f4d70af427", + name: "Mystery 5.7x28mm FN Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['5.7x28_min']}-${config.odds['5.7x28_max']} Rounds\nCommon Rounds - ${config.odds["5.7x28_common"]}%\nUncommon Rounds - ${config.odds["5.7x28_uncommon"]}%\nRare Rounds - ${config.odds["5.7x28_rare"]}%`, + fleaPriceRoubles: 20000, + handbookPriceRoubles: 20000, + prefab: "assets/content/items/ammo/patrons/patron_57x28_ss190.bundle", + width: 1, + height: 1, + barter: undefined + }, + '5.45x39': { + _id: "67b7b98b4767af842e0521d8", + _name: "gambling_5.45x39", + quest_id: "66b59e1cfcf263f4d70af428", + name: "Mystery 5.45x39mm Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['5.45x39_min']}-${config.odds['5.45x39_max']} Rounds\nCommon Rounds - ${config.odds["5.45x39_common"]}%\nUncommon Rounds - ${config.odds["5.45x39_uncommon"]}%\nRare Rounds - ${config.odds["5.45x39_rare"]}%`, + fleaPriceRoubles: 20000, + handbookPriceRoubles: 20000, + prefab: "assets/content/items/ammo/patrons/patron_545x39_bs.bundle", + width: 1, + height: 1, + barter: undefined + }, + '5.56x45': { + _id: "67b7b98b4767af842e0521d9", + _name: "gambling_5.56x45", + quest_id: "66b59e1cfcf263f4d70af429", + name: "Mystery 5.56x45mm NATO Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['5.56x45_min']}-${config.odds['5.56x45_max']} Rounds\nCommon Rounds - ${config.odds["5.56x45_common"]}%\nUncommon Rounds - ${config.odds["5.56x45_uncommon"]}%\nRare Rounds - ${config.odds["5.56x45_rare"]}%`, + fleaPriceRoubles: 25000, + handbookPriceRoubles: 25000, + prefab: "assets/content/items/ammo/patrons/patron_556x45_m995.bundle", + width: 1, + height: 1, + barter: undefined + }, + '.300': { + _id: "67b7b98b4767af842e0521da", + _name: "gambling_.300", + quest_id: "66b59e1cfcf263f4d70af42a", + name: "Mystery .300 Blackout Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['.300_min']}-${config.odds['.300_max']} Rounds\nCommon Rounds - ${config.odds[".300_common"]}%\nUncommon Rounds - ${config.odds[".300_uncommon"]}%\nRare Rounds - ${config.odds[".300_rare"]}%`, + fleaPriceRoubles: 22500, + handbookPriceRoubles: 22500, + prefab: "assets/content/items/ammo/patrons/patron_762x35_ap.bundle", + width: 1, + height: 1, + barter: undefined + }, + '7.62x39': { + _id: "67b7b98b4767af842e0521db", + _name: "gambling_7.62x39", + quest_id: "66b59e1cfcf263f4d70af42b", + name: "Mystery 7.62x39mm Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['7.62x39_min']}-${config.odds['7.62x39_max']} Rounds\nCommon Rounds - ${config.odds["7.62x39_common"]}%\nUncommon Rounds - ${config.odds["7.62x39_uncommon"]}%\nRare Rounds - ${config.odds["7.62x39_rare"]}%`, + fleaPriceRoubles: 22500, + handbookPriceRoubles: 22500, + prefab: "assets/content/items/ammo/patrons/patron_762x39_bp.bundle", + width: 1, + height: 1, + barter: undefined + }, + '7.62x51': { + _id: "67b7b98b4767af842e0521dc", + _name: "gambling_7.62x51", + quest_id: "66b59e1cfcf263f4d70af42c", + name: "Mystery 7.62x51mm NATO Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['7.62x51_min']}-${config.odds['7.62x51_max']} Rounds\nCommon Rounds - ${config.odds["7.62x51_common"]}%\nUncommon Rounds - ${config.odds["7.62x51_uncommon"]}%\nRare Rounds - ${config.odds["7.62x51_rare"]}%`, + fleaPriceRoubles: 24500, + handbookPriceRoubles: 24500, + prefab: "assets/content/items/ammo/patrons/patron_762x51.bundle", + width: 1, + height: 1, + barter: undefined + }, + '7.62x54': { + _id: "67b7b98b4767af842e0521dd", + _name: "gambling_7.62x54", + quest_id: "66b59e1cfcf263f4d70af42d", + name: "Mystery 7.62x54mm Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['7.62x54_min']}-${config.odds['7.62x54_max']} Rounds\nCommon Rounds - ${config.odds["7.62x54_common"]}%\nUncommon Rounds - ${config.odds["7.62x54_uncommon"]}%\nRare Rounds - ${config.odds["7.62x54_rare"]}%`, + fleaPriceRoubles: 26000, + handbookPriceRoubles: 26000, + prefab: "assets/content/items/ammo/patrons/patron_762x54r_7n14.bundle", + width: 1, + height: 1, + barter: undefined + }, + '.338': { + _id: "67b7b98b4767af842e0521de", + _name: "gambling_.338", + quest_id: "66b59e1cfcf263f4d70af42e", + name: "Mystery .338 Lapua Magnum Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['.338_min']}-${config.odds['.338_max']} Rounds\nCommon Rounds - ${config.odds[".338_common"]}%\nUncommon Rounds - ${config.odds[".338_uncommon"]}%\nRare Rounds - ${config.odds[".338_rare"]}%`, + fleaPriceRoubles: 80000, + handbookPriceRoubles: 80000, + prefab: "assets/content/items/ammo/patrons/patron_86x70_lapua_magnum.bundle", + width: 1, + height: 1, + barter: undefined + }, + '9x39': { + _id: "67b7b98b4767af842e0521df", + _name: "gambling_9x39", + quest_id: "66b59e1cfcf263f4d70af42f", + name: "Mystery 9x39mm Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['9x39_min']}-${config.odds['9x39_max']} Rounds\nCommon Rounds - ${config.odds["9x39_common"]}%\nUncommon Rounds - ${config.odds["9x39_uncommon"]}%\nRare Rounds - ${config.odds["9x39_rare"]}%`, + fleaPriceRoubles: 22000, + handbookPriceRoubles: 22000, + prefab: "assets/content/items/ammo/patrons/patron_9x39_pab9.bundle", + width: 1, + height: 1, + barter: undefined + }, + '.366': { + _id: "67b7b98b4767af842e0521e0", + _name: "gambling_.366", + quest_id: "66b59e1cfcf263f4d70af430", + name: "Mystery .366 TKM Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['.366_min']}-${config.odds['.366_max']} Rounds\nCommon Rounds - ${config.odds[".366_common"]}%\nUncommon Rounds - ${config.odds[".366_uncommon"]}%\nRare Rounds - ${config.odds[".366_rare"]}%`, + fleaPriceRoubles: 17000, + handbookPriceRoubles: 17000, + prefab: "assets/content/items/ammo/patrons/patron_366_custom_ap.bundle", + width: 1, + height: 1, + barter: undefined + }, + '12.7x55': { + _id: "67b7b98b4767af842e0521e1", + _name: "gambling_12.7x55", + quest_id: "66b59e1cfcf263f4d70af431", + name: "Mystery 12.7x55mm Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['12.7x55_min']}-${config.odds['12.7x55_max']} Rounds\nCommon Rounds - ${config.odds["12.7x55_common"]}%\nUncommon Rounds - ${config.odds["12.7x55_uncommon"]}%\nRare Rounds - ${config.odds["12.7x55_rare"]}%`, + fleaPriceRoubles: 25500, + handbookPriceRoubles: 25500, + prefab: "assets/content/items/ammo/patrons/patron_12,7x55_ps12b.bundle", + width: 1, + height: 1, + barter: undefined + }, + '12/70': { + _id: "67b7b98b4767af842e0521e2", + _name: "gambling_12/70", + quest_id: "66b59e1cfcf263f4d70af432", + name: "Mystery 12/70 Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['12/70_min']}-${config.odds['12/70_max']} Rounds\nCommon Rounds - ${config.odds["12/70_common"]}%\nUncommon Rounds - ${config.odds["12/70_uncommon"]}%\nRare Rounds - ${config.odds["12/70_rare"]}%`, + fleaPriceRoubles: 14500, + handbookPriceRoubles: 14500, + prefab: "assets/content/items/ammo/patrons/patron_12x70.bundle", + width: 1, + height: 1, + barter: undefined + }, + '20/70': { + _id: "67b7b98b4767af842e0521e3", + _name: "gambling_20/70", + quest_id: "66b59e1cfcf263f4d70af433", + name: "Mystery 20/70 Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['20/70_min']}-${config.odds['20/70_max']} Rounds\nCommon Rounds - ${config.odds["20/70_common"]}%\nUncommon Rounds - ${config.odds["20/70_uncommon"]}%\nRare Rounds - ${config.odds["20/70_rare"]}%`, + fleaPriceRoubles: 16000, + handbookPriceRoubles: 16000, + prefab: "assets/content/items/ammo/patrons/patron_20x70.bundle", + width: 1, + height: 1, + barter: undefined + }, + '23x75': { + _id: "67b7b98b4767af842e0521e4", + _name: "gambling_23x75", + quest_id: "66b59e1cfcf263f4d70af434", + name: "Mystery 23x75 Rounds", + shortName: "Mystery", + desc: `Are you tired of packing your magazines full of BBs? Maybe your Looking for that extra punch in your weapon to help put down that juicy PMC in The Lab. We have all the ammunition you could ask for!\n==============================\nRandomly Unboxes ${config.odds['23x75_min']}-${config.odds['23x75_max']} Rounds\nCommon Rounds - ${config.odds["23x75_common"]}%\nUncommon Rounds - ${config.odds["23x75_uncommon"]}%\nRare Rounds - ${config.odds["23x75_rare"]}%`, + fleaPriceRoubles: 18000, + handbookPriceRoubles: 18000, + prefab: "assets/content/items/ammo/patrons/patron_23x75_shrapnel_25.bundle", + width: 1, + height: 1, + barter: undefined + }, + }) +}; diff --git a/user/mods/GamblerTrader/src/Price.ts b/user/mods/GamblerTrader/src/Price.ts new file mode 100644 index 0000000..f857fad --- /dev/null +++ b/user/mods/GamblerTrader/src/Price.ts @@ -0,0 +1,311 @@ +import { DependencyContainer } from "tsyringe"; +import { ILogger } from "@spt/models/spt/utils/ILogger"; +import { DatabaseServer } from "@spt/servers/DatabaseServer"; +import { IDatabaseTables } from "@spt/models/spt/server/IDatabaseTables"; +import { ItemHelper } from "@spt/helpers/ItemHelper"; +import { RandomUtil } from "@spt/utils/RandomUtil"; +import { Ammo } from "./containers/Ammo"; +import { MysteryContainer } from "./MysteryContainer"; +import { Gamble } from "./Gamble"; +import { Weapons } from "./containers/Weapons"; + +export class Price{ + private container: DependencyContainer; + private config: any; + private logger: ILogger + private randomUtil: any + public MysteryContainer: MysteryContainer + + constructor(container: DependencyContainer, config: any, logger: ILogger){ + this.container = container; + this.config = config; + this.logger = logger; + this.MysteryContainer = new MysteryContainer(config, logger); + this.randomUtil = this.container.resolve("RandomUtil"); + } + + /** + * Generates the prices for the mystery containers. + * + * @returns An object containing the generated container prices. + */ + public generateContainerPrices(): {} { + let containerPrices = {}; + const mysteryContainerNames = [...this.MysteryContainer.simulation, ...this.MysteryContainer.items.ammo.names]; + //console.log(mysteryContainerNames) + + for (let i = 0; i < mysteryContainerNames.length; i++) { + const name: string = this.MysteryContainer.getName(mysteryContainerNames[i]); + const parent: string = this.MysteryContainer.getParent(name); + const rarities: Array = this.MysteryContainer.getRarities(name); + const odds: Array = this.MysteryContainer.getOdds(name); + let currentPrices: Array = []; + let currentContainerPrice = this.config.container_config[name + "_price"]; + + if (this.MysteryContainer.isAmmo(mysteryContainerNames[i])) { + const amount = ((this.config.odds[name + '_min'] + this.config.odds[name + '_max']) / 2); + const items = this.MysteryContainer.items['ammo'].items[name]; + currentPrices = this.getMysteryContainerPrices(name, name, rarities, items, amount); + } else if (this.MysteryContainer.isPreset(mysteryContainerNames[i])) { + const items = this.MysteryContainer.items[parent]; + currentPrices = this.getContainerPresetPrices(name, parent, rarities, items); + } else { + const items = this.MysteryContainer.items[name]; + currentPrices = this.getMysteryContainerPrices(name, parent, rarities, items); + } + + currentContainerPrice = this.generatePrices(name, odds, currentPrices, this.MysteryContainer.getProfitPercentage(name)); + containerPrices[name + "_price"] = currentContainerPrice; + } + + //console.log("Mystery Container Prices") + //console.log(containerPrices) + return containerPrices; + } + + /** + * Calculates the price of an item based on the given parameters. + * + * @param parent - The parent item category. + * @param currentItem - The current item. + * @param amount - The quantity of the item. + * @returns The calculated price of the item. + */ + private getItemPrice(parent: string, currentItem: string, amount: number): number { + const itemHelper: ItemHelper = this.container.resolve("ItemHelper"); + const override: number = this.MysteryContainer.getOverride(parent, currentItem); + let currentPrice: number = 0; + + if (override && this.config['mystery_container_override_enable']) { + currentPrice = override; + + } else { + + const traderPrice = this.traderAssortPrice(currentItem); + const fleaPrice = itemHelper.getDynamicItemPrice(currentItem); + + if (traderPrice != 0 && fleaPrice == 0) { + currentPrice = traderPrice; + } else if (traderPrice == 0 && fleaPrice != 0) { + currentPrice = fleaPrice + } else { + currentPrice = Math.min(traderPrice, fleaPrice); // use cheapest option + } + + if (currentPrice == 0) { // Item is not sold by trader or flea, must use handbook price. Nuclear option. + currentPrice = itemHelper.getItemMaxPrice(currentItem) + //console.log(currentItem) + //console.log(currentPrice) + } + } + return currentPrice * amount; + } + + /** + * Generates the average income for a Mystery Container sorted by rarity + * + * @param name - The name of the container. + * @param parent - The parent container. + * @param rarities - An array of rarities. + * @param items - The rewards in the container. + * @param amount - The quantity of items. + * @returns An array of prices. + */ + private getMysteryContainerPrices(name: string ,parent: string, rarities: Array, items: any, amount: number = 1): Array { + let prices: Array = []; + let sum: number = 0; + + for(let i = 0; i < rarities.length; i++){ + let count = 0; + for (let j = 0; j < items.rewards[i].length; j++){ + const currentItem = items.rewards[i][j]; + let currentPrice: number = 0; + + if (currentItem == '5449016a4bdc2d6f028b456f') { // isRoubles + currentPrice = this.MysteryContainer.items[parent].reward_amount[i]; + //console.log('Roubles Price: ' + currentPrice) + } else { + currentPrice = this.getItemPrice(parent, currentItem, amount); + } + + sum = sum + currentPrice; + count++; + } + //if (name == 'key') { + //console.log(prices); + //} + sum = sum / count; + prices.push(sum); + sum = 0; + } + + + //console.log(name) + //if (name == 'key') { + //console.log(prices); + //} + + + this.MysteryContainer.setRarityAverageProfit(name, prices); + return prices; + } + + /** + * Calculates the price of a given item in the trader's assort. + * Returns 0 if the item is not sold by a trader for roubles. + * + * @param currentItem - The item for which the price needs to be calculated. + * @returns The price of the item in the trader's assortment. If no trader sells the item, returns 0. + */ + private traderAssortPrice(currentItem: string): any { + const databaseServer: DatabaseServer = this.container.resolve("DatabaseServer"); + const tables = databaseServer.getTables(); + const traderIDs = ['58330581ace78e27b8b10cee', '54cb50c76803fa8b248b4571', '5c0647fdd443bc2504c2d371', '5a7c2eca46aef81a7ca2145d', '5935c25fb3acc3127c3d8cd9', '5ac3b934156ae10c4430e83c']; + let price = 0; + + for (const traderID of traderIDs) { + const traderAssort = tables.traders[traderID].assort + for (let i = 0; i < traderAssort.items.length; i++) { + if (traderAssort.items[i]._tpl == currentItem && traderAssort.items[i].slotId == 'hideout') { + const _id = traderAssort.items[i]._id; + //console.log('Trader ID = ' + traderID + 'item TPL = ' + traderAssort.items[i]._tpl + ' Item ID = ' + _id) + price = traderAssort.barter_scheme[_id][0][0].count; + + if (price < 10) { // price is most likely a barter. This is a bad way of doing this, but fuck it. + price = 0; + continue; + } + + if (traderID == '5935c25fb3acc3127c3d8cd9'){ + price *= 142; // peacekeeper sells in dollars, must convert to roubles + } + return price; + } + } + } + return price; // No trader sells the item + } + + /** + * Generates the average income for a preset Mystery Container sorted by rarity + * + * @param name - The name of the container. + * @param parent - The parent container. + * @param rarities - An array of rarities. + * @param items - The items in the container. + * @param amount - The amount of items. Default is 1. + * @returns An array of preset prices. + */ + private getContainerPresetPrices(name: string ,parent: string, rarities: Array, items: any, amount: number = 1): Array { + const itemHelper: ItemHelper = this.container.resolve("ItemHelper"); + const weapons = new Weapons(); + let prices: Array = []; + let weaponPricesPerTier: Array = []; + let tierTotal: number = 0; + let sum: number = 0; + const helmet_slots = ['helmet_top', 'helmet_back', 'helmet_ears', 'Helmet_top', 'Helmet_back', 'Helmet_ears']; + + for(let i = 0; i < rarities.length; i++){ + let count = 0; + for(let j = 0; j < items.presets[i].length; j++) { + for(let k = 0; k < items.presets[i][j].Items.length; k++){ + + let currentPrice: number = 0; + let currentItem = items.presets[i][j].Items[k]._tpl; + + if (name == 'helmet') { + if (helmet_slots.includes(items.presets[i][j].Items[k].slotId)) continue; // skip usless helmet attachments + + //if (i == 3 && j == 0) { // Testing + //console.log(items.presets[i][j].Items[k]) + //console.log('ID = ' + currentItem); + //console.log(itemHelper.getDynamicItemPrice(currentItem)) + //console.log(itemHelper.getItemMaxPrice(currentItem)) + //console.log(this.traderAssortPrice(currentItem)) + //} + } + if (weapons.skip_base_attachments.includes(currentItem)) { // attachment is a base attachment, skip... + continue; + + } else { + // Order of prices: Override -> Min(trader, flea) -> handbook -> prices.json + currentPrice = this.getItemPrice(parent, currentItem, amount); + sum = sum + currentPrice; + } + } + count++ + weaponPricesPerTier.push(Math.floor(sum)); + sum = 0; + } + //if ( name == 'helmet') { + //console.log('Helmet Rarity = ' + rarities[i]); + //console.log(weaponPricesPerTier) + //} + const tierSum = weaponPricesPerTier.reduce((a, b) => a + b, 0); + sum = tierSum / count; + prices.push(Math.floor(sum)); + sum = 0; + weaponPricesPerTier = []; + } + //if ( name == 'helmet') { + //console.log(prices) + //} + this.MysteryContainer.setRarityAverageProfit(name, prices); + return prices; + } + + /** + * Calculates the most optimal mystery container price based on the given odds, prices, and desired profitability. + * + * @param name - name of the mystery container + * @param odds - An array of numbers representing the odds. + * @param prices - An array of numbers representing the prices. + * @param profitability - A number representing the profitability. + * @returns The calculated price generation. + */ + private generatePrices = (name: string, odds: Array, prices: Array, profitability: number) => { + let sum: number = 0; + let trackOdds = 0; + + for(let i = 0; i < odds.length; i++){ + const currentOdds = odds[i] - trackOdds; + trackOdds = odds[i] + sum += prices[i] * (currentOdds / 100); + } + sum *= profitability; + return Math.floor(sum); + } + + + /** + * Performs a loadout simulation and calculates the average price of the loadout. + * + * @returns The average price of the loadout. + */ + public loadoutSimulation = () => { + let sum = 0; + const weaponContainerPrice = 147000; + const extraItems = 5; // extra 2 mags and 3 ammo stacks + const simulations = 50000; + + for(let i = 0; i < simulations; i++) { + const gamble = new Gamble(this.container, this.config, this.logger, 'loadout'); + gamble.newGamble(); + //console.log(gamble.newItemsRequest.itemsWithModsToAdd[1][0].upd.StackObjectsCount) + + for (let j = 0; j < gamble.newItemsRequest.itemsWithModsToAdd.length; j++) { + if ( j != 0 && j != 1 + extraItems) { // Weapon, we dont price calculate + const indexItem = gamble.newItemsRequest.itemsWithModsToAdd[j][0]; + const currentItem = indexItem._tpl; + const amount = indexItem.upd ? indexItem.upd.StackObjectsCount : 1; + const itemPrice = this.getItemPrice('weapon', currentItem, amount); + sum += itemPrice; + } + } + + sum += weaponContainerPrice; + } + + return Math.floor(sum / simulations); + } +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/configLoader.ts b/user/mods/GamblerTrader/src/configLoader.ts new file mode 100644 index 0000000..3c34811 --- /dev/null +++ b/user/mods/GamblerTrader/src/configLoader.ts @@ -0,0 +1,4 @@ +export class ConfigLoader { + + public config = require("../config/config.jsonc"); +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/Ammo.ts b/user/mods/GamblerTrader/src/containers/Ammo.ts new file mode 100644 index 0000000..ee1263d --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Ammo.ts @@ -0,0 +1,591 @@ +export class Ammo { + + public parent = "ammo"; + //public price_generate = true; + + public names = [ + '7.62x25', + '9x18', + '9x19', + '9x21', + '.357', + '.45', + '4.6x30', + '5.7x28', + '5.45x39', + '5.56x45', + '.300', + '6.8x51', + '7.62x39', + '7.62x51', + '7.62x54', + '.338', + '9x39', + '.366', + '12.7x55', + '12/70', + '20/70', + '23x75', + ] + + public BSGCalibers = { // this is stupid + 'Caliber762x25TT': '7.62x25', + 'Caliber9x18PM': '9x18', + 'Caliber9x19PARA': '9x19', + 'Caliber9x21': '9x21', + 'Caliber9x33R': '.357', + 'Caliber1143x23ACP': '.45', // ?? why BSG + 'Caliber46x30': '4.6x30', + 'Caliber57x28': '5.7x28', + 'Caliber545x39': '5.45x39', + 'Caliber556x45NATO': '5.56x45', + 'Caliber762x35': '.300', + 'Caliber68x51': '6.8x51', + 'Caliber762x39': '7.62x39', + 'Caliber762x51': '7.62x51', + 'Caliber762x54R': '7.62x54', + 'Caliber86x70': '.338', + 'Caliber9x39': '9x39', + 'Caliber366TKM': '.366', + 'Caliber127x55': '12.7x55', + 'Caliber12g': '12/70', + 'Caliber20g': '20/70', + 'Caliber23x75': '23x75', + } + + public rarities = [ + "_rare", + "_uncommon", + "_common" + ] + + public items = { + "7.62x25": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "573603562459776430731618", // 7.62x25mm TT Pst gzh + ], + [ + "5735fdcd2459776445391d61", // 7.62x25mm TT AKBS + ], + [ + "573602322459776445391df1", // 7.62x25mm TT LRNPC + "573601b42459776410737435", // 7.62x25mm TT LRN + "5735ff5c245977640e39ba7e", // 7.62x25mm TT FMJ43 + "5736026a245977644601dc61", // 7.62x25mm TT P gl + "573603c924597764442bd9cb", // 7.62x25mm TT PT gzh + ], + ] + }, + "9x18": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "57371aab2459775a77142f22", // 9x18mm PMM PstM gzh + "573719df2459775a626ccbc2", // 9x18mm PM PBM gzh + ], + [ + "57372140245977611f70ee91", // 9x18mm PM SP7 gzh + "5737218f245977612125ba51", // 9x18mm PM SP8 gzh + "573718ba2459775a75491131", // 9x18mm PM BZhT gzh + ], + [ + "5737207f24597760ff7b25f2", // 9x18mm PM PSV + "573719762459775a626ccbc1", // 9x18mm PM P gzh + "57371f8d24597761006c6a81", // 9x18mm PM PSO gzh + "57371f2b24597761224311f1", // 9x18mm PM PS gs PPO + "57371eb62459776125652ac1", // 9x18mm PM PRS gs + "57371b192459775a9f58a5e0", // 9x18mm PM PPe gzh + "57371e4124597760ff7b25f1", // 9x18mm PM PPT gzh + "5737201124597760fc4431f1", // 9x18mm PM Pst gzh + "573720e02459776143012541", // 9x18mm PM RG028 gzh + ], + ] + }, + "9x19": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5c0d56a986f774449d5de529", // 9x19mm RIP + "5c925fa22e221601da359b7b", // 9x19mm AP 6.3 + "5efb0da7a29a85116f6ea05f", // 9x19mm PBP gzh + ], + [ + "5efb0e16aeb21837e749c7ff", // 9x19mm QuakeMaker + "5a3c16fe86f77452b62de32a", // 9x19mm Luger CCI + ], + [ + "58864a4f2459770fcc257101", // 9x19mm PSO gzh + "5c3df7d588a4501f290594e5", // 9x19mm Green Tracer + "64b7bbb74b75259c590fa897", // 9x19mm FMJ M882 + "56d59d3ad2720bdb418b4577", // 9x19mm Pst gzh + ], + ] + }, + "9x21": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5a26ac0ec4a28200741e1e18", // 9x21mm BT gzh + "6576f4708ca9c4381d16cd9d", // 9x21mm 7N42 "Zubilo" + ], + [ + "5a269f97c4a282000b151807", // 9x21mm PS gzh + "6576f93989f0062e741ba952", // 9x21mm 7U4 + ], + [ + "5a26ac06c4a282000c5a90a8", // 9x21mm PE gzh + "5a26abfac4a28232980eabff", // 9x21mm P gzh + ], + ] + }, + ".357": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "62330b3ed4dc74626d570b95", // .357 Magnum FMJ + ], + [ + "62330c18744e5e31df12f516", // .357 Magnum JHP + ], + [ + "62330c40bdd19b369e1e53d1", // .357 Magnum SP + "62330bfadc5883093563729b", // .357 Magnum HP + ], + ] + }, + ".45": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5ea2a8e200685063ec28c05a", // .45 ACP RIP + "5efb0cabfb3e451d70735af5", // .45 ACP AP + ], + [ + "5efb0fc6aeb21837e749c801", // .45 ACP Hydra-Shok + ], + [ + "5efb0d4f4bc50b58e81710f3", // .45 ACP Lasermatch FMJ + "5e81f423763d9f754677bf2e", // .45 ACP Match FMJ + ], + ] + }, + "4.6x30": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5ba26835d4351e0035628ff5", // 4.6x30mm AP SX + "5ba2678ad4351e44f824b344", // 4.6x30mm FMJ SX + ], + [ + "64b6979341772715af0f9c39", // 4.6x30mm JSP SX + ], + [ + "5ba26844d4351e00334c9475", // 4.6x30mm Subsonic SX + "5ba26812d4351e003201fef1", // 4.6x30mm Action SX + ], + ] + }, + "5.7x28": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5cc80f53e4a949000e1ea4f8", // 5.7x28mm L191 + "5cc80f38e4a949001152b560", // 5.7x28mm SS190 + ], + [ + "5cc80f8fe4a949033b0224a2", // 5.7x28mm SS197SR + "5cc80f67e4a949035e43bbba", // 5.7x28mm SB193 + ], + [ + "5cc86832d7f00c000d3a6e6c", // 5.7x28mm R37.F + "5cc86840d7f00c002412c56c", // 5.7x28mm R37.X + "5cc80f79e4a949033c7343b2", // 5.7x28mm SS198LF + ], + ] + }, + "5.45x39": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "61962b617c6c7b169525f168", // 5.45x39mm 7N40 + "56dfef82d2720bbd668b4567", // 5.45x39mm BP gs + "56dff026d2720bb8668b4567", // 5.45x39mm BS gs + "5c0d5e4486f77478390952fe", // 5.45x39mm PPBS gs "Igolnik" + ], + [ + "56dff3afd2720bba668b4567", // 5.45x39mm PS gs + "56dff2ced2720bb4668b4567", // 5.45x39mm PP gs + "56dff061d2720bb5668b4567", // 5.45x39mm BT gs + ], + [ + "56dff216d2720bbd668b4568", // 5.45x39mm HP + "56dff338d2720bbd668b4569", // 5.45x39mm PRS gs + "56dff421d2720b5f5a8b4567", // 5.45x39mm SP + "56dff4ecd2720b5f5a8b4568", // 5.45x39mm US gs + "56dff4a2d2720bbd668b456a", // 5.45x39mm T gs + "56dff0bed2720bb0668b4567", // 5.45x39mm FMJ + ], + ] + }, + "5.56x45": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "54527ac44bdc2d36668b4567", // 5.56x45mm M855A1 + "54527ac44bdc2d36668b4567", // 5.56x45mm M855A1 + "59e690b686f7746c9f75e848", // 5.56x45mm M995 + "601949593ae8f707c4608daa", // 5.56x45mm SSA AP + ], + [ + "54527a984bdc2d4e668b4567", // 5.56x45mm M855 + "60194943740c5d77f6705eea", // 5.56x45mm MK 318 Mod 0 (SOST) + "59e6906286f7746c9f75e847", // 5.56x45mm M856A1 + ], + [ + "5c0d5ae286f7741e46554302", // 5.56x45mm Warmageddon + "59e6927d86f77411da468256", // 5.56x45mm HP + "59e6918f86f7746c9f75e849", // 5.56x45mm MK 255 Mod 0 (RRLP) + "59e6920f86f77411d82aa167", // 5.56x45mm FMJ + "59e68f6f86f7746c9f75e846", // 5.56x45mm M856 + ], + ] + }, + ".300": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "64b8725c4b75259c590fa899", // .300 Blackout CBJ + "5fd20ff893a8961fc660a954", // .300 Blackout AP + ], + [ + "5fbe3ffdf8b6a877a729ea82", // .300 Blackout BCP FMJ + "619636be6db0f2477964e710", // .300 Blackout M62 Tracer + ], + [ + "6196365d58ef8c428c287da1", // .300 Whisper + "6196364158ef8c428c287d9f", // .300 Blackout V-Max + ], + ] + }, + "6.8x51": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "6529243824cbe3c74a05e5c1", // 6.8x51mm SIG Hybrid + ], + [ + "6529302b8c26af6326029fb7", // 6.8x51mm SIG FMJ + ], + [ + "6529302b8c26af6326029fb7", // 6.8x51mm SIG FMJ + ], + ] + }, + "7.62x39": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "59e0d99486f7744a32234762", // 7.62x39mm BP gzh + "601aa3d2b2bcb34913271e6d", // 7.62x39mm MAI AP + ], + [ + "5656d7c34bdc2d9d198b4587", // 7.62x39mm PS gzh + "64b7af434b75259c590fa893", // 7.62x39mm PP gzh + "64b7af434b75259c590fa893", // 7.62x39mm PP gzh + ], + [ + "59e4d3d286f774176a36250a", // 7.62x39mm HP + "64b7af734b75259c590fa895", // 7.62x39mm SP + "64b7af5a8532cf95ee0a0dbd", // 7.62x39mm FMJ + "59e4d24686f7741776641ac7", // 7.62x39mm US gzh + "59e4cf5286f7741778269d8a", // 7.62x39mm T-45M1 gzh + ], + ] + }, + "7.62x51": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5a608bf24f39f98ffc77720e", // 7.62x51mm M62 Tracer + "5a6086ea4f39f99cd479502f", // 7.62x51mm M61 + "6768c25aa7b238f14a08d3f6", // 7.62x51mm M80A1 + "5efb0c1bd79ff02a1f5e68d9", // 7.62x51mm M993 + ], + [ + "5e023e53d4353e3302577c4c", // 7.62x51mm BCP FMJ + "58dd3ad986f77403051cba8f", // 7.62x51mm M80 + ], + [ + "5e023e88277cce2b522ff2b1", // 7.62x51mm Ultra Nosler + "5e023e6e34d52a55c3304f71", // 7.62x51mm TCW SP + ], + ] + }, + "7.62x54": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5e023d34e8a400319a28ed44", // 7.62x54mm R BT gzh + "560d61e84bdc2da74d8b4571", // 7.62x54mm R SNB gzh + "5e023d48186a883be655e551", // 7.62x54mm R BS gs + ], + [ + "5e023cf8186a883be655e54f", // 7.62x54mm R T-46M gzh + "5887431f2459777e1612938f", // 7.62x54mm R LPS gzh + "59e77a2386f7742ee578960a", // 7.62x54mm R PS gzh + ], + [ + "64b8f7c241772715af0f9c3d", // 7.62x54mm R HP BT + "64b8f7b5389d7ffd620ccba2", // 7.62x54mm R SP BT + "64b8f7968532cf95ee0a0dbf", // 7.62x54mm R FMJ + ], + ] + }, + ".338": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5fc382a9d724d907e2077dab", // .338 Lapua Magnum AP + ], + [ + "5fc275cf85fd526b824a571a", // .338 Lapua Magnum FMJ + ], + [ + "5fc382b6d6fa9c00c571bbc3", // .338 Lapua Magnum TAC-X + "5fc382c1016cce60e8341b20", // .338 Lapua Magnum UCW + ], + ] + }, + "9x39": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5c0d688c86f77413ae3407b2", // 9x39mm BP gs + "57a0e5022459774d1673f889", // 9x39mm SP-6 gs + ], + [ + "57a0dfb82459774d3078b56c", // 9x39mm SP-5 gs + "5c0d668f86f7747ccb7f13b2", // 9x39mm SPP gs + "5c0d668f86f7747ccb7f13b2", // 9x39mm SPP gs + "61962d879bb3d20b0946d385", // 9x39mm PAB-9 gs + ], + [ + "57a0dfb82459774d3078b56c", // 9x39mm SP-5 gs + "6576f96220d53a5b8f3e395e", // 9x39mm FMJ + ], + ] + }, + ".366": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5f0596629e22f464da6bbdd9", // .366 TKM AP-M + ], + [ + "59e655cb86f77411dc52a77b", // .366 TKM EKO + ], + [ + "59e6658b86f77411d949b250", // .366 TKM Geksa + "59e6542b86f77411dc52a77a", // .366 TKM FMJ + ], + ] + }, + "12.7x55": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5cadf6eeae921500134b2799", // 12.7x55mm PS12B + ], + [ + "5cadf6ddae9215051e1c23b2", // 12.7x55mm PS12 + ], + [ + "5cadf6e5ae921500113bb973", // 12.7x55mm PS12A + ], + ] + }, + "12/70": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5d6e6911a4b9361bd5780d52", // 12/70 flechette + "5c0d591486f7744c505b416f", // 12/70 RIP + "5d6e68a8a4b9360b6c0d54e2", // 12/70 AP-20 armor-piercing slug + ], + [ + "5d6e6806a4b936088465b17e", // 12/70 8.5mm Magnum buckshot + "64b8ee384b75259c590fa89b", // 12/70 Piranha + "5d6e68c4a4b9361b93413f79", // 12/70 makeshift .50 BMG slug + ], + [ + "5d6e6772a4b936088465b17c", // 12/70 5.25mm buckshot + "5d6e67fba4b9361bc73bc779", // 12/70 6.5mm Express buckshot + "560d5e524bdc2d25448b4571", // 12/70 7mm buckshot + "5d6e68d1a4b93622fe60e845", // 12/70 SuperFormance HP slug + "5d6e6869a4b9361c140bcfde", // 12/70 Grizzly 40 slug + "5d6e68b3a4b9361bca7e50b5", // 12/70 Copper Sabot Premier HP slug + "58820d1224597753c90aeb13", // 12/70 lead slug + "5d6e6891a4b9361bd473feea", // 12/70 "Poleva-3" slug + "5d6e68dea4b9361bcc29e659", // 12/70 Dual Sabot slug + "5d6e68e6a4b9361c140bcfe0", // 12/70 FTX Custom Lite slug + "5d6e689ca4b9361bc8618956", // 12/70 "Poleva-6u" slug + ], + ] + }, + "20/70": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5d6e6a5fa4b93614ec501745", // 20/70 Devastator slug + "5d6e6a05a4b93618084f58d0", // 20/70 Star slug + "660137d8481cc6907a0c5cda", // 20/70 TSS Armor Piercing Slug + "660137d8481cc6907a0c5cda", // 20/70 TSS Armor Piercing Slug + "660137ef76c1b56143052be8", // 20/70 Dangerous Game Slug + "660137ef76c1b56143052be8", // 20/70 Dangerous Game Slug + "6601380580e77cfd080e3418", // 20/70 flechette + "6601380580e77cfd080e3418", // 20/70 flechette + ], + [ + "5d6e69c7a4b9360b6c0d54e4", // 20/70 7.3mm buckshot + "5d6e6a53a4b9361bd473feec", // 20/70 "Poleva-3" slug + "5d6e6a42a4b9364f07165f52", // 20/70 "Poleva-6u" slug + "6601380580e77cfd080e3418", // 20/70 flechette + ], + [ + "5d6e695fa4b936359b35d852", // 20/70 5.6mm buckshot + "5d6e69b9a4b9361bc8618958", // 20/70 6.2mm buckshot + "5a38ebd9c4a282000d722a5b", // 20/70 7.5mm buckshot + ], + ] + }, + "23x75": { + parent: "ammo", + rarities: [ + "_rare", + "_uncommon", + "_common" + ], + rewards: [ + [ + "5e85a9f4add9fe03027d9bf1", // 23x75mm Zvezda flashbang round + "5e85aa1a988a8701445df1f5", // 23x75mm Barrikada slug + "5e85a9a6eacf8c039e4e2ac1", // 23x75mm Shrapnel-10 buckshot + ], + [ + "5e85a9a6eacf8c039e4e2ac1", // 23x75mm Shrapnel-10 buckshot + "5f647f31b6238e5dd066e196", // 23x75mm Shrapnel-25 buckshot + ], + [ + "5f647f31b6238e5dd066e196", // 23x75mm Shrapnel-25 buckshot + ], + ] + }, + } +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/Armors.ts b/user/mods/GamblerTrader/src/containers/Armors.ts new file mode 100644 index 0000000..ff22921 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Armors.ts @@ -0,0 +1,7150 @@ +export class Armors { + + public parent = "armor"; + public price_generate = true; + + public rarities = [ + "_rare", + "_uncommon", + "_common" + ] + + public armor_rigs = [ + "5b44cad286f77402a54ae7e5", // 5.11 Tactical TacTec plate carrier (Ranger Green) + "5e4ac41886f77406a511c9a8", // Ars Arma CPC MOD.1 plate carrier (A-TACS FG) + "609e860ebd219504d8507525", // Crye Precision AVS plate carrier (Tagilla Edition) + "628b9c7d45122232a872358f", // Crye Precision CPC plate carrier (Goons Edition) + "64a5366719bab53bd203bf33", // Eagle Allied Industries MBSS plate carrier (Coyote Brown) + "628b9784bcf6e2659e09b8a2", // S&S Precision PlateFrame plate carrier (Goons Edition) + "628cd624459354321c4b7fa2", // Tasmanian Tiger SK plate carrier (MultiCam Black) + "5d5d646386f7742797261fd9", // 6B3TM-01 armored rig (Khaki) + "5c0e722886f7740458316a57", // ANA Tactical M1 plate carrier (Olive Drab) + "5ab8dced86f774646209ec87", // ANA Tactical M2 plate carrier (Digital Flora) + "5d5d87f786f77427997cfaef", // Ars Arma A18 Skanda plate carrier (MultiCam) + "60a3c70cde5f453f634816a3", // CQC Osprey MK4A plate carrier (Assault, MTP) + "60a3c68c37ea821725773ef5", // CQC Osprey MK4A plate carrier (Protection, MTP) + "544a5caa4bdc2d1a388b4568", // Crye Precision AVS plate carrier (Ranger Green) + "628dc750b910320f4c27a732", // ECLiPSE RBAV-AF plate carrier (Ranger Green) + "64a5366719bab53bd203bf33", // Eagle Allied Industries MBSS plate carrier (Coyote Brown) + "61bc85697113f767765c7fe7", // Eagle Industries MMAC plate carrier (Ranger Green) + "61bcc89aef0f505f0c6cd0fc", // FirstSpear Strandhogg plate carrier (Ranger Green) + "639343fce101f4caa40a4ef3", // Shellback Tactical Banshee plate carrier (A-TACS AU) + "5c0e746986f7741453628fe5", // WARTECH TV-110 plate carrier (Coyote) + "64a536392d2c4e6e970f4121", // WARTECH TV-115 plate carrier (Olive Drab) + "5c0e446786f7742013381639", // 6B5-15 Zh-86 Uley armored rig (Flora) + "5c0e3eb886f7742015526062", // 6B5-16 Zh-86 Uley armored rig (Khaki) + "66b6296d7994640992013b17", // Stich Profi Plate Carrier V2 (Black) + "66b6295178bbc0200425f995", // Stich Profi Stich Defense mod.2 plate carrier (MultiCam) + ] + + public rewards = [ + [ + "5fd4c474dd870108a754b241", // 5.11 Tactical Hexgrid plate carrier + "5c0e541586f7747fa54205c9", // 6B13 M assault armor (Killa Edition) + "5e9dacf986f774054d6b89f4", // FORT Defender-2 body armor + "5ca21c6986f77479963115a7", // FORT Redut-T5 body armor (Smog) + "5ca2151486f774244a3b8d30", // FORT Redut-M body armor + "5b44cf1486f77431723e3d05", // IOTV Gen4 body armor (Assault Kit, MultiCam) + "5b44cd8b86f774503d30cba2", // IOTV Gen4 body armor (Full Protection Kit, MultiCam) + "5b44d0de86f774503d30cba8", // IOTV Gen4 body armor (High Mobility Kit, MultiCam) + "5e4abb5086f77406975c9342", // LBT-6094A Slick Plate Carrier (Black) + "6038b4ca92ec1c3103795a0d", // LBT-6094A Slick Plate Carrier (Olive Drab) + "60a283193cb70855c43a381d", // NFM THOR Integrated Carrier body armor + "5b44cad286f77402a54ae7e5", // 5.11 Tactical TacTec plate carrier (Ranger Green) + "5e4ac41886f77406a511c9a8", // Ars Arma CPC MOD.1 plate carrier (A-TACS FG) + "60a3c68c37ea821725773ef5", // CQC Osprey MK4A plate carrier (Protection, MTP) + "60a3c68c37ea821725773ef5", // CQC Osprey MK4A plate carrier (Protection, MTP) + "609e860ebd219504d8507525", // Crye Precision AVS plate carrier (Tagilla Edition) + "628b9c7d45122232a872358f", // Crye Precision CPC plate carrier (Goons Edition) + "64a5366719bab53bd203bf33", // Eagle Allied Industries MBSS plate carrier (Coyote Brown) + "628b9784bcf6e2659e09b8a2", // S&S Precision PlateFrame plate carrier (Goons Edition) + "628cd624459354321c4b7fa2", // Tasmanian Tiger SK plate carrier (MultiCam Black) + "545cdb794bdc2d3a198b456a", // 6B43 Zabralo-Sh body armor (Digital Flora) + "5c0e625a86f7742d77340f62", // BNTI Zhuk body armor (Digital Flora) + ], + [ + "5ab8e79e86f7742d8b372e78", // BNTI Gzhel-K body armor + "5c0e57ba86f7747fa141986d", // 6B23-2 body armor (Mountain Flora) + "5c0e53c886f7747fa54205c7", // 6B13 assault armor (Digital Flora) + "5c0e51be86f774598e797894", // 6B13 assault armor (Flora) + "63737f448b28897f2802b874", // Hexatac HPC Plate Carrier (MultiCam Black) + "5c0e655586f774045612eeb2", // HighCom Trooper TFO body armor (MultiCam) + "64abd93857958b4249003418", // Interceptor OTV body armor (UCP) + "5f5f41476bdad616ad46d631", // NPP KlASS Korund-VM body armor (Black) + "5d5d646386f7742797261fd9", // 6B3TM-01 armored rig (Khaki) + "5c0e722886f7740458316a57", // ANA Tactical M1 plate carrier (Olive Drab) + "5ab8dced86f774646209ec87", // ANA Tactical M2 plate carrier (Digital Flora) + "5d5d87f786f77427997cfaef", // Ars Arma A18 Skanda plate carrier (MultiCam) + "60a3c70cde5f453f634816a3", // CQC Osprey MK4A plate carrier (Assault, MTP) + "544a5caa4bdc2d1a388b4568", // Crye Precision AVS plate carrier (Ranger Green) + "628dc750b910320f4c27a732", // ECLiPSE RBAV-AF plate carrier (Ranger Green) + "64a5366719bab53bd203bf33", // Eagle Allied Industries MBSS plate carrier (Coyote Brown) + "61bc85697113f767765c7fe7", // Eagle Industries MMAC plate carrier (Ranger Green) + "61bcc89aef0f505f0c6cd0fc", // FirstSpear Strandhogg plate carrier (Ranger Green) + "639343fce101f4caa40a4ef3", // Shellback Tactical Banshee plate carrier (A-TACS AU) + "5c0e746986f7741453628fe5", // WARTECH TV-110 plate carrier (Coyote) + "64a536392d2c4e6e970f4121", // WARTECH TV-115 plate carrier (Olive Drab) + ], + [ + "5df8a2ca86f7740bfe6df777", // 6B2 body armor (Flora) + "5c0e5bab86f77461f55ed1f3", // 6B23-1 body armor (Digital Flora) + "5b44d22286f774172b0c9de8", // BNTI Kirasa-N body armor + "59e7635f86f7742cbf2c1095", // BNTI Module-3M body armor + "5c0e5edb86f77461f55ed1f7", // BNTI Zhuk body armor (Press) + "62a09d79de7ac81993580530", // DRD body armor + "5ab8e4ed86f7742d8e50c7fa", // MF-UNTAR body armor + "64be79c487d1510151095552", // NPP KlASS Kora-Kulon body armor (Black) + "64be79e2bf8412471d0d9bcc", // NPP KlASS Kora-Kulon body armor (Digital Flora) + "5648a7494bdc2d9d488b4583", // PACA Soft Armor + "607f20859ee58b18e41ecd90", // PACA Soft Armor (Rivals Edition) + "5c0e446786f7742013381639", // 6B5-15 Zh-86 Uley armored rig (Flora) + "5c0e57ba86f7747fa141986d", // 6B23-2 body armor (Mountain Flora) + "5c0e3eb886f7742015526062", // 6B5-16 Zh-86 Uley armored rig (Khaki) + ] + ] + + public presets = [ + [ + // _rare + { + Items: [ + { + "_id": "67d38c11d93c586658044177", + "_tpl": "5fd4c474dd870108a754b241", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576676d86f11bca4106d37b" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 21, + "r": "Horizontal" + } + }, + { + "_id": "67d38c11d93c586658044178", + "_tpl": "656faf0ca0dce000a2020f77", + "parentId": "67d38c11d93c586658044177", + "slotId": "front_plate", + "upd": {} + }, + { + "_id": "67d38c11d93c586658044179", + "_tpl": "656faf0ca0dce000a2020f77", + "parentId": "67d38c11d93c586658044177", + "slotId": "back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c17d93c58665804417a", + "_tpl": "5c0e541586f7747fa54205c9", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657665e2303700411c0242b2" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 7, + "r": "Horizontal" + } + }, + { + "_id": "67d38c17d93c58665804417b", + "_tpl": "6575ea3060703324250610da", + "parentId": "67d38c17d93c58665804417a", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c17d93c58665804417c", + "_tpl": "6575ea4cf6a13a7b7100adc4", + "parentId": "67d38c17d93c58665804417a", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c17d93c58665804417d", + "_tpl": "6575ea5cf6a13a7b7100adc8", + "parentId": "67d38c17d93c58665804417a", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c17d93c58665804417e", + "_tpl": "6575ea6760703324250610de", + "parentId": "67d38c17d93c58665804417a", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c17d93c58665804417f", + "_tpl": "6575ea719c7cad336508e418", + "parentId": "67d38c17d93c58665804417a", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38c17d93c586658044180", + "_tpl": "6575ea7c60703324250610e2", + "parentId": "67d38c17d93c58665804417a", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38c17d93c586658044181", + "_tpl": "656f611f94b480b8a500c0db", + "parentId": "67d38c17d93c58665804417a", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c17d93c586658044182", + "_tpl": "656efaf54772930db4031ff5", + "parentId": "67d38c17d93c58665804417a", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c31d93c5866580441c7", + "_tpl": "545cdb794bdc2d3a198b456a", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65766adc234b9f6e050a431a" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "67d38c31d93c5866580441c8", + "_tpl": "6575ce3716c2762fba0057fd", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441c9", + "_tpl": "6575ce45dc9932aed601c616", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441ca", + "_tpl": "6575ce5016c2762fba005802", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441cb", + "_tpl": "6575ce5befc786cd9101a671", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441cc", + "_tpl": "6575ce6f16c2762fba005806", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441cd", + "_tpl": "6575ce9db15fef3dd4051628", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Shoulder_l", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441ce", + "_tpl": "6575cea8b15fef3dd405162c", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Shoulder_r", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441cf", + "_tpl": "6575ce8bdc9932aed601c61e", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441d0", + "_tpl": "64afc71497cf3a403c01ff38", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441d1", + "_tpl": "64afc71497cf3a403c01ff38", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441d2", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d38c31d93c5866580441d3", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "67d38c31d93c5866580441c7", + "slotId": "Right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c46d93c586658045130", + "_tpl": "5ab8e79e86f7742d8b372e78", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657663b6526e320fbe0357ec" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "67d38c46d93c586658045131", + "_tpl": "65732688d9d89ff7ac0d9c4c", + "parentId": "67d38c46d93c586658045130", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c46d93c586658045132", + "_tpl": "657326978c1cc6dcd9098b56", + "parentId": "67d38c46d93c586658045130", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c46d93c586658045133", + "_tpl": "657326a28c1cc6dcd9098b5a", + "parentId": "67d38c46d93c586658045130", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c46d93c586658045134", + "_tpl": "657326b08c1cc6dcd9098b5e", + "parentId": "67d38c46d93c586658045130", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c46d93c586658045135", + "_tpl": "657326bc5d3a3129fb05f36b", + "parentId": "67d38c46d93c586658045130", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38c46d93c586658045136", + "_tpl": "656f611f94b480b8a500c0db", + "parentId": "67d38c46d93c586658045130", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c46d93c586658045137", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d38c46d93c586658045130", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38d6cd93c586658049ae8", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38c46d93c586658045130", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d38d6cd93c586658049ae9", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38c46d93c586658045130", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d38c4ad93c586658045138", + "_tpl": "5b44d22286f774172b0c9de8", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 3, + "y": 7, + "r": "Horizontal" + } + }, + { + "_id": "67d38c4ad93c58665804513a", + "_tpl": "65704de13e7bba58ea0285c8", + "parentId": "67d38c4ad93c586658045138", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c4ad93c58665804513b", + "_tpl": "65705c3c14f2ed6d7d0b7738", + "parentId": "67d38c4ad93c586658045138", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c4ad93c58665804513c", + "_tpl": "65705c777260e1139e091408", + "parentId": "67d38c4ad93c586658045138", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c4ad93c58665804513d", + "_tpl": "65705cb314f2ed6d7d0b773c", + "parentId": "67d38c4ad93c586658045138", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c4ad93c58665804513e", + "_tpl": "65705cea4916448ae1050897", + "parentId": "67d38c4ad93c586658045138", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38f88d93c586658052476", + "_tpl": "656fa53d94b480b8a500c0e4", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 55, + "MaxDurability": 55 + } + }, + "parentId": "67d38c4ad93c586658045138", + "slotId": "Back_plate" + }, + { + "_id": "67d38f89d93c586658052477", + "_tpl": "656fa53d94b480b8a500c0e4", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 55, + "MaxDurability": 55 + } + }, + "parentId": "67d38c4ad93c586658045138", + "slotId": "Front_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d38c55d93c586658045141", + "_tpl": "5c0e625a86f7742d77340f62", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65766a7b86f11bca4106d3c3" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 11, + "r": "Horizontal" + } + }, + { + "_id": "67d38c55d93c586658045142", + "_tpl": "65764275d8537eb26a0355e9", + "parentId": "67d38c55d93c586658045141", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c55d93c586658045143", + "_tpl": "657642b0e6d5dd75f40688a5", + "parentId": "67d38c55d93c586658045141", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c55d93c586658045144", + "_tpl": "6576434820cc24d17102b148", + "parentId": "67d38c55d93c586658045141", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c55d93c586658045145", + "_tpl": "657643732bc38ef78e076477", + "parentId": "67d38c55d93c586658045141", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c55d93c586658045146", + "_tpl": "657643a220cc24d17102b14c", + "parentId": "67d38c55d93c586658045141", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38c55d93c586658045147", + "_tpl": "656f63c027aed95beb08f62c", + "parentId": "67d38c55d93c586658045141", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c55d93c586658045148", + "_tpl": "656fafe3498d1b7e3e071da4", + "parentId": "67d38c55d93c586658045141", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38c55d93c586658045149", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "67d38c55d93c586658045141", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d38c55d93c58665804514a", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "67d38c55d93c586658045141", + "slotId": "Right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c5ad93c58665804514b", + "_tpl": "5c0e5edb86f77461f55ed1f7", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765a38526e320fbe035795" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "67d38c5ad93c58665804514c", + "_tpl": "6571dbd388ead79fcf091d71", + "parentId": "67d38c5ad93c58665804514b", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c5ad93c58665804514d", + "_tpl": "6571dbda88ead79fcf091d75", + "parentId": "67d38c5ad93c58665804514b", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c5ad93c58665804514e", + "_tpl": "6571dbe07c02ae206002502e", + "parentId": "67d38c5ad93c58665804514b", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c5ad93c58665804514f", + "_tpl": "6571dbeaee8ec43d520cf89e", + "parentId": "67d38c5ad93c58665804514b", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c5ad93c586658045150", + "_tpl": "6571dbef88ead79fcf091d79", + "parentId": "67d38c5ad93c58665804514b", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38d6cd93c586658049aea", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38c5ad93c58665804514b", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d38d6cd93c586658049aeb", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38c5ad93c58665804514b", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d38e9cd93c58665804e9da", + "_tpl": "656f611f94b480b8a500c0db", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 50, + "MaxDurability": 50 + } + }, + "parentId": "67d38c5ad93c58665804514b", + "slotId": "Front_plate" + }, + { + "_id": "67d38e3ed93c58665804ca56", + "_tpl": "656fae5f7c2d57afe200c0d7", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d38c5ad93c58665804514b", + "slotId": "Back_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d38c5fd93c586658045151", + "_tpl": "5e9dacf986f774054d6b89f4", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657663ff303700411c024278" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 17, + "r": "Horizontal" + } + }, + { + "_id": "67d38c5fd93c586658045152", + "_tpl": "65732de75d3a3129fb05f3dd", + "parentId": "67d38c5fd93c586658045151", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c5fd93c586658045153", + "_tpl": "65732df4d0acf75aea06c87b", + "parentId": "67d38c5fd93c586658045151", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c5fd93c586658045154", + "_tpl": "65732e05d0acf75aea06c87f", + "parentId": "67d38c5fd93c586658045151", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c5fd93c586658045155", + "_tpl": "65732e0f6784ca384b0167ad", + "parentId": "67d38c5fd93c586658045151", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c5fd93c586658045156", + "_tpl": "65732e215d3a3129fb05f3e1", + "parentId": "67d38c5fd93c586658045151", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38c5fd93c586658045157", + "_tpl": "65732e30dd8739f6440ef383", + "parentId": "67d38c5fd93c586658045151", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38c5fd93c586658045158", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d38c5fd93c586658045151", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c5fd93c586658045159", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d38c5fd93c586658045151", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c63d93c58665804515a", + "_tpl": "5ca2151486f774244a3b8d30", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576695d234b9f6e050a42f0" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 13, + "r": "Horizontal" + } + }, + { + "_id": "67d38c63d93c58665804515b", + "_tpl": "6575dd3e9e27f4a85e081142", + "parentId": "67d38c63d93c58665804515a", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c63d93c58665804515c", + "_tpl": "6575dd519e27f4a85e081146", + "parentId": "67d38c63d93c58665804515a", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c63d93c58665804515d", + "_tpl": "6575dd64945bf78edd04c438", + "parentId": "67d38c63d93c58665804515a", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c63d93c58665804515e", + "_tpl": "6575dd6e9d3a0ddf660b9047", + "parentId": "67d38c63d93c58665804515a", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c63d93c58665804515f", + "_tpl": "6575dd769d3a0ddf660b904b", + "parentId": "67d38c63d93c58665804515a", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38c63d93c586658045160", + "_tpl": "6575dd800546f8b1de093df6", + "parentId": "67d38c63d93c58665804515a", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38c63d93c586658045161", + "_tpl": "6575dd94945bf78edd04c43c", + "parentId": "67d38c63d93c58665804515a", + "slotId": "Groin_back", + "upd": {} + }, + { + "_id": "67d38c63d93c586658045162", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d38c63d93c58665804515a", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c63d93c586658045163", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d38c63d93c58665804515a", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38d6cd93c586658049ae6", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38c63d93c58665804515a", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d38d6cd93c586658049ae7", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38c63d93c58665804515a", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d38c68d93c586658045164", + "_tpl": "5ca21c6986f77479963115a7", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657669c186f11bca4106d3a5" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 14, + "r": "Horizontal" + } + }, + { + "_id": "67d38c68d93c586658045165", + "_tpl": "6575d9a79e27f4a85e08112d", + "parentId": "67d38c68d93c586658045164", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c68d93c586658045166", + "_tpl": "6575d9b8945bf78edd04c427", + "parentId": "67d38c68d93c586658045164", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c68d93c586658045167", + "_tpl": "6575d9c40546f8b1de093dee", + "parentId": "67d38c68d93c586658045164", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c68d93c586658045168", + "_tpl": "6575d9cf0546f8b1de093df2", + "parentId": "67d38c68d93c586658045164", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c68d93c586658045169", + "_tpl": "6575d9d8945bf78edd04c42b", + "parentId": "67d38c68d93c586658045164", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38c68d93c58665804516a", + "_tpl": "6575da07945bf78edd04c433", + "parentId": "67d38c68d93c586658045164", + "slotId": "Shoulder_l", + "upd": {} + }, + { + "_id": "67d38c68d93c58665804516b", + "_tpl": "6575da159e27f4a85e081131", + "parentId": "67d38c68d93c586658045164", + "slotId": "Shoulder_r", + "upd": {} + }, + { + "_id": "67d38c68d93c58665804516c", + "_tpl": "6575d9e7945bf78edd04c42f", + "parentId": "67d38c68d93c586658045164", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38c68d93c58665804516d", + "_tpl": "6575d9f816c2762fba00588d", + "parentId": "67d38c68d93c586658045164", + "slotId": "Groin_back", + "upd": {} + }, + { + "_id": "67d38c68d93c58665804516e", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d38c68d93c586658045164", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c68d93c58665804516f", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d38c68d93c586658045164", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38c68d93c586658045170", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "67d38c68d93c586658045164", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d38c68d93c586658045171", + "_tpl": "64afd81707e2cf40e903a316", + "parentId": "67d38c68d93c586658045164", + "slotId": "Right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c72d93c586658045172", + "_tpl": "63737f448b28897f2802b874", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657664ec526e320fbe0357fe" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 7, + "y": 25, + "r": "Horizontal" + } + }, + { + "_id": "67d38c72d93c586658045173", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d38c72d93c586658045172", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c72d93c586658045174", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d38c72d93c586658045172", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c75d93c586658046026", + "_tpl": "5c0e655586f774045612eeb2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657127b7f1074598bf0c02f2" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 11, + "r": "Horizontal" + } + }, + { + "_id": "67d38c75d93c586658046027", + "_tpl": "6570e025615f54368b04fcb0", + "parentId": "67d38c75d93c586658046026", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c75d93c586658046028", + "_tpl": "6570e0610b57c03ec90b96ef", + "parentId": "67d38c75d93c586658046026", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c75d93c586658046029", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d38c75d93c586658046026", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c75d93c58665804602a", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d38c75d93c586658046026", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c7bd93c58665804602b", + "_tpl": "5b44cf1486f77431723e3d05", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657668ad86f11bca4106d38b" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 4, + "r": "Horizontal" + } + }, + { + "_id": "67d38c7bd93c58665804602c", + "_tpl": "6575c3b3dc9932aed601c5f4", + "parentId": "67d38c7bd93c58665804602b", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c7bd93c58665804602d", + "_tpl": "6575c3beefc786cd9101a5ed", + "parentId": "67d38c7bd93c58665804602b", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c7bd93c58665804602e", + "_tpl": "6575c3cdc6700bd6b40e8a90", + "parentId": "67d38c7bd93c58665804602b", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c7bd93c58665804602f", + "_tpl": "6575c3dfdc9932aed601c5f8", + "parentId": "67d38c7bd93c58665804602b", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c7bd93c586658046030", + "_tpl": "6575c3ec52b7f8c76a05ee39", + "parentId": "67d38c7bd93c58665804602b", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38c7bd93c586658046031", + "_tpl": "6575c3fd52b7f8c76a05ee3d", + "parentId": "67d38c7bd93c58665804602b", + "slotId": "Shoulder_l", + "upd": {} + }, + { + "_id": "67d38c7bd93c586658046032", + "_tpl": "6575c40c52b7f8c76a05ee41", + "parentId": "67d38c7bd93c58665804602b", + "slotId": "Shoulder_r", + "upd": {} + }, + { + "_id": "67d38c7bd93c586658046033", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38c7bd93c58665804602b", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d38c7bd93c586658046034", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38c7bd93c58665804602b", + "slotId": "Right_side_plate", + "upd": {} + }, + { + "_id": "67d38e37d93c58665804ca50", + "_tpl": "656fae5f7c2d57afe200c0d7", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d38c7bd93c58665804602b", + "slotId": "Front_plate" + }, + { + "_id": "67d38e39d93c58665804ca51", + "_tpl": "656fae5f7c2d57afe200c0d7", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d38c7bd93c58665804602b", + "slotId": "Back_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d38c7dd93c586658046035", + "_tpl": "5b44cd8b86f774503d30cba2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65766910303700411c0242da" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 3, + "r": "Horizontal" + } + }, + { + "_id": "67d38c7dd93c586658046036", + "_tpl": "6575c2adefc786cd9101a5d9", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c7dd93c586658046037", + "_tpl": "6575c2be52b7f8c76a05ee25", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c7dd93c586658046038", + "_tpl": "6575c2cd52b7f8c76a05ee29", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c7dd93c586658046039", + "_tpl": "6575c2d852b7f8c76a05ee2d", + "parentId": "67d38c7dd93c586658046035", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c7dd93c58665804603a", + "_tpl": "6575c2e4efc786cd9101a5dd", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38c7dd93c58665804603b", + "_tpl": "6575c2f7efc786cd9101a5e1", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Shoulder_l", + "upd": {} + }, + { + "_id": "67d38c7dd93c58665804603c", + "_tpl": "6575c30352b7f8c76a05ee31", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Shoulder_r", + "upd": {} + }, + { + "_id": "67d38c7dd93c58665804603d", + "_tpl": "6575c31b52b7f8c76a05ee35", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38c7dd93c58665804603e", + "_tpl": "6575c326c6700bd6b40e8a80", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Groin_back", + "upd": {} + }, + { + "_id": "67d38c7dd93c58665804603f", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c7dd93c586658046040", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38c7dd93c586658046041", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d38c7dd93c586658046042", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38c7dd93c586658046035", + "slotId": "Right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c84d93c586658046043", + "_tpl": "5b44d0de86f774503d30cba8", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65766582234b9f6e050a42c1" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 7, + "r": "Horizontal" + } + }, + { + "_id": "67d38c84d93c586658046044", + "_tpl": "6575c342efc786cd9101a5e5", + "parentId": "67d38c84d93c586658046043", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c84d93c586658046045", + "_tpl": "6575c34bc6700bd6b40e8a84", + "parentId": "67d38c84d93c586658046043", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c84d93c586658046046", + "_tpl": "6575c35bc6700bd6b40e8a88", + "parentId": "67d38c84d93c586658046043", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c84d93c586658046047", + "_tpl": "6575c366c6700bd6b40e8a8c", + "parentId": "67d38c84d93c586658046043", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c84d93c586658046048", + "_tpl": "6575c373dc9932aed601c5ec", + "parentId": "67d38c84d93c586658046043", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38c84d93c586658046049", + "_tpl": "6575c385dc9932aed601c5f0", + "parentId": "67d38c84d93c586658046043", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38c84d93c58665804604a", + "_tpl": "6575c390efc786cd9101a5e9", + "parentId": "67d38c84d93c586658046043", + "slotId": "Groin_back", + "upd": {} + }, + { + "_id": "67d38c84d93c58665804604b", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "67d38c84d93c586658046043", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c84d93c58665804604c", + "_tpl": "656fa8d700d62bcd2e024084", + "parentId": "67d38c84d93c586658046043", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38d80d93c586658049af3", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d38c84d93c586658046043", + "slotId": "Left_side_plate" + }, + { + "_id": "67d38d81d93c586658049af4", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d38c84d93c586658046043", + "slotId": "Right_side_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d38c89d93c58665804604d", + "_tpl": "64abd93857958b4249003418", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657127126d197c216005b402" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 27, + "r": "Horizontal" + } + }, + { + "_id": "67d38c89d93c58665804604e", + "_tpl": "6570f30b0921c914bf07964c", + "parentId": "67d38c89d93c58665804604d", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c89d93c58665804604f", + "_tpl": "6570f35cd67d0309980a7acb", + "parentId": "67d38c89d93c58665804604d", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c89d93c586658046050", + "_tpl": "6570f3890b4ae5847f060dad", + "parentId": "67d38c89d93c58665804604d", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c89d93c586658046051", + "_tpl": "6570f3bb0b4ae5847f060db2", + "parentId": "67d38c89d93c58665804604d", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c89d93c586658046052", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "67d38c89d93c58665804604d", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c89d93c586658046053", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "67d38c89d93c58665804604d", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c8cd93c586658046054", + "_tpl": "5e4abb5086f77406975c9342", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657666ca303700411c0242c6" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 14, + "r": "Horizontal" + } + }, + { + "_id": "67d38c8cd93c586658046055", + "_tpl": "6575e71760703324250610c3", + "parentId": "67d38c8cd93c586658046054", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c8cd93c586658046056", + "_tpl": "6575e72660703324250610c7", + "parentId": "67d38c8cd93c586658046054", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c8cd93c586658046057", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "67d38c8cd93c586658046054", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c8cd93c586658046058", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "67d38c8cd93c586658046054", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c8fd93c586658046059", + "_tpl": "6038b4b292ec1c3103795a0b", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576670586f11bca4106d36f" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 21, + "r": "Horizontal" + } + }, + { + "_id": "67d38c8fd93c58665804605a", + "_tpl": "6575e71760703324250610c3", + "parentId": "67d38c8fd93c586658046059", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c8fd93c58665804605b", + "_tpl": "6575e72660703324250610c7", + "parentId": "67d38c8fd93c586658046059", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c8fd93c58665804605c", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "67d38c8fd93c586658046059", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c8fd93c58665804605d", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "67d38c8fd93c586658046059", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c93d93c58665804605e", + "_tpl": "6038b4ca92ec1c3103795a0d", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65766738234b9f6e050a42d8" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 22, + "r": "Horizontal" + } + }, + { + "_id": "67d38c93d93c58665804605f", + "_tpl": "6575e71760703324250610c3", + "parentId": "67d38c93d93c58665804605e", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c93d93c586658046060", + "_tpl": "6575e72660703324250610c7", + "parentId": "67d38c93d93c58665804605e", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c93d93c586658046061", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "67d38c93d93c58665804605e", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c93d93c586658046062", + "_tpl": "656fa76500d62bcd2e024080", + "parentId": "67d38c93d93c58665804605e", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38c9ad93c586658046063", + "_tpl": "609e8540d5c319764c2bc2e9", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765fbe234b9f6e050a4292" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 24, + "r": "Horizontal" + } + }, + { + "_id": "67d38c9ad93c586658046064", + "_tpl": "6572e5221b5bc1185508c24f", + "parentId": "67d38c9ad93c586658046063", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38c9ad93c586658046065", + "_tpl": "6572e52f73c0eabb700109a0", + "parentId": "67d38c9ad93c586658046063", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38c9ad93c586658046066", + "_tpl": "6572e53c73c0eabb700109a4", + "parentId": "67d38c9ad93c586658046063", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38c9ad93c586658046067", + "_tpl": "6572e54873c0eabb700109a8", + "parentId": "67d38c9ad93c586658046063", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38c9ad93c586658046068", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "67d38c9ad93c586658046063", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38c9ad93c586658046069", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "67d38c9ad93c586658046063", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38d77d93c586658049aed", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d38c9ad93c586658046063", + "slotId": "Left_side_plate" + }, + { + "_id": "67d38d78d93c586658049af0", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d38c9ad93c586658046063", + "slotId": "Right_side_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d38ca0d93c58665804606a", + "_tpl": "60a283193cb70855c43a381d", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65766b46303700411c0242f8" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 25, + "r": "Horizontal" + } + }, + { + "_id": "67d38ca0d93c58665804606b", + "_tpl": "6575d561b15fef3dd4051670", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38ca0d93c58665804606c", + "_tpl": "6575d56b16c2762fba005818", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38ca0d93c58665804606d", + "_tpl": "6575d57a16c2762fba00581c", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38ca0d93c58665804606e", + "_tpl": "6575d589b15fef3dd4051674", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38ca0d93c58665804606f", + "_tpl": "6575d598b15fef3dd4051678", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38ca0d93c586658046070", + "_tpl": "6575d5b316c2762fba005824", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Shoulder_l", + "upd": {} + }, + { + "_id": "67d38ca0d93c586658046071", + "_tpl": "6575d5bd16c2762fba005828", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Shoulder_r", + "upd": {} + }, + { + "_id": "67d38ca0d93c586658046072", + "_tpl": "6575d5a616c2762fba005820", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38ca0d93c586658046073", + "_tpl": "656fa61e94b480b8a500c0e8", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38ca0d93c586658046074", + "_tpl": "656fa61e94b480b8a500c0e8", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38ca0d93c586658046075", + "_tpl": "64afdb577bb3bfe8fe03fd1d", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d38ca0d93c586658046076", + "_tpl": "64afdb577bb3bfe8fe03fd1d", + "parentId": "67d38ca0d93c58665804606a", + "slotId": "Right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38ca8d93c586658046077", + "_tpl": "5f5f41476bdad616ad46d631", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 3, + "y": 17, + "r": "Horizontal" + } + }, + { + "_id": "67d38ca8d93c586658046079", + "_tpl": "65731b46cea9255e2102360a", + "parentId": "67d38ca8d93c586658046077", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38ca8d93c58665804607a", + "_tpl": "65731b4fcea9255e2102360e", + "parentId": "67d38ca8d93c586658046077", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38ca8d93c58665804607b", + "_tpl": "65731b576e709cddd001ec3f", + "parentId": "67d38ca8d93c586658046077", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38ca8d93c58665804607c", + "_tpl": "65731b60ff6dc44a7d068c4a", + "parentId": "67d38ca8d93c586658046077", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38ca8d93c58665804607d", + "_tpl": "65731b666e709cddd001ec43", + "parentId": "67d38ca8d93c586658046077", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38ca8d93c58665804607e", + "_tpl": "65731b716e709cddd001ec47", + "parentId": "67d38ca8d93c586658046077", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38ca8d93c58665804607f", + "_tpl": "65731b6b6042b0f210020ef6", + "parentId": "67d38ca8d93c586658046077", + "slotId": "Groin_back", + "upd": {} + }, + { + "_id": "67d38ca8d93c586658046080", + "_tpl": "656f664200d62bcd2e024077", + "parentId": "67d38ca8d93c586658046077", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38ca8d93c586658046081", + "_tpl": "654a4f8bc721968a4404ef18", + "parentId": "67d38ca8d93c586658046077", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d38ca8d93c586658046082", + "_tpl": "654a4f8bc721968a4404ef18", + "parentId": "67d38ca8d93c586658046077", + "slotId": "Right_side_plate", + "upd": {} + }, + { + "_id": "67d38ca8d93c586658046083", + "_tpl": "657b2797c3dbcb01d60c35ea", + "parentId": "67d38ca8d93c586658046077", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38cb4d93c586658046ee2", + "_tpl": "5b44cad286f77402a54ae7e5", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65766527303700411c0242a6" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 33, + "r": "Horizontal" + } + }, + { + "_id": "67d38cb4d93c586658046ee3", + "_tpl": "6575bc88c6700bd6b40e8a57", + "parentId": "67d38cb4d93c586658046ee2", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38cb4d93c586658046ee4", + "_tpl": "6575bca0dc9932aed601c5d7", + "parentId": "67d38cb4d93c586658046ee2", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38cb4d93c586658046ee5", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d38cb4d93c586658046ee2", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38cb4d93c586658046ee6", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d38cb4d93c586658046ee2", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38cc2d93c586658046ee7", + "_tpl": "5c0e722886f7740458316a57", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576616086f11bca4106d35f" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 33, + "r": "Horizontal" + } + }, + { + "_id": "67d38cc2d93c586658046ee8", + "_tpl": "65730c0e292ecadbfa09ad49", + "parentId": "67d38cc2d93c586658046ee7", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38cc2d93c586658046ee9", + "_tpl": "65730c2213a2f660f60bea96", + "parentId": "67d38cc2d93c586658046ee7", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38cc2d93c586658046eea", + "_tpl": "65730c2b292ecadbfa09ad50", + "parentId": "67d38cc2d93c586658046ee7", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38cc2d93c586658046eeb", + "_tpl": "65730c35292ecadbfa09ad54", + "parentId": "67d38cc2d93c586658046ee7", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38cc2d93c586658046eec", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d38cc2d93c586658046ee7", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38cc2d93c586658046eed", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d38cc2d93c586658046ee7", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38d78d93c586658049aee", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d38cc2d93c586658046ee7", + "slotId": "Left_side_plate" + }, + { + "_id": "67d38d7fd93c586658049af2", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d38cc2d93c586658046ee7", + "slotId": "Right_side_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d38cccd93c586658046eee", + "_tpl": "5ab8dced86f774646209ec87", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571952aacb85662e7024c01" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 29, + "r": "Horizontal" + } + }, + { + "_id": "67d38cccd93c586658046eef", + "_tpl": "6570f6e774d84423df065f21", + "parentId": "67d38cccd93c586658046eee", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38cccd93c586658046ef0", + "_tpl": "6570f71dd67d0309980a7af8", + "parentId": "67d38cccd93c586658046eee", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38cccd93c586658046ef1", + "_tpl": "6570f74774d84423df065f25", + "parentId": "67d38cccd93c586658046eee", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38cccd93c586658046ef2", + "_tpl": "6570f79c4c65ab77a6015121", + "parentId": "67d38cccd93c586658046eee", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38cccd93c586658046ef3", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "67d38cccd93c586658046eee", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38cccd93c586658046ef4", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "67d38cccd93c586658046eee", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38d78d93c586658049aef", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d38cccd93c586658046eee", + "slotId": "Right_side_plate" + }, + { + "_id": "67d38d7dd93c586658049af1", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d38cccd93c586658046eee", + "slotId": "Left_side_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d38cdad93c586658046ef5", + "_tpl": "5d5d87f786f77427997cfaef", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571960bacb85662e7024c23" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 40, + "r": "Horizontal" + } + }, + { + "_id": "67d38cdad93c586658046ef6", + "_tpl": "6570e5100b57c03ec90b970a", + "parentId": "67d38cdad93c586658046ef5", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38cdad93c586658046ef7", + "_tpl": "6570e479a6560e4ee50c2b02", + "parentId": "67d38cdad93c586658046ef5", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38cdad93c586658046ef8", + "_tpl": "6570e5674cc0d2ab1e05edbb", + "parentId": "67d38cdad93c586658046ef5", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38cdad93c586658046ef9", + "_tpl": "6570e59b0b57c03ec90b970e", + "parentId": "67d38cdad93c586658046ef5", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38cdad93c586658046efa", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "67d38cdad93c586658046ef5", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38cdad93c586658046efb", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "67d38cdad93c586658046ef5", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38d6cd93c586658049ae3", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38cdad93c586658046ef5", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d38d6cd93c586658049ae4", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38cdad93c586658046ef5", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d38cded93c586658046efc", + "_tpl": "5e4ac41886f77406a511c9a8", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576667d526e320fbe035806" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 40, + "r": "Horizontal" + } + }, + { + "_id": "67d38cded93c586658046efd", + "_tpl": "6575ef599c7cad336508e453", + "parentId": "67d38cded93c586658046efc", + "slotId": "soft_armor_front", + "upd": {} + }, + { + "_id": "67d38cded93c586658046efe", + "_tpl": "6575ef6bf6a13a7b7100b093", + "parentId": "67d38cded93c586658046efc", + "slotId": "soft_armor_back", + "upd": {} + }, + { + "_id": "67d38cded93c586658046eff", + "_tpl": "6575ef78da698a4e980677eb", + "parentId": "67d38cded93c586658046efc", + "slotId": "soft_armor_left", + "upd": {} + }, + { + "_id": "67d38cded93c586658046f00", + "_tpl": "6575ef7f9c7cad336508e457", + "parentId": "67d38cded93c586658046efc", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38cded93c586658046f01", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d38cded93c586658046efc", + "slotId": "front_plate", + "upd": {} + }, + { + "_id": "67d38cded93c586658046f02", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d38cded93c586658046efc", + "slotId": "back_plate", + "upd": {} + }, + { + "_id": "67d38cded93c586658046f03", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38cded93c586658046efc", + "slotId": "left_side_plate", + "upd": {} + }, + { + "_id": "67d38cded93c586658046f04", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38cded93c586658046efc", + "slotId": "right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38ceed93c586658047d29", + "_tpl": "544a5caa4bdc2d1a388b4568", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 7, + "y": 28, + "r": "Horizontal" + } + }, + { + "_id": "67d38ceed93c586658047d2b", + "_tpl": "6570e83223c1f638ef0b0ede", + "parentId": "67d38ceed93c586658047d29", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38ceed93c586658047d2c", + "_tpl": "6570e87c23c1f638ef0b0ee2", + "parentId": "67d38ceed93c586658047d29", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38ceed93c586658047d2d", + "_tpl": "6570e90b3a5689d85f08db97", + "parentId": "67d38ceed93c586658047d29", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38ceed93c586658047d2e", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "67d38ceed93c586658047d29", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38ceed93c586658047d2f", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "67d38ceed93c586658047d29", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38cf5d93c586658047d30", + "_tpl": "60a3c68c37ea821725773ef5", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657664ae303700411c02428c" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 43, + "r": "Horizontal" + } + }, + { + "_id": "67d38cf5d93c586658047d31", + "_tpl": "65733312ca0ca984940a2d53", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38cf5d93c586658047d32", + "_tpl": "657333232cc8dfad2c0a3d97", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38cf5d93c586658047d33", + "_tpl": "657333302cc8dfad2c0a3d9b", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38cf5d93c586658047d34", + "_tpl": "6573333eca0ca984940a2d57", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38cf5d93c586658047d35", + "_tpl": "6573334aca0ca984940a2d5b", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38cf5d93c586658047d36", + "_tpl": "65733375b7a8d286530e3dd7", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "Shoulder_l", + "upd": {} + }, + { + "_id": "67d38cf5d93c586658047d37", + "_tpl": "6573337f2cc8dfad2c0a3da7", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "Shoulder_r", + "upd": {} + }, + { + "_id": "67d38cf5d93c586658047d38", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38cf5d93c586658047d39", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38cf5d93c586658047d3a", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d38cf5d93c586658047d3b", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38cf5d93c586658047d30", + "slotId": "Right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38cfed93c586658047d3c", + "_tpl": "609e860ebd219504d8507525", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657667b5234b9f6e050a42e4" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 30, + "r": "Horizontal" + } + }, + { + "_id": "67d38cfed93c586658047d3d", + "_tpl": "6575f5cbf6a13a7b7100b0bf", + "parentId": "67d38cfed93c586658047d3c", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38cfed93c586658047d3e", + "_tpl": "6575f5e1da698a4e98067869", + "parentId": "67d38cfed93c586658047d3c", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38cfed93c586658047d3f", + "_tpl": "656fa99800d62bcd2e024088", + "parentId": "67d38cfed93c586658047d3c", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38cfed93c586658047d40", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d38cfed93c586658047d3c", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38d02d93c586658047d41", + "_tpl": "628b9c7d45122232a872358f", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65766a20234b9f6e050a4306" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 46, + "r": "Horizontal" + } + }, + { + "_id": "67d38d02d93c586658047d42", + "_tpl": "6575f24ff6a13a7b7100b09e", + "parentId": "67d38d02d93c586658047d41", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38d02d93c586658047d43", + "_tpl": "6575f25ada698a4e98067836", + "parentId": "67d38d02d93c586658047d41", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38d02d93c586658047d44", + "_tpl": "6575f2649cfdfe416f0399b8", + "parentId": "67d38d02d93c586658047d41", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38d02d93c586658047d45", + "_tpl": "6575f26d9c7cad336508e480", + "parentId": "67d38d02d93c586658047d41", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38d02d93c586658047d46", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "67d38d02d93c586658047d41", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38d02d93c586658047d47", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "67d38d02d93c586658047d41", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38d02d93c586658047d48", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38d02d93c586658047d41", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d38d02d93c586658047d49", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38d02d93c586658047d41", + "slotId": "Right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38d19d93c586658047d7b", + "_tpl": "628d0618d1ba6e4fa07ce5a4", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 4, + "y": 46, + "r": "Horizontal" + } + }, + { + "_id": "67d38d19d93c586658047d7d", + "_tpl": "657322988c1cc6dcd9098b2d", + "parentId": "67d38d19d93c586658047d7b", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38d19d93c586658047d7e", + "_tpl": "657322a4cea9255e21023651", + "parentId": "67d38d19d93c586658047d7b", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38d19d93c586658047d7f", + "_tpl": "657322acd9d89ff7ac0d961b", + "parentId": "67d38d19d93c586658047d7b", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38d19d93c586658047d80", + "_tpl": "657322b7d9d89ff7ac0d961f", + "parentId": "67d38d19d93c586658047d7b", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38d19d93c586658047d81", + "_tpl": "656f664200d62bcd2e024077", + "parentId": "67d38d19d93c586658047d7b", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38d19d93c586658047d82", + "_tpl": "657b2797c3dbcb01d60c35ea", + "parentId": "67d38d19d93c586658047d7b", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38d1ed93c586658047d83", + "_tpl": "628b9784bcf6e2659e09b8a2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576683d303700411c0242d2" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 43, + "r": "Horizontal" + } + }, + { + "_id": "67d38d1ed93c586658047d84", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d38d1ed93c586658047d83", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38d1ed93c586658047d85", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d38d1ed93c586658047d83", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d38d1ed93c586658047d86", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38d1ed93c586658047d83", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d38d1ed93c586658047d87", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38d1ed93c586658047d83", + "slotId": "Right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38d2ad93c586658048c63", + "_tpl": "639343fce101f4caa40a4ef3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657661ad234b9f6e050a42a2" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 49, + "r": "Horizontal" + } + }, + { + "_id": "67d38d2ad93c586658048c64", + "_tpl": "6573101e292ecadbfa09b389", + "parentId": "67d38d2ad93c586658048c63", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38d2ad93c586658048c65", + "_tpl": "6573102b292ecadbfa09b38d", + "parentId": "67d38d2ad93c586658048c63", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38d2ad93c586658048c66", + "_tpl": "65731038292ecadbfa09b391", + "parentId": "67d38d2ad93c586658048c63", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38d2ad93c586658048c67", + "_tpl": "65731045f31d5be00e08a75a", + "parentId": "67d38d2ad93c586658048c63", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38fb2d93c5866580532df", + "_tpl": "656fa53d94b480b8a500c0e4", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 55, + "MaxDurability": 55 + } + }, + "parentId": "67d38d2ad93c586658048c63", + "slotId": "Back_plate" + }, + { + "_id": "67d38d6cd93c586658049ae5", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38d2ad93c586658048c63", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d38d9bd93c586658049af8", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d38d2ad93c586658048c63", + "slotId": "Left_side_plate" + }, + { + "_id": "67d38fb2d93c5866580532de", + "_tpl": "656fa53d94b480b8a500c0e4", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 55, + "MaxDurability": 55 + } + }, + "parentId": "67d38d2ad93c586658048c63", + "slotId": "Front_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d38d35d93c586658048c6a", + "_tpl": "66b6296d7994640992013b17", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c5db19a3ab39b7175e2b" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 7, + "y": 50, + "r": "Horizontal" + } + }, + { + "_id": "67d38d35d93c586658048c6b", + "_tpl": "66b884f4c5d72b02774886eb", + "parentId": "67d38d35d93c586658048c6a", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38d35d93c586658048c6c", + "_tpl": "66b884eaacff495a29492849", + "parentId": "67d38d35d93c586658048c6a", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38d35d93c586658048c6d", + "_tpl": "66b8851678bbc0200425fa03", + "parentId": "67d38d35d93c586658048c6a", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38d35d93c586658048c6e", + "_tpl": "66b88521a7f72d197e70be3b", + "parentId": "67d38d35d93c586658048c6a", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38d35d93c586658048c6f", + "_tpl": "66b884fd7994640992013b37", + "parentId": "67d38d35d93c586658048c6a", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38d35d93c586658048c70", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d38d35d93c586658048c6a", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38d35d93c586658048c71", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d38d35d93c586658048c6a", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38d3bd93c586658048c72", + "_tpl": "66b6295178bbc0200425f995", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c65b96edb969cd4f5d7f" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 50, + "r": "Horizontal" + } + }, + { + "_id": "67d38d3bd93c586658048c73", + "_tpl": "66b8b217c5d72b02774887b4", + "parentId": "67d38d3bd93c586658048c72", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38d3bd93c586658048c74", + "_tpl": "66b8b20c5891c84aab75cb96", + "parentId": "67d38d3bd93c586658048c72", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38d3bd93c586658048c75", + "_tpl": "66b8b223a7f72d197e70bed3", + "parentId": "67d38d3bd93c586658048c72", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38d3bd93c586658048c76", + "_tpl": "66b8b22b78bbc0200425fb20", + "parentId": "67d38d3bd93c586658048c72", + "slotId": "soft_armor_right", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38d45d93c586658048c77", + "_tpl": "628cd624459354321c4b7fa2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657667f686f11bca4106d383" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 7, + "y": 43, + "r": "Horizontal" + } + }, + { + "_id": "67d38d45d93c586658048c78", + "_tpl": "64afdcb83efdfea28601d041", + "parentId": "67d38d45d93c586658048c77", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38d45d93c586658048c79", + "_tpl": "64afdcb83efdfea28601d041", + "parentId": "67d38d45d93c586658048c77", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38d50d93c586658048c7a", + "_tpl": "5c0e746986f7741453628fe5", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 0, + "y": 37, + "r": "Horizontal" + } + }, + { + "_id": "67d38d50d93c586658048c7c", + "_tpl": "6570df294cc0d2ab1e05ed74", + "parentId": "67d38d50d93c586658048c7a", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38d50d93c586658048c7d", + "_tpl": "6570df9c615f54368b04fca9", + "parentId": "67d38d50d93c586658048c7a", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38d50d93c586658048c7e", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d38d50d93c586658048c7a", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38d50d93c586658048c7f", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d38d50d93c586658048c7a", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + ], + [ + // _uncommon + { + Items: [ + { + "_id": "67d208d62e73083cd8067463", + "_tpl": "5c0e51be86f774598e797894", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765f39526e320fbe0357b1" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "67d208d62e73083cd8067464", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "67d208d62e73083cd8067463", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d208d62e73083cd8067465", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "67d208d62e73083cd8067463", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d208d62e73083cd8067466", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "67d208d62e73083cd8067463", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d208d62e73083cd8067467", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "67d208d62e73083cd8067463", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d208d62e73083cd8067468", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "67d208d62e73083cd8067463", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d208d62e73083cd8067469", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "67d208d62e73083cd8067463", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d208d62e73083cd806746a", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "67d208d62e73083cd8067463", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d208d62e73083cd806746b", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "67d208d62e73083cd8067463", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d208df2e73083cd8068434", + "_tpl": "5ab8e79e86f7742d8b372e78", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657663b6526e320fbe0357ec" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 11, + "r": "Horizontal" + } + }, + { + "_id": "67d208df2e73083cd8068435", + "_tpl": "65732688d9d89ff7ac0d9c4c", + "parentId": "67d208df2e73083cd8068434", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d208df2e73083cd8068436", + "_tpl": "657326978c1cc6dcd9098b56", + "parentId": "67d208df2e73083cd8068434", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d208df2e73083cd8068437", + "_tpl": "657326a28c1cc6dcd9098b5a", + "parentId": "67d208df2e73083cd8068434", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d208df2e73083cd8068438", + "_tpl": "657326b08c1cc6dcd9098b5e", + "parentId": "67d208df2e73083cd8068434", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d208df2e73083cd8068439", + "_tpl": "657326bc5d3a3129fb05f36b", + "parentId": "67d208df2e73083cd8068434", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d208df2e73083cd806843a", + "_tpl": "656f611f94b480b8a500c0db", + "parentId": "67d208df2e73083cd8068434", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d208df2e73083cd806843b", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d208df2e73083cd8068434", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d387b1d93c5866580373dc", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d208df2e73083cd8068434", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d387b1d93c5866580373dd", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d208df2e73083cd8068434", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d208e42e73083cd806843c", + "_tpl": "5b44d22286f774172b0c9de8", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 3, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "67d208e42e73083cd806843e", + "_tpl": "65704de13e7bba58ea0285c8", + "parentId": "67d208e42e73083cd806843c", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d208e42e73083cd806843f", + "_tpl": "65705c3c14f2ed6d7d0b7738", + "parentId": "67d208e42e73083cd806843c", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d208e42e73083cd8068440", + "_tpl": "65705c777260e1139e091408", + "parentId": "67d208e42e73083cd806843c", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d208e42e73083cd8068441", + "_tpl": "65705cb314f2ed6d7d0b773c", + "parentId": "67d208e42e73083cd806843c", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d208e42e73083cd8068442", + "_tpl": "65705cea4916448ae1050897", + "parentId": "67d208e42e73083cd806843c", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d247b46d6fd83140039897", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d208e42e73083cd806843c", + "slotId": "Back_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d247b46d6fd83140039898", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d208e42e73083cd806843c", + "slotId": "Front_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d208ee2e73083cd8068445", + "_tpl": "5c0e5edb86f77461f55ed1f7", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765a38526e320fbe035795" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "67d208ee2e73083cd8068446", + "_tpl": "6571dbd388ead79fcf091d71", + "parentId": "67d208ee2e73083cd8068445", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d208ee2e73083cd8068447", + "_tpl": "6571dbda88ead79fcf091d75", + "parentId": "67d208ee2e73083cd8068445", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d208ee2e73083cd8068448", + "_tpl": "6571dbe07c02ae206002502e", + "parentId": "67d208ee2e73083cd8068445", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d208ee2e73083cd8068449", + "_tpl": "6571dbeaee8ec43d520cf89e", + "parentId": "67d208ee2e73083cd8068445", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d208ee2e73083cd806844a", + "_tpl": "6571dbef88ead79fcf091d79", + "parentId": "67d208ee2e73083cd8068445", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d247cd6d6fd83140039899", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "67d208ee2e73083cd8068445", + "slotId": "Front_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d247eb6d6fd8314003a723", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d208ee2e73083cd8068445", + "slotId": "Back_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d247fc6d6fd8314003a72b", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d208ee2e73083cd8068445", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d247fc6d6fd8314003a72c", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d208ee2e73083cd8068445", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d208f62e73083cd806844b", + "_tpl": "5e9dacf986f774054d6b89f4", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657663ff303700411c024278" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 27, + "r": "Horizontal" + } + }, + { + "_id": "67d208f62e73083cd806844c", + "_tpl": "65732de75d3a3129fb05f3dd", + "parentId": "67d208f62e73083cd806844b", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d208f62e73083cd806844d", + "_tpl": "65732df4d0acf75aea06c87b", + "parentId": "67d208f62e73083cd806844b", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d208f62e73083cd806844e", + "_tpl": "65732e05d0acf75aea06c87f", + "parentId": "67d208f62e73083cd806844b", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d208f62e73083cd806844f", + "_tpl": "65732e0f6784ca384b0167ad", + "parentId": "67d208f62e73083cd806844b", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d208f62e73083cd8068450", + "_tpl": "65732e215d3a3129fb05f3e1", + "parentId": "67d208f62e73083cd806844b", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d208f62e73083cd8068451", + "_tpl": "65732e30dd8739f6440ef383", + "parentId": "67d208f62e73083cd806844b", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d208f62e73083cd8068452", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d208f62e73083cd806844b", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d208f62e73083cd8068453", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d208f62e73083cd806844b", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d209012e73083cd806845e", + "_tpl": "63737f448b28897f2802b874", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657664ec526e320fbe0357fe" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 7, + "y": 30, + "r": "Horizontal" + } + }, + { + "_id": "67d209012e73083cd806845f", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d209012e73083cd806845e", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d209012e73083cd8068460", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d209012e73083cd806845e", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d209082e73083cd8069419", + "_tpl": "5c0e655586f774045612eeb2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657127b7f1074598bf0c02f2" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 4, + "r": "Horizontal" + } + }, + { + "_id": "67d209082e73083cd806941a", + "_tpl": "6570e025615f54368b04fcb0", + "parentId": "67d209082e73083cd8069419", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209082e73083cd806941b", + "_tpl": "6570e0610b57c03ec90b96ef", + "parentId": "67d209082e73083cd8069419", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209082e73083cd806941c", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d209082e73083cd8069419", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d209082e73083cd806941d", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d209082e73083cd8069419", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d209282e73083cd8069423", + "_tpl": "609e8540d5c319764c2bc2e9", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765fbe234b9f6e050a4292" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 3, + "r": "Horizontal" + } + }, + { + "_id": "67d209282e73083cd8069424", + "_tpl": "6572e5221b5bc1185508c24f", + "parentId": "67d209282e73083cd8069423", + "slotId": "Soft_armor_front", + "upd": { + "Repairable": { + "Durability": 23, + "MaxDurability": 24 + } + } + }, + { + "_id": "67d209282e73083cd8069425", + "_tpl": "6572e52f73c0eabb700109a0", + "parentId": "67d209282e73083cd8069423", + "slotId": "Soft_armor_back", + "upd": { + "Repairable": { + "Durability": 22, + "MaxDurability": 24 + } + } + }, + { + "_id": "67d209282e73083cd8069426", + "_tpl": "6572e53c73c0eabb700109a4", + "parentId": "67d209282e73083cd8069423", + "slotId": "Soft_armor_left", + "upd": { + "Repairable": { + "Durability": 10, + "MaxDurability": 10 + } + } + }, + { + "_id": "67d209282e73083cd8069427", + "_tpl": "6572e54873c0eabb700109a8", + "parentId": "67d209282e73083cd8069423", + "slotId": "soft_armor_right", + "upd": { + "Repairable": { + "Durability": 9, + "MaxDurability": 10 + } + } + }, + { + "_id": "67d248f86d6fd8314003d24d", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209282e73083cd8069423", + "slotId": "Front_plate" + }, + { + "_id": "67d248f96d6fd8314003d24e", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209282e73083cd8069423", + "slotId": "Back_plate" + }, + { + "_id": "67d247fc6d6fd8314003a729", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209282e73083cd8069423", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d247fc6d6fd8314003a72a", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209282e73083cd8069423", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d209312e73083cd806a44f", + "_tpl": "5f5f41476bdad616ad46d631", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 4, + "y": 21, + "r": "Horizontal" + } + }, + { + "_id": "67d209312e73083cd806a451", + "_tpl": "65731b46cea9255e2102360a", + "parentId": "67d209312e73083cd806a44f", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209312e73083cd806a452", + "_tpl": "65731b4fcea9255e2102360e", + "parentId": "67d209312e73083cd806a44f", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209312e73083cd806a453", + "_tpl": "65731b576e709cddd001ec3f", + "parentId": "67d209312e73083cd806a44f", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d209312e73083cd806a454", + "_tpl": "65731b60ff6dc44a7d068c4a", + "parentId": "67d209312e73083cd806a44f", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d209312e73083cd806a455", + "_tpl": "65731b666e709cddd001ec43", + "parentId": "67d209312e73083cd806a44f", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d209312e73083cd806a456", + "_tpl": "65731b716e709cddd001ec47", + "parentId": "67d209312e73083cd806a44f", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d209312e73083cd806a457", + "_tpl": "65731b6b6042b0f210020ef6", + "parentId": "67d209312e73083cd806a44f", + "slotId": "Groin_back", + "upd": {} + }, + { + "_id": "67d209312e73083cd806a458", + "_tpl": "656f664200d62bcd2e024077", + "parentId": "67d209312e73083cd806a44f", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d209312e73083cd806a459", + "_tpl": "654a4f8bc721968a4404ef18", + "parentId": "67d209312e73083cd806a44f", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d209312e73083cd806a45a", + "_tpl": "654a4f8bc721968a4404ef18", + "parentId": "67d209312e73083cd806a44f", + "slotId": "Right_side_plate", + "upd": {} + }, + { + "_id": "67d209312e73083cd806a45b", + "_tpl": "657b2797c3dbcb01d60c35ea", + "parentId": "67d209312e73083cd806a44f", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d2093e2e73083cd806a45c", + "_tpl": "5d5d646386f7742797261fd9", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576600186f11bca4106d331" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 7, + "r": "Horizontal" + } + }, + { + "_id": "67d2093e2e73083cd806a45d", + "_tpl": "65764e1e2bc38ef78e076489", + "parentId": "67d2093e2e73083cd806a45c", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d2093e2e73083cd806a45e", + "_tpl": "65764fae2bc38ef78e07648d", + "parentId": "67d2093e2e73083cd806a45c", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d2093e2e73083cd806a45f", + "_tpl": "6576504b526e320fbe035783", + "parentId": "67d2093e2e73083cd806a45c", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d2093e2e73083cd806a460", + "_tpl": "6576500f526e320fbe03577f", + "parentId": "67d2093e2e73083cd806a45c", + "slotId": "Groin_back", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d209442e73083cd806a461", + "_tpl": "5c0e722886f7740458316a57", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576616086f11bca4106d35f" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 13, + "r": "Horizontal" + } + }, + { + "_id": "67d209442e73083cd806a462", + "_tpl": "65730c0e292ecadbfa09ad49", + "parentId": "67d209442e73083cd806a461", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209442e73083cd806a463", + "_tpl": "65730c2213a2f660f60bea96", + "parentId": "67d209442e73083cd806a461", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209442e73083cd806a464", + "_tpl": "65730c2b292ecadbfa09ad50", + "parentId": "67d209442e73083cd806a461", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d209442e73083cd806a465", + "_tpl": "65730c35292ecadbfa09ad54", + "parentId": "67d209442e73083cd806a461", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d20a732e73083cd807129b", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209442e73083cd806a461", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d247fc6d6fd8314003a724", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209442e73083cd806a461", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d248796d6fd8314003c36e", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d209442e73083cd806a461", + "slotId": "Front_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d2487d6d6fd8314003c36f", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209442e73083cd806a461", + "slotId": "Back_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d209472e73083cd806a466", + "_tpl": "5ab8dced86f774646209ec87", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571952aacb85662e7024c01" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 17, + "r": "Horizontal" + } + }, + { + "_id": "67d209472e73083cd806a467", + "_tpl": "6570f6e774d84423df065f21", + "parentId": "67d209472e73083cd806a466", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209472e73083cd806a468", + "_tpl": "6570f71dd67d0309980a7af8", + "parentId": "67d209472e73083cd806a466", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209472e73083cd806a469", + "_tpl": "6570f74774d84423df065f25", + "parentId": "67d209472e73083cd806a466", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d209472e73083cd806a46a", + "_tpl": "6570f79c4c65ab77a6015121", + "parentId": "67d209472e73083cd806a466", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d248656d6fd8314003b4c6", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d209472e73083cd806a466", + "slotId": "Right_side_plate" + }, + { + "_id": "67d248656d6fd8314003b4c7", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d209472e73083cd806a466", + "slotId": "Left_side_plate" + }, + { + "_id": "67d2490d6d6fd8314003d24f", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209472e73083cd806a466", + "slotId": "Front_plate" + }, + { + "_id": "67d2490e6d6fd8314003e148", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209472e73083cd806a466", + "slotId": "Back_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d209512e73083cd806a46b", + "_tpl": "5d5d87f786f77427997cfaef", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571960bacb85662e7024c23" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 7, + "y": 22, + "r": "Vertical" + } + }, + { + "_id": "67d209512e73083cd806a46c", + "_tpl": "6570e5100b57c03ec90b970a", + "parentId": "67d209512e73083cd806a46b", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209512e73083cd806a46d", + "_tpl": "6570e479a6560e4ee50c2b02", + "parentId": "67d209512e73083cd806a46b", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209512e73083cd806a46e", + "_tpl": "6570e5674cc0d2ab1e05edbb", + "parentId": "67d209512e73083cd806a46b", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d209512e73083cd806a46f", + "_tpl": "6570e59b0b57c03ec90b970e", + "parentId": "67d209512e73083cd806a46b", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d249226d6fd8314003e14a", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d209512e73083cd806a46b", + "slotId": "Right_side_plate" + }, + { + "_id": "67d249236d6fd8314003e14b", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d209512e73083cd806a46b", + "slotId": "Left_side_plate" + }, + { + "_id": "67d2493e6d6fd8314003e14c", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209512e73083cd806a46b", + "slotId": "Back_plate" + }, + { + "_id": "67d2493f6d6fd8314003e14d", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209512e73083cd806a46b", + "slotId": "Front_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d209542e73083cd806a470", + "_tpl": "5e4ac41886f77406a511c9a8", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576667d526e320fbe035806" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 25, + "r": "Horizontal" + } + }, + { + "_id": "67d209542e73083cd806a471", + "_tpl": "6575ef599c7cad336508e453", + "parentId": "67d209542e73083cd806a470", + "slotId": "soft_armor_front", + "upd": {} + }, + { + "_id": "67d209542e73083cd806a472", + "_tpl": "6575ef6bf6a13a7b7100b093", + "parentId": "67d209542e73083cd806a470", + "slotId": "soft_armor_back", + "upd": {} + }, + { + "_id": "67d209542e73083cd806a473", + "_tpl": "6575ef78da698a4e980677eb", + "parentId": "67d209542e73083cd806a470", + "slotId": "soft_armor_left", + "upd": {} + }, + { + "_id": "67d209542e73083cd806a474", + "_tpl": "6575ef7f9c7cad336508e457", + "parentId": "67d209542e73083cd806a470", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d209542e73083cd806a475", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d209542e73083cd806a470", + "slotId": "front_plate", + "upd": {} + }, + { + "_id": "67d209542e73083cd806a476", + "_tpl": "656fae5f7c2d57afe200c0d7", + "parentId": "67d209542e73083cd806a470", + "slotId": "back_plate", + "upd": {} + }, + { + "_id": "67d209542e73083cd806a477", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209542e73083cd806a470", + "slotId": "left_side_plate", + "upd": {} + }, + { + "_id": "67d209542e73083cd806a478", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209542e73083cd806a470", + "slotId": "right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d2095e2e73083cd806b3ea", + "_tpl": "60a3c70cde5f453f634816a3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657194c0289dc422160e08d1" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 7, + "y": 26, + "r": "Vertical" + } + }, + { + "_id": "67d2095e2e73083cd806b3eb", + "_tpl": "6570fae34c65ab77a6015146", + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d2095e2e73083cd806b3ec", + "_tpl": "6570fa1f4c65ab77a601512f", + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d2095e2e73083cd806b3ed", + "_tpl": "6570fb22584a51c23e03251f", + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d2095e2e73083cd806b3ee", + "_tpl": "6570fb6ad3eefd23430f8c7c", + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d2095e2e73083cd806b3ef", + "_tpl": "6570fb8f4c65ab77a601514d", + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d2095e2e73083cd806b3f0", + "_tpl": "6570fbdd74d84423df065f60", + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "Shoulder_l", + "upd": {} + }, + { + "_id": "67d2095e2e73083cd806b3f1", + "_tpl": "6570fc41d3eefd23430f8c83", + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "Shoulder_r", + "upd": {} + }, + { + "_id": "67d2095e2e73083cd806b3f2", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d2095e2e73083cd806b3f3", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d248646d6fd8314003b4c5", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "Right_side_plate" + }, + { + "_id": "67d249216d6fd8314003e149", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d2095e2e73083cd806b3ea", + "slotId": "Left_side_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d2097a2e73083cd806b3f4", + "_tpl": "60a3c68c37ea821725773ef5", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657664ae303700411c02428c" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "67d2097a2e73083cd806b3f5", + "_tpl": "65733312ca0ca984940a2d53", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d2097a2e73083cd806b3f6", + "_tpl": "657333232cc8dfad2c0a3d97", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d2097a2e73083cd806b3f7", + "_tpl": "657333302cc8dfad2c0a3d9b", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d2097a2e73083cd806b3f8", + "_tpl": "6573333eca0ca984940a2d57", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d2097a2e73083cd806b3f9", + "_tpl": "6573334aca0ca984940a2d5b", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d2097a2e73083cd806b3fa", + "_tpl": "65733375b7a8d286530e3dd7", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "Shoulder_l", + "upd": {} + }, + { + "_id": "67d2097a2e73083cd806b3fb", + "_tpl": "6573337f2cc8dfad2c0a3da7", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "Shoulder_r", + "upd": {} + }, + { + "_id": "67d2097a2e73083cd806b3fc", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d2097a2e73083cd806b3fd", + "_tpl": "656fa53d94b480b8a500c0e4", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d2097a2e73083cd806b3fe", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d2097a2e73083cd806b3ff", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d2097a2e73083cd806b3f4", + "slotId": "Right_side_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d209852e73083cd806c389", + "_tpl": "544a5caa4bdc2d1a388b4568", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 3, + "y": 28, + "r": "Vertical" + } + }, + { + "_id": "67d209852e73083cd806c38b", + "_tpl": "6570e83223c1f638ef0b0ede", + "parentId": "67d209852e73083cd806c389", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209852e73083cd806c38c", + "_tpl": "6570e87c23c1f638ef0b0ee2", + "parentId": "67d209852e73083cd806c389", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209852e73083cd806c38d", + "_tpl": "6570e90b3a5689d85f08db97", + "parentId": "67d209852e73083cd806c389", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d209852e73083cd806c38e", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "67d209852e73083cd806c389", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d209852e73083cd806c38f", + "_tpl": "656f9fa0498d1b7e3e071d98", + "parentId": "67d209852e73083cd806c389", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d2098e2e73083cd806c390", + "_tpl": "628dc750b910320f4c27a732", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657660a1526e320fbe0357c1" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "67d2098e2e73083cd806c391", + "_tpl": "6572f1ca4c8d903cc60c874e", + "parentId": "67d2098e2e73083cd806c390", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d2098e2e73083cd806c392", + "_tpl": "6572f1d60103b4a3270332db", + "parentId": "67d2098e2e73083cd806c390", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d2098e2e73083cd806c393", + "_tpl": "6572f1e10103b4a3270332df", + "parentId": "67d2098e2e73083cd806c390", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d2098e2e73083cd806c394", + "_tpl": "6572f1edea457732140ce875", + "parentId": "67d2098e2e73083cd806c390", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d2098e2e73083cd806c395", + "_tpl": "6572f1f7ea457732140ce879", + "parentId": "67d2098e2e73083cd806c390", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d247fc6d6fd8314003a725", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d2098e2e73083cd806c390", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d247fc6d6fd8314003a726", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d2098e2e73083cd806c390", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d3878cd93c5866580373d7", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d2098e2e73083cd806c390", + "slotId": "Front_plate" + }, + { + "_id": "67d3878dd93c5866580373d8", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d2098e2e73083cd806c390", + "slotId": "Back_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d209952e73083cd806c396", + "_tpl": "61bc85697113f767765c7fe7", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 0, + "y": 21, + "r": "Horizontal" + } + }, + { + "_id": "67d209952e73083cd806c398", + "_tpl": "6572fc809a866b80ab07eb59", + "parentId": "67d209952e73083cd806c396", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209952e73083cd806c399", + "_tpl": "6572fc8c9a866b80ab07eb5d", + "parentId": "67d209952e73083cd806c396", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209952e73083cd806c39a", + "_tpl": "6572fc989a866b80ab07eb61", + "parentId": "67d209952e73083cd806c396", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d209952e73083cd806c39b", + "_tpl": "6572fca39a866b80ab07eb65", + "parentId": "67d209952e73083cd806c396", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d209952e73083cd806c39c", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d209952e73083cd806c396", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d209952e73083cd806c39d", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d209952e73083cd806c396", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d247fc6d6fd8314003a727", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209952e73083cd806c396", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d247fc6d6fd8314003a728", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209952e73083cd806c396", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d2099a2e73083cd806c39e", + "_tpl": "61bcc89aef0f505f0c6cd0fc", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576604f86f11bca4106d33d" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "67d2099a2e73083cd806c39f", + "_tpl": "6572eb0e55beba16bc04079f", + "parentId": "67d2099a2e73083cd806c39e", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d2099a2e73083cd806c3a0", + "_tpl": "6572eb1b04ee6483ef039882", + "parentId": "67d2099a2e73083cd806c39e", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d2099a2e73083cd806c3a1", + "_tpl": "6572eb3004ee6483ef039886", + "parentId": "67d2099a2e73083cd806c39e", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d2099a2e73083cd806c3a2", + "_tpl": "6572eb3b04ee6483ef03988a", + "parentId": "67d2099a2e73083cd806c39e", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d2099a2e73083cd806c3a3", + "_tpl": "6572eb865b5eac12f10a03ee", + "parentId": "67d2099a2e73083cd806c39e", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d20a732e73083cd807129e", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d2099a2e73083cd806c39e", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d20a732e73083cd807129f", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d2099a2e73083cd806c39e", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d3877dd93c5866580373d5", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d2099a2e73083cd806c39e", + "slotId": "Front_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d3877ed93c5866580373d6", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d2099a2e73083cd806c39e", + "slotId": "Back_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d209a32e73083cd806c3a4", + "_tpl": "628d0618d1ba6e4fa07ce5a4", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 3, + "y": 31, + "r": "Horizontal" + } + }, + { + "_id": "67d209a32e73083cd806c3a6", + "_tpl": "657322988c1cc6dcd9098b2d", + "parentId": "67d209a32e73083cd806c3a4", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209a32e73083cd806c3a7", + "_tpl": "657322a4cea9255e21023651", + "parentId": "67d209a32e73083cd806c3a4", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209a32e73083cd806c3a8", + "_tpl": "657322acd9d89ff7ac0d961b", + "parentId": "67d209a32e73083cd806c3a4", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d209a32e73083cd806c3a9", + "_tpl": "657322b7d9d89ff7ac0d961f", + "parentId": "67d209a32e73083cd806c3a4", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d209a32e73083cd806c3aa", + "_tpl": "656f664200d62bcd2e024077", + "parentId": "67d209a32e73083cd806c3a4", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d209a32e73083cd806c3ab", + "_tpl": "657b2797c3dbcb01d60c35ea", + "parentId": "67d209a32e73083cd806c3a4", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d3880ed93c5866580373f2", + "_tpl": "654a4f8bc721968a4404ef18", + "parentId": "67d209a32e73083cd806c3a4", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d3880fd93c5866580373f3", + "_tpl": "654a4f8bc721968a4404ef18", + "parentId": "67d209a32e73083cd806c3a4", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d209b02e73083cd806d33d", + "_tpl": "639343fce101f4caa40a4ef3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657661ad234b9f6e050a42a2" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 14, + "r": "Horizontal" + } + }, + { + "_id": "67d209b02e73083cd806d33e", + "_tpl": "6573101e292ecadbfa09b389", + "parentId": "67d209b02e73083cd806d33d", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209b02e73083cd806d33f", + "_tpl": "6573102b292ecadbfa09b38d", + "parentId": "67d209b02e73083cd806d33d", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209b02e73083cd806d340", + "_tpl": "65731038292ecadbfa09b391", + "parentId": "67d209b02e73083cd806d33d", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d209b02e73083cd806d341", + "_tpl": "65731045f31d5be00e08a75a", + "parentId": "67d209b02e73083cd806d33d", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d209b02e73083cd806d342", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d209b02e73083cd806d33d", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d209b02e73083cd806d343", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d209b02e73083cd806d33d", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d20a732e73083cd80712a2", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209b02e73083cd806d33d", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d20a732e73083cd80712a3", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209b02e73083cd806d33d", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d209b92e73083cd806d344", + "_tpl": "66b6296d7994640992013b17", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c5db19a3ab39b7175e2b" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 31, + "r": "Horizontal" + } + }, + { + "_id": "67d209b92e73083cd806d345", + "_tpl": "66b884f4c5d72b02774886eb", + "parentId": "67d209b92e73083cd806d344", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209b92e73083cd806d346", + "_tpl": "66b884eaacff495a29492849", + "parentId": "67d209b92e73083cd806d344", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209b92e73083cd806d347", + "_tpl": "66b8851678bbc0200425fa03", + "parentId": "67d209b92e73083cd806d344", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d209b92e73083cd806d348", + "_tpl": "66b88521a7f72d197e70be3b", + "parentId": "67d209b92e73083cd806d344", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d209b92e73083cd806d349", + "_tpl": "66b884fd7994640992013b37", + "parentId": "67d209b92e73083cd806d344", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d387e8d93c5866580373ea", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209b92e73083cd806d344", + "slotId": "Back_plate" + }, + { + "_id": "67d387e8d93c5866580373eb", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209b92e73083cd806d344", + "slotId": "Front_plate" + }, + { + "_id": "67d387f5d93c5866580373f0", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d209b92e73083cd806d344", + "slotId": "Right_side_plate" + }, + { + "_id": "67d387f6d93c5866580373f1", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d209b92e73083cd806d344", + "slotId": "Left_side_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d209c52e73083cd806d34a", + "_tpl": "66b6295178bbc0200425f995", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c65b96edb969cd4f5d7f" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 7, + "y": 34, + "r": "Vertical" + } + }, + { + "_id": "67d209c52e73083cd806d34b", + "_tpl": "66b8b217c5d72b02774887b4", + "parentId": "67d209c52e73083cd806d34a", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209c52e73083cd806d34c", + "_tpl": "66b8b20c5891c84aab75cb96", + "parentId": "67d209c52e73083cd806d34a", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209c52e73083cd806d34d", + "_tpl": "66b8b223a7f72d197e70bed3", + "parentId": "67d209c52e73083cd806d34a", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d209c52e73083cd806d34e", + "_tpl": "66b8b22b78bbc0200425fb20", + "parentId": "67d209c52e73083cd806d34a", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d20a732e73083cd807129c", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209c52e73083cd806d34a", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d20a732e73083cd807129d", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d209c52e73083cd806d34a", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d38832d93c586658038187", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209c52e73083cd806d34a", + "slotId": "Back_plate" + }, + { + "_id": "67d38832d93c586658038188", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209c52e73083cd806d34a", + "slotId": "Front_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d209ca2e73083cd806d34f", + "_tpl": "628cd624459354321c4b7fa2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657667f686f11bca4106d383" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 35, + "r": "Horizontal" + } + }, + { + "_id": "67d245ed6d6fd831400379e9", + "_tpl": "656fae5f7c2d57afe200c0d7", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209ca2e73083cd806d34f", + "slotId": "Back_plate" + }, + { + "_id": "67d245ef6d6fd831400379ea", + "_tpl": "656fae5f7c2d57afe200c0d7", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d209ca2e73083cd806d34f", + "slotId": "Front_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d209d22e73083cd806e41c", + "_tpl": "5c0e746986f7741453628fe5", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 0, + "y": 35, + "r": "Horizontal" + } + }, + { + "_id": "67d209d22e73083cd806e41e", + "_tpl": "6570df294cc0d2ab1e05ed74", + "parentId": "67d209d22e73083cd806e41c", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d209d22e73083cd806e41f", + "_tpl": "6570df9c615f54368b04fca9", + "parentId": "67d209d22e73083cd806e41c", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d209d22e73083cd806e420", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d209d22e73083cd806e41c", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d209d22e73083cd806e421", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d209d22e73083cd806e41c", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d20a582e73083cd807045d", + "_tpl": "5f5f41476bdad616ad46d631", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65766278526e320fbe0357d4" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 17, + "r": "Horizontal" + } + }, + { + "_id": "67d20a582e73083cd807045e", + "_tpl": "65731b46cea9255e2102360a", + "parentId": "67d20a582e73083cd807045d", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d20a582e73083cd807045f", + "_tpl": "65731b4fcea9255e2102360e", + "parentId": "67d20a582e73083cd807045d", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d20a582e73083cd8070460", + "_tpl": "65731b576e709cddd001ec3f", + "parentId": "67d20a582e73083cd807045d", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d20a582e73083cd8070461", + "_tpl": "65731b60ff6dc44a7d068c4a", + "parentId": "67d20a582e73083cd807045d", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d20a582e73083cd8070462", + "_tpl": "65731b666e709cddd001ec43", + "parentId": "67d20a582e73083cd807045d", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d20a582e73083cd8070463", + "_tpl": "65731b716e709cddd001ec47", + "parentId": "67d20a582e73083cd807045d", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d20a582e73083cd8070464", + "_tpl": "65731b6b6042b0f210020ef6", + "parentId": "67d20a582e73083cd807045d", + "slotId": "Groin_back", + "upd": {} + }, + { + "_id": "67d20a582e73083cd8070465", + "_tpl": "656f664200d62bcd2e024077", + "parentId": "67d20a582e73083cd807045d", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d20a582e73083cd8070466", + "_tpl": "654a4f8bc721968a4404ef18", + "parentId": "67d20a582e73083cd807045d", + "slotId": "Left_side_plate", + "upd": {} + }, + { + "_id": "67d20a582e73083cd8070467", + "_tpl": "654a4f8bc721968a4404ef18", + "parentId": "67d20a582e73083cd807045d", + "slotId": "Right_side_plate", + "upd": {} + }, + { + "_id": "67d20a582e73083cd8070468", + "_tpl": "657b2797c3dbcb01d60c35ea", + "parentId": "67d20a582e73083cd807045d", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d20a632e73083cd8071294", + "_tpl": "639343fce101f4caa40a4ef3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657661ad234b9f6e050a42a2" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 14, + "r": 0, + "rotation": false + } + }, + { + "_id": "67d20a632e73083cd8071295", + "_tpl": "6573101e292ecadbfa09b389", + "parentId": "67d20a632e73083cd8071294", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d20a632e73083cd8071296", + "_tpl": "6573102b292ecadbfa09b38d", + "parentId": "67d20a632e73083cd8071294", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d20a632e73083cd8071297", + "_tpl": "65731038292ecadbfa09b391", + "parentId": "67d20a632e73083cd8071294", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d20a632e73083cd8071298", + "_tpl": "65731045f31d5be00e08a75a", + "parentId": "67d20a632e73083cd8071294", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d20a632e73083cd8071299", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d20a632e73083cd8071294", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d20a632e73083cd807129a", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d20a632e73083cd8071294", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d20a732e73083cd80712a0", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d20a632e73083cd8071294", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d20a732e73083cd80712a1", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d20a632e73083cd8071294", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d245d16d6fd831400379e3", + "_tpl": "5c0e746986f7741453628fe5", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 0, + "y": 38, + "r": "Horizontal" + } + }, + { + "_id": "67d245d16d6fd831400379e5", + "_tpl": "6570df294cc0d2ab1e05ed74", + "parentId": "67d245d16d6fd831400379e3", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d245d16d6fd831400379e6", + "_tpl": "6570df9c615f54368b04fca9", + "parentId": "67d245d16d6fd831400379e3", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d245d16d6fd831400379e7", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d245d16d6fd831400379e3", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d245d16d6fd831400379e8", + "_tpl": "656fa0fb498d1b7e3e071d9c", + "parentId": "67d245d16d6fd831400379e3", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d247236d6fd83140037a1b", + "_tpl": "5ab8e79e86f7742d8b372e78", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657663b6526e320fbe0357ec" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 11, + "r": "Horizontal" + } + }, + { + "_id": "67d247236d6fd83140037a1c", + "_tpl": "65732688d9d89ff7ac0d9c4c", + "parentId": "67d247236d6fd83140037a1b", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d247236d6fd83140037a1d", + "_tpl": "657326978c1cc6dcd9098b56", + "parentId": "67d247236d6fd83140037a1b", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d247236d6fd83140037a1e", + "_tpl": "657326a28c1cc6dcd9098b5a", + "parentId": "67d247236d6fd83140037a1b", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d247236d6fd83140037a1f", + "_tpl": "657326b08c1cc6dcd9098b5e", + "parentId": "67d247236d6fd83140037a1b", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d247236d6fd83140037a20", + "_tpl": "657326bc5d3a3129fb05f36b", + "parentId": "67d247236d6fd83140037a1b", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d247236d6fd83140037a21", + "_tpl": "656f611f94b480b8a500c0db", + "parentId": "67d247236d6fd83140037a1b", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d247236d6fd83140037a22", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d247236d6fd83140037a1b", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d387b1d93c5866580373de", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d247236d6fd83140037a1b", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d387b1d93c5866580373df", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d247236d6fd83140037a1b", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d38720d93c58665803737d", + "_tpl": "61bc85697113f767765c7fe7", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 0, + "y": 24, + "r": "Horizontal" + } + }, + { + "_id": "67d38720d93c58665803737f", + "_tpl": "6572fc809a866b80ab07eb59", + "parentId": "67d38720d93c58665803737d", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38720d93c586658037380", + "_tpl": "6572fc8c9a866b80ab07eb5d", + "parentId": "67d38720d93c58665803737d", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38720d93c586658037381", + "_tpl": "6572fc989a866b80ab07eb61", + "parentId": "67d38720d93c58665803737d", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38720d93c586658037382", + "_tpl": "6572fca39a866b80ab07eb65", + "parentId": "67d38720d93c58665803737d", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38720d93c586658037383", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d38720d93c58665803737d", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38720d93c586658037384", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d38720d93c58665803737d", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d248636d6fd8314003b4c4", + "_tpl": "6557458f83942d705f0c4962", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 15, + "MaxDurability": 15 + } + }, + "parentId": "67d38720d93c58665803737d", + "slotId": "Left_side_plate" + }, + { + "_id": "67d38735d93c58665803738e", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d38720d93c58665803737d", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d38729d93c586658037385", + "_tpl": "5c0e51be86f774598e797894", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765f39526e320fbe0357b1" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 7, + "y": 38, + "r": 0, + "rotation": false + } + }, + { + "_id": "67d38729d93c586658037386", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "67d38729d93c586658037385", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38729d93c586658037387", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "67d38729d93c586658037385", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38729d93c586658037388", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "67d38729d93c586658037385", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38729d93c586658037389", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "67d38729d93c586658037385", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38729d93c58665803738a", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "67d38729d93c586658037385", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d38729d93c58665803738b", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "67d38729d93c586658037385", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d38729d93c58665803738c", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "67d38729d93c586658037385", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38729d93c58665803738d", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "67d38729d93c586658037385", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d38760d93c586658037391", + "_tpl": "64abd93857958b4249003418", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657127126d197c216005b402" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 3, + "r": "Horizontal" + } + }, + { + "_id": "67d38760d93c586658037392", + "_tpl": "6570f30b0921c914bf07964c", + "parentId": "67d38760d93c586658037391", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d38760d93c586658037393", + "_tpl": "6570f35cd67d0309980a7acb", + "parentId": "67d38760d93c586658037391", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d38760d93c586658037394", + "_tpl": "6570f3890b4ae5847f060dad", + "parentId": "67d38760d93c586658037391", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d38760d93c586658037395", + "_tpl": "6570f3bb0b4ae5847f060db2", + "parentId": "67d38760d93c586658037391", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d38760d93c586658037396", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "67d38760d93c586658037391", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d38760d93c586658037397", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "67d38760d93c586658037391", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d387c9d93c5866580373e0", + "_tpl": "5ca2151486f774244a3b8d30", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576695d234b9f6e050a42f0" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 7, + "y": 17, + "r": "Horizontal" + } + }, + { + "_id": "67d387c9d93c5866580373e1", + "_tpl": "6575dd3e9e27f4a85e081142", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d387c9d93c5866580373e2", + "_tpl": "6575dd519e27f4a85e081146", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d387c9d93c5866580373e3", + "_tpl": "6575dd64945bf78edd04c438", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d387c9d93c5866580373e4", + "_tpl": "6575dd6e9d3a0ddf660b9047", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d387c9d93c5866580373e5", + "_tpl": "6575dd769d3a0ddf660b904b", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d387c9d93c5866580373e6", + "_tpl": "6575dd800546f8b1de093df6", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d387c9d93c5866580373e7", + "_tpl": "6575dd94945bf78edd04c43c", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "Groin_back", + "upd": {} + }, + { + "_id": "67d387c9d93c5866580373e8", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d387c9d93c5866580373e9", + "_tpl": "65573fa5655447403702a816", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d387a7d93c5866580373da", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d387b0d93c5866580373db", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d387c9d93c5866580373e0", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d3885ad93c5866580381cd", + "_tpl": "5d5d646386f7742797261fd9", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576600186f11bca4106d331" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 41, + "r": 0, + "rotation": false + } + }, + { + "_id": "67d3885ad93c5866580381ce", + "_tpl": "65764e1e2bc38ef78e076489", + "parentId": "67d3885ad93c5866580381cd", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d3885ad93c5866580381cf", + "_tpl": "65764fae2bc38ef78e07648d", + "parentId": "67d3885ad93c5866580381cd", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d3885ad93c5866580381d0", + "_tpl": "6576504b526e320fbe035783", + "parentId": "67d3885ad93c5866580381cd", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d3885ad93c5866580381d1", + "_tpl": "6576500f526e320fbe03577f", + "parentId": "67d3885ad93c5866580381cd", + "slotId": "Groin_back", + "upd": {} + } + ], + }, + ], + [ + // _common + { + Items: [ + { + "_id": "67d1fde42e73083cd80388b4", + "_tpl": "5df8a2ca86f7740bfe6df777", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 0, + "y": 0, + "r": 0, + "rotation": false + } + }, + { + "_id": "67d1fde42e73083cd80388b6", + "_tpl": "656fd7c32668ef0402028fb9", + "parentId": "67d1fde42e73083cd80388b4", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fde42e73083cd80388b7", + "_tpl": "656fd89bf5a9631d4e042575", + "parentId": "67d1fde42e73083cd80388b4", + "slotId": "Soft_armor_back", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fde92e73083cd80388b8", + "_tpl": "5c0e53c886f7747fa54205c7", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657123216d197c216005b354" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "67d1fde92e73083cd80388b9", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "67d1fde92e73083cd80388b8", + "slotId": "soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fde92e73083cd80388ba", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "67d1fde92e73083cd80388b8", + "slotId": "soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fde92e73083cd80388bb", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "67d1fde92e73083cd80388b8", + "slotId": "soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fde92e73083cd80388bc", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "67d1fde92e73083cd80388b8", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1fde92e73083cd80388bd", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "67d1fde92e73083cd80388b8", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d1fde92e73083cd80388be", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "67d1fde92e73083cd80388b8", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d1fde92e73083cd80388bf", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "67d1fde92e73083cd80388b8", + "slotId": "front_plate", + "upd": {} + }, + { + "_id": "67d1fde92e73083cd80388c0", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "67d1fde92e73083cd80388b8", + "slotId": "back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fdf02e73083cd80388eb", + "_tpl": "5c0e51be86f774598e797894", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765f39526e320fbe0357b1" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "67d1fdf02e73083cd80388ec", + "_tpl": "654a8b0b0337d53f9102c2ae", + "parentId": "67d1fdf02e73083cd80388eb", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fdf02e73083cd80388ed", + "_tpl": "654a8976f414fcea4004d78b", + "parentId": "67d1fdf02e73083cd80388eb", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fdf02e73083cd80388ee", + "_tpl": "654a8b3df414fcea4004d78f", + "parentId": "67d1fdf02e73083cd80388eb", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fdf02e73083cd80388ef", + "_tpl": "654a8b80f414fcea4004d797", + "parentId": "67d1fdf02e73083cd80388eb", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1fdf02e73083cd80388f0", + "_tpl": "654a8ae00337d53f9102c2aa", + "parentId": "67d1fdf02e73083cd80388eb", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d1fdf02e73083cd80388f1", + "_tpl": "654a8bc5f414fcea4004d79b", + "parentId": "67d1fdf02e73083cd80388eb", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d1fdf02e73083cd80388f2", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "67d1fdf02e73083cd80388eb", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d1fdf02e73083cd80388f3", + "_tpl": "656efd66034e8e01c407f35c", + "parentId": "67d1fdf02e73083cd80388eb", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe102e73083cd8039833", + "_tpl": "5c0e5bab86f77461f55ed1f3", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 3, + "y": 23, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe102e73083cd8039835", + "_tpl": "6571b27a6d84a2b8b6007f92", + "parentId": "67d1fe102e73083cd8039833", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe102e73083cd8039836", + "_tpl": "6571baa74cb80d995d0a1490", + "parentId": "67d1fe102e73083cd8039833", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe102e73083cd8039837", + "_tpl": "6571baac6d84a2b8b6007fa3", + "parentId": "67d1fe102e73083cd8039833", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe102e73083cd8039838", + "_tpl": "6571bab0f41985531a038091", + "parentId": "67d1fe102e73083cd8039833", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1fe102e73083cd8039839", + "_tpl": "6571babb4076795e5e07383f", + "parentId": "67d1fe102e73083cd8039833", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d1fe102e73083cd803983a", + "_tpl": "6571bac34076795e5e073843", + "parentId": "67d1fe102e73083cd8039833", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d1fe102e73083cd803983b", + "_tpl": "6571babf4cb80d995d0a1494", + "parentId": "67d1fe102e73083cd8039833", + "slotId": "Groin_back", + "upd": {} + }, + { + "_id": "67d1fe102e73083cd803983c", + "_tpl": "654a4dea7c17dec2f50cc86a", + "parentId": "67d1fe102e73083cd8039833", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d202ef2e73083cd804a1a3", + "_tpl": "657b22485f444d6dff0c6c2f", + "parentId": "67d1fe102e73083cd8039833", + "slotId": "Back_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe182e73083cd803983d", + "_tpl": "5c0e57ba86f7747fa141986d", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65712763c50461e8750d1fae" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe182e73083cd803983e", + "_tpl": "65707fc348c7a887f2010432", + "parentId": "67d1fe182e73083cd803983d", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe182e73083cd803983f", + "_tpl": "6570800612755ae0d907acf8", + "parentId": "67d1fe182e73083cd803983d", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe182e73083cd8039840", + "_tpl": "65708070f65e2491bf00972c", + "parentId": "67d1fe182e73083cd803983d", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe182e73083cd8039841", + "_tpl": "657080a212755ae0d907ad04", + "parentId": "67d1fe182e73083cd803983d", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1fe182e73083cd8039842", + "_tpl": "657080ca12755ae0d907ad5e", + "parentId": "67d1fe182e73083cd803983d", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d1fe182e73083cd8039843", + "_tpl": "65708122f65e2491bf009755", + "parentId": "67d1fe182e73083cd803983d", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d1fe182e73083cd8039844", + "_tpl": "65708165696fe382cf073255", + "parentId": "67d1fe182e73083cd803983d", + "slotId": "Groin_back", + "upd": {} + }, + { + "_id": "67d1fe182e73083cd8039845", + "_tpl": "656f603f94b480b8a500c0d6", + "parentId": "67d1fe182e73083cd803983d", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d1fe182e73083cd8039846", + "_tpl": "657b22485f444d6dff0c6c2f", + "parentId": "67d1fe182e73083cd803983d", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe1d2e73083cd8039847", + "_tpl": "5b44d22286f774172b0c9de8", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 6, + "y": 3, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe1d2e73083cd8039849", + "_tpl": "65704de13e7bba58ea0285c8", + "parentId": "67d1fe1d2e73083cd8039847", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe1d2e73083cd803984a", + "_tpl": "65705c3c14f2ed6d7d0b7738", + "parentId": "67d1fe1d2e73083cd8039847", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe1d2e73083cd803984b", + "_tpl": "65705c777260e1139e091408", + "parentId": "67d1fe1d2e73083cd8039847", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe1d2e73083cd803984c", + "_tpl": "65705cb314f2ed6d7d0b773c", + "parentId": "67d1fe1d2e73083cd8039847", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1fe1d2e73083cd803984d", + "_tpl": "65705cea4916448ae1050897", + "parentId": "67d1fe1d2e73083cd8039847", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d1fe1d2e73083cd803984e", + "_tpl": "656f9d5900d62bcd2e02407c", + "parentId": "67d1fe1d2e73083cd8039847", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d1fe1d2e73083cd803984f", + "_tpl": "656f9d5900d62bcd2e02407c", + "parentId": "67d1fe1d2e73083cd8039847", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe212e73083cd8039850", + "_tpl": "59e7635f86f7742cbf2c1095", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571214fc50461e8750d1f6b" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe212e73083cd8039851", + "_tpl": "65702f87722744627e05cdb8", + "parentId": "67d1fe212e73083cd8039850", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe212e73083cd8039852", + "_tpl": "65702fe593b7ea9c330f4ce8", + "parentId": "67d1fe212e73083cd8039850", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe212e73083cd8039853", + "_tpl": "6570305d93b7ea9c330f4ced", + "parentId": "67d1fe212e73083cd8039850", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe212e73083cd8039854", + "_tpl": "65703472c9030b928a0a8a78", + "parentId": "67d1fe212e73083cd8039850", + "slotId": "soft_armor_right", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe2d2e73083cd8039855", + "_tpl": "5c0e5edb86f77461f55ed1f7", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765a38526e320fbe035795" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe2d2e73083cd8039856", + "_tpl": "6571dbd388ead79fcf091d71", + "parentId": "67d1fe2d2e73083cd8039855", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe2d2e73083cd8039857", + "_tpl": "6571dbda88ead79fcf091d75", + "parentId": "67d1fe2d2e73083cd8039855", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe2d2e73083cd8039858", + "_tpl": "6571dbe07c02ae206002502e", + "parentId": "67d1fe2d2e73083cd8039855", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe2d2e73083cd8039859", + "_tpl": "6571dbeaee8ec43d520cf89e", + "parentId": "67d1fe2d2e73083cd8039855", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1fe2d2e73083cd803985a", + "_tpl": "6571dbef88ead79fcf091d79", + "parentId": "67d1fe2d2e73083cd8039855", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d1ffa82e73083cd803e2b4", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "67d1fe2d2e73083cd8039855", + "slotId": "Back_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d1ffb62e73083cd803e2b9", + "_tpl": "656f57dc27aed95beb08f628", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + } + }, + "parentId": "67d1fe2d2e73083cd8039855", + "slotId": "Front_plate" + }, + { + "_id": "67d1ffbd2e73083cd803e2c2", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1fe2d2e73083cd8039855", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d1ffbd2e73083cd803e2c3", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1fe2d2e73083cd8039855", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe312e73083cd803985b", + "_tpl": "62a09d79de7ac81993580530", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765d8586f11bca4106d323" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 3, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe312e73083cd803985c", + "_tpl": "6572e048371fccfbf909d5d8", + "parentId": "67d1fe312e73083cd803985b", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe312e73083cd803985d", + "_tpl": "6572e059371fccfbf909d5dc", + "parentId": "67d1fe312e73083cd803985b", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe312e73083cd803985e", + "_tpl": "6572e06219b4b511af012f89", + "parentId": "67d1fe312e73083cd803985b", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe312e73083cd803985f", + "_tpl": "6572e06819b4b511af012f8d", + "parentId": "67d1fe312e73083cd803985b", + "slotId": "soft_armor_right", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe412e73083cd8039860", + "_tpl": "64abd93857958b4249003418", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657127126d197c216005b402" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 27, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe412e73083cd8039861", + "_tpl": "6570f30b0921c914bf07964c", + "parentId": "67d1fe412e73083cd8039860", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe412e73083cd8039862", + "_tpl": "6570f35cd67d0309980a7acb", + "parentId": "67d1fe412e73083cd8039860", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe412e73083cd8039863", + "_tpl": "6570f3890b4ae5847f060dad", + "parentId": "67d1fe412e73083cd8039860", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe412e73083cd8039864", + "_tpl": "6570f3bb0b4ae5847f060db2", + "parentId": "67d1fe412e73083cd8039860", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1fe412e73083cd8039865", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "67d1fe412e73083cd8039860", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d1fe412e73083cd8039866", + "_tpl": "656fb0bd7c2d57afe200c0dc", + "parentId": "67d1fe412e73083cd8039860", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe452e73083cd8039867", + "_tpl": "5ab8e4ed86f7742d8e50c7fa", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 3, + "y": 3, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe452e73083cd8039869", + "_tpl": "657044e971369562b300ce9b", + "parentId": "67d1fe452e73083cd8039867", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe452e73083cd803986a", + "_tpl": "657045741bd9beedc40b7299", + "parentId": "67d1fe452e73083cd8039867", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe452e73083cd803986b", + "_tpl": "657045b97e80617cee095bda", + "parentId": "67d1fe452e73083cd8039867", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe452e73083cd803986c", + "_tpl": "6570460471369562b300ce9f", + "parentId": "67d1fe452e73083cd8039867", + "slotId": "soft_armor_right", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe4e2e73083cd803986d", + "_tpl": "609e8540d5c319764c2bc2e9", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765fbe234b9f6e050a4292" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 13, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe4e2e73083cd803986e", + "_tpl": "6572e5221b5bc1185508c24f", + "parentId": "67d1fe4e2e73083cd803986d", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe4e2e73083cd803986f", + "_tpl": "6572e52f73c0eabb700109a0", + "parentId": "67d1fe4e2e73083cd803986d", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe4e2e73083cd8039870", + "_tpl": "6572e53c73c0eabb700109a4", + "parentId": "67d1fe4e2e73083cd803986d", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe4e2e73083cd8039871", + "_tpl": "6572e54873c0eabb700109a8", + "parentId": "67d1fe4e2e73083cd803986d", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1ffbd2e73083cd803e2c0", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1fe4e2e73083cd803986d", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d1ffbd2e73083cd803e2c1", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1fe4e2e73083cd803986d", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d200272e73083cd803fec1", + "_tpl": "656f9d5900d62bcd2e02407c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d1fe4e2e73083cd803986d", + "slotId": "Back_plate" + }, + { + "_id": "67d200292e73083cd803fec2", + "_tpl": "656f9d5900d62bcd2e02407c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + } + }, + "parentId": "67d1fe4e2e73083cd803986d", + "slotId": "Front_plate" + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe562e73083cd8039872", + "_tpl": "64be79c487d1510151095552", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657122026d197c216005b34a" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe562e73083cd8039873", + "_tpl": "6570495b45d573133d0d6adb", + "parentId": "67d1fe562e73083cd8039872", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe562e73083cd8039874", + "_tpl": "657049d23425b19bbc0502f0", + "parentId": "67d1fe562e73083cd8039872", + "slotId": "Soft_armor_back", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe5b2e73083cd803a7d6", + "_tpl": "64be79e2bf8412471d0d9bcc", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765d08b7ea14f3b70da69b" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe5b2e73083cd803a7d7", + "_tpl": "6570495b45d573133d0d6adb", + "parentId": "67d1fe5b2e73083cd803a7d6", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe5b2e73083cd803a7d8", + "_tpl": "657049d23425b19bbc0502f0", + "parentId": "67d1fe5b2e73083cd803a7d6", + "slotId": "Soft_armor_back", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe5e2e73083cd803a7d9", + "_tpl": "5648a7494bdc2d9d488b4583", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 6, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe5e2e73083cd803a7db", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "67d1fe5e2e73083cd803a7d9", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe5e2e73083cd803a7dc", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "67d1fe5e2e73083cd803a7d9", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe5e2e73083cd803a7dd", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "67d1fe5e2e73083cd803a7d9", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe5e2e73083cd803a7de", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "67d1fe5e2e73083cd803a7d9", + "slotId": "soft_armor_right", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe602e73083cd803a7df", + "_tpl": "607f20859ee58b18e41ecd90", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765896526e320fbe035788" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 16, + "r": 0, + "rotation": false + } + }, + { + "_id": "67d1fe602e73083cd803a7e0", + "_tpl": "65703d866584602f7d057a8a", + "parentId": "67d1fe602e73083cd803a7df", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe602e73083cd803a7e1", + "_tpl": "65703fa06584602f7d057a8e", + "parentId": "67d1fe602e73083cd803a7df", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe602e73083cd803a7e2", + "_tpl": "65703fe46a912c8b5c03468b", + "parentId": "67d1fe602e73083cd803a7df", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe602e73083cd803a7e3", + "_tpl": "657040374e67e8ec7a0d261c", + "parentId": "67d1fe602e73083cd803a7df", + "slotId": "soft_armor_right", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe702e73083cd803a7e4", + "_tpl": "5d5d646386f7742797261fd9", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576600186f11bca4106d331" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 13, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe702e73083cd803a7e5", + "_tpl": "65764e1e2bc38ef78e076489", + "parentId": "67d1fe702e73083cd803a7e4", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe702e73083cd803a7e6", + "_tpl": "65764fae2bc38ef78e07648d", + "parentId": "67d1fe702e73083cd803a7e4", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe702e73083cd803a7e7", + "_tpl": "6576504b526e320fbe035783", + "parentId": "67d1fe702e73083cd803a7e4", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d1fe702e73083cd803a7e8", + "_tpl": "6576500f526e320fbe03577f", + "parentId": "67d1fe702e73083cd803a7e4", + "slotId": "Groin_back", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe732e73083cd803a7e9", + "_tpl": "5c0e446786f7742013381639", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571944dacb85662e7024bea" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 13, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe732e73083cd803a7ea", + "_tpl": "657087577f6d4590ac0d2109", + "parentId": "67d1fe732e73083cd803a7e9", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe732e73083cd803a7eb", + "_tpl": "6570880f4a747dbb63005ee5", + "parentId": "67d1fe732e73083cd803a7e9", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe732e73083cd803a7ec", + "_tpl": "65708afe4a747dbb63005eee", + "parentId": "67d1fe732e73083cd803a7e9", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d1fe732e73083cd803a7ed", + "_tpl": "65708b4c4a747dbb63005ef3", + "parentId": "67d1fe732e73083cd803a7e9", + "slotId": "Groin", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe762e73083cd803a7ee", + "_tpl": "5c0e3eb886f7742015526062", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65765d5086f11bca4106d316" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 19, + "r": 0, + "rotation": false + } + }, + { + "_id": "67d1fe762e73083cd803a7ef", + "_tpl": "65764a4cd8537eb26a0355ee", + "parentId": "67d1fe762e73083cd803a7ee", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe762e73083cd803a7f0", + "_tpl": "65764bc22bc38ef78e076485", + "parentId": "67d1fe762e73083cd803a7ee", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe762e73083cd803a7f1", + "_tpl": "65764c39526e320fbe035777", + "parentId": "67d1fe762e73083cd803a7ee", + "slotId": "Collar", + "upd": {} + }, + { + "_id": "67d1fe762e73083cd803a7f2", + "_tpl": "65764c6b526e320fbe03577b", + "parentId": "67d1fe762e73083cd803a7ee", + "slotId": "Groin", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe922e73083cd803a7f3", + "_tpl": "628dc750b910320f4c27a732", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 6, + "y": 17, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe922e73083cd803a7f5", + "_tpl": "6572f1ca4c8d903cc60c874e", + "parentId": "67d1fe922e73083cd803a7f3", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe922e73083cd803a7f6", + "_tpl": "6572f1d60103b4a3270332db", + "parentId": "67d1fe922e73083cd803a7f3", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe922e73083cd803a7f7", + "_tpl": "6572f1e10103b4a3270332df", + "parentId": "67d1fe922e73083cd803a7f3", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe922e73083cd803a7f8", + "_tpl": "6572f1edea457732140ce875", + "parentId": "67d1fe922e73083cd803a7f3", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1fe922e73083cd803a7f9", + "_tpl": "6572f1f7ea457732140ce879", + "parentId": "67d1fe922e73083cd803a7f3", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d1fe922e73083cd803a7fa", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "67d1fe922e73083cd803a7f3", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d1fe922e73083cd803a7fb", + "_tpl": "656fa25e94b480b8a500c0e0", + "parentId": "67d1fe922e73083cd803a7f3", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d3adffc8a90e4fa803876a", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1fe922e73083cd803a7f3", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d3ae00c8a90e4fa803876b", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1fe922e73083cd803a7f3", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d1fe982e73083cd803a7fc", + "_tpl": "61bc85697113f767765c7fe7", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1 + }, + "location": { + "x": 3, + "y": 17, + "r": "Horizontal" + } + }, + { + "_id": "67d1fe982e73083cd803a7fe", + "_tpl": "6572fc809a866b80ab07eb59", + "parentId": "67d1fe982e73083cd803a7fc", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fe982e73083cd803a7ff", + "_tpl": "6572fc8c9a866b80ab07eb5d", + "parentId": "67d1fe982e73083cd803a7fc", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fe982e73083cd803a800", + "_tpl": "6572fc989a866b80ab07eb61", + "parentId": "67d1fe982e73083cd803a7fc", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fe982e73083cd803a801", + "_tpl": "6572fca39a866b80ab07eb65", + "parentId": "67d1fe982e73083cd803a7fc", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1fe982e73083cd803a802", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d1fe982e73083cd803a7fc", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d1fe982e73083cd803a803", + "_tpl": "656fad8c498d1b7e3e071da0", + "parentId": "67d1fe982e73083cd803a7fc", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d1ffbd2e73083cd803e2be", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1fe982e73083cd803a7fc", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d1ffbd2e73083cd803e2bf", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1fe982e73083cd803a7fc", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d1fea12e73083cd803a804", + "_tpl": "61bcc89aef0f505f0c6cd0fc", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6576604f86f11bca4106d33d" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 23, + "r": 0, + "rotation": false + } + }, + { + "_id": "67d1fea12e73083cd803a805", + "_tpl": "6572eb0e55beba16bc04079f", + "parentId": "67d1fea12e73083cd803a804", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fea12e73083cd803a806", + "_tpl": "6572eb1b04ee6483ef039882", + "parentId": "67d1fea12e73083cd803a804", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fea12e73083cd803a807", + "_tpl": "6572eb3004ee6483ef039886", + "parentId": "67d1fea12e73083cd803a804", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1fea12e73083cd803a808", + "_tpl": "6572eb3b04ee6483ef03988a", + "parentId": "67d1fea12e73083cd803a804", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d1fea12e73083cd803a809", + "_tpl": "6572eb865b5eac12f10a03ee", + "parentId": "67d1fea12e73083cd803a804", + "slotId": "Groin", + "upd": {} + }, + { + "_id": "67d1fea12e73083cd803a80a", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "67d1fea12e73083cd803a804", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d1fea12e73083cd803a80b", + "_tpl": "656fb21fa0dce000a2020f7c", + "parentId": "67d1fea12e73083cd803a804", + "slotId": "Back_plate", + "upd": {} + }, + { + "_id": "67d1ffbd2e73083cd803e2bc", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1fea12e73083cd803a804", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d1ffbd2e73083cd803e2bd", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1fea12e73083cd803a804", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d1feb42e73083cd803b720", + "_tpl": "639343fce101f4caa40a4ef3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657661ad234b9f6e050a42a2" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 3, + "y": 20, + "r": "Horizontal" + } + }, + { + "_id": "67d1feb42e73083cd803b721", + "_tpl": "6573101e292ecadbfa09b389", + "parentId": "67d1feb42e73083cd803b720", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1feb42e73083cd803b722", + "_tpl": "6573102b292ecadbfa09b38d", + "parentId": "67d1feb42e73083cd803b720", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1feb42e73083cd803b723", + "_tpl": "65731038292ecadbfa09b391", + "parentId": "67d1feb42e73083cd803b720", + "slotId": "Soft_armor_left", + "upd": {} + }, + { + "_id": "67d1feb42e73083cd803b724", + "_tpl": "65731045f31d5be00e08a75a", + "parentId": "67d1feb42e73083cd803b720", + "slotId": "soft_armor_right", + "upd": {} + }, + { + "_id": "67d3adb4c8a90e4fa8038728", + "_tpl": "656f9d5900d62bcd2e02407c", + "parentId": "67d1feb42e73083cd803b720", + "slotId": "Front_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d3adb5c8a90e4fa8038729", + "_tpl": "656f9d5900d62bcd2e02407c", + "parentId": "67d1feb42e73083cd803b720", + "slotId": "Back_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d3adfec8a90e4fa8038768", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1feb42e73083cd803b720", + "slotId": "Right_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + { + "_id": "67d3adfec8a90e4fa8038769", + "_tpl": "6557458f83942d705f0c4962", + "parentId": "67d1feb42e73083cd803b720", + "slotId": "Left_side_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + { + Items: [ + { + "_id": "67d1fed72e73083cd803b725", + "_tpl": "64a536392d2c4e6e970f4121", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65719408289dc422160e08c4" + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 21, + "r": "Horizontal" + } + }, + { + "_id": "67d1fed72e73083cd803b726", + "_tpl": "6570653e89fd4926380b733e", + "parentId": "67d1fed72e73083cd803b725", + "slotId": "Soft_armor_front", + "upd": {} + }, + { + "_id": "67d1fed72e73083cd803b727", + "_tpl": "6570658a89fd4926380b7346", + "parentId": "67d1fed72e73083cd803b725", + "slotId": "Soft_armor_back", + "upd": {} + }, + { + "_id": "67d1fed72e73083cd803b728", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "67d1fed72e73083cd803b725", + "slotId": "Front_plate", + "upd": {} + }, + { + "_id": "67d1fed72e73083cd803b729", + "_tpl": "656fac30c6baea13cd07e10c", + "parentId": "67d1fed72e73083cd803b725", + "slotId": "Back_plate", + "upd": {} + }, + ], + }, + { + Items: [ + { + "_id": "67d1fef22e73083cd803b762", + "_tpl": "66b6295a8ca68c6461709efa", + "upd": { + "StackObjectsCount": 1 + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 27, + "r": 0, + "rotation": false + } + }, + { + "_id": "67d1ff9b2e73083cd803e2b2", + "_tpl": "656fa25e94b480b8a500c0e0", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 55, + "MaxDurability": 55 + } + }, + "parentId": "67d1fef22e73083cd803b762", + "slotId": "Back_plate" + }, + { + "_id": "67d200252e73083cd803fec0", + "_tpl": "656f9d5900d62bcd2e02407c", + "parentId": "67d1fef22e73083cd803b762", + "slotId": "Front_plate", + "upd": { + "StackObjectsCount": 1 + } + }, + ], + }, + ], + ] +} diff --git a/user/mods/GamblerTrader/src/containers/AverageWeapons.ts b/user/mods/GamblerTrader/src/containers/AverageWeapons.ts new file mode 100644 index 0000000..e1c6dd9 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/AverageWeapons.ts @@ -0,0 +1,17 @@ +export class AverageWeapons { + + public parent = "weapon"; + public is_preset = true; + public price_generate = true; + public calculate_preset_prices = false; + + public rarities = [ + "_decent", + "_meta", + ] + + public rewards = [ + "decent", + "meta", + ] +} diff --git a/user/mods/GamblerTrader/src/containers/Backpacks.ts b/user/mods/GamblerTrader/src/containers/Backpacks.ts new file mode 100644 index 0000000..6423282 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Backpacks.ts @@ -0,0 +1,64 @@ +export class Backpacks { + + public parent = "backpack"; + public price_generate = true; + + public rarities = [ + "_extremely_rare", + "_rare", + "_uncommon", + "_common" + ] + + public rewards = [ + [ + "656e0436d44a1bb4220303a0", // Mystery Ranch SATL Bridger Assault Pack (Foliage) + "628bc7fb408e2b2e9c0801b1", // Mystery Ranch NICE COMM 3 BVS frame system (Coyote) + "61b9e1aaef9a1b5d6a79899a", // Santa's bag + "5c0e774286f77468413cc5b2", // Mystery Ranch Blackjack 50 backpack (MultiCam) + "5c0e774286f77468413cc5b2", // Mystery Ranch Blackjack 50 backpack (MultiCam) + ], + [ + //"5e4abc6786f77406812bd572", // LBT-2670 Slim Field Med Pack (Black) + //"5e997f0b86f7741ac73993e2", // Sanitar's bag + "5c0e805e86f774683f3dd637", // 3V Gear Paratus 3-Day Operator's Tactical backpack (Foliage Grey) + "5df8a4d786f77412672a1e3b", // 6Sh118 raid backpack (Digital Flora) + "5ab8ebf186f7742d8b372e80", // SSO Attack 2 raid backpack (Khaki) + "5b44c6ae86f7742d1627baea", // ANA Tactical Beta 2 Battle backpack (Olive Drab) + "62a1b7fbc30cfa1d366af586", // Gruppa 99 T30 backpack (MultiCam) + "5f5e46b96bdad616ad46d613", // Eberlestock F4 Terminator load bearing backpack (Tiger Stripe) + "628e1ffc83ec92260c0f437f", // Gruppa 99 T30 backpack (Black) + "6034d2d697633951dc245ea6", // Eberlestock G2 Gunslinger II backpack (Dry Earth) + "639346cc1c8f182ad90c8972", // Tasmanian Tiger Trooper 35 backpack (Khaki) + "639346cc1c8f182ad90c8972", // Tasmanian Tiger Trooper 35 backpack (Khaki) + ], + [ + "656ddcf0f02d7bcea90bf395", // Tehinkom RK-PT-25 patrol backpack (Digital Flora) + "6034d103ca006d2dca39b3f0", // Hazard 4 Takedown sling backpack (Black) + "6038d614d10cbf667352dd44", // Hazard 4 Takedown sling backpack (MultiCam) + "619cf0335771dd3c390269ae", // Gruppa 99 T20 backpack (MultiCam) + "656f198fb27298d6fd005466", // Direct Action Dragon Egg Mark II backpack (Black) + "618cfae774bb2d036a049e7c", // LBT-1476A 3Day Pack (Woodland) + "60a272cc93ef783291411d8e", // Hazard 4 Drawbridge backpack (Coyote Tan) + "5d5d940f86f7742797262046", // Oakley Mechanism heavy duty backpack (Black) + "59e763f286f7742ee57895da", // Pilgrim tourist backpack + "5f5e467b0bc58666c37e7821", // Eberlestock F5 Switchblade backpack (Dry Earth) + "618bb76513f5097c8d5aa2d5", // Gruppa 99 T20 backpack (Umber Brown) + "545cdae64bdc2d39198b4568", // Camelbak Tri-Zip assault backpack (Foliage) + "545cdae64bdc2d39198b4568", // Camelbak Tri-Zip assault backpack (Foliage) + ], + [ + "5ab8f04f86f774585f4237d8", // Tactical sling bag (Khaki) + "5ab8ee7786f7742d8f33f0b9", // VKBO army bag + "56e33680d2720be2748b4576", // Transformer Bag + "56e33634d2720bd8058b456b", // Duffle bag + "544a5cde4bdc2d39388b456b", // Flyye MBSS backpack (UCP) + "5f5e45cc5021ce62144be7aa", // LolKek 3F Transfer tourist backpack + "5e9dcf5986f7746c417435b3", // LBT-8005A Day Pack backpack (MultiCam Black) + "60a2828e8689911a226117f9", // Hazard 4 Pillbox backpack (Black) + "5ca20d5986f774331e7c9602", // WARTECH Berkut BB-102 backpack (A-TACS FG) + "56e335e4d2720b6c058b456d", // Scav backpack + "56e335e4d2720b6c058b456d", // Scav backpack + ] + ] +} diff --git a/user/mods/GamblerTrader/src/containers/CoinFlip100k.ts b/user/mods/GamblerTrader/src/containers/CoinFlip100k.ts new file mode 100644 index 0000000..c47700d --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/CoinFlip100k.ts @@ -0,0 +1,19 @@ +export class CoinFlip100k { + + public parent = "100k"; + public price_generate = true; + + public rarities = [ + "_success", + "_failure", + ] + public stackable = [true, true] + public reward_amount = [ + 200000, + 0 + ] + public rewards = [ + ['5449016a4bdc2d6f028b456f'], + ['NaN'], + ] +} diff --git a/user/mods/GamblerTrader/src/containers/CoinFlip1Mil.ts b/user/mods/GamblerTrader/src/containers/CoinFlip1Mil.ts new file mode 100644 index 0000000..0ee9f35 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/CoinFlip1Mil.ts @@ -0,0 +1,19 @@ +export class CoinFlip1Mil { + + public parent = "1mil"; + public price_generate = true; + + public rarities = [ + "_success", + "_failure", + ] + public stackable = [true, true] + public reward_amount = [ + 2000000, + 0 + ] + public rewards = [ + ['5449016a4bdc2d6f028b456f'], + ['NaN'], + ] +} diff --git a/user/mods/GamblerTrader/src/containers/CoinFlip500k.ts b/user/mods/GamblerTrader/src/containers/CoinFlip500k.ts new file mode 100644 index 0000000..5af80e0 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/CoinFlip500k.ts @@ -0,0 +1,19 @@ +export class CoinFlip500k { + + public parent = "500k"; + public price_generate = true; + + public rarities = [ + "_success", + "_failure", + ] + public stackable = [true, true] + public reward_amount = [ + 1000000, + 0 + ] + public rewards = [ + ['5449016a4bdc2d6f028b456f'], + ['NaN'], + ] +} diff --git a/user/mods/GamblerTrader/src/containers/DefaultWeapons.ts b/user/mods/GamblerTrader/src/containers/DefaultWeapons.ts new file mode 100644 index 0000000..2e4abc3 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/DefaultWeapons.ts @@ -0,0 +1,15 @@ +export class DefaultWeapons { + + public parent = "weapon"; + public is_preset = true; + public price_generate = true; + public calculate_preset_prices = false; + + public rarities = [ + "_base", + ] + + public rewards = [ + "base", + ] +} diff --git a/user/mods/GamblerTrader/src/containers/FlipBitcoin.ts b/user/mods/GamblerTrader/src/containers/FlipBitcoin.ts new file mode 100644 index 0000000..872ff94 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/FlipBitcoin.ts @@ -0,0 +1,15 @@ +export class FlipBitcoin { + + public parent = "money"; + public rarities = [ + "_success", + ] + public stackable = [false] + public reward_amount = [2] + public rewards = [ + [ + '59faff1d86f7746c51718c9c', // Bitcoin + ], + + ] +} diff --git a/user/mods/GamblerTrader/src/containers/FlipGPCoin.ts b/user/mods/GamblerTrader/src/containers/FlipGPCoin.ts new file mode 100644 index 0000000..4263f25 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/FlipGPCoin.ts @@ -0,0 +1,15 @@ +export class FlipGPCoin { + + public parent = "money"; + public rarities = [ + "_success", + ] + public stackable = [true] + public reward_amount = [50] + public rewards = [ + [ + '5d235b4d86f7742e017bc88a', // GP Coin + ], + + ] +} diff --git a/user/mods/GamblerTrader/src/containers/FlipRouble.ts b/user/mods/GamblerTrader/src/containers/FlipRouble.ts new file mode 100644 index 0000000..eda889b --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/FlipRouble.ts @@ -0,0 +1,19 @@ +export class FlipRouble { + + public parent = "money"; + public rarities = [ + "_success", + "_failure", + ] + public stackable = [true, false] + public reward_amount = [5000000,1] + public rewards = [ + [ + '5449016a4bdc2d6f028b456f', // 5,000,000 Roubles + ], + [ + '57347d7224597744596b4e72', // Can of beef stew (Small) + ], + + ] +} diff --git a/user/mods/GamblerTrader/src/containers/Foods.ts b/user/mods/GamblerTrader/src/containers/Foods.ts new file mode 100644 index 0000000..3538073 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Foods.ts @@ -0,0 +1,59 @@ +export class Foods { + + public parent = "food"; + public price_generate = true; + + public rarities = [ + "_rare", + "_uncommon", + "_common" + ] + + public rewards = [ + [ + "5d1b33a686f7742523398398", // Canister with purified water + "5d1b376e86f774252519444e", // Bottle of Fierce Hatchling moonshine + ], + [ + "656df4fec921ad01000481a2", // Pack of instant noodles + "5448fee04bdc2dbc018b4567", // Bottle of water (0.6L) + "5751496424597720a27126da", // Can of Hot Rod energy drink + "57347d8724597744596b4e76", // Can of squash spread + "57347d9c245977448b40fa85", // Can of herring + "5bc9c29cd4351e003562b8a3", // Can of sprats + "57347d7224597744596b4e72", // Can of beef stew (Small) + "65815f0e647e3d7246384e14", // Pack of Tarker dried meat + "5734773724597737fd047c14", // Can of condensed milk + "5751435d24597720a27126d1", // Can of Max Energy energy drink + "57347da92459774491567cf5", // Can of beef stew (Large) + "5673de654bdc2d180f8b456d", // Can of pacific saury + "614451b71e5874611e2c7ae5", // Bottle of Tarkovskaya vodka + "57347d5f245977448b40fa81", // Can of humpback salmon + "60098b1705871270cd5352a1", // Emergency Water Ration + "5e8f3423fd7471236e6e3b64", // Bottle of "Norvinskiy Yadreniy" premium kvass (0.6L) + "60b0f93284c20f0feb453da7", // Can of RatCola soda + "635a758bfefc88a93f021b8a", // Salty Dog beef sausage + "62a09f32621468534a797acb", // Bottle of Pevko Light beer + "5d403f9186f7743cac3f229b", // Bottle of Dan Jackiel whiskey + "57505f6224597709a92585a9", // Alyonka chocolate bar + "590c5f0d86f77413997acfab", // MRE ration pack + "575146b724597720a27126d5", // Pack of milk + "59e3577886f774176a362503", // Pack of sugar + ], + [ + + "575062b524597720a31c09a1", // Can of Ice Green tea + "57513f07245977207e26a311", // Pack of apple juice + "5448ff904bdc2d6f028b456e", // Army crackers + "5751487e245977207e26a315", // Emelya rye croutons + "57513f9324597720a7128161", // Pack of Grand juice + "544fb62a4bdc2dfb738b4568", // Pack of Russian Army pineapple juice + "544fb6cc4bdc2d34748b456e", // Slickers chocolate bar + "57514643245977207f2c2d09", // Can of TarCola soda + "57513fcc24597720a31c09a6", // Pack of Vita juice + "57347d692459774491567cf1", // Can of green peas + "57347d90245977448f7b7f65", // Pack of oat flakes + "57347d3d245977448f7b7f61", // Rye croutons + ] + ] + } \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/Headsets.ts b/user/mods/GamblerTrader/src/containers/Headsets.ts new file mode 100644 index 0000000..a08ed33 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Headsets.ts @@ -0,0 +1,33 @@ +export class Headsets { + + public parent = "headset"; + public price_generate = true; + + public rarities = [ + "_rare", + "_uncommon", + "_common" + ] + + public rewards = [ + [ + "628e4e576d783146b124c64d", // Peltor ComTac 4 Hybrid headset (Coyote Brown) + "66b5f6985891c84aab75ca76", // Peltor ComTac VI headset (Coyote Brown) + ], + [ + "66b5f693acff495a294927e3", // Peltor ComTac V headset (OD Green) + "5645bcc04bdc2d363b8b4572", // Peltor ComTac 2 headset (OD Green) + "66b5f68de98be930d701c00e", // Safariland Liberator HP 2.0 Hearing Protection Headset (FDE) + "5f60cd6cf2bcbb675b00dac6", // Walker's XCEL 500BT Digital headset + "5e4d34ca86f774264f758330", // Walker's Razor Digital headset + "5c165d832e2216398b5a7e36", // Peltor Tactical Sport headset + + ], + [ + "5b432b965acfc47a8774094e", // GSSh-01 active headset + "6033fa48ffd42c541047f728", // OPSMEN Earmor M32 headset + "5aa2ba71e5b5b000137b758f", // MSA Sordin Supreme PRO-X/L headset + + ] + ] +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/Helmets.ts b/user/mods/GamblerTrader/src/containers/Helmets.ts new file mode 100644 index 0000000..ba221f0 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Helmets.ts @@ -0,0 +1,8503 @@ +export class Helmets { + + public parent = "helmet"; + public is_preset = true; + public price_generate = true; + public calculate_preset_prices = false; + + public rarities = [ + "_extremely_rare", + "_rare", + "_uncommon", + "_common" + ] + + // Some Helmets missing from this list are incompatible with SOME headsets, fix later... + public headset_incompatible_helmets = [ + '5df8a58286f77412631087ed', // TSh-4M-L soft tank crew helmet + '59e7711e86f7746cae05fbe1', // Kolpak-1S riot helmet + '5c0d2727d174af02a012cf58', // PSh-97 DJETA riot helmet + '5c08f87c0db8340019124324', // ShPM Firefighter helmet + '59ef13ca86f77445fd0e2483', // Jack-o'-lantern tactical pumpkin helmet + '5645bc214bdc2d363b8b4571', // FORT Kiver-M bulletproof helmet + '5aa7d193e5b5b000171d063f', // SSSh-94 SFERA-S helmet + '5b4329f05acfc47a86086aa1', // DevTac Ronin Respirator + '66bdc28a0b603c26902b2011', // DevTac Ronin ballistic helmet + '5aa7e4a4e5b5b000137b76f2', // ZSh-1-2M helmet (Black cover) + '5aa7e454e5b5b0214e506fa2', // ZSh-1-2M helmet (Olive Drab) + '5d6d3716a4b9361bc8618872', // BNTI LShZ-2DTM helmet (Black) + '5c091a4e0db834001d5addc8', // Maska-1SCh bulletproof helmet (Olive Drab) + '5c0e874186f7745dc7616606', // Maska-1SCh bulletproof helmet (Killa Edition) + '5aa7e276e5b5b000171d0647', // Altyn bulletproof helmet (Olive Drab) + '5f60c74e3b85f6263c145586', // Rys-T bulletproof helmet (Black) + '5ca20ee186f774799474abc2', // Vulkan-5 LShZ-5 bulletproof helmet (Black) + ]; + + // tpls that don't make sense to calculate prices for + public presets_invalid_tpls = [ + '657f9897f4c82973640b235e', // Hybrid composite materials + ] + + // 2d array of rewards by sorted rarity + public presets = [ + [ // _extremely_rare + { + Items: [ + { + "_id": "6822d84eddc96b68ac0512ba", + "_tpl": "5ea17ca01412a1425304d1c0", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 4, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "6822d84eddc96b68ac0512bc", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "6822d84eddc96b68ac0512ba", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d84eddc96b68ac0512bd", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "6822d84eddc96b68ac0512ba", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d9a5185ce152ec038d12", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d84eddc96b68ac0512ba", + "slotId": "mod_nvg" + }, + { + "_id": "6822d99c185ce152ec038d0c", + "_tpl": "5c11046cd174af02a012e42b", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d9a5185ce152ec038d12", + "slotId": "mod_nvg" + }, + { + "_id": "6822d98f185ce152ec038d03", + "_tpl": "5c110624d174af029e69734c", + "parentId": "6822d99c185ce152ec038d0c", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d866ddc96b68ac0512be", + "_tpl": "6759af0f9c8a538dd70bfae6", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "677e90e191de7ae4136e3967", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "6822d866ddc96b68ac0512bf", + "_tpl": "6571133d22996eaf11088200", + "parentId": "6822d866ddc96b68ac0512be", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d866ddc96b68ac0512c0", + "_tpl": "6571138e818110db4600aa71", + "parentId": "6822d866ddc96b68ac0512be", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d866ddc96b68ac0512c1", + "_tpl": "657112fa818110db4600aa6b", + "parentId": "6822d866ddc96b68ac0512be", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d866ddc96b68ac0512c2", + "_tpl": "5c0e842486f77443a74d2976", + "parentId": "6822d866ddc96b68ac0512be", + "slotId": "mod_equipment", + "upd": { + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d870ddc96b68ac0512c3", + "_tpl": "5a154d5cfcdbcb001a3b00da", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7c0e65c0122b70ffdb0", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "6822d870ddc96b68ac0512c4", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "6822d870ddc96b68ac0512c3", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d870ddc96b68ac0512c5", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "6822d870ddc96b68ac0512c3", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d9a2185ce152ec038d0d", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "6822d870ddc96b68ac0512c3", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822d99b185ce152ec038d0b", + "_tpl": "5c11046cd174af02a012e42b", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d9a2185ce152ec038d0d", + "slotId": "mod_nvg" + }, + { + "_id": "6822d98f185ce152ec038d04", + "_tpl": "5c110624d174af029e69734c", + "parentId": "6822d99b185ce152ec038d0b", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d873ddc96b68ac051309", + "_tpl": "5ac8d6885acfc400180ae7b0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7f1e9433140ad0baf9d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "6822d873ddc96b68ac05130a", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "6822d873ddc96b68ac051309", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d873ddc96b68ac05130b", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "6822d873ddc96b68ac051309", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d9a3185ce152ec038d0e", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "6822d873ddc96b68ac051309", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822d99a185ce152ec038d0a", + "_tpl": "5c11046cd174af02a012e42b", + "parentId": "6822d9a3185ce152ec038d0e", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822d98f185ce152ec038d07", + "_tpl": "5c110624d174af029e69734c", + "parentId": "6822d99a185ce152ec038d0a", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d87addc96b68ac05130c", + "_tpl": "5f60c74e3b85f6263c145586", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc861b588f345450a6d76", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "6822d87addc96b68ac05130d", + "_tpl": "657bc285aab96fccee08bea3", + "parentId": "6822d87addc96b68ac05130c", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d87addc96b68ac05130e", + "_tpl": "657bc2c5a1c61ee0c3036333", + "parentId": "6822d87addc96b68ac05130c", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d87addc96b68ac05130f", + "_tpl": "657bc2e7b30eca976305118d", + "parentId": "6822d87addc96b68ac05130c", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d9c7185ce152ec038d15", + "_tpl": "5f60c85b58eff926626a60f7", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 55, + "MaxDurability": 55 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d87addc96b68ac05130c", + "slotId": "mod_equipment" + }, + ], + }, + { + Items: [ + { + "_id": "6822d885ddc96b68ac05215c", + "_tpl": "5e00c1ad86f774747333222c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571200b6fe59548840cb53a", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 2, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d885ddc96b68ac05215d", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "6822d885ddc96b68ac05215c", + "slotId": "helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d885ddc96b68ac05215e", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "6822d885ddc96b68ac05215c", + "slotId": "helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d9a4185ce152ec038d10", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d885ddc96b68ac05215c", + "slotId": "mod_nvg" + }, + { + "_id": "6822d99a185ce152ec038d08", + "_tpl": "5c11046cd174af02a012e42b", + "parentId": "6822d9a4185ce152ec038d10", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822d98f185ce152ec038d06", + "_tpl": "5c110624d174af029e69734c", + "parentId": "6822d99a185ce152ec038d08", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d886ddc96b68ac05215f", + "_tpl": "5e01ef6886f77445f643baa4", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120376d197c216005b33e", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 2, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d886ddc96b68ac052160", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "6822d886ddc96b68ac05215f", + "slotId": "helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d886ddc96b68ac052161", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "6822d886ddc96b68ac05215f", + "slotId": "helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d9a4185ce152ec038d11", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d886ddc96b68ac05215f", + "slotId": "mod_nvg" + }, + { + "_id": "6822d99a185ce152ec038d09", + "_tpl": "5c11046cd174af02a012e42b", + "parentId": "6822d9a4185ce152ec038d11", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822d98f185ce152ec038d05", + "_tpl": "5c110624d174af029e69734c", + "parentId": "6822d99a185ce152ec038d09", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d89dddc96b68ac052162", + "_tpl": "5ca20ee186f774799474abc2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc8c926820ea7da04f2fa", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "6822d89dddc96b68ac052163", + "_tpl": "657bbe73a1c61ee0c303632b", + "parentId": "6822d89dddc96b68ac052162", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d89dddc96b68ac052164", + "_tpl": "657bbed0aab96fccee08be96", + "parentId": "6822d89dddc96b68ac052162", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d89dddc96b68ac052165", + "_tpl": "657bbefeb30eca9763051189", + "parentId": "6822d89dddc96b68ac052162", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d9bc185ce152ec038d13", + "_tpl": "5ca2113f86f7740b2547e1d2", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 85, + "MaxDurability": 85 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d89dddc96b68ac052162", + "slotId": "mod_equipment" + }, + ], + }, + { + Items: [ + { + "_id": "6822d8aaddc96b68ac052166", + "_tpl": "5aa7e276e5b5b000171d0647", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc88ebbd440df880b2dfe", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "6822d8aaddc96b68ac052167", + "_tpl": "657bc06daab96fccee08be9b", + "parentId": "6822d8aaddc96b68ac052166", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d8aaddc96b68ac052168", + "_tpl": "657bc0d8a1c61ee0c303632f", + "parentId": "6822d8aaddc96b68ac052166", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d8aaddc96b68ac052169", + "_tpl": "657bc107aab96fccee08be9f", + "parentId": "6822d8aaddc96b68ac052166", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d9c0185ce152ec038d14", + "_tpl": "5aa7e373e5b5b000137b76f0", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 50, + "MaxDurability": 50 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d8aaddc96b68ac052166", + "slotId": "mod_equipment" + } + ], + }, + ], + [ // _rare + { + Items: [ + { + "_id": "67ecee80150082490003850a", + "_tpl": "6745895717824b1ec20570a6", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "677d14927f8ee8353d85918d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 0, + "r": 0, + "rotation": false + } + }, + { + "_id": "67ecee80150082490003850b", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "67ecee80150082490003850a", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecee80150082490003850c", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "67ecee80150082490003850a", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecee80150082490003850d", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "67ecee80150082490003850a", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecee86150082490003850e", + "_tpl": "5aa7cfc0e5b5b00015693143", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc6ceaab96fccee08beb2", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 0, + "r": 0, + "rotation": false + } + }, + { + "_id": "67ecee86150082490003850f", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "67ecee86150082490003850e", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecee861500824900038510", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "67ecee86150082490003850e", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecee861500824900038511", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "67ecee86150082490003850e", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecee8c1500824900038512", + "_tpl": "5aa7e276e5b5b000171d0647", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc88ebbd440df880b2dfe", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 12, + "r": "Horizontal" + } + }, + { + "_id": "67ecee8c1500824900038513", + "_tpl": "657bc06daab96fccee08be9b", + "parentId": "67ecee8c1500824900038512", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecee8c1500824900038514", + "_tpl": "657bc0d8a1c61ee0c303632f", + "parentId": "67ecee8c1500824900038512", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecee8c1500824900038515", + "_tpl": "657bc107aab96fccee08be9f", + "parentId": "67ecee8c1500824900038512", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "681ec144b2f0bf68a003951c", + "_tpl": "5aa7e373e5b5b000137b76f0", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 50, + "MaxDurability": 50 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecee8c1500824900038512", + "slotId": "mod_equipment" + }, + ], + }, + { + Items: [ + { + "_id": "67ecee911500824900038516", + "_tpl": "5c066ef40db834001966a595", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 4, + "y": 14, + "r": "Horizontal" + } + }, + { + "_id": "681ef2dc73ead7872003a853", + "_tpl": "5c066e3a0db834001b7353f0", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecee911500824900038516", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "67ecee9d1500824900038517", + "_tpl": "5d6d3716a4b9361bc8618872", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 4, + "y": 8, + "r": "Horizontal" + } + }, + { + "_id": "67ecee9d1500824900038519", + "_tpl": "657fa009d4caf976440afe3a", + "parentId": "67ecee9d1500824900038517", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecee9d150082490003851a", + "_tpl": "657fa04ac6679fefb3051e24", + "parentId": "67ecee9d1500824900038517", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecee9d150082490003851b", + "_tpl": "657fa07387e11c61f70bface", + "parentId": "67ecee9d1500824900038517", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "681ec170b2f0bf68a003951d", + "_tpl": "5d6d3943a4b9360dbc46d0cc", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 1, + "MaxDurability": 1 + }, + "SpawnedInSession": false + }, + "parentId": "67ecee9d1500824900038517", + "slotId": "mod_equipment_002" + }, + { + "_id": "681ec176b2f0bf68a003951e", + "_tpl": "5d6d3829a4b9361bc8618943", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 50, + "MaxDurability": 50 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecee9d1500824900038517", + "slotId": "mod_equipment_000" + }, + { + "_id": "681ec179b2f0bf68a0039561", + "_tpl": "5d6d3be5a4b9361bc73bc763", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 35, + "MaxDurability": 35 + }, + "SpawnedInSession": false + }, + "parentId": "67ecee9d1500824900038517", + "slotId": "mod_equipment_001" + }, + ], + }, + { + Items: [ + { + "_id": "67eceeab150082490003851d", + "_tpl": "66b5f65ca7f72d197e70bcd6", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c41f0b603c26902afd8d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "67eceeab150082490003851e", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "67eceeab150082490003851d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceeab150082490003851f", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "67eceeab150082490003851d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e078185ce152ec04b34d", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "67eceeab150082490003851d", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822e07d185ce152ec04b351", + "_tpl": "5c0695860db834001b735461", + "parentId": "6822e078185ce152ec04b34d", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822e086185ce152ec04c195", + "_tpl": "5c0696830db834001d23f5da", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822e07d185ce152ec04b351", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "67eceeb31500824900038520", + "_tpl": "66b5f666cad6f002ab7214c2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c562fd38bf060b4b85a7", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "67eceeb31500824900038521", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "67eceeb31500824900038520", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceeb31500824900038522", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "67eceeb31500824900038520", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67eceeb81500824900038523", + "_tpl": "66b5f661af44ca0014063c05", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c53ea7f72d197e70bf83", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "67eceeb81500824900038524", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "67eceeb81500824900038523", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceeb81500824900038525", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "67eceeb81500824900038523", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e079185ce152ec04b34e", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "67eceeb81500824900038523", + "slotId": "mod_nvg" + }, + { + "_id": "6822e07d185ce152ec04b350", + "_tpl": "5c0695860db834001b735461", + "parentId": "6822e079185ce152ec04b34e", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822e085185ce152ec04c194", + "_tpl": "5c0696830db834001d23f5da", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822e07d185ce152ec04b350", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "67eceec61500824900038546", + "_tpl": "5c17a7ed2e2216152142459c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa92de65c0122b70ffdb9", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 30, + "r": "Horizontal" + } + }, + { + "_id": "67eceec61500824900038547", + "_tpl": "657f9897f4c82973640b235e", + "parentId": "67eceec61500824900038546", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceec61500824900038548", + "_tpl": "657f98fbada5fadd1f07a585", + "parentId": "67eceec61500824900038546", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf123150082490003da71", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67eceec61500824900038546", + "slotId": "mod_equipment_000" + }, + { + "_id": "67ecf3141500824900043f39", + "_tpl": "5c1793902e221602b21d3de2", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 27, + "MaxDurability": 27 + }, + "SpawnedInSession": false + }, + "parentId": "67eceec61500824900038546", + "slotId": "mod_equipment_001" + }, + ], + }, + { + Items: [ + { + "_id": "67eceecc1500824900038549", + "_tpl": "5b4329f05acfc47a86086aa1", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65711f886d197c216005b32f", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 4, + "r": "Horizontal" + } + }, + { + "_id": "67eceecc150082490003854a", + "_tpl": "65711b07a330b8c9060f7b01", + "parentId": "67eceecc1500824900038549", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceecc150082490003854b", + "_tpl": "65711b489eb8c145180dbb9d", + "parentId": "67eceecc1500824900038549", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceecc150082490003854c", + "_tpl": "65711b9b65daf6aa960c9b1b", + "parentId": "67eceecc1500824900038549", + "slotId": "helmet_eyes", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceecc150082490003854d", + "_tpl": "65711bc79eb8c145180dbba1", + "parentId": "67eceecc1500824900038549", + "slotId": "helmet_jaw", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceecc150082490003854e", + "_tpl": "65711b706d197c216005b31c", + "parentId": "67eceecc1500824900038549", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67eceed3150082490003854f", + "_tpl": "5ea17ca01412a1425304d1c0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa95ae9433140ad0bafad", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 20, + "r": "Horizontal" + } + }, + { + "_id": "67eceed31500824900038550", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "67eceed3150082490003854f", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceed31500824900038551", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "67eceed3150082490003854f", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf0bc150082490003cd0f", + "_tpl": "5ea18c84ecf1982c7712d9a2", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false + }, + "parentId": "67eceed3150082490003854f", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "67eceed81500824900038552", + "_tpl": "65709d2d21b9f815e208ff95", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 0, + "y": 4, + "r": "Horizontal" + } + }, + { + "_id": "67eceed81500824900038554", + "_tpl": "657f9eb7e9433140ad0baf86", + "parentId": "67eceed81500824900038552", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceed81500824900038555", + "_tpl": "657f9ef6c6679fefb3051e1f", + "parentId": "67eceed81500824900038552", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67eceeeb1500824900038556", + "_tpl": "5f60b34a41e30a4ab12a6947", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7a5bbd440df880b2df6", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 20, + "r": "Horizontal" + } + }, + { + "_id": "67eceeeb1500824900038557", + "_tpl": "657bbad7a1c61ee0c3036323", + "parentId": "67eceeeb1500824900038556", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceeeb1500824900038558", + "_tpl": "657bbb31b30eca9763051183", + "parentId": "67eceeeb1500824900038556", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e0ce185ce152ec04d16d", + "_tpl": "5f60c076f2bcbb675b00dac2", + "parentId": "67eceeeb1500824900038556", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67eceeee1500824900038559", + "_tpl": "5b40e3f35acfc40016388218", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 8, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "67eceeee150082490003855b", + "_tpl": "657f95bff92cd718b701550c", + "parentId": "67eceeee1500824900038559", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceeee150082490003855c", + "_tpl": "657f9605f4c82973640b2358", + "parentId": "67eceeee1500824900038559", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67eceef1150082490003855d", + "_tpl": "5b40e4035acfc47a87740943", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 0, + "y": 6, + "r": 0, + "rotation": false + } + }, + { + "_id": "67eceef1150082490003855f", + "_tpl": "657f95bff92cd718b701550c", + "parentId": "67eceef1150082490003855d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceef11500824900038560", + "_tpl": "657f9605f4c82973640b2358", + "parentId": "67eceef1150082490003855d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67eceef81500824900038565", + "_tpl": "5b40e2bc5acfc40016388216", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120dd6fe59548840cb54c", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 16, + "r": "Horizontal" + } + }, + { + "_id": "67eceef81500824900038566", + "_tpl": "657112234269e9a568089eac", + "parentId": "67eceef81500824900038565", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceef81500824900038567", + "_tpl": "657112a4818110db4600aa66", + "parentId": "67eceef81500824900038565", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67eceef81500824900038568", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "67eceef81500824900038565", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef051500824900038569", + "_tpl": "5b432d215acfc4771e1c6624", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 2, + "y": 26, + "r": "Horizontal" + } + }, + { + "_id": "67ecef05150082490003856b", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "67ecef051500824900038569", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef05150082490003856c", + "_tpl": "657bb99db30eca976305117f", + "parentId": "67ecef051500824900038569", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf34a1500824900044e6c", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecef051500824900038569", + "slotId": "mod_equipment_000" + }, + { + "_id": "67ecf130150082490003da7d", + "_tpl": "5a16b9fffcdbcb0176308b34", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "parentId": "67ecef051500824900038569", + "slotId": "mod_equipment_001" + }, + ], + }, + { + Items: [ + { + "_id": "67ecef0d150082490003856d", + "_tpl": "5d5e7d28a4b936645d161203", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa705e9433140ad0baf95", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 6, + "r": 0, + "rotation": false + } + }, + { + "_id": "67ecef0d150082490003856e", + "_tpl": "657f8a8d7db258e5600fe33d", + "parentId": "67ecef0d150082490003856d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef0d150082490003856f", + "_tpl": "657f8b05f4c82973640b2348", + "parentId": "67ecef0d150082490003856d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef101500824900038570", + "_tpl": "5d5e9c74a4b9364855191c40", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa735e65c0122b70ffda5", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 8, + "r": "Horizontal" + } + }, + { + "_id": "67ecef101500824900038571", + "_tpl": "657f8b94f92cd718b70154ff", + "parentId": "67ecef101500824900038570", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef101500824900038572", + "_tpl": "657f8b43f92cd718b70154fb", + "parentId": "67ecef101500824900038570", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef141500824900038573", + "_tpl": "5e4bfc1586f774264f7582d3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa9cf87e11c61f70bfadd", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 20, + "r": "Horizontal" + } + }, + { + "_id": "67ecef141500824900038574", + "_tpl": "657f9c78ada5fadd1f07a58d", + "parentId": "67ecef141500824900038573", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef141500824900038575", + "_tpl": "657f9cb587e11c61f70bfaca", + "parentId": "67ecef141500824900038573", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf101150082490003da6c", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecef141500824900038573", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "67ecef1b1500824900038576", + "_tpl": "675956062f6ddfe8ff0e2806", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6777b37393a9a6f10ea57501", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "67ecef1b1500824900038577", + "_tpl": "676307c004856a0b3c0dfffd", + "parentId": "67ecef1b1500824900038576", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef1b1500824900038578", + "_tpl": "676307b4d9ec0af3d9001fa8", + "parentId": "67ecef1b1500824900038576", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef211500824900038579", + "_tpl": "6759655674aa5e0825040d62", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6777bf37e10ffdb431ff9508", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 8, + "r": 0, + "rotation": false + } + }, + { + "_id": "67ecef21150082490003857a", + "_tpl": "676307c004856a0b3c0dfffd", + "parentId": "67ecef211500824900038579", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef21150082490003857b", + "_tpl": "676307b4d9ec0af3d9001fa8", + "parentId": "67ecef211500824900038579", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef28150082490003857c", + "_tpl": "67597ceea35600b4c10cea86", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6777bfee0658691ef27d9993", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 8, + "r": 0, + "rotation": false + } + }, + { + "_id": "67ecef28150082490003857d", + "_tpl": "676307ded8b241b4f703a3e8", + "parentId": "67ecef28150082490003857c", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef28150082490003857e", + "_tpl": "676307d3d9ec0af3d9001fac", + "parentId": "67ecef28150082490003857c", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef2d150082490003857f", + "_tpl": "67597d241d5a44f2f605df06", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6777c1244557b9b1474da362", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 10, + "r": 0, + "rotation": false + } + }, + { + "_id": "67ecef2d1500824900038580", + "_tpl": "676307ded8b241b4f703a3e8", + "parentId": "67ecef2d150082490003857f", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef2d1500824900038581", + "_tpl": "676307d3d9ec0af3d9001fac", + "parentId": "67ecef2d150082490003857f", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef3f1500824900038582", + "_tpl": "5c0e874186f7745dc7616606", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc821aab96fccee08becc", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 12, + "r": "Horizontal" + } + }, + { + "_id": "67ecef3f1500824900038583", + "_tpl": "6571133d22996eaf11088200", + "parentId": "67ecef3f1500824900038582", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef3f1500824900038584", + "_tpl": "6571138e818110db4600aa71", + "parentId": "67ecef3f1500824900038582", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef3f1500824900038585", + "_tpl": "657112fa818110db4600aa6b", + "parentId": "67ecef3f1500824900038582", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef3f1500824900038586", + "_tpl": "5c0e842486f77443a74d2976", + "parentId": "67ecef3f1500824900038582", + "slotId": "mod_equipment", + "upd": { + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef421500824900038587", + "_tpl": "5c091a4e0db834001d5addc8", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65712075f1074598bf0c02a7", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 14, + "r": "Horizontal" + } + }, + { + "_id": "67ecef421500824900038588", + "_tpl": "6571133d22996eaf11088200", + "parentId": "67ecef421500824900038587", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef421500824900038589", + "_tpl": "6571138e818110db4600aa71", + "parentId": "67ecef421500824900038587", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef42150082490003858a", + "_tpl": "657112fa818110db4600aa6b", + "parentId": "67ecef421500824900038587", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf063150082490003b043", + "_tpl": "5c0919b50db834001b7ce3b9", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 50, + "MaxDurability": 50 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecef421500824900038587", + "slotId": "mod_equipment" + }, + ], + }, + { + Items: [ + { + "_id": "67ecef48150082490003858b", + "_tpl": "61bca7cda0eae612383adf57", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7d6aab96fccee08bec4", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 12, + "r": "Horizontal" + } + }, + { + "_id": "67ecef48150082490003858c", + "_tpl": "657bbcc9a1c61ee0c3036327", + "parentId": "67ecef48150082490003858b", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef48150082490003858d", + "_tpl": "657bbcffbbd440df880b2dd5", + "parentId": "67ecef48150082490003858b", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef4d150082490003858e", + "_tpl": "65719f0775149d62ce0a670b", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 8, + "y": 10, + "r": 0, + "rotation": false + } + }, + { + "_id": "67ecef4d1500824900038590", + "_tpl": "657fa0fcd4caf976440afe3e", + "parentId": "67ecef4d150082490003858e", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef4d1500824900038591", + "_tpl": "657fa168e9433140ad0baf8e", + "parentId": "67ecef4d150082490003858e", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef4d1500824900038592", + "_tpl": "657fa186d4caf976440afe42", + "parentId": "67ecef4d150082490003858e", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef4f1500824900038593", + "_tpl": "5a154d5cfcdbcb001a3b00da", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7c0e65c0122b70ffdb0", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 32, + "r": "Horizontal" + } + }, + { + "_id": "67ecef4f1500824900038594", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecef4f1500824900038593", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef4f1500824900038595", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecef4f1500824900038593", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf0eb150082490003cd1b", + "_tpl": "5a16b672fcdbcb001912fa83", + "parentId": "67ecef4f1500824900038593", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + { + "_id": "67ecf12f150082490003da79", + "_tpl": "5a16b9fffcdbcb0176308b34", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "parentId": "67ecef4f1500824900038593", + "slotId": "mod_equipment_001" + }, + ], + }, + { + Items: [ + { + "_id": "67ecef511500824900038596", + "_tpl": "5ac8d6885acfc400180ae7b0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7f1e9433140ad0baf9d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 34, + "r": "Horizontal" + } + }, + { + "_id": "67ecef511500824900038597", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecef511500824900038596", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef511500824900038598", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecef511500824900038596", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf0aa150082490003bed8", + "_tpl": "5c0558060db834001b735271", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecef511500824900038596", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "67ecef581500824900038599", + "_tpl": "5f60c74e3b85f6263c145586", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc861b588f345450a6d76", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 12, + "r": "Horizontal" + } + }, + { + "_id": "67ecef58150082490003859a", + "_tpl": "657bc285aab96fccee08bea3", + "parentId": "67ecef581500824900038599", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef58150082490003859b", + "_tpl": "657bc2c5a1c61ee0c3036333", + "parentId": "67ecef581500824900038599", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef58150082490003859c", + "_tpl": "657bc2e7b30eca976305118d", + "parentId": "67ecef581500824900038599", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf074150082490003be9c", + "_tpl": "5f60c85b58eff926626a60f7", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 55, + "MaxDurability": 55 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecef581500824900038599", + "slotId": "mod_equipment" + }, + ], + }, + { + Items: [ + { + "_id": "67ecef67150082490003859d", + "_tpl": "5e00c1ad86f774747333222c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571200b6fe59548840cb53a", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 28, + "r": "Horizontal" + } + }, + { + "_id": "67ecef67150082490003859e", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "67ecef67150082490003859d", + "slotId": "helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef67150082490003859f", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "67ecef67150082490003859d", + "slotId": "helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf0aa150082490003bed9", + "_tpl": "5c0558060db834001b735271", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecef67150082490003859d", + "slotId": "mod_nvg" + }, + { + "_id": "67ecf545150082490004c32a", + "_tpl": "66b5f69ea7f72d197e70bcdb", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "parentId": "67ecef67150082490003859d", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "67ecef6a15008249000385a0", + "_tpl": "5e01ef6886f77445f643baa4", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 0, + "y": 34, + "r": "Horizontal" + } + }, + { + "_id": "67ecef6a15008249000385a2", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "67ecef6a15008249000385a0", + "slotId": "helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef6a15008249000385a3", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "67ecef6a15008249000385a0", + "slotId": "helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822ded5185ce152ec044ede", + "_tpl": "66b5f6a28ca68c6461709ed8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "parentId": "67ecef6a15008249000385a0", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "67ecef8015008249000385a4", + "_tpl": "5ca20ee186f774799474abc2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc8c926820ea7da04f2fa", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 12, + "r": "Horizontal" + } + }, + { + "_id": "67ecef8015008249000385a5", + "_tpl": "657bbe73a1c61ee0c303632b", + "parentId": "67ecef8015008249000385a4", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef8015008249000385a6", + "_tpl": "657bbed0aab96fccee08be96", + "parentId": "67ecef8015008249000385a4", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef8015008249000385a7", + "_tpl": "657bbefeb30eca9763051189", + "parentId": "67ecef8015008249000385a4", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf06c150082490003be9b", + "_tpl": "5ca2113f86f7740b2547e1d2", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 85, + "MaxDurability": 85 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecef8015008249000385a4", + "slotId": "mod_equipment" + }, + ], + }, + { + Items: [ + { + "_id": "67ecef841500824900039429", + "_tpl": "5a16bb52fcdbcb001a3b00dc", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "67ecefdb150082490003a1c5", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "67ecef841500824900039429", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "67ecefe2150082490003a1c6", + "_tpl": "5c0695860db834001b735461", + "parentId": "67ecefdb150082490003a1c5", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "67ecf02f150082490003b042", + "_tpl": "5c0696830db834001d23f5da", + "parentId": "67ecefe2150082490003a1c6", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef89150082490003942a", + "_tpl": "5aa7e4a4e5b5b000137b76f2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa87fc6679fefb3051e32", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "67ecef89150082490003942b", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "67ecef89150082490003942a", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef89150082490003942c", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "67ecef89150082490003942a", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef89150082490003942d", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "67ecef89150082490003942a", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecefd3150082490003a1c4", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "67ecef89150082490003942a", + "slotId": "mod_equipment", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecef8b150082490003942e", + "_tpl": "5aa7e454e5b5b0214e506fa2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa836c6679fefb3051e28", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "67ecef8b150082490003942f", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "67ecef8b150082490003942e", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef8b1500824900039430", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "67ecef8b150082490003942e", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecef8b1500824900039431", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "67ecef8b150082490003942e", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecefd1150082490003a1c3", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "67ecef8b150082490003942e", + "slotId": "mod_equipment", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecf083150082490003be9d", + "_tpl": "5ac8d6885acfc400180ae7b0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7f1e9433140ad0baf9d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 36, + "r": "Horizontal" + } + }, + { + "_id": "67ecf083150082490003be9e", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf083150082490003be9d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf083150082490003be9f", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf083150082490003be9d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf0c1150082490003cd13", + "_tpl": "5ea058e01dbce517f324b3e2", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + }, + "SpawnedInSession": false + }, + "parentId": "67ecf083150082490003be9d", + "slotId": "mod_nvg" + }, + { + "_id": "67ecf12c150082490003da77", + "_tpl": "5a16badafcdbcb001865f72d", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 25, + "MaxDurability": 25 + }, + "SpawnedInSession": false + }, + "parentId": "67ecf083150082490003be9d", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf084150082490003bea0", + "_tpl": "5ac8d6885acfc400180ae7b0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7f1e9433140ad0baf9d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 32, + "r": "Horizontal" + } + }, + { + "_id": "67ecf084150082490003bea1", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf084150082490003bea0", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf084150082490003bea2", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf084150082490003bea0", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf0ea150082490003cd1a", + "_tpl": "5a16b672fcdbcb001912fa83", + "parentId": "67ecf084150082490003bea0", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + { + "_id": "67ecf130150082490003da7c", + "_tpl": "5a16b9fffcdbcb0176308b34", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "parentId": "67ecf084150082490003bea0", + "slotId": "mod_equipment_001" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf08e150082490003bea3", + "_tpl": "5a154d5cfcdbcb001a3b00da", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7c0e65c0122b70ffdb0", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 34, + "r": "Horizontal" + } + }, + { + "_id": "67ecf08e150082490003bea4", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf08e150082490003bea3", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf08e150082490003bea5", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf08e150082490003bea3", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf0a8150082490003bed7", + "_tpl": "5c0558060db834001b735271", + "parentId": "67ecf08e150082490003bea3", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecf090150082490003bea6", + "_tpl": "5a154d5cfcdbcb001a3b00da", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7c0e65c0122b70ffdb0", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 30, + "r": "Horizontal" + } + }, + { + "_id": "67ecf090150082490003bea7", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf090150082490003bea6", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf090150082490003bea8", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf090150082490003bea6", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf0c2150082490003cd14", + "_tpl": "5ea058e01dbce517f324b3e2", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + }, + "SpawnedInSession": false + }, + "parentId": "67ecf090150082490003bea6", + "slotId": "mod_nvg" + }, + { + "_id": "67ecf12d150082490003da78", + "_tpl": "5a16badafcdbcb001865f72d", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 25, + "MaxDurability": 25 + }, + "SpawnedInSession": false + }, + "parentId": "67ecf090150082490003bea6", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf150150082490003e84a", + "_tpl": "5ac8d6885acfc400180ae7b0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7f1e9433140ad0baf9d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 30, + "r": "Horizontal" + } + }, + { + "_id": "67ecf150150082490003e84b", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf150150082490003e84a", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf150150082490003e84c", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf150150082490003e84a", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf103150082490003da70", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf150150082490003e84a", + "slotId": "mod_equipment_000" + }, + { + "_id": "67ecf130150082490003da7b", + "_tpl": "5a16b9fffcdbcb0176308b34", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "parentId": "67ecf150150082490003e84a", + "slotId": "mod_equipment_001" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf155150082490003e84d", + "_tpl": "5a154d5cfcdbcb001a3b00da", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7c0e65c0122b70ffdb0", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 28, + "r": "Horizontal" + } + }, + { + "_id": "67ecf155150082490003e84e", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf155150082490003e84d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf155150082490003e84f", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf155150082490003e84d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf102150082490003da6f", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf155150082490003e84d", + "slotId": "mod_equipment_000" + }, + { + "_id": "67ecf131150082490003da7f", + "_tpl": "5a16b9fffcdbcb0176308b34", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "parentId": "67ecf155150082490003e84d", + "slotId": "mod_equipment_001" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf1bc150082490003f5f9", + "_tpl": "5a154d5cfcdbcb001a3b00da", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7c0e65c0122b70ffdb0", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 26, + "r": "Horizontal" + } + }, + { + "_id": "67ecf1bc150082490003f5fa", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf1bc150082490003f5f9", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf1bc150082490003f5fb", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf1bc150082490003f5f9", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf102150082490003da6e", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf1bc150082490003f5f9", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf1bf150082490003f5fc", + "_tpl": "5ac8d6885acfc400180ae7b0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7f1e9433140ad0baf9d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 28, + "r": "Horizontal" + } + }, + { + "_id": "67ecf1bf150082490003f5fd", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf1bf150082490003f5fc", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf1bf150082490003f5fe", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf1bf150082490003f5fc", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf102150082490003da6d", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf1bf150082490003f5fc", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf1d3150082490004042e", + "_tpl": "5ac8d6885acfc400180ae7b0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7f1e9433140ad0baf9d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 26, + "r": "Horizontal" + } + }, + { + "_id": "67ecf1d3150082490004042f", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf1d3150082490004042e", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf1d31500824900040430", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf1d3150082490004042e", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf0e9150082490003cd18", + "_tpl": "5a16b672fcdbcb001912fa83", + "parentId": "67ecf1d3150082490004042e", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + { + "_id": "67ecf127150082490003da73", + "_tpl": "5c0e66e2d174af02a96252f4", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 30, + "MaxDurability": 30 + }, + "SpawnedInSession": false + }, + "parentId": "67ecf1d3150082490004042e", + "slotId": "mod_equipment_002" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf2d81500824900042ff2", + "_tpl": "5e4bfc1586f774264f7582d3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa9cf87e11c61f70bfadd", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 18, + "r": "Horizontal" + } + }, + { + "_id": "67ecf2d81500824900042ff3", + "_tpl": "657f9c78ada5fadd1f07a58d", + "parentId": "67ecf2d81500824900042ff2", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf2d81500824900042ff4", + "_tpl": "657f9cb587e11c61f70bfaca", + "parentId": "67ecf2d81500824900042ff2", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf2ea1500824900043f31", + "_tpl": "5a16b672fcdbcb001912fa83", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 20, + "MaxDurability": 20 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf2d81500824900042ff2", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf3031500824900043f32", + "_tpl": "5c17a7ed2e2216152142459c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa92de65c0122b70ffdb9", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 24, + "r": "Horizontal" + } + }, + { + "_id": "67ecf3031500824900043f33", + "_tpl": "657f9897f4c82973640b235e", + "parentId": "67ecf3031500824900043f32", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf3031500824900043f34", + "_tpl": "657f98fbada5fadd1f07a585", + "parentId": "67ecf3031500824900043f32", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecf3331500824900044e66", + "_tpl": "5c17a7ed2e2216152142459c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa92de65c0122b70ffdb9", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 26, + "r": "Horizontal" + } + }, + { + "_id": "67ecf3331500824900044e67", + "_tpl": "657f9897f4c82973640b235e", + "parentId": "67ecf3331500824900044e66", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf3331500824900044e68", + "_tpl": "657f98fbada5fadd1f07a585", + "parentId": "67ecf3331500824900044e66", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf34d1500824900044e6e", + "_tpl": "5a16b672fcdbcb001912fa83", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 20, + "MaxDurability": 20 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf3331500824900044e66", + "slotId": "mod_equipment_000" + }, + { + "_id": "67ecf3511500824900044e71", + "_tpl": "5c178a942e22164bef5ceca3", + "parentId": "67ecf3331500824900044e66", + "slotId": "mod_equipment_001", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecf3341500824900044e69", + "_tpl": "5c17a7ed2e2216152142459c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa92de65c0122b70ffdb9", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 28, + "r": "Horizontal" + } + }, + { + "_id": "67ecf3341500824900044e6a", + "_tpl": "657f9897f4c82973640b235e", + "parentId": "67ecf3341500824900044e69", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf3341500824900044e6b", + "_tpl": "657f98fbada5fadd1f07a585", + "parentId": "67ecf3341500824900044e69", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf34a1500824900044e6d", + "_tpl": "5a16b7e1fcdbcb00165aa6c9", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf3341500824900044e69", + "slotId": "mod_equipment_000" + }, + { + "_id": "67ecf3531500824900044e72", + "_tpl": "5c178a942e22164bef5ceca3", + "parentId": "67ecf3341500824900044e69", + "slotId": "mod_equipment_001", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecf3871500824900045e8d", + "_tpl": "5e4bfc1586f774264f7582d3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa9cf87e11c61f70bfadd", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 22, + "r": "Horizontal" + } + }, + { + "_id": "67ecf3871500824900045e8e", + "_tpl": "657f9c78ada5fadd1f07a58d", + "parentId": "67ecf3871500824900045e8d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf3871500824900045e8f", + "_tpl": "657f9cb587e11c61f70bfaca", + "parentId": "67ecf3871500824900045e8d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf3941500824900045e90", + "_tpl": "5c0558060db834001b735271", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf3871500824900045e8d", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf3cd1500824900046ce7", + "_tpl": "5a154d5cfcdbcb001a3b00da", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7c0e65c0122b70ffdb0", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 24, + "r": "Horizontal" + } + }, + { + "_id": "67ecf3cd1500824900046ce8", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf3cd1500824900046ce7", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf3cd1500824900046ce9", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf3cd1500824900046ce7", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecf3d11500824900046cea", + "_tpl": "5ac8d6885acfc400180ae7b0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7f1e9433140ad0baf9d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 24, + "r": "Horizontal" + } + }, + { + "_id": "67ecf3d11500824900046ceb", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "67ecf3d11500824900046cea", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf3d11500824900046cec", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "67ecf3d11500824900046cea", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecf41015008249000479ec", + "_tpl": "5ea17ca01412a1425304d1c0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa95ae9433140ad0bafad", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 22, + "r": "Horizontal" + } + }, + { + "_id": "67ecf41015008249000479ed", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "67ecf41015008249000479ec", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf41015008249000479ee", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "67ecf41015008249000479ec", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf4af150082490004a67f", + "_tpl": "5c0558060db834001b735271", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf41015008249000479ec", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf44415008249000488a6", + "_tpl": "5b432d215acfc4771e1c6624", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc772aab96fccee08bebc", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 30, + "r": "Horizontal" + } + }, + { + "_id": "67ecf44415008249000488a7", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "67ecf44415008249000488a6", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf44415008249000488a8", + "_tpl": "657bb99db30eca976305117f", + "parentId": "67ecf44415008249000488a6", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf34d1500824900044e6f", + "_tpl": "5a16b672fcdbcb001912fa83", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 20, + "MaxDurability": 20 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf44415008249000488a6", + "slotId": "mod_equipment_000" + }, + { + "_id": "67ecf131150082490003da7e", + "_tpl": "5a16b9fffcdbcb0176308b34", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "parentId": "67ecf44415008249000488a6", + "slotId": "mod_equipment_001" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf44515008249000488a9", + "_tpl": "5b432d215acfc4771e1c6624", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc772aab96fccee08bebc", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 28, + "r": "Horizontal" + } + }, + { + "_id": "67ecf44515008249000488aa", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "67ecf44515008249000488a9", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf44515008249000488ab", + "_tpl": "657bb99db30eca976305117f", + "parentId": "67ecf44515008249000488a9", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf0c3150082490003cd15", + "_tpl": "5ea058e01dbce517f324b3e2", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + }, + "SpawnedInSession": false + }, + "parentId": "67ecf44515008249000488a9", + "slotId": "mod_nvg" + }, + { + "_id": "67ecf0f9150082490003cd1e", + "_tpl": "5a16badafcdbcb001865f72d", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 25, + "MaxDurability": 25 + }, + "SpawnedInSession": false + }, + "parentId": "67ecf44515008249000488a9", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf48c150082490004975e", + "_tpl": "5b432d215acfc4771e1c6624", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc772aab96fccee08bebc", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 32, + "r": "Horizontal" + } + }, + { + "_id": "67ecf48c150082490004975f", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "67ecf48c150082490004975e", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf48c1500824900049760", + "_tpl": "657bb99db30eca976305117f", + "parentId": "67ecf48c150082490004975e", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf4ae150082490004a67e", + "_tpl": "5c0558060db834001b735271", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf48c150082490004975e", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf524150082490004c31f", + "_tpl": "5e00c1ad86f774747333222c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571200b6fe59548840cb53a", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 26, + "r": "Horizontal" + } + }, + { + "_id": "67ecf524150082490004c320", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "67ecf524150082490004c31f", + "slotId": "helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf524150082490004c321", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "67ecf524150082490004c31f", + "slotId": "helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf4af150082490004a680", + "_tpl": "5c0558060db834001b735271", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "67ecf524150082490004c31f", + "slotId": "mod_nvg" + }, + { + "_id": "67ecf546150082490004c32b", + "_tpl": "66b5f6a28ca68c6461709ed8", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "parentId": "67ecf524150082490004c31f", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "67ecf58f150082490004e270", + "_tpl": "5e00c1ad86f774747333222c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571200b6fe59548840cb53a", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 24, + "r": "Horizontal" + } + }, + { + "_id": "67ecf58f150082490004e271", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "67ecf58f150082490004e270", + "slotId": "helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf58f150082490004e272", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "67ecf58f150082490004e270", + "slotId": "helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "67ecf591150082490004e273", + "_tpl": "5e00c1ad86f774747333222c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6571200b6fe59548840cb53a", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 30, + "r": "Horizontal" + } + }, + { + "_id": "67ecf591150082490004e274", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "67ecf591150082490004e273", + "slotId": "helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf591150082490004e275", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "67ecf591150082490004e273", + "slotId": "helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "67ecf53b150082490004c324", + "_tpl": "5e00cfa786f77469dc6e5685", + "parentId": "67ecf591150082490004e273", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "681ef22373ead78720038b5f", + "_tpl": "5b40e1525acfc4771e1c6611", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120b36fe59548840cb542", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 18, + "r": "Horizontal" + } + }, + { + "_id": "681ef22373ead78720038b60", + "_tpl": "657112234269e9a568089eac", + "parentId": "681ef22373ead78720038b5f", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "681ef22373ead78720038b61", + "_tpl": "657112a4818110db4600aa66", + "parentId": "681ef22373ead78720038b5f", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "681ef22373ead78720038b62", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "681ef22373ead78720038b5f", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "681ef27073ead78720038b6b", + "_tpl": "5f60b34a41e30a4ab12a6947", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7a5bbd440df880b2df6", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "681ef27073ead78720038b6c", + "_tpl": "657bbad7a1c61ee0c3036323", + "parentId": "681ef27073ead78720038b6b", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "681ef27073ead78720038b6d", + "_tpl": "657bbb31b30eca9763051183", + "parentId": "681ef27073ead78720038b6b", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "681ef28a73ead78720039a82", + "_tpl": "5f60c076f2bcbb675b00dac2", + "parentId": "681ef27073ead78720038b6b", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "681ef28c73ead78720039a83", + "_tpl": "5f60b85bbdb8e27dee3dc985", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false + }, + "parentId": "681ef27073ead78720038b6b", + "slotId": "mod_equipment_002" + }, + { + "_id": "681ef29073ead78720039a87", + "_tpl": "5f60bf4558eff926626a60f2", + "parentId": "681ef27073ead78720038b6b", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822dac7185ce152ec038d9b", + "_tpl": "5b432d215acfc4771e1c6624", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 2, + "y": 24, + "r": "Horizontal" + } + }, + { + "_id": "6822dac7185ce152ec038d9d", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "6822dac7185ce152ec038d9b", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dac7185ce152ec038d9e", + "_tpl": "657bb99db30eca976305117f", + "parentId": "6822dac7185ce152ec038d9b", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822daee185ce152ec038d9f", + "_tpl": "5c17a7ed2e2216152142459c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa92de65c0122b70ffdb9", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 32, + "r": "Horizontal" + } + }, + { + "_id": "6822daee185ce152ec038da0", + "_tpl": "657f9897f4c82973640b235e", + "parentId": "6822daee185ce152ec038d9f", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822daee185ce152ec038da1", + "_tpl": "657f98fbada5fadd1f07a585", + "parentId": "6822daee185ce152ec038d9f", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822daf7185ce152ec038da2", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "6822daee185ce152ec038d9f", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822dafb185ce152ec038da3", + "_tpl": "5c0695860db834001b735461", + "parentId": "6822daf7185ce152ec038da2", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822db01185ce152ec038da4", + "_tpl": "5c0696830db834001d23f5da", + "parentId": "6822dafb185ce152ec038da3", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822dc80185ce152ec03d6e6", + "_tpl": "5e4bfc1586f774264f7582d3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa9cf87e11c61f70bfadd", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 16, + "r": "Horizontal" + } + }, + { + "_id": "6822dc80185ce152ec03d6e7", + "_tpl": "657f9c78ada5fadd1f07a58d", + "parentId": "6822dc80185ce152ec03d6e6", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dc80185ce152ec03d6e8", + "_tpl": "657f9cb587e11c61f70bfaca", + "parentId": "6822dc80185ce152ec03d6e6", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822dc90185ce152ec03d6e9", + "_tpl": "5ea17ca01412a1425304d1c0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa95ae9433140ad0bafad", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 18, + "r": "Horizontal" + } + }, + { + "_id": "6822dc90185ce152ec03d6ea", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "6822dc90185ce152ec03d6e9", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dc90185ce152ec03d6eb", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "6822dc90185ce152ec03d6e9", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822dc92185ce152ec03d6ec", + "_tpl": "5ea17ca01412a1425304d1c0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa95ae9433140ad0bafad", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 16, + "r": "Horizontal" + } + }, + { + "_id": "6822dc92185ce152ec03d6ed", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "6822dc92185ce152ec03d6ec", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dc92185ce152ec03d6ee", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "6822dc92185ce152ec03d6ec", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822dcae185ce152ec03e6a7", + "_tpl": "5b40e1525acfc4771e1c6611", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120b36fe59548840cb542", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 22, + "r": "Horizontal" + } + }, + { + "_id": "6822dcae185ce152ec03e6a8", + "_tpl": "657112234269e9a568089eac", + "parentId": "6822dcae185ce152ec03e6a7", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dcae185ce152ec03e6a9", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6822dcae185ce152ec03e6a7", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dcae185ce152ec03e6aa", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6822dcae185ce152ec03e6a7", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822dcaf185ce152ec03e6ab", + "_tpl": "5b40e1525acfc4771e1c6611", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120b36fe59548840cb542", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 20, + "r": "Horizontal" + } + }, + { + "_id": "6822dcaf185ce152ec03e6ac", + "_tpl": "657112234269e9a568089eac", + "parentId": "6822dcaf185ce152ec03e6ab", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dcaf185ce152ec03e6ad", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6822dcaf185ce152ec03e6ab", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dcaf185ce152ec03e6ae", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6822dcaf185ce152ec03e6ab", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822dcb0185ce152ec03e6af", + "_tpl": "5b40e1525acfc4771e1c6611", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120b36fe59548840cb542", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 16, + "r": "Horizontal" + } + }, + { + "_id": "6822dcb0185ce152ec03e6b0", + "_tpl": "657112234269e9a568089eac", + "parentId": "6822dcb0185ce152ec03e6af", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dcb0185ce152ec03e6b1", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6822dcb0185ce152ec03e6af", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dcb0185ce152ec03e6b2", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6822dcb0185ce152ec03e6af", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822dea3185ce152ec044edb", + "_tpl": "5ea17ca01412a1425304d1c0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa95ae9433140ad0bafad", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 14, + "r": "Horizontal" + } + }, + { + "_id": "6822dea3185ce152ec044edc", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "6822dea3185ce152ec044edb", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dea3185ce152ec044edd", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "6822dea3185ce152ec044edb", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822dee5185ce152ec045e2c", + "_tpl": "5e01ef6886f77445f643baa4", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 0, + "y": 32, + "r": "Horizontal" + } + }, + { + "_id": "6822dee5185ce152ec045e2e", + "_tpl": "6551fec55d0cf82e51014288", + "parentId": "6822dee5185ce152ec045e2c", + "slotId": "helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822dee5185ce152ec045e2f", + "_tpl": "655200ba0ef76cf7be09d528", + "parentId": "6822dee5185ce152ec045e2c", + "slotId": "helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822df68185ce152ec047a8f", + "_tpl": "5b40e1525acfc4771e1c6611", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120b36fe59548840cb542", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 22, + "r": "Horizontal" + } + }, + { + "_id": "6822df68185ce152ec047a90", + "_tpl": "657112234269e9a568089eac", + "parentId": "6822df68185ce152ec047a8f", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822df68185ce152ec047a91", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6822df68185ce152ec047a8f", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822df68185ce152ec047a92", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6822df68185ce152ec047a8f", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822df6a185ce152ec047a93", + "_tpl": "5b40e1525acfc4771e1c6611", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120b36fe59548840cb542", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 20, + "r": "Horizontal" + } + }, + { + "_id": "6822df6a185ce152ec047a94", + "_tpl": "657112234269e9a568089eac", + "parentId": "6822df6a185ce152ec047a93", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822df6a185ce152ec047a95", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6822df6a185ce152ec047a93", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822df6a185ce152ec047a96", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6822df6a185ce152ec047a93", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822e092185ce152ec04c196", + "_tpl": "66b5f666cad6f002ab7214c2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c562fd38bf060b4b85a7", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "6822e092185ce152ec04c197", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "6822e092185ce152ec04c196", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e092185ce152ec04c198", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "6822e092185ce152ec04c196", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e07a185ce152ec04b34f", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822e092185ce152ec04c196", + "slotId": "mod_nvg" + }, + { + "_id": "6822e07e185ce152ec04b352", + "_tpl": "5c0695860db834001b735461", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822e07a185ce152ec04b34f", + "slotId": "mod_nvg" + }, + { + "_id": "6822e084185ce152ec04c193", + "_tpl": "5c0696830db834001d23f5da", + "parentId": "6822e07e185ce152ec04b352", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822e097185ce152ec04c199", + "_tpl": "66b5f661af44ca0014063c05", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c53ea7f72d197e70bf83", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 2, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822e097185ce152ec04c19a", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "6822e097185ce152ec04c199", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e097185ce152ec04c19b", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "6822e097185ce152ec04c199", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822e0af185ce152ec04c19c", + "_tpl": "5b40e3f35acfc40016388218", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 6, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "6822e0af185ce152ec04c19e", + "_tpl": "657f95bff92cd718b701550c", + "parentId": "6822e0af185ce152ec04c19c", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e0af185ce152ec04c19f", + "_tpl": "657f9605f4c82973640b2358", + "parentId": "6822e0af185ce152ec04c19c", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822e0be185ce152ec04d168", + "_tpl": "5f60b34a41e30a4ab12a6947", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7a5bbd440df880b2df6", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 22, + "r": "Horizontal" + } + }, + { + "_id": "6822e0be185ce152ec04d169", + "_tpl": "657bbad7a1c61ee0c3036323", + "parentId": "6822e0be185ce152ec04d168", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e0be185ce152ec04d16a", + "_tpl": "657bbb31b30eca9763051183", + "parentId": "6822e0be185ce152ec04d168", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e0cc185ce152ec04d16b", + "_tpl": "5f60bf4558eff926626a60f2", + "parentId": "6822e0be185ce152ec04d168", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822e0cf185ce152ec04d16e", + "_tpl": "5f60c076f2bcbb675b00dac2", + "parentId": "6822e0be185ce152ec04d168", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822e0fd185ce152ec04df4e", + "_tpl": "5f60b34a41e30a4ab12a6947", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7a5bbd440df880b2df6", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 18, + "r": "Horizontal" + } + }, + { + "_id": "6822e0fd185ce152ec04df4f", + "_tpl": "657bbad7a1c61ee0c3036323", + "parentId": "6822e0fd185ce152ec04df4e", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e0fd185ce152ec04df50", + "_tpl": "657bbb31b30eca9763051183", + "parentId": "6822e0fd185ce152ec04df4e", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822e110185ce152ec04df51", + "_tpl": "5b40e2bc5acfc40016388216", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120dd6fe59548840cb54c", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 18, + "r": "Horizontal" + } + }, + { + "_id": "6822e110185ce152ec04df52", + "_tpl": "657112234269e9a568089eac", + "parentId": "6822e110185ce152ec04df51", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e110185ce152ec04df53", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6822e110185ce152ec04df51", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e110185ce152ec04df54", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6822e110185ce152ec04df51", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822e110185ce152ec04df55", + "_tpl": "5b40e2bc5acfc40016388216", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120dd6fe59548840cb54c", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 14, + "r": "Horizontal" + } + }, + { + "_id": "6822e110185ce152ec04df56", + "_tpl": "657112234269e9a568089eac", + "parentId": "6822e110185ce152ec04df55", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e110185ce152ec04df57", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6822e110185ce152ec04df55", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e110185ce152ec04df58", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6822e110185ce152ec04df55", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + } + ], + }, + ], + [ + // _uncommon + { + Items: [ + { + "_id": "6822d35bddc96b68ac03e095", + "_tpl": "6745895717824b1ec20570a6", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "677d14927f8ee8353d85918d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "6822d35bddc96b68ac03e096", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d35bddc96b68ac03e095", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d35bddc96b68ac03e097", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d35bddc96b68ac03e095", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d35bddc96b68ac03e098", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d35bddc96b68ac03e095", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d35eddc96b68ac03e099", + "_tpl": "5aa7cfc0e5b5b00015693143", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc6ceaab96fccee08beb2", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "6822d35eddc96b68ac03e09a", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d35eddc96b68ac03e099", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d35eddc96b68ac03e09b", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d35eddc96b68ac03e099", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d35eddc96b68ac03e09c", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d35eddc96b68ac03e099", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d360ddc96b68ac03e09d", + "_tpl": "5a7c4850e899ef00150be885", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 4, + "y": 0, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d360ddc96b68ac03e09f", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d360ddc96b68ac03e09d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d360ddc96b68ac03e0a0", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d360ddc96b68ac03e09d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d360ddc96b68ac03e0a1", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d360ddc96b68ac03e09d", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d366ddc96b68ac03e0a2", + "_tpl": "5c066ef40db834001966a595", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 4, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "6822d5f2ddc96b68ac04726a", + "_tpl": "5c066e3a0db834001b7353f0", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d366ddc96b68ac03e0a2", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "6822d374ddc96b68ac03ef3b", + "_tpl": "5d6d3716a4b9361bc8618872", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 2, + "y": 8, + "r": "Horizontal" + } + }, + { + "_id": "6822d374ddc96b68ac03ef3d", + "_tpl": "657fa009d4caf976440afe3a", + "parentId": "6822d374ddc96b68ac03ef3b", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d374ddc96b68ac03ef3e", + "_tpl": "657fa04ac6679fefb3051e24", + "parentId": "6822d374ddc96b68ac03ef3b", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d374ddc96b68ac03ef3f", + "_tpl": "657fa07387e11c61f70bface", + "parentId": "6822d374ddc96b68ac03ef3b", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d377ddc96b68ac03ef40", + "_tpl": "66b5f65ca7f72d197e70bcd6", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c41f0b603c26902afd8d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 18, + "r": "Horizontal" + } + }, + { + "_id": "6822d377ddc96b68ac03ef41", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "6822d377ddc96b68ac03ef40", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d377ddc96b68ac03ef42", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "6822d377ddc96b68ac03ef40", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d42cddc96b68ac040cd1", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "parentId": "6822d377ddc96b68ac03ef40", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822d432ddc96b68ac040cd5", + "_tpl": "5c0695860db834001b735461", + "parentId": "6822d42cddc96b68ac040cd1", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822d443ddc96b68ac041bac", + "_tpl": "5c0696830db834001d23f5da", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d432ddc96b68ac040cd5", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "6822d37addc96b68ac03ef43", + "_tpl": "66b5f666cad6f002ab7214c2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c562fd38bf060b4b85a7", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 4, + "r": "Horizontal" + } + }, + { + "_id": "6822d37addc96b68ac03ef44", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "6822d37addc96b68ac03ef43", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d37addc96b68ac03ef45", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "6822d37addc96b68ac03ef43", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d37cddc96b68ac03ef46", + "_tpl": "66b5f661af44ca0014063c05", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c53ea7f72d197e70bf83", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "6822d37cddc96b68ac03ef47", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "6822d37cddc96b68ac03ef46", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d37cddc96b68ac03ef48", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "6822d37cddc96b68ac03ef46", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d382ddc96b68ac03ef49", + "_tpl": "5c17a7ed2e2216152142459c", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa92de65c0122b70ffdb9", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "6822d382ddc96b68ac03ef4a", + "_tpl": "657f9897f4c82973640b235e", + "parentId": "6822d382ddc96b68ac03ef49", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d382ddc96b68ac03ef4b", + "_tpl": "657f98fbada5fadd1f07a585", + "parentId": "6822d382ddc96b68ac03ef49", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d387ddc96b68ac03ef4c", + "_tpl": "66bdc28a0b603c26902b2011", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66c49c0f2e6e23eb7b03f22d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "6822d387ddc96b68ac03ef4d", + "_tpl": "66bdc2ea8cbd597c9c2f9360", + "parentId": "6822d387ddc96b68ac03ef4c", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d387ddc96b68ac03ef4e", + "_tpl": "66bdc2e25f17154509115d1e", + "parentId": "6822d387ddc96b68ac03ef4c", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d387ddc96b68ac03ef4f", + "_tpl": "66bdc2d051aa8c345646d03f", + "parentId": "6822d387ddc96b68ac03ef4c", + "slotId": "helmet_eyes", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d387ddc96b68ac03ef50", + "_tpl": "66bdc2d9408f1e66eb4fd957", + "parentId": "6822d387ddc96b68ac03ef4c", + "slotId": "helmet_jaw", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d387ddc96b68ac03ef51", + "_tpl": "66bdc2c90b603c26902b2018", + "parentId": "6822d387ddc96b68ac03ef4c", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d389ddc96b68ac03ef52", + "_tpl": "5ea17ca01412a1425304d1c0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa95ae9433140ad0bafad", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 4, + "r": "Horizontal" + } + }, + { + "_id": "6822d389ddc96b68ac03ef53", + "_tpl": "657f9a55c6679fefb3051e19", + "parentId": "6822d389ddc96b68ac03ef52", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d389ddc96b68ac03ef54", + "_tpl": "657f9a94ada5fadd1f07a589", + "parentId": "6822d389ddc96b68ac03ef52", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d38cddc96b68ac03ef55", + "_tpl": "65709d2d21b9f815e208ff95", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657faa32e65c0122b70ffdc1", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 4, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d38cddc96b68ac03ef56", + "_tpl": "657f9eb7e9433140ad0baf86", + "parentId": "6822d38cddc96b68ac03ef55", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d38cddc96b68ac03ef57", + "_tpl": "657f9ef6c6679fefb3051e1f", + "parentId": "6822d38cddc96b68ac03ef55", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3a4ddc96b68ac03ef58", + "_tpl": "5645bc214bdc2d363b8b4571", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 8, + "y": 14, + "r": "Horizontal" + } + }, + { + "_id": "6822d3a4ddc96b68ac03ef5a", + "_tpl": "657bae18b7e9ca9a02045c0a", + "parentId": "6822d3a4ddc96b68ac03ef58", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3a4ddc96b68ac03ef5b", + "_tpl": "657baeaacfcf63c951052db3", + "parentId": "6822d3a4ddc96b68ac03ef58", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3a4ddc96b68ac03ef5c", + "_tpl": "657baecbc6f689d3a205b863", + "parentId": "6822d3a4ddc96b68ac03ef58", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d619ddc96b68ac047fc2", + "_tpl": "5b46238386f7741a693bcf9c", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 40, + "MaxDurability": 40 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d3a4ddc96b68ac03ef58", + "slotId": "mod_equipment" + }, + ], + }, + { + Items: [ + { + "_id": "6822d3a6ddc96b68ac03ef5d", + "_tpl": "5f60b34a41e30a4ab12a6947", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7a5bbd440df880b2df6", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 20, + "r": "Horizontal" + } + }, + { + "_id": "6822d3a6ddc96b68ac03ef5e", + "_tpl": "657bbad7a1c61ee0c3036323", + "parentId": "6822d3a6ddc96b68ac03ef5d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3a6ddc96b68ac03ef5f", + "_tpl": "657bbb31b30eca9763051183", + "parentId": "6822d3a6ddc96b68ac03ef5d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d53cddc96b68ac0447bb", + "_tpl": "5f60c076f2bcbb675b00dac2", + "parentId": "6822d3a6ddc96b68ac03ef5d", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3abddc96b68ac03ef60", + "_tpl": "5b40e3f35acfc40016388218", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 8, + "y": 4, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d3abddc96b68ac03ef62", + "_tpl": "657f95bff92cd718b701550c", + "parentId": "6822d3abddc96b68ac03ef60", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3abddc96b68ac03ef63", + "_tpl": "657f9605f4c82973640b2358", + "parentId": "6822d3abddc96b68ac03ef60", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3afddc96b68ac03ef64", + "_tpl": "5b40e4035acfc47a87740943", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa8e787e11c61f70bfad5", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 6, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d3afddc96b68ac03ef65", + "_tpl": "657f95bff92cd718b701550c", + "parentId": "6822d3afddc96b68ac03ef64", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3afddc96b68ac03ef66", + "_tpl": "657f9605f4c82973640b2358", + "parentId": "6822d3afddc96b68ac03ef64", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3b2ddc96b68ac03ef89", + "_tpl": "5b40e1525acfc4771e1c6611", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120b36fe59548840cb542", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 6, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d3b2ddc96b68ac03ef8a", + "_tpl": "657112234269e9a568089eac", + "parentId": "6822d3b2ddc96b68ac03ef89", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3b2ddc96b68ac03ef8b", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6822d3b2ddc96b68ac03ef89", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3b2ddc96b68ac03ef8c", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6822d3b2ddc96b68ac03ef89", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3b4ddc96b68ac03ef8d", + "_tpl": "5b40e2bc5acfc40016388216", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657120dd6fe59548840cb54c", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 6, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d3b4ddc96b68ac03ef8e", + "_tpl": "657112234269e9a568089eac", + "parentId": "6822d3b4ddc96b68ac03ef8d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3b4ddc96b68ac03ef8f", + "_tpl": "657112a4818110db4600aa66", + "parentId": "6822d3b4ddc96b68ac03ef8d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3b4ddc96b68ac03ef90", + "_tpl": "657112ce22996eaf110881fb", + "parentId": "6822d3b4ddc96b68ac03ef8d", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3bcddc96b68ac03fd9c", + "_tpl": "5b432d215acfc4771e1c6624", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc772aab96fccee08bebc", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 20, + "r": "Horizontal" + } + }, + { + "_id": "6822d3bcddc96b68ac03fd9d", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "6822d3bcddc96b68ac03fd9c", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3bcddc96b68ac03fd9e", + "_tpl": "657bb99db30eca976305117f", + "parentId": "6822d3bcddc96b68ac03fd9c", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d4dfddc96b68ac043888", + "_tpl": "5ea058e01dbce517f324b3e2", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 45, + "MaxDurability": 45 + }, + "SpawnedInSession": false + }, + "parentId": "6822d3bcddc96b68ac03fd9c", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "6822d3c0ddc96b68ac03fd9f", + "_tpl": "5d5e7d28a4b936645d161203", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa705e9433140ad0baf95", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 18, + "r": "Horizontal" + } + }, + { + "_id": "6822d3c0ddc96b68ac03fda0", + "_tpl": "657f8a8d7db258e5600fe33d", + "parentId": "6822d3c0ddc96b68ac03fd9f", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3c0ddc96b68ac03fda1", + "_tpl": "657f8b05f4c82973640b2348", + "parentId": "6822d3c0ddc96b68ac03fd9f", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d745ddc96b68ac04c8c0", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d3c0ddc96b68ac03fd9f", + "slotId": "mod_nvg" + }, + { + "_id": "6822d74addc96b68ac04c8c1", + "_tpl": "5c0695860db834001b735461", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d745ddc96b68ac04c8c0", + "slotId": "mod_nvg" + }, + { + "_id": "6822d750ddc96b68ac04c8c3", + "_tpl": "5c0696830db834001d23f5da", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d74addc96b68ac04c8c1", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "6822d3c2ddc96b68ac03fda2", + "_tpl": "5d5e9c74a4b9364855191c40", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa735e65c0122b70ffda5", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 8, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d3c2ddc96b68ac03fda3", + "_tpl": "657f8b94f92cd718b70154ff", + "parentId": "6822d3c2ddc96b68ac03fda2", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3c2ddc96b68ac03fda4", + "_tpl": "657f8b43f92cd718b70154fb", + "parentId": "6822d3c2ddc96b68ac03fda2", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3c4ddc96b68ac03fda5", + "_tpl": "5e4bfc1586f774264f7582d3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa9cf87e11c61f70bfadd", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 18, + "r": "Horizontal" + } + }, + { + "_id": "6822d3c4ddc96b68ac03fda6", + "_tpl": "657f9c78ada5fadd1f07a58d", + "parentId": "6822d3c4ddc96b68ac03fda5", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3c4ddc96b68ac03fda7", + "_tpl": "657f9cb587e11c61f70bfaca", + "parentId": "6822d3c4ddc96b68ac03fda5", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d568ddc96b68ac04570b", + "_tpl": "5a16b672fcdbcb001912fa83", + "parentId": "6822d3c4ddc96b68ac03fda5", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3c7ddc96b68ac03fda8", + "_tpl": "675956062f6ddfe8ff0e2806", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6777b37393a9a6f10ea57501", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 8, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d3c7ddc96b68ac03fda9", + "_tpl": "676307c004856a0b3c0dfffd", + "parentId": "6822d3c7ddc96b68ac03fda8", + "slotId": "Helmet_top", + "upd": { + "Repairable": { + "Durability": 25, + "MaxDurability": 25 + }, + "SpawnedInSession": false + } + }, + { + "_id": "6822d3c7ddc96b68ac03fdaa", + "_tpl": "676307b4d9ec0af3d9001fa8", + "parentId": "6822d3c7ddc96b68ac03fda8", + "slotId": "Helmet_back", + "upd": { + "Repairable": { + "Durability": 25, + "MaxDurability": 25 + }, + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3c9ddc96b68ac03fdab", + "_tpl": "6759655674aa5e0825040d62", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6777bf37e10ffdb431ff9508", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 8, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d3c9ddc96b68ac03fdac", + "_tpl": "676307c004856a0b3c0dfffd", + "parentId": "6822d3c9ddc96b68ac03fdab", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3c9ddc96b68ac03fdad", + "_tpl": "676307b4d9ec0af3d9001fa8", + "parentId": "6822d3c9ddc96b68ac03fdab", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3cbddc96b68ac03fdae", + "_tpl": "67597ceea35600b4c10cea86", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6777bfee0658691ef27d9993", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 8, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d3cbddc96b68ac03fdaf", + "_tpl": "676307ded8b241b4f703a3e8", + "parentId": "6822d3cbddc96b68ac03fdae", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3cbddc96b68ac03fdb0", + "_tpl": "676307d3d9ec0af3d9001fac", + "parentId": "6822d3cbddc96b68ac03fdae", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3cdddc96b68ac03fdb1", + "_tpl": "67597d241d5a44f2f605df06", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "6777c1244557b9b1474da362", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "6822d3cdddc96b68ac03fdb2", + "_tpl": "676307ded8b241b4f703a3e8", + "parentId": "6822d3cdddc96b68ac03fdb1", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3cdddc96b68ac03fdb3", + "_tpl": "676307d3d9ec0af3d9001fac", + "parentId": "6822d3cdddc96b68ac03fdb1", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3d9ddc96b68ac03fdb4", + "_tpl": "61bca7cda0eae612383adf57", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7d6aab96fccee08bec4", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "6822d3d9ddc96b68ac03fdb5", + "_tpl": "657bbcc9a1c61ee0c3036327", + "parentId": "6822d3d9ddc96b68ac03fdb4", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3d9ddc96b68ac03fdb6", + "_tpl": "657bbcffbbd440df880b2dd5", + "parentId": "6822d3d9ddc96b68ac03fdb4", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3ddddc96b68ac03fdb7", + "_tpl": "65719f0775149d62ce0a670b", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657faa0687e11c61f70bfae5", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "6822d3ddddc96b68ac03fdb8", + "_tpl": "657fa0fcd4caf976440afe3e", + "parentId": "6822d3ddddc96b68ac03fdb7", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3ddddc96b68ac03fdb9", + "_tpl": "657fa168e9433140ad0baf8e", + "parentId": "6822d3ddddc96b68ac03fdb7", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3ddddc96b68ac03fdba", + "_tpl": "657fa186d4caf976440afe42", + "parentId": "6822d3ddddc96b68ac03fdb7", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d3e0ddc96b68ac03fdbe", + "_tpl": "5ac8d6885acfc400180ae7b0", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa7f1e9433140ad0baf9d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "6822d3e0ddc96b68ac03fdbf", + "_tpl": "657f8ec5f4c82973640b234c", + "parentId": "6822d3e0ddc96b68ac03fdbe", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d3e0ddc96b68ac03fdc0", + "_tpl": "657f8f10f4c82973640b2350", + "parentId": "6822d3e0ddc96b68ac03fdbe", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d40cddc96b68ac040cc7", + "_tpl": "5aa7e4a4e5b5b000137b76f2", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 2, + "y": 12, + "r": "Horizontal" + } + }, + { + "_id": "6822d40cddc96b68ac040cc9", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "6822d40cddc96b68ac040cc7", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d40cddc96b68ac040cca", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "6822d40cddc96b68ac040cc7", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d40cddc96b68ac040ccb", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "6822d40cddc96b68ac040cc7", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d465ddc96b68ac041bb2", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "6822d40cddc96b68ac040cc7", + "slotId": "mod_equipment", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d411ddc96b68ac040ccc", + "_tpl": "5aa7e454e5b5b0214e506fa2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa836c6679fefb3051e28", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 12, + "r": "Horizontal" + } + }, + { + "_id": "6822d411ddc96b68ac040ccd", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "6822d411ddc96b68ac040ccc", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d411ddc96b68ac040cce", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "6822d411ddc96b68ac040ccc", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d411ddc96b68ac040ccf", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "6822d411ddc96b68ac040ccc", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d465ddc96b68ac041bb3", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "6822d411ddc96b68ac040ccc", + "slotId": "mod_equipment", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d4f4ddc96b68ac04388e", + "_tpl": "5b432d215acfc4771e1c6624", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc772aab96fccee08bebc", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 18, + "r": "Horizontal" + } + }, + { + "_id": "6822d4f4ddc96b68ac04388f", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "6822d4f4ddc96b68ac04388e", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d4f4ddc96b68ac043890", + "_tpl": "657bb99db30eca976305117f", + "parentId": "6822d4f4ddc96b68ac04388e", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d4e3ddc96b68ac04388a", + "_tpl": "5a16b672fcdbcb001912fa83", + "parentId": "6822d4f4ddc96b68ac04388e", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d4feddc96b68ac043891", + "_tpl": "5b432d215acfc4771e1c6624", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc772aab96fccee08bebc", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 22, + "r": "Horizontal" + } + }, + { + "_id": "6822d4feddc96b68ac043892", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "6822d4feddc96b68ac043891", + "slotId": "Helmet_top", + "upd": { + "Repairable": { + "Durability": 18, + "MaxDurability": 18 + }, + "SpawnedInSession": false + } + }, + { + "_id": "6822d4feddc96b68ac043893", + "_tpl": "657bb99db30eca976305117f", + "parentId": "6822d4feddc96b68ac043891", + "slotId": "Helmet_back", + "upd": { + "Repairable": { + "Durability": 17, + "MaxDurability": 17 + }, + "SpawnedInSession": false + } + }, + { + "_id": "6822d707ddc96b68ac04ba2d", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d4feddc96b68ac043891", + "slotId": "mod_nvg" + }, + { + "_id": "6822d703ddc96b68ac04ba2c", + "_tpl": "5c0695860db834001b735461", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d707ddc96b68ac04ba2d", + "slotId": "mod_nvg" + }, + { + "_id": "6822d70bddc96b68ac04ba2e", + "_tpl": "5c0696830db834001d23f5da", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d703ddc96b68ac04ba2c", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "6822d555ddc96b68ac0447bc", + "_tpl": "5f60b34a41e30a4ab12a6947", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7a5bbd440df880b2df6", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 18, + "r": "Horizontal" + } + }, + { + "_id": "6822d555ddc96b68ac0447bd", + "_tpl": "657bbad7a1c61ee0c3036323", + "parentId": "6822d555ddc96b68ac0447bc", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d555ddc96b68ac0447be", + "_tpl": "657bbb31b30eca9763051183", + "parentId": "6822d555ddc96b68ac0447bc", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d69bddc96b68ac049cad", + "_tpl": "5f60bf4558eff926626a60f2", + "parentId": "6822d555ddc96b68ac0447bc", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + { + "_id": "6822d69dddc96b68ac049cae", + "_tpl": "5f60c076f2bcbb675b00dac2", + "parentId": "6822d555ddc96b68ac0447bc", + "slotId": "mod_equipment_000", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d583ddc96b68ac04570d", + "_tpl": "5e4bfc1586f774264f7582d3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa9cf87e11c61f70bfadd", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 20, + "r": "Horizontal" + } + }, + { + "_id": "6822d583ddc96b68ac04570e", + "_tpl": "657f9c78ada5fadd1f07a58d", + "parentId": "6822d583ddc96b68ac04570d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d583ddc96b68ac04570f", + "_tpl": "657f9cb587e11c61f70bfaca", + "parentId": "6822d583ddc96b68ac04570d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d42eddc96b68ac040cd3", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d583ddc96b68ac04570d", + "slotId": "mod_nvg" + }, + { + "_id": "6822d434ddc96b68ac040cd8", + "_tpl": "5c0695860db834001b735461", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d42eddc96b68ac040cd3", + "slotId": "mod_nvg" + }, + { + "_id": "6822d444ddc96b68ac041bae", + "_tpl": "5c0696830db834001d23f5da", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d434ddc96b68ac040cd8", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "6822d5bdddc96b68ac0464d1", + "_tpl": "66b5f65ca7f72d197e70bcd6", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "66b9c41f0b603c26902afd8d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 16, + "r": "Horizontal" + } + }, + { + "_id": "6822d5bdddc96b68ac0464d2", + "_tpl": "66b61cfae98be930d701c029", + "parentId": "6822d5bdddc96b68ac0464d1", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d5bdddc96b68ac0464d3", + "_tpl": "66b61ce0c5d72b027748867e", + "parentId": "6822d5bdddc96b68ac0464d1", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d5f9ddc96b68ac04726b", + "_tpl": "5a7c4850e899ef00150be885", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 6, + "y": 0, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d5f9ddc96b68ac04726d", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d5f9ddc96b68ac04726b", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d5f9ddc96b68ac04726e", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d5f9ddc96b68ac04726b", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d5f9ddc96b68ac04726f", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d5f9ddc96b68ac04726b", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d5f9ddc96b68ac047270", + "_tpl": "5a7c4850e899ef00150be885", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 8, + "y": 0, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d5f9ddc96b68ac047272", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d5f9ddc96b68ac047270", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d5f9ddc96b68ac047273", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d5f9ddc96b68ac047270", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d5f9ddc96b68ac047274", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d5f9ddc96b68ac047270", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d744ddc96b68ac04c8bf", + "_tpl": "5a16b8a9fcdbcb00165aa6ca", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d5f9ddc96b68ac047270", + "slotId": "mod_nvg" + }, + { + "_id": "6822d74addc96b68ac04c8c2", + "_tpl": "5c0695860db834001b735461", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false + }, + "parentId": "6822d744ddc96b68ac04c8bf", + "slotId": "mod_nvg" + }, + { + "_id": "6822d751ddc96b68ac04c8c4", + "_tpl": "5c0696830db834001d23f5da", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d74addc96b68ac04c8c2", + "slotId": "mod_nvg" + }, + ], + }, + { + Items: [ + { + "_id": "6822d5fcddc96b68ac047275", + "_tpl": "5aa7cfc0e5b5b00015693143", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc6ceaab96fccee08beb2", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "6822d5fcddc96b68ac047276", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d5fcddc96b68ac047275", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d5fcddc96b68ac047277", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d5fcddc96b68ac047275", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d5fcddc96b68ac047278", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d5fcddc96b68ac047275", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d5fdddc96b68ac047279", + "_tpl": "5aa7cfc0e5b5b00015693143", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc6ceaab96fccee08beb2", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "6822d5fdddc96b68ac04727a", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d5fdddc96b68ac047279", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d5fdddc96b68ac04727b", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d5fdddc96b68ac047279", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d5fdddc96b68ac04727c", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d5fdddc96b68ac047279", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d68addc96b68ac049c6b", + "_tpl": "5e4bfc1586f774264f7582d3", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa9cf87e11c61f70bfadd", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 16, + "r": "Horizontal" + } + }, + { + "_id": "6822d68addc96b68ac049c6c", + "_tpl": "657f9c78ada5fadd1f07a58d", + "parentId": "6822d68addc96b68ac049c6b", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d68addc96b68ac049c6d", + "_tpl": "657f9cb587e11c61f70bfaca", + "parentId": "6822d68addc96b68ac049c6b", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d6a7ddc96b68ac049caf", + "_tpl": "5f60b34a41e30a4ab12a6947", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7a5bbd440df880b2df6", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 16, + "r": "Horizontal" + } + }, + { + "_id": "6822d6a7ddc96b68ac049cb0", + "_tpl": "657bbad7a1c61ee0c3036323", + "parentId": "6822d6a7ddc96b68ac049caf", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d6a7ddc96b68ac049cb1", + "_tpl": "657bbb31b30eca9763051183", + "parentId": "6822d6a7ddc96b68ac049caf", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d718ddc96b68ac04ba2f", + "_tpl": "5b432d215acfc4771e1c6624", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc772aab96fccee08bebc", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 16, + "r": "Horizontal" + } + }, + { + "_id": "6822d718ddc96b68ac04ba30", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "6822d718ddc96b68ac04ba2f", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d718ddc96b68ac04ba31", + "_tpl": "657bb99db30eca976305117f", + "parentId": "6822d718ddc96b68ac04ba2f", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d768ddc96b68ac04c8c5", + "_tpl": "5d5e7d28a4b936645d161203", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa705e9433140ad0baf95", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 16, + "r": "Horizontal" + } + }, + { + "_id": "6822d768ddc96b68ac04c8c6", + "_tpl": "657f8a8d7db258e5600fe33d", + "parentId": "6822d768ddc96b68ac04c8c5", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d768ddc96b68ac04c8c7", + "_tpl": "657f8b05f4c82973640b2348", + "parentId": "6822d768ddc96b68ac04c8c5", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d794ddc96b68ac04d809", + "_tpl": "5645bc214bdc2d363b8b4571", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 8, + "y": 12, + "r": "Horizontal" + } + }, + { + "_id": "6822d794ddc96b68ac04d80b", + "_tpl": "657bae18b7e9ca9a02045c0a", + "parentId": "6822d794ddc96b68ac04d809", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d794ddc96b68ac04d80c", + "_tpl": "657baeaacfcf63c951052db3", + "parentId": "6822d794ddc96b68ac04d809", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d794ddc96b68ac04d80d", + "_tpl": "657baecbc6f689d3a205b863", + "parentId": "6822d794ddc96b68ac04d809", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + } + ], + }, + ], + [ + // _common + { + Items: [ + { + "_id": "6822d0a6ddc96b68ac0388d4", + "_tpl": "6745895717824b1ec20570a6", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "677d14927f8ee8353d85918d", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 0, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d0a6ddc96b68ac0388d5", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d0a6ddc96b68ac0388d4", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0a6ddc96b68ac0388d6", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d0a6ddc96b68ac0388d4", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0a6ddc96b68ac0388d7", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d0a6ddc96b68ac0388d4", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d0aaddc96b68ac0388d8", + "_tpl": "5aa7cfc0e5b5b00015693143", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc6ceaab96fccee08beb2", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "6822d0aaddc96b68ac0388d9", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d0aaddc96b68ac0388d8", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0aaddc96b68ac0388da", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d0aaddc96b68ac0388d8", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0aaddc96b68ac0388db", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d0aaddc96b68ac0388d8", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d0acddc96b68ac0388dc", + "_tpl": "5a7c4850e899ef00150be885", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc68d26820ea7da04f2f0", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 10, + "r": "Horizontal" + } + }, + { + "_id": "6822d0acddc96b68ac0388dd", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d0acddc96b68ac0388dc", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0acddc96b68ac0388de", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d0acddc96b68ac0388dc", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0acddc96b68ac0388df", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d0acddc96b68ac0388dc", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d0b5ddc96b68ac0388e0", + "_tpl": "5c066ef40db834001966a595", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 6, + "y": 0, + "r": "Horizontal" + } + + }, + { + "_id": "6822d1f5ddc96b68ac03a63b", + "_tpl": "5c066e3a0db834001b7353f0", + "parentId": "6822d0b5ddc96b68ac0388e0", + "slotId": "mod_nvg", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d0e9ddc96b68ac038930", + "_tpl": "5645bc214bdc2d363b8b4571", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 8, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "6822d0e9ddc96b68ac038932", + "_tpl": "657bae18b7e9ca9a02045c0a", + "parentId": "6822d0e9ddc96b68ac038930", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0e9ddc96b68ac038933", + "_tpl": "657baeaacfcf63c951052db3", + "parentId": "6822d0e9ddc96b68ac038930", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0e9ddc96b68ac038934", + "_tpl": "657baecbc6f689d3a205b863", + "parentId": "6822d0e9ddc96b68ac038930", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d203ddc96b68ac03a63c", + "_tpl": "5b46238386f7741a693bcf9c", + "parentId": "6822d0e9ddc96b68ac038930", + "slotId": "mod_equipment", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d0f0ddc96b68ac038935", + "_tpl": "5f60b34a41e30a4ab12a6947", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7a5bbd440df880b2df6", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 2, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d0f0ddc96b68ac038936", + "_tpl": "657bbad7a1c61ee0c3036323", + "parentId": "6822d0f0ddc96b68ac038935", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0f0ddc96b68ac038937", + "_tpl": "657bbb31b30eca9763051183", + "parentId": "6822d0f0ddc96b68ac038935", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d0fbddc96b68ac038938", + "_tpl": "59e7711e86f7746cae05fbe1", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 2, + "y": 2, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d0fbddc96b68ac03893a", + "_tpl": "657ba50c23918923cb0df56c", + "parentId": "6822d0fbddc96b68ac038938", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0fbddc96b68ac03893b", + "_tpl": "657ba5439ba22f103e08139f", + "parentId": "6822d0fbddc96b68ac038938", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d0fbddc96b68ac03893c", + "_tpl": "657ba57af58ba5a62501079e", + "parentId": "6822d0fbddc96b68ac038938", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d1d4ddc96b68ac039740", + "_tpl": "5ac4c50d5acfc40019262e87", + "parentId": "6822d0fbddc96b68ac038938", + "slotId": "mod_equipment", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d103ddc96b68ac03893d", + "_tpl": "5b432d215acfc4771e1c6624", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc772aab96fccee08bebc", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 4, + "r": "Horizontal" + } + }, + { + "_id": "6822d103ddc96b68ac03893e", + "_tpl": "657bb92fa1c61ee0c303631f", + "parentId": "6822d103ddc96b68ac03893d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d103ddc96b68ac03893f", + "_tpl": "657bb99db30eca976305117f", + "parentId": "6822d103ddc96b68ac03893d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d131ddc96b68ac038940", + "_tpl": "61bca7cda0eae612383adf57", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc7d6aab96fccee08bec4", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 2, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d131ddc96b68ac038941", + "_tpl": "657bbcc9a1c61ee0c3036327", + "parentId": "6822d131ddc96b68ac038940", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d131ddc96b68ac038942", + "_tpl": "657bbcffbbd440df880b2dd5", + "parentId": "6822d131ddc96b68ac038940", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d137ddc96b68ac038943", + "_tpl": "65719f0775149d62ce0a670b", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657faa0687e11c61f70bfae5", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 2, + "r": "Horizontal" + } + }, + { + "_id": "6822d137ddc96b68ac038944", + "_tpl": "657fa0fcd4caf976440afe3e", + "parentId": "6822d137ddc96b68ac038943", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d137ddc96b68ac038945", + "_tpl": "657fa168e9433140ad0baf8e", + "parentId": "6822d137ddc96b68ac038943", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d137ddc96b68ac038946", + "_tpl": "657fa186d4caf976440afe42", + "parentId": "6822d137ddc96b68ac038943", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d13fddc96b68ac038947", + "_tpl": "5c0d2727d174af02a012cf58", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc600b588f345450a6d62", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 4, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d13fddc96b68ac038948", + "_tpl": "657ba6c3c6f689d3a205b857", + "parentId": "6822d13fddc96b68ac038947", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d13fddc96b68ac038949", + "_tpl": "657ba737b7e9ca9a02045bf6", + "parentId": "6822d13fddc96b68ac038947", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d13fddc96b68ac03894a", + "_tpl": "658188edf026a90c1708c827", + "parentId": "6822d13fddc96b68ac038947", + "slotId": "helmet_eyes", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d13fddc96b68ac03894b", + "_tpl": "657ba75e23918923cb0df573", + "parentId": "6822d13fddc96b68ac038947", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d14bddc96b68ac03894c", + "_tpl": "5aa7d193e5b5b000171d063f", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc742bbd440df880b2dec", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 4, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d14bddc96b68ac03894d", + "_tpl": "657bb70486c7f9ef7a009936", + "parentId": "6822d14bddc96b68ac03894c", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d14bddc96b68ac03894e", + "_tpl": "657bb79ba1c61ee0c303631a", + "parentId": "6822d14bddc96b68ac03894c", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d14bddc96b68ac03894f", + "_tpl": "657bb7d7b30eca9763051176", + "parentId": "6822d14bddc96b68ac03894c", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d14fddc96b68ac038950", + "_tpl": "5c06c6a80db834001b735491", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65711fc9c50461e8750d1f5b", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 8, + "r": "Horizontal" + } + }, + { + "_id": "6822d14fddc96b68ac038951", + "_tpl": "6571199565daf6aa960c9b10", + "parentId": "6822d14fddc96b68ac038950", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d14fddc96b68ac038952", + "_tpl": "657119d49eb8c145180dbb95", + "parentId": "6822d14fddc96b68ac038950", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d14fddc96b68ac038953", + "_tpl": "657119fea330b8c9060f7afc", + "parentId": "6822d14fddc96b68ac038950", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d152ddc96b68ac038954", + "_tpl": "5c08f87c0db8340019124324", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc644bbd440df880b2de2", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 4, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d152ddc96b68ac038955", + "_tpl": "657ba85ecfcf63c951052da7", + "parentId": "6822d152ddc96b68ac038954", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d152ddc96b68ac038956", + "_tpl": "657ba8bccfcf63c951052dab", + "parentId": "6822d152ddc96b68ac038954", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d152ddc96b68ac038957", + "_tpl": "65818e4e566d2de69901b1b1", + "parentId": "6822d152ddc96b68ac038954", + "slotId": "helmet_eyes", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d152ddc96b68ac038958", + "_tpl": "657ba8eab7e9ca9a02045bfd", + "parentId": "6822d152ddc96b68ac038954", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d156ddc96b68ac038959", + "_tpl": "5df8a58286f77412631087ed", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 8, + "y": 4, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d156ddc96b68ac03895b", + "_tpl": "657ba096e57570b7f80a17fb", + "parentId": "6822d156ddc96b68ac038959", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d156ddc96b68ac03895c", + "_tpl": "657ba145e57570b7f80a17ff", + "parentId": "6822d156ddc96b68ac038959", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d156ddc96b68ac03895d", + "_tpl": "657ba18923918923cb0df568", + "parentId": "6822d156ddc96b68ac038959", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d159ddc96b68ac03895e", + "_tpl": "5ea05cf85ad9772e6624305d", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc59526820ea7da04f2e8", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 6, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d159ddc96b68ac03895f", + "_tpl": "657ba2eef58ba5a625010798", + "parentId": "6822d159ddc96b68ac03895e", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d159ddc96b68ac038960", + "_tpl": "657ba34b9ba22f103e08139b", + "parentId": "6822d159ddc96b68ac03895e", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d18cddc96b68ac03896d", + "_tpl": "5a16b672fcdbcb001912fa83", + "upd": { + "StackObjectsCount": 1, + "Repairable": { + "Durability": 20, + "MaxDurability": 20 + }, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + }, + "parentId": "6822d159ddc96b68ac03895e", + "slotId": "mod_equipment_000" + }, + ], + }, + { + Items: [ + { + "_id": "6822d161ddc96b68ac038961", + "_tpl": "5aa7d03ae5b5b00016327db5", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65711f2bc50461e8750d1f4f", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "6822d161ddc96b68ac038962", + "_tpl": "654a90aff4f81a421b0a7c86", + "parentId": "6822d161ddc96b68ac038961", + "slotId": "helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d161ddc96b68ac038963", + "_tpl": "654a91068e1ce698150fd1e2", + "parentId": "6822d161ddc96b68ac038961", + "slotId": "helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d161ddc96b68ac038964", + "_tpl": "654a9189bcc67a392b056c79", + "parentId": "6822d161ddc96b68ac038961", + "slotId": "helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d174ddc96b68ac038965", + "_tpl": "5aa7e4a4e5b5b000137b76f2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa87fc6679fefb3051e32", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 8, + "r": "Horizontal" + } + }, + { + "_id": "6822d174ddc96b68ac038966", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "6822d174ddc96b68ac038965", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d174ddc96b68ac038967", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "6822d174ddc96b68ac038965", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d174ddc96b68ac038968", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "6822d174ddc96b68ac038965", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d1aaddc96b68ac039709", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "6822d174ddc96b68ac038965", + "slotId": "mod_equipment", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d177ddc96b68ac038969", + "_tpl": "5aa7e454e5b5b0214e506fa2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa836c6679fefb3051e28", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 8, + "r": "Horizontal" + } + }, + { + "_id": "6822d177ddc96b68ac03896a", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "6822d177ddc96b68ac038969", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d177ddc96b68ac03896b", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "6822d177ddc96b68ac038969", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d177ddc96b68ac03896c", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "6822d177ddc96b68ac038969", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d1aaddc96b68ac03970a", + "_tpl": "5aa7e3abe5b5b000171d064d", + "parentId": "6822d177ddc96b68ac038969", + "slotId": "mod_equipment", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false, + "Togglable": { + "On": true + } + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d198ddc96b68ac03896e", + "_tpl": "5ea05cf85ad9772e6624305d", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc59526820ea7da04f2e8", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 2, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "6822d198ddc96b68ac03896f", + "_tpl": "657ba2eef58ba5a625010798", + "parentId": "6822d198ddc96b68ac03896e", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d198ddc96b68ac038970", + "_tpl": "657ba34b9ba22f103e08139b", + "parentId": "6822d198ddc96b68ac03896e", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d19dddc96b68ac0396fd", + "_tpl": "5c06c6a80db834001b735491", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "65711fc9c50461e8750d1f5b", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 8, + "y": 6, + "r": 0, + "rotation": false + } + }, + { + "_id": "6822d19dddc96b68ac0396fe", + "_tpl": "6571199565daf6aa960c9b10", + "parentId": "6822d19dddc96b68ac0396fd", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d19dddc96b68ac0396ff", + "_tpl": "657119d49eb8c145180dbb95", + "parentId": "6822d19dddc96b68ac0396fd", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d19dddc96b68ac039700", + "_tpl": "657119fea330b8c9060f7afc", + "parentId": "6822d19dddc96b68ac0396fd", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d1a3ddc96b68ac039701", + "_tpl": "5aa7e454e5b5b0214e506fa2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa836c6679fefb3051e28", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 6, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "6822d1a3ddc96b68ac039702", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "6822d1a3ddc96b68ac039701", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d1a3ddc96b68ac039703", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "6822d1a3ddc96b68ac039701", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d1a3ddc96b68ac039704", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "6822d1a3ddc96b68ac039701", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d1a6ddc96b68ac039705", + "_tpl": "5aa7e4a4e5b5b000137b76f2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657fa87fc6679fefb3051e32", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 4, + "y": 6, + "r": "Horizontal" + } + }, + { + "_id": "6822d1a6ddc96b68ac039706", + "_tpl": "657f925dada5fadd1f07a57a", + "parentId": "6822d1a6ddc96b68ac039705", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d1a6ddc96b68ac039707", + "_tpl": "657f92acada5fadd1f07a57e", + "parentId": "6822d1a6ddc96b68ac039705", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d1a6ddc96b68ac039708", + "_tpl": "657f92e7f4c82973640b2354", + "parentId": "6822d1a6ddc96b68ac039705", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d1ebddc96b68ac03a636", + "_tpl": "5a7c4850e899ef00150be885", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 2, + "y": 8, + "r": "Horizontal" + } + }, + { + "_id": "6822d1ebddc96b68ac03a638", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d1ebddc96b68ac03a636", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d1ebddc96b68ac03a639", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d1ebddc96b68ac03a636", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d1ebddc96b68ac03a63a", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d1ebddc96b68ac03a636", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d209ddc96b68ac03a63d", + "_tpl": "5645bc214bdc2d363b8b4571", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 8, + "y": 0, + "r": "Horizontal" + } + }, + { + "_id": "6822d209ddc96b68ac03a63f", + "_tpl": "657bae18b7e9ca9a02045c0a", + "parentId": "6822d209ddc96b68ac03a63d", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d209ddc96b68ac03a640", + "_tpl": "657baeaacfcf63c951052db3", + "parentId": "6822d209ddc96b68ac03a63d", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d209ddc96b68ac03a641", + "_tpl": "657baecbc6f689d3a205b863", + "parentId": "6822d209ddc96b68ac03a63d", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822d24bddc96b68ac03b488", + "_tpl": "5a7c4850e899ef00150be885", + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "upd": { + "StackObjectsCount": 1, + "SpawnedInSession": false + }, + "location": { + "x": 2, + "y": 12, + "r": "Horizontal" + } + }, + { + "_id": "6822d24bddc96b68ac03b48a", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822d24bddc96b68ac03b488", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d24bddc96b68ac03b48b", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822d24bddc96b68ac03b488", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822d24bddc96b68ac03b48c", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822d24bddc96b68ac03b488", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822e1b1185ce152ec050acf", + "_tpl": "5aa7cfc0e5b5b00015693143", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc6ceaab96fccee08beb2", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 12, + "r": "Horizontal" + } + }, + { + "_id": "6822e1b1185ce152ec050ad0", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822e1b1185ce152ec050acf", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e1b1185ce152ec050ad1", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822e1b1185ce152ec050acf", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e1b1185ce152ec050ad2", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822e1b1185ce152ec050acf", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + }, + ], + }, + { + Items: [ + { + "_id": "6822e1b1185ce152ec050ad3", + "_tpl": "5aa7cfc0e5b5b00015693143", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "657bc6ceaab96fccee08beb2", + "SpawnedInSession": false + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 8, + "r": "Horizontal" + } + }, + { + "_id": "6822e1b1185ce152ec050ad4", + "_tpl": "657baaf0b7e9ca9a02045c02", + "parentId": "6822e1b1185ce152ec050ad3", + "slotId": "Helmet_top", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e1b1185ce152ec050ad5", + "_tpl": "657bab6ec6f689d3a205b85f", + "parentId": "6822e1b1185ce152ec050ad3", + "slotId": "Helmet_back", + "upd": { + "SpawnedInSession": false + } + }, + { + "_id": "6822e1b1185ce152ec050ad6", + "_tpl": "657babc6f58ba5a6250107a2", + "parentId": "6822e1b1185ce152ec050ad3", + "slotId": "Helmet_ears", + "upd": { + "SpawnedInSession": false + } + } + ], + }, + ], + ] +} diff --git a/user/mods/GamblerTrader/src/containers/Keycard.ts b/user/mods/GamblerTrader/src/containers/Keycard.ts new file mode 100644 index 0000000..67f059b --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Keycard.ts @@ -0,0 +1,33 @@ +export class Keycard { + + public parent = "keycard"; + public price_generate = true; + + public rarities = [ + "_red", + "_green", + "_blue", + "_violet", + "_black", + "_yellow", + "_blue_marking", + "_21WS", + "_11SR", + "_access" + ] + + public rewards = [ + ["5c1d0efb86f7744baf2e7b7b"], // TerraGroup Labs keycard (Red) + ["5c1d0dc586f7744baf2e7b79"], // TerraGroup Labs keycard (Green) + ["5c1d0c5f86f7744bb2683cf0"], // TerraGroup Labs keycard (Blue) + ["5c1e495a86f7743109743dfb"], // TerraGroup Labs keycard (Violet) + ["5c1d0f4986f7744bb01837fa"], // TerraGroup Labs keycard (Black) + ["5c1d0d6d86f7744bb2683e1f"], // TerraGroup Labs keycard (Yellow) + ["5efde6b4f5448336730dbd61"], // Keycard with a blue marking + ["5e42c83786f7742a021fdf3c"], // Object #21WS keycard + ["5e42c81886f7742a01529f57"], // Object #11SR keycard + ["5c94bbff86f7747ee735c08f"] // TerraGroup Labs access keycard + ] + + } + \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/LoadoutDrink.ts b/user/mods/GamblerTrader/src/containers/LoadoutDrink.ts new file mode 100644 index 0000000..c6c31dd --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/LoadoutDrink.ts @@ -0,0 +1,32 @@ +export class Loadoutdrink { + + public parent = "loadout_drink"; + + public rarities = [ + "_rare", + "_uncommon", + "_common", + ] + + public rewards = [ + [ + "5e8f3423fd7471236e6e3b64", // Bottle of "Norvinskiy Yadreniy" premium kvass (0.6L) + "5448fee04bdc2dbc018b4567", // Bottle of water (0.6L) + "60098b1705871270cd5352a1", // Emergency Water Ration + ], + [ + "575146b724597720a27126d5", // Pack of milk + "5751496424597720a27126da", // Can of Hot Rod energy drink + "57513fcc24597720a31c09a6", // Pack of Vita juice + "5751435d24597720a27126d1", // Can of Max Energy energy drink + "60b0f93284c20f0feb453da7", // Can of RatCola soda + ], + [ + "57513f9324597720a7128161", // Pack of Grand juice + "575062b524597720a31c09a1", // Can of Ice Green tea + "57513f07245977207e26a311", // Pack of apple juice + "544fb62a4bdc2dfb738b4568", // Pack of Russian Army pineapple juice + "57514643245977207f2c2d09", // Can of TarCola soda + ], + ] + } \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/LoadoutFacecovers.ts b/user/mods/GamblerTrader/src/containers/LoadoutFacecovers.ts new file mode 100644 index 0000000..1fb0392 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/LoadoutFacecovers.ts @@ -0,0 +1,103 @@ +export class LoadoutFacecovers { + + public parent = "loadout_facecovers"; + public rarities = [ + "_rare", + "_uncommon", + "_common", + ] + + public rewards = [ + [ + '635267ab3c89e2112001f826', // Spooky skull mask + '5e54f76986f7740366043752', // Shroud half-mask + '5b432f3d5acfc4704b4a1dfb', // Momex balaclava + '6571bde39837cc51b800c212', // Ghost half-mask + '5ab8f4ff86f77431c60d91ba', // Ghost balaclava + '62a09dd4621468534a797ac7', // Baddie's red beard + '572b7f1624597762ae139822', // Balaclava + '5c1a1e3f2e221602b66cc4c2', // Fake white beard + '607f201b3c672b3b3a24a800', // Twitch Rivals 2021 balaclava + '5e71f6be86f77429f2683c44', // Twitch Rivals 2020 mask + '5e71fad086f77422443d4604', // Twitch Rivals 2020 half-mask + '5b4325355acfc40019478126', // Shemagh (Tan) + '5b4325355acfc40019478126', // Shemagh (Tan) + '5ab8f85d86f7745cd93a1cf5', // Shemagh (Green) + '5ab8f85d86f7745cd93a1cf5', // Shemagh (Green) + '5fd8d28367cb5e077335170f', // Smoke balaclava + '5fd8d28367cb5e077335170f', // Smoke balaclava + '5fd8d28367cb5e077335170f', // Smoke balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + ], + [ + '5fd8d28367cb5e077335170f', // Smoke balaclava + '607f201b3c672b3b3a24a800', // Twitch Rivals 2021 balaclava + '5e71f6be86f77429f2683c44', // Twitch Rivals 2020 mask + '5e71fad086f77422443d4604', // Twitch Rivals 2020 half-mask + '62a09dd4621468534a797ac7', // Baddie's red beard + '572b7fa524597762b747ce82', // Lower half-mask + '572b7fa524597762b747ce82', // Lower half-mask + '572b7f1624597762ae139822', // Balaclava + '5ab8f4ff86f77431c60d91ba', // Ghost balaclava + '5e54f76986f7740366043752', // Shroud half-mask + '5c1a1e3f2e221602b66cc4c2', // Fake white beard + '5b4325355acfc40019478126', // Shemagh (Tan) + '5b4325355acfc40019478126', // Shemagh (Tan) + '5b4325355acfc40019478126', // Shemagh (Tan) + '5ab8f85d86f7745cd93a1cf5', // Shemagh (Green) + '5ab8f85d86f7745cd93a1cf5', // Shemagh (Green) + '5ab8f85d86f7745cd93a1cf5', // Shemagh (Green) + '5b432f3d5acfc4704b4a1dfb', // Momex balaclava + '5b432f3d5acfc4704b4a1dfb', // Momex balaclava + '5b432f3d5acfc4704b4a1dfb', // Momex balaclava + '5b432f3d5acfc4704b4a1dfb', // Momex balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + 'NaN', + 'NaN', + 'NaN', + ], + [ + '6571bde39837cc51b800c212', // Ghost half-mask + '62a09dd4621468534a797ac7', // Baddie's red beard + '5e71f6be86f77429f2683c44', // Twitch Rivals 2020 mask + '5e54f76986f7740366043752', // Shroud half-mask + '5fd8d28367cb5e077335170f', // Smoke balaclava + '572b7f1624597762ae139822', // Balaclava + '607f201b3c672b3b3a24a800', // Twitch Rivals 2021 balaclava + '5e71fad086f77422443d4604', // Twitch Rivals 2020 half-mask + '5c1a1e3f2e221602b66cc4c2', // Fake white beard + '5ab8f4ff86f77431c60d91ba', // Ghost balaclava + '5ab8f4ff86f77431c60d91ba', // Ghost balaclava + '5b4325355acfc40019478126', // Shemagh (Tan) + '5b4325355acfc40019478126', // Shemagh (Tan) + '5ab8f85d86f7745cd93a1cf5', // Shemagh (Green) + '5ab8f85d86f7745cd93a1cf5', // Shemagh (Green) + '572b7fa524597762b747ce82', // Lower half-mask + '572b7fa524597762b747ce82', // Lower half-mask + '572b7fa524597762b747ce82', // Lower half-mask + '572b7fa524597762b747ce82', // Lower half-mask + '5b4326435acfc433000ed01d', // Neoprene mask + '5b4326435acfc433000ed01d', // Neoprene mask + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5ab8f39486f7745cd93a1cca', // Cold Fear infrared balaclava + '5b432f3d5acfc4704b4a1dfb', // Momex balaclava + '5b432f3d5acfc4704b4a1dfb', // Momex balaclava + '5b432f3d5acfc4704b4a1dfb', // Momex balaclava + '5b432f3d5acfc4704b4a1dfb', // Momex balaclava + 'NaN', + 'NaN', + 'NaN', + 'NaN', + 'NaN', + ] + ] +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/LoadoutFood.ts b/user/mods/GamblerTrader/src/containers/LoadoutFood.ts new file mode 100644 index 0000000..8f819b0 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/LoadoutFood.ts @@ -0,0 +1,38 @@ +export class LoadoutFood { + + public parent = "loadout_food"; + + public rarities = [ + "_rare", + "_uncommon", + "_common", + ] + + public rewards = [ + [ + "65815f0e647e3d7246384e14", // Pack of Tarker dried meat + "57347d5f245977448b40fa81", // Can of humpback salmon + "5bc9c29cd4351e003562b8a3", // Can of sprats + "57347d7224597744596b4e72", // Can of beef stew (Small) + "57347da92459774491567cf5", // Can of beef stew (Large) + "635a758bfefc88a93f021b8a", // Salty Dog beef sausage + "590c5f0d86f77413997acfab", // MRE ration pack + ], + [ + "57347d692459774491567cf1", // Can of green peas + "57347d9c245977448b40fa85", // Can of herring + "57347d8724597744596b4e76", // Can of squash spread + "656df4fec921ad01000481a2", // Pack of instant noodles + "5673de654bdc2d180f8b456d", // Can of pacific saury + + ], + [ + "57347d3d245977448f7b7f61", // Rye croutons + "5448ff904bdc2d6f028b456e", // Army crackers + "5751487e245977207e26a315", // Emelya rye croutons + "544fb6cc4bdc2d34748b456e", // Slickers chocolate bar + + ] + + ] + } \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/LoadoutGrenade.ts b/user/mods/GamblerTrader/src/containers/LoadoutGrenade.ts new file mode 100644 index 0000000..8e8c7e6 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/LoadoutGrenade.ts @@ -0,0 +1,58 @@ +export class LoadoutGrenade { + + public parent = "loadout_grenade"; + public rarities = [ + "_rare", + "_uncommon", + "_common", + ] + + public stackable = [false, false, false] + + //public reward_amount = [ // Amount of rolls for each reward tier, duplicate items + //2, + //2, + //1, + //] + + public rewards = [ + [ + 'NaN', // No grenade + 'NaN', // No grenade + 'NaN', // No grenade + '5e340dcdcb6d5863cc5e5efb', // VOG-25 Khattabka improvised hand grenade + '5e340dcdcb6d5863cc5e5efb', // VOG-25 Khattabka improvised hand grenade + '5e32f56fcb6d5863cc5e5ee4', // VOG-17 Khattabka improvised hand grenade + '5e32f56fcb6d5863cc5e5ee4', // VOG-17 Khattabka improvised hand grenade + '5710c24ad2720bc3458b45a3', // F-1 hand grenade + '5710c24ad2720bc3458b45a3', // F-1 hand grenade + '5710c24ad2720bc3458b45a3', // F-1 hand grenade + '58d3db5386f77426186285a0', // M67 hand grenade + '617fd91e5539a84ec44ce155', // RGN hand grenade + '618a431df1eb8e24b8741deb', // RGO hand grenade + ], + [ + 'NaN', // No grenade + 'NaN', // No grenade + '58d3db5386f77426186285a0', // M67 hand grenade + '5710c24ad2720bc3458b45a3', // F-1 hand grenade + '5448be9a4bdc2dfd2f8b456a', // RGD-5 hand grenade + ], + [ + 'NaN', // No grenade + 'NaN', // No grenade + 'NaN', // No grenade + 'NaN', // No grenade + 'NaN', // No grenade + 'NaN', // No grenade + '5710c24ad2720bc3458b45a3', // F-1 hand grenade + '5710c24ad2720bc3458b45a3', // F-1 hand grenade + '5448be9a4bdc2dfd2f8b456a', // RGD-5 hand grenade + '5448be9a4bdc2dfd2f8b456a', // RGD-5 hand grenade + '5448be9a4bdc2dfd2f8b456a', // RGD-5 hand grenade + '5a0c27731526d80618476ac4', // Zarya stun grenade + '5a0c27731526d80618476ac4', // Zarya stun grenade + '5a0c27731526d80618476ac4', // Zarya stun grenade + ] + ] +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/LoadoutHealing.ts b/user/mods/GamblerTrader/src/containers/LoadoutHealing.ts new file mode 100644 index 0000000..0b100b0 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/LoadoutHealing.ts @@ -0,0 +1,31 @@ +export class LoadoutHealing { + + public parent = "loadout_light_healing"; + public rarities = [ + "_rare", + "_uncommon", + "_common", + ] + + public rewards = [ + [ + '590c678286f77426c9660122', // IFAK individual first aid kit + '60098ad7c2240c0fe85c570a', // AFAK tactical individual first aid kit + '60098ad7c2240c0fe85c570a', // AFAK tactical individual first aid kit + '590c657e86f77412b013051d', // Grizzly medical kit + ], + [ + '590c661e86f7741e566b646a', // Car first aid kit + '544fb45d4bdc2dee738b4568', // Salewa first aid kit + '590c678286f77426c9660122', // IFAK individual first aid kit + ], + [ + '590c678286f77426c9660122', // IFAK individual first aid kit + '544fb45d4bdc2dee738b4568', // Salewa first aid kit + '5755356824597772cb798962', // AI-2 medkit + '5755356824597772cb798962', // AI-2 medkit + '590c661e86f7741e566b646a', // Car first aid kit + '590c661e86f7741e566b646a', // Car first aid kit + ] + ] +} diff --git a/user/mods/GamblerTrader/src/containers/LoadoutHeavyBleed.ts b/user/mods/GamblerTrader/src/containers/LoadoutHeavyBleed.ts new file mode 100644 index 0000000..d34305f --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/LoadoutHeavyBleed.ts @@ -0,0 +1,32 @@ +export class LoadoutHeavyBleed { + + public parent = "loadout_heavy_bleed"; + public rarities = [ + "_rare", + "_uncommon", + "_common", + ] + + public rewards = [ + [ + '5e8488fa988a8701445df1e4', // CALOK-B hemostatic applicator + '5e8488fa988a8701445df1e4', // CALOK-B hemostatic applicator + '5e8488fa988a8701445df1e4', // CALOK-B hemostatic applicator + '5e8488fa988a8701445df1e4', // CALOK-B hemostatic applicator + '60098af40accd37ef2175f27', // CAT hemostatic tourniquet + ], + [ + '5e8488fa988a8701445df1e4', // CALOK-B hemostatic applicator + '5e8488fa988a8701445df1e4', // CALOK-B hemostatic applicator + '60098af40accd37ef2175f27', // CAT hemostatic tourniquet + '60098af40accd37ef2175f27', // CAT hemostatic tourniquet + '60098af40accd37ef2175f27', // CAT hemostatic tourniquet + '5e831507ea0a7c419c2f9bd9', // Esmarch tourniquet + ], + [ + '5e831507ea0a7c419c2f9bd9', // Esmarch tourniquet + '5e831507ea0a7c419c2f9bd9', // Esmarch tourniquet + '5e831507ea0a7c419c2f9bd9', // Esmarch tourniquet + ] + ] +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/LoadoutLightBleed.ts b/user/mods/GamblerTrader/src/containers/LoadoutLightBleed.ts new file mode 100644 index 0000000..4269dee --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/LoadoutLightBleed.ts @@ -0,0 +1,32 @@ +export class LoadoutLightBleed { + + public parent = "loadout_light_bleed"; + public rarities = [ + "_rare", + "_uncommon", + "_common", + ] + + public rewards = [ + [ + '5751a25924597722c463c472', // Army bandage + ], + [ + '5751a25924597722c463c472', // Army bandage + '5751a25924597722c463c472', // Army bandage + '5751a25924597722c463c472', // Army bandage + '5751a25924597722c463c472', // Army bandage + '544fb25a4bdc2dfb738b4567', // Aseptic bandage + '544fb25a4bdc2dfb738b4567', // Aseptic bandage + ], + [ + '5751a25924597722c463c472', // Army bandage + '5751a25924597722c463c472', // Army bandage + '5751a25924597722c463c472', // Army bandage + '544fb25a4bdc2dfb738b4567', // Aseptic bandage + '544fb25a4bdc2dfb738b4567', // Aseptic bandage + '544fb25a4bdc2dfb738b4567', // Aseptic bandage + '544fb25a4bdc2dfb738b4567', // Aseptic bandage + ], + ] +} diff --git a/user/mods/GamblerTrader/src/containers/LoadoutSplint.ts b/user/mods/GamblerTrader/src/containers/LoadoutSplint.ts new file mode 100644 index 0000000..17e0940 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/LoadoutSplint.ts @@ -0,0 +1,22 @@ +export class LoadoutSplit { + + public parent = "loadout_splint"; + public rarities = [ + "_rare", + "_uncommon", + "_common", + ] + + public rewards = [ + [ + '5af0454c86f7746bf20992e8', // Aluminum splint + ], + [ + '544fb3364bdc2d34748b456a', // Immobilizing splint + '5af0454c86f7746bf20992e8', // Aluminum splint + ], + [ + '544fb3364bdc2d34748b456a', // Immobilizing splint + ] + ] +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/LoadoutStim.ts b/user/mods/GamblerTrader/src/containers/LoadoutStim.ts new file mode 100644 index 0000000..08ac8c3 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/LoadoutStim.ts @@ -0,0 +1,47 @@ +export class LoadoutStim { + + public parent = "loadout_stim"; + public rarities = [ + "_rare", + "_uncommon", + "_common", + ] + + public rewards = [ + [ + 'NaN', // None + 'NaN', // None + '5c0e534186f7747fa1419867', // eTG-change regenerative stimulant injector + '637b6179104668754b72f8f5', // PNB (Product 16) stimulant injector + '5ed515e03a40a50460332579', // L1 (Norepinephrine) injector + '5ed515f6915ec335206e4152', // AHF1-M stimulant injector + '5c0e530286f7747fa1419862', // Propital regenerative stimulant injector + '5c0e530286f7747fa1419862', // Propital regenerative stimulant injector + '5c0e533786f7747fa23f4d47', // Zagustin hemostatic drug injector + '5c0e533786f7747fa23f4d47', // Zagustin hemostatic drug injector + '5c10c8fd86f7743d7d706df3', // Adrenaline injector + '544fb3f34bdc2d03748b456a', // Morphine injector + '544fb3f34bdc2d03748b456a', // Morphine injector + '544fb3f34bdc2d03748b456a', // Morphine injector + ], + [ + 'NaN', // None + '5ed515f6915ec335206e4152', // AHF1-M stimulant injector + '5c0e530286f7747fa1419862', // Propital regenerative stimulant injector + '5c10c8fd86f7743d7d706df3', // Adrenaline injector + '5c10c8fd86f7743d7d706df3', // Adrenaline injector + '544fb3f34bdc2d03748b456a', // Morphine injector + '544fb3f34bdc2d03748b456a' // Morphine injector + ], + [ + 'NaN', // None + 'NaN', // None + 'NaN', // None + '5c0e530286f7747fa1419862', // Propital regenerative stimulant injector + '5c10c8fd86f7743d7d706df3', // Adrenaline injector + '5c10c8fd86f7743d7d706df3', // Adrenaline injector + '544fb3f34bdc2d03748b456a' // Morphine injector + '544fb3f34bdc2d03748b456a' // Morphine injector + ], + ] +} diff --git a/user/mods/GamblerTrader/src/containers/Loadouts.ts b/user/mods/GamblerTrader/src/containers/Loadouts.ts new file mode 100644 index 0000000..461d1f0 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Loadouts.ts @@ -0,0 +1,19 @@ +export class Loadouts { + + public parent = "loadout"; + + public rarities = [ + "_rare", + "_uncommon", + "_common" + ]; + + public guaranteed_stackable = [false, false, false]; + public guaranteed_reward_amount = [1,1,1]; + public guaranteed_randomness = [false, false, true, false, false, false, false, false, false, false, false, false, false, false]; + public guaranteed_rewards = [ + 'weapon', 'helmet', 'headset', 'armor', 'rig', 'backpack', 'loadout_grenade', 'loadout_grenade', 'loadout_facecovers', 'loadout_food', 'loadout_drink', 'loadout_light_bleed', 'loadout_heavy_bleed', 'loadout_stim', 'loadout_splint', 'loadout_healing', + ]; + + public rewards = undefined; +} diff --git a/user/mods/GamblerTrader/src/containers/Medical.ts b/user/mods/GamblerTrader/src/containers/Medical.ts new file mode 100644 index 0000000..fc728ff --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Medical.ts @@ -0,0 +1,64 @@ +export class Medical { + + public parent = "medical"; + //public price_generate = true; + + public rarities = [ + "_uncommon", + "_uncommon", + "_uncommon", + "_uncommon", + "_uncommon", + "_uncommon", + "_uncommon" + ] + + public reward_rolls = [5, 5, 3, 4, 4, 3, 2] // Number of times rolled for each rarity (MAYBE) + public rewards = [ + [ // Light Bleeds + '544fb25a4bdc2dfb738b4567', // Aseptic bandage + '5751a25924597722c463c472', // Army bandage + ], + [ // Heavy Bleeds + '5e831507ea0a7c419c2f9bd9', // Esmarch tourniquet + '60098af40accd37ef2175f27', // CAT hemostatic tourniquet + '5e8488fa988a8701445df1e4', // CALOK-B hemostatic applicator + + ], + [ // Fractures + '544fb3364bdc2d34748b456a', // Immobilizing splint + '5af0454c86f7746bf20992e8', // Aluminum splint + + ], + [ // PainKiller + '544fb37f4bdc2dee738b4567', // Analgin painkillers + '544fb37f4bdc2dee738b4567', // Analgin painkillers + '544fb37f4bdc2dee738b4567', // Analgin painkillers + '590c695186f7741e566b64a2', // Augmentin antibiotic pills + '5755383e24597772cb798966', // Vaseline balm + '5af0548586f7743a532b7e99', // Ibuprofen painkillers + '5751a89d24597722aa0e8db0', // Golden Star balm + ], + [ // Headling Kits + '5755356824597772cb798962', // AI-2 medkit + '5755356824597772cb798962', // AI-2 medkit + '590c661e86f7741e566b646a', // Car first aid kit + '544fb45d4bdc2dee738b4568', // Salewa first aid kit + ], + [ // Advanced Healing Kits + '544fb45d4bdc2dee738b4568', // Salewa first aid kit + '544fb45d4bdc2dee738b4568', // Salewa first aid kit + '590c678286f77426c9660122', // IFAK individual first aid kit + '590c678286f77426c9660122', // IFAK individual first aid kit + '590c678286f77426c9660122', // IFAK individual first aid kit + '60098ad7c2240c0fe85c570a', // AFAK tactical individual first aid kit + '60098ad7c2240c0fe85c570a', // AFAK tactical individual first aid kit + '590c657e86f77412b013051d', // Grizzly medical kit + ], + [ // Reapiratory Kits + '5d02778e86f774203e7dedbe', // CMS surgical kit + '5d02797c86f774203f38e30a', // Surv12 field surgical kit + ] + + ] +} diff --git a/user/mods/GamblerTrader/src/containers/Melees.ts b/user/mods/GamblerTrader/src/containers/Melees.ts new file mode 100644 index 0000000..84dafad --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Melees.ts @@ -0,0 +1,41 @@ +export class Melees { + + public parent = "melee"; + public price_generate = true; + + public rarities = [ + "_extremely_rare", + "_rare", + "_uncommon", + "_common" + ] + + public rewards = [ + [ + "63920105a83e15700a00f168", // SOG Voodoo Hawk tactical tomahawk + "5bffe7930db834001b734a39", // Crash Axe + "601948682627df266209af05", // UVSR Taiga-1 survival machete + "65ca457b4aafb5d7fc0dcb5d", // United Cutlery M48 Tactical Kukri + ], + [ + "5c0126f40db834002a125382", // Red Rebel ice pick + "5bffdd7e0db834001b734a1a", // Miller Bros. Blades M-2 Tactical Sword + ], + [ + "5fc64ea372b0dd78d51159dc", // Cultist knife + "5bc9c1e2d4351e00367fbcf0", // Antique axe + "5c010e350db83400232feec7", // SP-8 Survival Machete + "5c012ffc0db834001d23f03f", // Camper axe + ], + [ + "5bffdc370db834001d23eca8", // 6Kh5 Bayonet + "57cd379a24597778e7682ecf", // Kiba Arms Tactical Tomahawk + "6540d2162ae6d96b540afcaf", // PR-Taran police baton + "54491bb74bdc2d09088b4567", // ER FULCRUM BAYONET + "5c07df7f0db834001b73588a", // Freeman crowbar + "57e26ea924597715ca604a09", // Bars A-2607 Damascus knife + "57e26fc7245977162a14b800", // Bars A-2607 95Kh18 knife + ] + ] +} + \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/PremiumArmors.ts b/user/mods/GamblerTrader/src/containers/PremiumArmors.ts new file mode 100644 index 0000000..c5958ac --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/PremiumArmors.ts @@ -0,0 +1,39 @@ +export class PremiumArmors { + + public parent = "armor"; + public price_generate = true; + + public rarities = [ + "_rare", + ] + + presets = [ + "rare", + ] + + public rewards = [ + [ + "5fd4c474dd870108a754b241", // 5.11 Tactical Hexgrid plate carrier + "5c0e541586f7747fa54205c9", // 6B13 M assault armor (Killa Edition) + "5e9dacf986f774054d6b89f4", // FORT Defender-2 body armor + "5ca21c6986f77479963115a7", // FORT Redut-T5 body armor (Smog) + "5ca2151486f774244a3b8d30", // FORT Redut-M body armor + "5b44cf1486f77431723e3d05", // IOTV Gen4 body armor (Assault Kit, MultiCam) + "5b44cd8b86f774503d30cba2", // IOTV Gen4 body armor (Full Protection Kit, MultiCam) + "5b44d0de86f774503d30cba8", // IOTV Gen4 body armor (High Mobility Kit, MultiCam) + "5e4abb5086f77406975c9342", // LBT-6094A Slick Plate Carrier (Black) + "6038b4ca92ec1c3103795a0d", // LBT-6094A Slick Plate Carrier (Olive Drab) + "60a283193cb70855c43a381d", // NFM THOR Integrated Carrier body armor + "5b44cad286f77402a54ae7e5", // 5.11 Tactical TacTec plate carrier (Ranger Green) + "5e4ac41886f77406a511c9a8", // Ars Arma CPC MOD.1 plate carrier (A-TACS FG) + "60a3c68c37ea821725773ef5", // CQC Osprey MK4A plate carrier (Protection, MTP) + "609e860ebd219504d8507525", // Crye Precision AVS plate carrier (Tagilla Edition) + "628b9c7d45122232a872358f", // Crye Precision CPC plate carrier (Goons Edition) + "64a5366719bab53bd203bf33", // Eagle Allied Industries MBSS plate carrier (Coyote Brown) + "628b9784bcf6e2659e09b8a2", // S&S Precision PlateFrame plate carrier (Goons Edition) + "628cd624459354321c4b7fa2", // Tasmanian Tiger SK plate carrier (MultiCam Black) + "545cdb794bdc2d3a198b456a", // 6B43 Zabralo-Sh body armor (Digital Flora) + "5c0e625a86f7742d77340f62", // BNTI Zhuk body armor (Digital Flora) + ] + ] +} diff --git a/user/mods/GamblerTrader/src/containers/PremiumWeapons.ts b/user/mods/GamblerTrader/src/containers/PremiumWeapons.ts new file mode 100644 index 0000000..c9e270f --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/PremiumWeapons.ts @@ -0,0 +1,15 @@ +export class PremiumWeapons { + + public parent = "weapon"; + public is_preset = true; + public price_generate = true; + public calculate_preset_prices = false; + + public rarities = [ + "_meta", + ] + + public rewards = [ + "meta", + ] +} diff --git a/user/mods/GamblerTrader/src/containers/RandomMysteryContainer.ts b/user/mods/GamblerTrader/src/containers/RandomMysteryContainer.ts new file mode 100644 index 0000000..36f8891 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/RandomMysteryContainer.ts @@ -0,0 +1,59 @@ +export class RandomMysteryContainer { + + public parent = "random_mystery_container"; + public rarities = [ + "_rare", + "_uncommon", + "_common", + ] + public rolls = 4; // number of rolls to make + public rewards = [ + [ + 'medical', + 'keycard', + 'premium_armor', + 'premium_weapon', + 'loadout', + 'bitcoin', + 'az_sealed_weapon_gamble', + ], + [ + 'helmet', + 'armor', + 'melee', + 'weapon', + 'armor', + ], + [ + 'wallet', + 'key', + 'stim', + 'food', + 'headset', + 'backpack', + 'rig', + 'gpcoin', + '7.62x25', + '9x18', + '9x19', + '9x21', + '.357', + '.45', + '4.6x30', + '5.7x28', + '5.45x39', + '5.56x45', + '.300', + '7.62x39', + '7.62x51', + '7.62x54', + '.338', + '9x39', + '.366', + '12.7x55', + '12/70', + '20/70', + '23x75', + ], + ] +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/containers/Rigs.ts b/user/mods/GamblerTrader/src/containers/Rigs.ts new file mode 100644 index 0000000..b8f9d67 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Rigs.ts @@ -0,0 +1,61 @@ +export class Rigs { + + public parent = "rig"; + public price_generate = true; + + public rarities = [ + "_boss", + "_late_wipe", + "_early_wipe", + "_scav" + ] + + public rewards = [ + [ + '628baf0b967de16aab5a4f36', // LBT-1961A Load Bearing Chest Rig (Goons Edition) + '63611865ba5b90db0c0399d1', // Azimut SS "Khamelion" chest harness (Olive) + ], + [ + '5c0e6a1586f77404597b4965', // Poyas-A + Poyas-B gear rig + '5df8a42886f77412640e2e75', // Velocity Systems MPPV Multi-Purpose Patrol Vest (Wolf Grey) + '603648ff5a45383c122086ac', // Azimut SS "Zhuk" chest harness (Black) + '6040dd4ddcf9592f401632d2', // Azimut SS "Zhuk" chest harness (SURPAT) + '592c2d1a86f7746dbe2af32a', // ANA Tactical Alpha chest rig (Olive Drab) + '5648a69d4bdc2ded0b8b457b', // BlackRock chest rig (Gray) + '5c0e9f2c86f77432297fe0a3', // BlackHawk! Commando chest harness (Black) + '5e9db13186f7742f845ee9d3', // LBT-1961A Load Bearing Chest Rig (MAS Grey) + ], + [ + '5d5d85c586f774279a21cbdb', // Haley Strategic D3CRX Chest Harness (Ranger Green) + '5ca20abf86f77418567a43f2', // Dynaforce Triton M43-A chest harness (Black) + '5648a69d4bdc2ded0b8b457b', // BlackRock chest rig (Gray) + '5b44c8ea86f7742d1627baf1', // BlackHawk! Commando chest harness (Desert Tan) + '603648ff5a45383c122086ac', // Azimut SS "Zhuk" chest harness (Black) + '6040dd4ddcf9592f401632d2', // Azimut SS "Zhuk" chest harness (SURPAT) + '5c0e6a1586f77404597b4965', // Poyas-A + Poyas-B gear rig + '5f5f41f56760b4138443b352', // Direct Action Thunderbolt compact chest rig (Shadow Grey) + '5fd4c60f875c30179f5d04c2', // Gear Craft GC-BSS-MK1 chest rig (A-TACS FG) + '60a6220e953894617404b00a', // Stich Profi Chest Rig MK2 (Recon, A-TACS FG) + '60a621c49c197e4e8c4455e6', // Stich Profi Chest Rig MK2 (Assault, A-TACS FG) + '5ab8dab586f77441cd04f2a2', // WARTECH MK3 TV-104 chest rig (MultiCam) + + ], + [ + '572b7adb24597762ae139821', // Scav Vest + '5fd4c5477a8d854fa0105061', // Security vest + '64be7095047e826eae02b0c1', // Zulu Nylon Gear M4 Reduced Signature Chest Rig (Ranger Green) + '5e4abc1f86f774069619fbaa', // Spiritus Systems Bank Robber chest rig (MultiCam Black) + '5d5d8ca986f7742798716522', // SOE Micro Rig (MultiCam) + '64be7110bf597ba84a0a41ea', // Type 56 Chicom chest harness + '59e7643b86f7742cbf2c109a', // WARTECH TV-109 + TV-106 chest rig (A-TACS FG) + '6034d0230ca681766b6a0fb5', // CSA chest rig (Black) + '5929a2a086f7744f4b234d43', // UMTBS 6Sh112 Scout-Sniper chest rig (Digital Flora) + '5e4abfed86f77406a2713cf7', // Splav Tarzan M22 chest rig (Smog) + '6034cf5fffd42c541047f72e', // Umka M33-SET1 hunter vest (Olive Drab) + '5ab8dab586f77441cd04f2a2', // WARTECH MK3 TV-104 chest rig (MultiCam) + '60a621c49c197e4e8c4455e6', // Stich Profi Chest Rig MK2 (Assault, A-TACS FG) + '6040dd4ddcf9592f401632d2', // Azimut SS "Zhuk" chest harness (SURPAT) + + ] + ] +} diff --git a/user/mods/GamblerTrader/src/containers/Stims.ts b/user/mods/GamblerTrader/src/containers/Stims.ts new file mode 100644 index 0000000..416e361 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Stims.ts @@ -0,0 +1,44 @@ +export class Stims { + + public parent = "stim"; + public price_generate = true; + + public rarities = [ + "_extremely_rare", + "_rare", + "_uncommon", + "_common" + ] + + public rewards = [ + [ + "5ed51652f6c34d2cc26336a1", // M.U.L.E. stimulant injector + "637b60c3b7afa97bfc3d7001", // "Obdolbos 2" cocktail injector + "5c0e534186f7747fa1419867", // eTG-change regenerative stimulant injector + ], + [ + "637b612fb7afa97bfc3d7005", // SJ12 TGLabs combat stimulant injector + "5c0e531d86f7747fa23f4d42", // SJ6 TGLabs combat stimulant injector + "5ed5160a87bb8443d10680b5", // Meldonin injector + "5fca138c2a7b221b2852a5c6", // xTG-12 antidote injector + "637b620db7afa97bfc3d7009", // Trimadol stimulant injector + ], + [ + "5c0e530286f7747fa1419862", // Propital regenerative stimulant injector + "5c0e533786f7747fa23f4d47", // Zagustin hemostatic drug injector + "5ed515c8d380ab312177c0fa", // 3-(b-TG) stimulant injector + "637b6251104668754b72f8f9", // Perfotoran (Blue Blood) stimulant injector + "637b6179104668754b72f8f5", // PNB (Product 16) stimulant injector + "5fca13ca637ee0341a484f46", // SJ9 TGLabs combat stimulant injector + "5ed5166ad380ab312177c100", // "Obdolbos" cocktail injector + ], + [ + "544fb3f34bdc2d03748b456a", // Morphine injector + "5ed515e03a40a50460332579", // L1 (Norepinephrine) injector + "5c10c8fd86f7743d7d706df3", // Adrenaline injector + "5c0e531286f7747fa54205c2", // SJ1 TGLabs combat stimulant injector + "5ed515f6915ec335206e4152", // AHF1-M stimulant injector + "5ed515ece452db0eb56fc028", // P22 (Product 22) stimulant injector + ] + ] +} diff --git a/user/mods/GamblerTrader/src/containers/Wallet.ts b/user/mods/GamblerTrader/src/containers/Wallet.ts new file mode 100644 index 0000000..fd631d0 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Wallet.ts @@ -0,0 +1,61 @@ +export class Wallet { + + public parent = "wallet"; + public price_generate = true; + + public rarities = [ + "_kinda_rare", + "_rare", + "_extra_uncommon", + "_more_uncommon", + "_uncommon", + "_common", + "_extra_common", + "_base" + ] + public stackable = [true, true, true, true, true, true, true, true] + public reward_amount = [ + 2000000, + 1000000, + 500000, + 250000, + 100000, + 50000, + 25000, + 0 + ] + public rewards = [ + ['5449016a4bdc2d6f028b456f'], + ['5449016a4bdc2d6f028b456f'], + ['5449016a4bdc2d6f028b456f'], + ['5449016a4bdc2d6f028b456f'], + ['5449016a4bdc2d6f028b456f'], + ['5449016a4bdc2d6f028b456f'], + ['5449016a4bdc2d6f028b456f'], + ['NaN'] + ] + +/* + public items = { + wallet_extremely_rare: [ + 1000000 + ], + + wallet_rare: [ + 500000 + ], + + wallet_kinda_rare: [ + 300000 + ], + + wallet_uncommon: [ + 100000 + ], + + wallet_common: [ + 50000 + ] + }; + */ +} diff --git a/user/mods/GamblerTrader/src/containers/Weapons.ts b/user/mods/GamblerTrader/src/containers/Weapons.ts new file mode 100644 index 0000000..ae8db77 --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/Weapons.ts @@ -0,0 +1,112923 @@ +export class Weapons { + + public parent = "weapon"; + public is_preset = true; + public price_generate = true; + public calculate_preset_prices = true; + + public rarities = [ + "_meta", + "_decent", + "_scav", + "_meme", + "_base" + ] + + // These are attachments that wil not be included during the mystery container price generation + // All of these attachments come with base weapons and will NOT be included in the final weapon mystery container price + // Its probably best to leave this alone unless you know what you are doing + public skip_base_attachments = [ + "5c0e2ff6d174af02a1659d4a", // AR-15 ADAR 2-15 wooden stock + "5aaa5e60e5b5b000140293d6", // 5.56x45 Magpul PMAG 10 GEN M3 STANAG 10-round magazine + "5c0e2f26d174af02a9625114", // AR-15 ADAR 2-15 5.56x45 upper receiver + "5c0faeddd174af02a962601f", // AR-15 ADAR 2-15 buffer tube + "5c0faf68d174af02a96260b8", // AR-15 ADAR 2-15 charging handle + "5c0e2f94d174af029f650d56", // AR-15 5.56x45 Molot Arms 406mm barrel + "5c0e2f5cd174af02a012cfc9", // AR-15 ADAR 2-15 wooden handguard + "5c0fafb6d174af02a96260ba", // AR-15 ADAR 2-15 5.56x45 flash hider + "5ae30e795acfc408fb139a0b", // M4A1 front sight with gas block + "6450ec2e7da7133e5a09ca96", // 9A-91 9x39 20-round magazine + "6450f21a3d52156624001fcf", // 9A-91 pistol grip + "6451167ad4928d46d30be3fd", // 9A-91 top-folding stock + "645122f6d4928d46d30be3ff", // 9A-91 9x39 barrel + "64527a263d52156624001fd7", // 9A-91 handguard retainer + "644675573d52156624001fc9", // 9A-91 handguard + "6450ec2e7da7133e5a09ca96", // 9A-91 9x39 20-round magazine + "6452519e3d52156624001fd5", // VSK-94 stock + "645123013d52156624001fd1", // VSK-94 9x39 barrel + "64527a263d52156624001fd7", // 9A-91 handguard retainer + "6448f2f6d4928d46d30be3f6", // VSK-94 handguard + "5b099ac65acfc400186331e1", // SA-58/FAL 7.62x51 20-round magazine + "5f2aa46b878ef416f538b567", // RFB 7.62x51 18 inch barrel + "5f2aa47a200e2c0ee46efa71", // RFB handguard + "5f2aa49f9b44de6b1b4e68d4", // RFB scope rail mount + "5f2aa4464b50c14bcf07acdb", // RFB thread protection cap + "5f2aa493cd375f14e15eea72", // RFB handguard rail mount + "55802f5d4bdc2dac148b458f", // AR-15 Magpul MOE pistol grip (Black) + "5aaa5dfee5b5b000140293d3", // 5.56x45 Magpul PMAG 30 GEN M3 STANAG 30-round magazine + "5d4405aaa4b9361e6a4e6bd3", // TX-15 5.56x45 Lightweight upper receiver + "5649be884bdc2d79388b4577", // AR-15 Colt Carbine buffer tube + "5d44334ba4b9362b346d1948", // AR-15 Radian Weapons Raptor charging handle (Grey) + "5d440b93a4b9364276578d4b", // AR-15 5.56x45 18 inch barrel + "5d4405f0a4b9361e6a4e6bd9", // AR-15 Lone Star Ion Lite handguard + "5d4406a8a4b9361e4f6eb8b7", // AR-15 Magpul PRS GEN3 stock (Grey) + "5d440625a4b9361eec4ae6c5", // AR-15 Thunder Beast Arms 223CB 5.56x45 muzzle brake + "56eabcd4d2720b66698b4574", // AR-15 Daniel Defense MK12 Low Profile Gas Block + "5b7be47f5acfc400170e2dd2", // Magpul M-LOK 2.5 inch rail + "5b7be4895acfc400170e2dd5", // Magpul M-LOK 4.1 inch rail + "5d44064fa4b9361e4f6eb8b5", // Thunder Beast Arms Ultra 5 sound suppressor + "587e0531245977466077a0f7", // OP-SKS wooden stock + "634eff66517ccc8a960fc735", // OP-SKS 7.62x39 520mm barrel + "587df3a12459772c28142567", // SKS 7.62x39 10-round internal box magazine + "634f06262e5def262d0b30ca", // OP-SKS dust cover + "634f05a21f9f536910079b56", // OP-SKS upper band + "634f036a517ccc8a960fc746", // OP-SKS gas tube + "574db213245977459a2f3f5d", // SKS rear sight + "634f03d40384a3ba4f06f874", // OP-SKS gas tube cover + "5c5039be2e221602b177c9ff", // VPO-101 "Vepr-Hunter" gas tube + "5c503d0a2e221602b542b7ef", // VPO-101 "Vepr-Hunter" dust cover + "5c503b1c2e221602b21d6e9d", // VPO-101 "Vepr-Hunter" rear sight + "5c503af12e221602b177ca02", // VPO-101 "Vepr-Hunter" stock + "5c503ac82e221602b21d6e9a", // VPO-101 "Vepr-Hunter" 7.62x51 5-round magazine + "59e649f986f77411d949b246", // Molot Arms AKM-type gas tube + "59e61eb386f77440d64f5daf", // VPO-136 "Vepr-KM" 7.62x39 muzzle brake-compensator + "59e6318286f77444dd62c4cc", // AK bakelite pistol grip + "59e6449086f7746c9f75e822", // Molot Arms AKM-type dust cover + "59d650cf86f7741b846413a4", // AKM rear sight (6P1 Sb.2-1) + "59e6227d86f77440d64f5dc2", // VPO-136 "Vepr-KM" wooden stock + "5b1fd4e35acfc40018633c39", // AK 7.62x39 aluminium 10-round magazine + "59e6284f86f77440d569536f", // VPO-136 "Vepr-KM" wooden handguard + "59e649f986f77411d949b246", // Molot Arms AKM-type gas tube + "59e8a00d86f7742ad93b569c", // VPO-209 thread protector + "59e6318286f77444dd62c4cc", // AK bakelite pistol grip + "59e6449086f7746c9f75e822", // Molot Arms AKM-type dust cover + "59e8977386f77415a553c453", // VPO-209 rear sight + "59e89d0986f77427600d226e", // VPO-209 wooden stock + "5b1fd4e35acfc40018633c39", // AK 7.62x39 aluminium 10-round magazine + "59e898ee86f77427614bd225", // VPO-209 wooden handguard + "628b8d83717774443b15e248", // AK-545 SAG Mk. 2.1 gas tube + "5943eeeb86f77412d6384f6b", // AK-74 PWS CQB 74 5.45x39 muzzle brake + "5cf50850d7f00c056e24104c", // AK Strike Industries Enhanced Pistol Grip (Black) + "628b9a40717774443b15e9f2", // AK-545 SAG buffer tube + "55d480c04bdc2d1d4e8b456a", // AK-74 5.45x39 6L23 30-round magazine + "628b916469015a4e1711ed8d", // AK-545 SAG Mk.3 handguard + "55d4ae6c4bdc2d8b2f8b456e", // AR-15 High Standard M4SS Stock + "628b9be6cff66b70c002b14c", // AK-545 SAG railed dust cover + "628b9471078f94059a4b9bfb", // AK-545 SAG rear sight + "574dad8024597745964bf05c", // SKS TOZ wooden stock (56-A-231 Sb.5) + "634f02331f9f536910079b51", // SKS 7.62x39 520mm barrel + "587df3a12459772c28142567", // SKS 7.62x39 10-round internal box magazine + "634f05ca517ccc8a960fc748", // SKS dust cover + "634f04d82e5def262d0b30c6", // SKS upper band + "634f02d7517ccc8a960fc744", // SKS gas tube + "574db213245977459a2f3f5d", // SKS rear sight + "634f08a21f9f536910079b5a", // SKS gas tube cover + "628b8d83717774443b15e248", // AK-545 SAG Mk. 2.1 gas tube + "5ac7655e5acfc40016339a19", // AK-74M 5.45x39 muzzle brake-compensator (6P20 0-20) + "5cf50850d7f00c056e24104c", // AK Strike Industries Enhanced Pistol Grip (Black) + "628b9a40717774443b15e9f2", // AK-545 SAG buffer tube + "55d480c04bdc2d1d4e8b456a", // AK-74 5.45x39 6L23 30-round magazine + "628b916469015a4e1711ed8d", // AK-545 SAG Mk.3 handguard + "55d4ae6c4bdc2d8b2f8b456e", // AR-15 High Standard M4SS Stock + "628b9be6cff66b70c002b14c", // AK-545 SAG railed dust cover + "628b9471078f94059a4b9bfb", // AK-545 SAG rear sight + "6410745d5dd49d77bd078485", // AVT-40 wooden stock + "6410758c857473525b08bb77", // SVT-40 7.62x54R 625mm barrel + "6422e1ea3c0f06190302161a", // SVT-40 7.62x54R 10-round magazine + "64119cdbdcf48d656f0aa272", // SVT dust cover + "64119d1f2c6d6f921a0929f8", // SVT-40 7.62x54R muzzle brake + "64119d90dcf48d656f0aa275", // SVT-40 rear sight + "64119d672c6d6f921a0929fb", // SVT-40 front sight + "6410745d5dd49d77bd078485", // AVT-40 wooden stock + "6410758c857473525b08bb77", // SVT-40 7.62x54R 625mm barrel + "641074a07fd350b98c0b3f96", // AVT-40 7.62x54R 15-round magazine + "64119cdbdcf48d656f0aa272", // SVT dust cover + "64119d1f2c6d6f921a0929f8", // SVT-40 7.62x54R muzzle brake + "64119d90dcf48d656f0aa275", // SVT-40 rear sight + "64119d672c6d6f921a0929fb", // SVT-40 front sight + "5caf17c9ae92150b30006be1", // ASh-12 12.7x55 muzzle brake-compensator + "5caf1041ae92157c28402e3f", // ASh-12 12.7x55 10-round magazine + "5caf16a2ae92152ac412efbc", // ASh-12 folding front sight + "5cdaa99dd7f00c002412d0b2", // ASh-12 polymer handguard + "5caf1691ae92152ac412efb9", // ASh-12 rear sight carry handle + "5cda9bcfd7f00c0c0b53e900", // ASh-12 vertical foregrip + "57c44dd02459772d2e0ae249", // AS VAL 9x39 integral barrel-suppressor + "57c44f4f2459772d2c627113", // AS VAL dust cover + "57838f9f2459774a150289a0", // VSS 9x39 6L25 20-round magazine + "57c44fa82459772d2d75e415", // AS VAL pistol grip + "57c450252459772d28133253", // AS VAL skeleton stock + "57c44e7b2459772d28133248", // AS VAL rear sight + "55802f5d4bdc2dac148b458f", // AR-15 Magpul MOE pistol grip (Black) + "59d6272486f77466146386ff", // AK 7.62x39 Magpul PMAG 30 GEN M3 30-round magazine + "606587a88900dc2d9a55b659", // Mk47 Resolute 7.62x39 upper receiver + "606587e18900dc2d9a55b65f", // CMMG buffer tube + "606587bd6d0bd7580617bacc", // Mk47 ambidextrous charging handle + "60658776f2cb2e02a42ace2b", // Mk47 254mm barrel + "6065880c132d4d12c81fd8da", // AR-10 CMMG MK3 RML9 9 inch M-LOK handguard + "5bc09a18d4351e003562b68e", // Magpul MBUS Gen2 flip-up rear sight + "606587d11246154cad35d635", // AR-15 CMMG RipStock buttstock + "6065c6e7132d4d12c81fd8e1", // AR-10 CMMG SV Brake 7.62x51 muzzle brake + "6065dc8a132d4d12c81fd8e3", // AR-10 CMMG low profile gas block + "5bc09a30d4351e00367fb7c8", // Magpul MBUS Gen2 flip-up front sight + "55d4b9964bdc2d1d4e8b456e", // AR-15 Colt A2 pistol grip + "55d4887d4bdc2d962f8b4570", // 5.56x45 Colt AR-15 STANAG 30-round magazine + "55d355e64bdc2d962f8b4569", // M4A1 5.56x45 upper receiver + "5649be884bdc2d79388b4577", // AR-15 Colt Carbine buffer tube + "55d44fd14bdc2d962f8b456e", // AR-15 Colt charging handle + "55d3632e4bdc2d972f8b4569", // AR-15 5.56x45 370mm barrel + "5ae30db85acfc408fb139a05", // AR-15 Colt M4 Carbine Length handguard + "5ae30bad5acfc400185c2dc4", // AR-15 rear sight carry handle + "55d4ae6c4bdc2d8b2f8b456e", // AR-15 High Standard M4SS Stock + "544a38634bdc2d58388b4568", // AR-15 Colt USGI A2 5.56x45 flash hider + "5ae30e795acfc408fb139a0b", // M4A1 front sight with gas block + "637f57a68d137b27f70c4968", // AR-15 Colt M4 Carbine Length lower handguard + "5b099b965acfc400186331e6", // SA-58 SAW-style pistol grip (Black) + "5b099ac65acfc400186331e1", // SA-58/FAL 7.62x51 20-round magazine + "5b099a9d5acfc47a8607efe7", // SA-58 quad rail handguard + "5b099a765acfc47a8607efe3", // SA-58 7.62x51 11 inch barrel + "5b0bc22d5acfc47a8607f085", // SA-58 Holland Type rear sight + "5b099bb25acfc400186331e8", // SA-58 Extreme Duty dust cover + "5b099bf25acfc4001637e683", // SA-58 buffer tube adapter + "5b099b7d5acfc400186331e4", // SA-58 3-Prong Trident 7.62x51 flash hider + "5649be884bdc2d79388b4577", // AR-15 Colt Carbine buffer tube + "56eabf3bd2720b75698b4569", // AR-15 Magpul MOE Carbine stock (Black) + "58d2912286f7744e27117493", // Magpul MOE Carbine rubber buttpad + "5c48a2c22e221602b313fb6c", // MDR pistol grip (FDE) + "55802d5f4bdc2dac148b458e", // 5.56x45 Magpul PMAG 30 GEN M3 W STANAG 30-round magazine + "5c48a14f2e2216152006edd7", // MDR handguard (FDE) + "5c48a2852e221602b21d5923", // MDR 5.56x45 16 inch barrel + "5c48a2a42e221602b66d1e07", // Desert Tech 5.56x45 flash hider + "5dcbd6dddbd3d91b3e5468de", // MDR pistol grip (Black) + "5a3501acc4a282000d72293a", // AR-10 7.62x51 Magpul PMAG 20 SR-LR GEN M3 20-round magazine + "5dcbd6b46ec07c0c4347a564", // MDR handguard (Black) + "5dcbe9431e1f4616d354987e", // MDR 7.62x51 16 inch barrel + "5dcbe965e4ed22586443a79d", // Desert Tech 7.62x51 flash hider + "55d4b9964bdc2d1d4e8b456e", // AR-15 Colt A2 pistol grip + "618168dc8004cc50514c34fc", // FN SCAR-H 7.62x51 20-round magazine + "6165adcdd3a39d50044c120f", // FN SCAR-H 7.62x51 upper receiver + "61816734d8e3106d9806c1f3", // FN SCAR folding polymer stock + "6181688c6c780c1e710c9b04", // FN SCAR charging handle + "6183b084a112697a4b3a6e6c", // FN SCAR-H 7.62x51 20 inch barrel + "61817865d3a39d50044c13a4", // FN SCAR flip-up rear sight + "61816df1d3a39d50044c139e", // FN SCAR bottom rail + "61816dfa6ef05c2ce828f1ad", // FN SCAR side rail + "618167528004cc50514c34f9", // FN SCAR retractable polymer stock + "618167441cb55961fa0fdc71", // FN SCAR cheek rest + "618178aa1cb55961fa0fdc80", // AAC SCAR-SD 51T 7.62x51 flash hider + "61816fcad92c473c770215cc", // FN SCAR flip-up front sight + "618167616ef05c2ce828f1a8", // FN SCAR rubber buttpad + "571659bb2459771fb2755a12", // AR-15 Damage Industries ECS pistol grip (FDE) + "6183d53f1cb55961fa0fdcda", // FN SCAR-H 7.62x51 20-round magazine (FDE) + "6165aeedfaa1272e431521e3", // FN SCAR-H 7.62x51 upper receiver (FDE) + "61825d06d92c473c770215de", // FN SCAR folding polymer stock (FDE) + "6181688c6c780c1e710c9b04", // FN SCAR charging handle + "6183b0711cb55961fa0fdcad", // FN SCAR-H 7.62x51 16 inch barrel + "61817865d3a39d50044c13a4", // FN SCAR flip-up rear sight + "61816df1d3a39d50044c139e", // FN SCAR bottom rail + "61816dfa6ef05c2ce828f1ad", // FN SCAR side rail + "61825d136ef05c2ce828f1cc", // FN SCAR retractable polymer stock (FDE) + "61825d24d3a39d50044c13af", // FN SCAR cheek rest (FDE) + "618178aa1cb55961fa0fdc80", // AAC SCAR-SD 51T 7.62x51 flash hider + "61816fcad92c473c770215cc", // FN SCAR flip-up front sight + "618167616ef05c2ce828f1a8", // FN SCAR rubber buttpad + "571659bb2459771fb2755a12", // AR-15 Damage Industries ECS pistol grip (FDE) + "61840d85568c120fdd2962a5", // FN SCAR-L 5.56x45 30-round magazine (FDE) + "618426d96c780c1e710c9b9f", // FN SCAR-L 5.56x45 upper receiver (FDE) + "61825d06d92c473c770215de", // FN SCAR folding polymer stock (FDE) + "6181688c6c780c1e710c9b04", // FN SCAR charging handle + "6183fd911cb55961fa0fdce9", // FN SCAR-L 5.56x45 14 inch barrel + "61817865d3a39d50044c13a4", // FN SCAR flip-up rear sight + "61816df1d3a39d50044c139e", // FN SCAR bottom rail + "61816dfa6ef05c2ce828f1ad", // FN SCAR side rail + "61825d136ef05c2ce828f1cc", // FN SCAR retractable polymer stock (FDE) + "61825d24d3a39d50044c13af", // FN SCAR cheek rest (FDE) + "618407a850224f204c1da549", // FN SCAR-L 5.56x45 flash hider + "61816fcad92c473c770215cc", // FN SCAR flip-up front sight + "618167616ef05c2ce828f1a8", // FN SCAR rubber buttpad + "55d4b9964bdc2d1d4e8b456e", // AR-15 Colt A2 pistol grip + "61840bedd92c473c77021635", // FN SCAR-L 5.56x45 30-round magazine + "618405198004cc50514c3594", // FN SCAR-L 5.56x45 upper receiver + "61816734d8e3106d9806c1f3", // FN SCAR folding polymer stock + "6181688c6c780c1e710c9b04", // FN SCAR charging handle + "6183fd9e8004cc50514c358f", // FN SCAR-L 5.56x45 18 inch barrel + "61817865d3a39d50044c13a4", // FN SCAR flip-up rear sight + "61816df1d3a39d50044c139e", // FN SCAR bottom rail + "61816dfa6ef05c2ce828f1ad", // FN SCAR side rail + "618167528004cc50514c34f9", // FN SCAR retractable polymer stock + "618167441cb55961fa0fdc71", // FN SCAR cheek rest + "618407a850224f204c1da549", // FN SCAR-L 5.56x45 flash hider + "61816fcad92c473c770215cc", // FN SCAR flip-up front sight + "618167616ef05c2ce828f1a8", // FN SCAR rubber buttpad + "5bb20e0ed4351e3bac1212dc", // AR-15 HK Battle Grip Beavertail pistol grip + "5c05413a0db834001c390617", // 5.56x45 HK Steel Maritime STANAG 30-round magazine + "5bb20d53d4351e4502010a69", // HK 416A5 5.56x45 upper receiver + "5bb20e58d4351e00320205d7", // HK Enhanced Tube buffer tube + "5bb20dbcd4351e44f824c04e", // AR-15 HK Extended Latch charging handle + "5bb20d9cd4351e00334c9d8a", // HK 416A5 5.56x45 14.5 inch barrel + "5bb20de5d4351e0035629e59", // HK 416A5 Quad Rail handguard + "5bb20e49d4351e3bac1212de", // HK 416A5 flip-up rear sight + "5bb20e70d4351e0035629f8f", // AR-15 HK Slim Line buttstock + "544a38634bdc2d58388b4568", // AR-15 Colt USGI A2 5.56x45 flash hider + "5bb20dcad4351e3bac1212da", // HK 416A5 low profile gas block + "62307b7b10d2321fa8741921", // HK G36 5.56x45 30-round magazine + "622f140da5958f63c67f1735", // HK G36 polymer stock + "622b38c56762c718e457e246", // HK G36 5.56x45 480mm barrel + "6231654c71b5bc3baa1078e5", // HK G36 6-vent handguard + "622f02437762f55aaa68ac85", // HK G36 magwell + "622b4d7df9cfc87d675d2ded", // HK G36 Hensoldt HKV 3x carry handle + "622f128cec80d870d349b4e8", // HK G36 5.56x45 4-prong flash hider + "622b327b267a1b13a44abea3", // HK G36 gas block + "622efbcb99f4ea1a4d6c9a15", // Hensoldt RV red dot sight + "59c6633186f7740cf0493bb9", // AK-74 gas tube (6P20 Sb.1-2) + "5ac72e615acfc43f67248aa0", // AK-101 5.56x45 muzzle brake-compensator + "5649ade84bdc2d1b2b8b4587", // AK polymer pistol grip (6P1 Sb.8) + "5ac50da15acfc4001718d287", // AK-74M dust cover (6P34 0-1) + "5ac72e475acfc400180ae6fe", // AK-74M rear sight (6P20 Sb.2) + "5ac50c185acfc400163398d4", // AK-74M polymer stock (6P34 Sb.15) + "5ac66c5d5acfc4001718d314", // AK-101 5.56x45 6L29 30-round magazine + "5648b1504bdc2d9d488b4584", // AK-74 polymer handguard (6P20 Sb.9) + "59c6633186f7740cf0493bb9", // AK-74 gas tube (6P20 Sb.1-2) + "5ac72e725acfc400180ae701", // AK-102 5.56x45 muzzle brake-compensator (6P44 0-20) + "5649ade84bdc2d1b2b8b4587", // AK polymer pistol grip (6P1 Sb.8) + "5ac50da15acfc4001718d287", // AK-74M dust cover (6P34 0-1) + "5ac733a45acfc400192630e2", // AK-105 rear sight (6P44 Sb.1-30) + "5ac50c185acfc400163398d4", // AK-74M polymer stock (6P34 Sb.15) + "5ac66c5d5acfc4001718d314", // AK-101 5.56x45 6L29 30-round magazine + "5648b1504bdc2d9d488b4584", // AK-74 polymer handguard (6P20 Sb.9) + "59c6633186f7740cf0493bb9", // AK-74 gas tube (6P20 Sb.1-2) + "5ac72e7d5acfc40016339a02", // AK-103 7.62x39 muzzle brake-compensator + "5649ade84bdc2d1b2b8b4587", // AK polymer pistol grip (6P1 Sb.8) + "5ac50da15acfc4001718d287", // AK-74M dust cover (6P34 0-1) + "5ac72e475acfc400180ae6fe", // AK-74M rear sight (6P20 Sb.2) + "5ac50c185acfc400163398d4", // AK-74M polymer stock (6P34 Sb.15) + "5ac66bea5acfc43b321d4aec", // AK-103 7.62x39 30-round magazine + "5648b1504bdc2d9d488b4584", // AK-74 polymer handguard (6P20 Sb.9) + "59c6633186f7740cf0493bb9", // AK-74 gas tube (6P20 Sb.1-2) + "5649aa744bdc2ded0b8b457e", // AK-74 5.45x39 muzzle brake-compensator (6P20 0-20) + "57e3dba62459770f0c32322b", // AK bakelite pistol grip (6P4 Sb.9) + "5649af094bdc2df8348b4586", // AK-74 dust cover (6P20 0-1) + "5649b0544bdc2d1b2b8b458a", // AK-74 rear sight (6P20 Sb.2) + "5649b1c04bdc2d16268b457c", // AK-74 wooden stock (6P20 Sb.5) + "564ca99c4bdc2d16268b4589", // AK-74 5.45x39 6L20 30-round magazine + "5648b0744bdc2d363b8b4578", // AK-74 wooden handguard (6P20 Sb.6) + "649ec107961514b22506b10c", // AK-12 gas tube + "649ec2af961514b22506b10f", // AK-12 5.45x39 muzzle brake + "5beec8ea0db834001a6f9dbf", // AK-12 pistol grip + "649ec2f3961514b22506b111", // AK-12 dust cover + "649ec87d8007560a9001ab36", // AK-12 buffer tube + "649ec30cb013f04a700e60fb", // AK-12 5.45x39 early model 30-round magazine + "649ec127c93611967b034957", // AK-12 handguard + "649ec2da59cbb3c813042dca", // AK-12 rear sight base + "5beec8c20db834001d2c465c", // AK-12 stock + "5beecbb80db834001d2c465e", // RPK-16 handguard rail + "649ec2cec93611967b03495e", // AK-12 rear sight + "59c6633186f7740cf0493bb9", // AK-74 gas tube (6P20 Sb.1-2) + "5ac72e945acfc43f3b691116", // AK-105 5.45x39 muzzle brake-compensator (6P44 0-20) + "5649ade84bdc2d1b2b8b4587", // AK polymer pistol grip (6P1 Sb.8) + "5ac50da15acfc4001718d287", // AK-74M dust cover (6P34 0-1) + "5ac733a45acfc400192630e2", // AK-105 rear sight (6P44 Sb.1-30) + "5ac50c185acfc400163398d4", // AK-74M polymer stock (6P34 Sb.15) + "55d480c04bdc2d1d4e8b456a", // AK-74 5.45x39 6L23 30-round magazine + "5648b1504bdc2d9d488b4584", // AK-74 polymer handguard (6P20 Sb.9) + "59c6633186f7740cf0493bb9", // AK-74 gas tube (6P20 Sb.1-2) + "5649aa744bdc2ded0b8b457e", // AK-74 5.45x39 muzzle brake-compensator (6P20 0-20) + "5649ad3f4bdc2df8348b4585", // AK bakelite pistol grip (6P1 Sb.8V) + "5649af094bdc2df8348b4586", // AK-74 dust cover (6P20 0-1) + "5649b0544bdc2d1b2b8b458a", // AK-74 rear sight (6P20 Sb.2) + "5649b1c04bdc2d16268b457c", // AK-74 wooden stock (6P20 Sb.5) + "564ca99c4bdc2d16268b4589", // AK-74 5.45x39 6L20 30-round magazine + "5648b0744bdc2d363b8b4578", // AK-74 wooden handguard (6P20 Sb.6) + "59c6633186f7740cf0493bb9", // AK-74 gas tube (6P20 Sb.1-2) + "5ac7655e5acfc40016339a19", // AK-74M 5.45x39 muzzle brake-compensator (6P20 0-20) + "5649ade84bdc2d1b2b8b4587", // AK polymer pistol grip (6P1 Sb.8) + "5ac50da15acfc4001718d287", // AK-74M dust cover (6P34 0-1) + "5ac72e475acfc400180ae6fe", // AK-74M rear sight (6P20 Sb.2) + "5ac50c185acfc400163398d4", // AK-74M polymer stock (6P34 Sb.15) + "55d480c04bdc2d1d4e8b456a", // AK-74 5.45x39 6L23 30-round magazine + "5648b1504bdc2d9d488b4584", // AK-74 polymer handguard (6P20 Sb.9) + "59d64ec286f774171d1e0a42", // AKM gas tube (6P1 Sb.1-2) + "59d64fc686f774171b243fe2", // AKM 7.62x39 muzzle brake-compensator (6P1 0-14) + "5a0071d486f77404e23a12b2", // AKM wooden pistol grip + "59d6507c86f7741b846413a2", // AKM dust cover (6P1 0-1) + "59d650cf86f7741b846413a4", // AKM rear sight (6P1 Sb.2-1) + "59ff3b6a86f77477562ff5ed", // AKMS shoulder piece (6P4 Sb.1-19) + "5a0060fc86f7745793204432", // AKMS 7.62x39 aluminium 30-round magazine + "59d64f2f86f77417193ef8b3", // AKM wooden handguard (6P1 Sb.6-1) + "59d64ec286f774171d1e0a42", // AKM gas tube (6P1 Sb.1-2) + "59d64fc686f774171b243fe2", // AKM 7.62x39 muzzle brake-compensator (6P1 0-14) + "59e62cc886f77440d40b52a1", // AKM bakelite pistol grip + "59d6507c86f7741b846413a2", // AKM dust cover (6P1 0-1) + "59d650cf86f7741b846413a4", // AKM rear sight (6P1 Sb.2-1) + "59d6514b86f774171a068a08", // AKM wooden stock (6P1 Sb.5) + "5a01c29586f77474660c694c", // AK 7.62x39 6L10 30-round magazine + "59d64f2f86f77417193ef8b3", // AKM wooden handguard (6P1 Sb.6-1) + "59d64ec286f774171d1e0a42", // AKM gas tube (6P1 Sb.1-2) + "59d64fc686f774171b243fe2", // AKM 7.62x39 muzzle brake-compensator (6P1 0-14) + "59e62cc886f77440d40b52a1", // AKM bakelite pistol grip + "59d6507c86f7741b846413a2", // AKM dust cover (6P1 0-1) + "59d650cf86f7741b846413a4", // AKM rear sight (6P1 Sb.2-1) + "59d6514b86f774171a068a08", // AKM wooden stock (6P1 Sb.5) + "59d625f086f774661516605d", // AK 7.62x39 30-round magazine (issued '55 or later) + "59d64f2f86f77417193ef8b3", // AKM wooden handguard (6P1 Sb.6-1) + "59c6633186f7740cf0493bb9", // AK-74 gas tube (6P20 Sb.1-2) + "5649aa744bdc2ded0b8b457e", // AK-74 5.45x39 muzzle brake-compensator (6P20 0-20) + "57e3dba62459770f0c32322b", // AK bakelite pistol grip (6P4 Sb.9) + "5649af094bdc2df8348b4586", // AK-74 dust cover (6P20 0-1) + "5649b0544bdc2d1b2b8b458a", // AK-74 rear sight (6P20 Sb.2) + "5ab626e4d8ce87272e4c6e43", // AKS-74 metal skeletonized stock (6P21 Sb.5) + "564ca99c4bdc2d16268b4589", // AK-74 5.45x39 6L20 30-round magazine + "5648b0744bdc2d363b8b4578", // AK-74 wooden handguard (6P20 Sb.6) + "59d64ec286f774171d1e0a42", // AKM gas tube (6P1 Sb.1-2) + "59e61eb386f77440d64f5daf", // VPO-136 "Vepr-KM" 7.62x39 muzzle brake-compensator + "5a0071d486f77404e23a12b2", // AKM wooden pistol grip + "59d6507c86f7741b846413a2", // AKM dust cover (6P1 0-1) + "59d650cf86f7741b846413a4", // AKM rear sight (6P1 Sb.2-1) + "5abcd472d8ce8700166032ae", // AKMSN shoulder piece (6P4N Sb.1-19) + "5a0060fc86f7745793204432", // AKMS 7.62x39 aluminium 30-round magazine + "59d64f2f86f77417193ef8b3", // AKM wooden handguard (6P1 Sb.6-1) + "57e3dba62459770f0c32322b", // AK bakelite pistol grip (6P4 Sb.9) + "57dc347d245977596754e7a1", // AKS-74U metal skeleton stock (6P26 Sb.5) + "564ca99c4bdc2d16268b4589", // AK-74 5.45x39 6L20 30-round magazine + "57dc324a24597759501edc20", // AKS-74U 5.45x39 muzzle brake (6P26 0-20) + "57dc334d245977597164366f", // AKS-74U dust cover (6P26 Sb.7) + "59d36a0086f7747e673f3946", // AKS-74U gas tube (6P26 Sb.1-2) + "57dc32dc245977596d4ef3d3", // AKS-74U wooden handguard (6P26 Sb.6) + "59c6633186f7740cf0493bb9", // AK-74 gas tube (6P20 Sb.1-2) + "5649aa744bdc2ded0b8b457e", // AK-74 5.45x39 muzzle brake-compensator (6P20 0-20) + "57e3dba62459770f0c32322b", // AK bakelite pistol grip (6P4 Sb.9) + "5649af094bdc2df8348b4586", // AK-74 dust cover (6P20 0-1) + "5649b0544bdc2d1b2b8b458a", // AK-74 rear sight (6P20 Sb.2) + "5ab626e4d8ce87272e4c6e43", // AKS-74 metal skeletonized stock (6P21 Sb.5) + "564ca99c4bdc2d16268b4589", // AK-74 5.45x39 6L20 30-round magazine + "5648b0744bdc2d363b8b4578", // AK-74 wooden handguard (6P20 Sb.6) + "5649ad3f4bdc2df8348b4585", // AK bakelite pistol grip (6P1 Sb.8V) + "57dc347d245977596754e7a1", // AKS-74U metal skeleton stock (6P26 Sb.5) + "564ca99c4bdc2d16268b4589", // AK-74 5.45x39 6L20 30-round magazine + "57dc324a24597759501edc20", // AKS-74U 5.45x39 muzzle brake (6P26 0-20) + "57dc334d245977597164366f", // AKS-74U dust cover (6P26 Sb.7) + "59d36a0086f7747e673f3946", // AKS-74U gas tube (6P26 Sb.1-2) + "57dc32dc245977596d4ef3d3", // AKS-74U wooden handguard (6P26 Sb.6) + "5649ad3f4bdc2df8348b4585", // AK bakelite pistol grip (6P1 Sb.8V) + "57dc347d245977596754e7a1", // AKS-74U metal skeleton stock (6P26 Sb.5) + "564ca99c4bdc2d16268b4589", // AK-74 5.45x39 6L20 30-round magazine + "57ffb0e42459777d047111c5", // AKS-74U PBS-4 5.45x39 sound suppressor + "5839a7742459773cf9693481", // AKS-74UB dust cover + "59d36a0086f7747e673f3946", // AKS-74U gas tube (6P26 Sb.1-2) + "57dc32dc245977596d4ef3d3", // AKS-74U wooden handguard (6P26 Sb.6) + "62e7c98b550c8218d602cbb4", // Steyr AUG 5.56x45 30-round magazine + "62e7c880f68e7a0676050c7c", // Steyr AUG A1 charging handle + "62ea7c793043d74a0306e19f", // Steyr AUG A1 STG77 1.5x optic sight + "62e7c7f3c34ea971710c32fc", // Steyr AUG A1 5.56x45 20 inch barrel + "630f2872911356c17d06abc5", // Steyr AUG A1 5.56x45 closed flash hider + "634e61b0767cb15c4601a877", // Steyr AUG vertical foregrip + "652911675ae2ae97b80fdf3c", // AR-15 SIG M400 Reduced Angle Pistol Grip (Coyote Tan) + "65293c38fc460e50a509cb25", // AR-10 7.62x51 Lancer L7AWM 20-round magazine + "6529119424cbe3c74a05e5bb", // MCX SPEAR 6.8x51 upper receiver + "6529348224cbe3c74a05e5c4", // MCX/MPX Stock Locking Hinge Assembly + "6529109524cbe3c74a05e5b7", // MCX SPEAR charging handle + "6567e751a715f85433025998", // SIG ALPHA4 30mm ring scope mount + "652910565ae2ae97b80fdf35", // MCX SPEAR 6.8x51 330mm barrel + "652910ef50dc782999054b97", // MCX SPEAR 11 inch M-LOK handguard + "6529366450dc782999054ba0", // MCX/MPX folding stock adapter buffer tube (Coyote Tan) + "6567e7681265c8a131069b0f", // SIG TANGO6T 1-6x24 30mm riflescope + "6529113b5ae2ae97b80fdf39", // MCX SPEAR Clutch-Lok QD 6.8x51 Shouldered Flash Hider + "652910bc24cbe3c74a05e5b9", // MCX SPEAR Adjustable Gas Piston + "652911e650dc782999054b9d", // MCX SPEAR SLX68-MG-QD 6.8x51 sound suppressor + "6529370c405a5f51dd023db8", // AR-15 Magpul MOE SL-K buttstock (Coyote Tan) + "5fbcbd6c187fea44d52eda14", // MCX pistol grip + "55d4887d4bdc2d962f8b4570", // 5.56x45 Colt AR-15 STANAG 30-round magazine + "5fbcc3e4d6fa9c00c571bb58", // MCX GEN1 .300 BLK upper receiver + "5fbcc437d724d907e2077d5c", // MPX/MCX lightweight stock + "5fbcc640016cce60e8341acc", // MCX charging handle + "5fbbfacda56d053a3543f799", // MCX .300 BLK 229mm barrel + "5fbc226eca32ed67276c155d", // MCX GEN1 KeyMod 8 inch handguard + "5fc0fa957283c4046c58147e", // MCX flip-up rear sight + "5fbc22ccf24b94483f726483", // SIG Sauer Taper-LOK 7.62x51/.300 BLK muzzle adapter + "5fbc210bf24b94483f726481", // MCX gas block + "5fc0fa362770a0045c59c677", // MCX flip-up front sight + "5fbcbd10ab884124df0cd563", // SIG Sauer Two Port Brake 7.62x51 muzzle brake + "62e7c98b550c8218d602cbb4", // Steyr AUG 5.56x45 30-round magazine + "62ebbc53e3c1e1ec7c02c44f", // Steyr AUG A3 charging handle + "62e7c72df68e7a0676050c77", // Steyr AUG A3 5.56x45 receiver + "62e7c7f3c34ea971710c32fc", // Steyr AUG A1 5.56x45 20 inch barrel + "62ebd290c427473eff0baafb", // Steyr AUG A3 M1 1.5x optic sight + "630f28f0cadb1fe05e06f004", // Steyr AUG A3 5.56x45 closed flash hider + "634e61b0767cb15c4601a877", // Steyr AUG vertical foregrip + "5beec8ea0db834001a6f9dbf", // AK-12 pistol grip + "5beec91a0db834001961942d", // RPK-16 dust cover + "5beec8b20db834001961942a", // RPK-16 buffer tube + "5beec3e30db8340019619424", // RPK-16 handguard + "5beec1bd0db834001e6006f3", // RPK-16 5.45x39 15 inch barrel + "5beec9450db83400970084fd", // RPK-16 rear sight base + "5beec8c20db834001d2c465c", // AK-12 stock + "5beecbb80db834001d2c465e", // RPK-16 handguard rail + "5beecbb80db834001d2c465e", // RPK-16 handguard rail + "5beec3420db834001b095429", // RPK-16 5.45x39 muzzle brake-compensator + "5bf3f59f0db834001a6fa060", // RPK-16 rear sight + "57838f0b2459774a256959b2", // VSS 9x39 6L24 10-round magazine + "57838c962459774a1651ec63", // VSS 9x39 integral barrel-suppressor + "578395402459774a256959b5", // VSS dust cover + "578395e82459774a0e553c7b", // VSS wooden stock + "57838e1b2459774a256959b1", // VSS rear sight + "646371779f5f0ea59a04c204", // PK pistol grip + "646372518610c40fc20204e8", // PK 7.62x54R 100-round box + "646371a9f2404ab67905c8e6", // PKM wooden stock + "646371faf2404ab67905c8e9", // PKM 7.62x54R 658mm barrel + "6464d870bb2c580352070cc4", // PK bipod + "6492fb8253acae0af00a29b6", // PK rear sight + "6492efb8cfcf7c89e701abf3", // PKM 7.62x54R slotted flash hider + "64cbad529f7cf7f75c077fd5", // PK pistol grip (Black) + "646372518610c40fc20204e8", // PK 7.62x54R 100-round box + "6492e3a97df7d749100e29ee", // PKP polymer stock + "64639a9aab86f8fd4300146c", // PKP 7.62x54R 658mm barrel + "6464d870bb2c580352070cc4", // PK bipod + "6492fb8253acae0af00a29b6", // PK rear sight + "6513f0a194c72326990a3868", // RPD 7.62x39 "Buben" 100-round box + "6513f1798cb24472490ee331", // RPD wooden stock + "6513eff1e06849f06c0957d4", // RPD 7.62x39 520mm barrel + "6513f05a94c72326990a3866", // RPD wooden handguard + "6513f153e63f29908d0ffaba", // RPD rear sight + "6513f13a8cb24472490ee32f", // RPD wooden pistol grip + "6513f037e06849f06c0957d7", // RPD bipod + "6513f0f5e63f29908d0ffab8", // RPD barrel thread protector + "6513f0a194c72326990a3868", // RPD 7.62x39 "Buben" 100-round box + "6513f1798cb24472490ee331", // RPD wooden stock + "6513eff1e06849f06c0957d4", // RPD 7.62x39 520mm barrel + "6513f05a94c72326990a3866", // RPD wooden handguard + "6513f153e63f29908d0ffaba", // RPD rear sight + "6513f13a8cb24472490ee32f", // RPD wooden pistol grip + "6513f037e06849f06c0957d7", // RPD bipod + "6513f0f5e63f29908d0ffab8", // RPD barrel thread protector + "5a339805c4a2826c6e06d73d", // AR-15 Magpul MIAD pistol grip (FDE) + "5a3501acc4a282000d72293a", // AR-10 7.62x51 Magpul PMAG 20 SR-LR GEN M3 20-round magazine + "5a33ca0fc4a282000d72292f", // AR-15 Colt A2 buffer tube + "5a329052c4a28200741e22d3", // R11 RSASS handguard + "5a34fae7c4a2826c6e06d760", // AR-10 7.62x51 22 inch barrel + "5a33cae9c4a28232980eb086", // AR-15 Magpul PRS GEN2 stock (FDE) + "5a34fd2bc4a282329a73b4c5", // AR-10 AAC Blackout 51T 7.62x51 flash hider + "5a34fbadc4a28200741e230a", // AR-10 JP Enterprises Gas System-6 + "55d4b9964bdc2d1d4e8b456e", // AR-15 Colt A2 pistol grip + "5df8f541c41b2312ea3335e3", // AR-10 7.62x51 KAC 20-round steel magazine + "5649be884bdc2d79388b4577", // AR-15 Colt Carbine buffer tube + "5df8e4080b92095fd441e594", // SR-25 7.62x51 upper receiver + "5df8e053bb49d91fb446d6a6", // AR-10 KAC charging handle + "5ae30c9a5acfc408fb139a03", // AR-15 LMT SOPMOD stock + "5df917564a9f347bc92edca3", // SR-25 7.62x51 16 inch barrel + "5df916dfbb49d91fb446d6b9", // AR-10 KAC URX 4 14.5 inch handguard + "5dfa3d7ac41b2312ea33362a", // KAC Folding Micro rear sight + "5dfa3cd1b33c0951220c079b", // AR-10 KAC QDC 7.62x51 Flash Suppressor Kit + "5dfa3d45dfc58d14537c20b0", // AR-10 KAC Low Profile Gas Block + "5dfa3d950dee1b22f862eae0", // KAC Folding Micro front sight + "64b9e2037fdfb81df81e3c25", // M1A 7.62x51 10-round magazine + "5aaf8e43e5b5b00015693246", // M1A SOCOM 16 stock + "5aaf9d53e5b5b00015042a52", // M1A 7.62x51 16 inch barrel + "5abcbb20d8ce87001773e258", // M14 SA Enlarged Military Aperture rear sight + "5ab24ef9e5b5b00fe93c9209", // M1A SOCOM 16 upper part + "5aafa1c2e5b5b00015042a56", // M1A SOCOM 16 7.62x51 muzzle brake-compensator + "5aafa49ae5b5b00015042a58", // M1A SA XS Post .125 Blade front sight + "5c471be12e221602b66cd9ac", // SVDS pistol grip + "5c471c442e221602b542a6f8", // SVD 7.62x54R 10-round magazine + "5c471b5d2e221602b21d4e14", // SVDS polymer stock + "5c471cb32e221602b177afaa", // SVDS 7.62x54R 22 inch barrel + "5c471c2d2e22164bef5d077f", // SVDS upper band + "5c471bd12e221602b4129c3a", // SVDS dust cover + "5c471bfc2e221602b21d4e17", // SVDS 7.62x54R muzzle brake-compensator + "5c471c842e221615214259b5", // SVDS gas tube + "5c471c6c2e221602b66cd9ae", // SVDS polymer handguard + "5c471b7e2e2216152006e46c", // SVDS rear sight + "5c471ba12e221602b3137d76", // SVDS front sight + "57c55efc2459772d2c6271e7", // Hogue OverMolded Rubber Grip (Black) + "5fc23426900b1d5091531e15", // Mk-18 .338 LM 10-round magazine + "5649be884bdc2d79388b4577", // AR-15 Colt Carbine buffer tube + "5fc278107283c4046c581489", // Mk-18 .338 LM upper receiver + "5fc2369685fd526b824a5713", // AR-15 B5 Systems Precision stock + "5fc23678ab884124df0cd590", // Mk-18 .338 LM 24 inch barrel + "5fc235db2770a0045c59c683", // Mk-18 18 inch handguard + "5fc23636016cce60e8341b05", // SilencerCo AC-858 ASR .338 LM muzzle brake + "5fc2360f900b1d5091531e19", // Mk-18 gas block + "6193dcd0f8ee7e52e4210a28", // AR-15 HK Battle Grip Beavertail pistol grip (RAL 8000) + "617131a4568c120fdd29482d", // HK417/G28 7.62x51 20-round magazine + "617153016c780c1e710c9a2f", // HK G28 buffer tube + "61713a8fd92c473c770214a4", // HK G28 7.62x51 upper receiver + "61702d8a67085e45ef140b24", // HK417 E1 extended charging handle + "617155ee50224f204c1da3cd", // HK417 Adjustable Buttstock + "61713cc4d8e3106d9806c109", // Recknagel Era-Tac 34mm ring scope mount + "61702be9faa1272e431522c3", // HK417 7.62x51 16.5 inch barrel + "61703001d92c473c77021497", // HK417 Extended Free Float handguard with flip-up front sight + "5bb20e49d4351e3bac1212de", // HK 416A5 flip-up rear sight + "61715e7e67085e45ef140b33", // HK Adjustable Buttstock cheek rest + "61714eec290d254f5e6b2ffc", // Schmidt & Bender PM II 3-12x50 34mm riflescope + "61714b2467085e45ef140b2c", // Recknagel Era-Tac Sunshade mount for Aimpoint T-1 sights + "61713308d92c473c770214a0", // HK Prolonged 7.62x51 flash hider + "61702f1b67085e45ef140b26", // HK417 low profile gas block + "619386379fb0c665d5490dbe", // HK Sturmgriff foregrip + "58d399e486f77442e0016fe7", // Aimpoint Micro T-1 reflex sight + "6171367e1cb55961fa0fdb36", // HK G28 B&T QD 7.62x51 sound suppressor + "559ba5b34bdc2d1f1a8b4582", // SV-98 7.62x54R 10-round magazine + "56083e1b4bdc2dc8488b4572", // SV-98 rear sight + "56083eab4bdc2d26448b456a", // SV-98 anti-heat ribbon + "560e620e4bdc2d724b8b456b", // SV-98 7.62x54R muzzle device + "61faa91878830f069b6b7967", // SV-98 wooden stock + "56ea8222d2720b69698b4567", // SV-98 bipod + "5888988e24597752fe43a6fa", // DVL-10 7.62x51 10-round magazine + "5888956924597752983e182d", // DVL-10 M2 7.62x51 660mm barrel + "57c55f172459772d27602381", // Hogue OverMolded Rubber Grip (Olive Drab) + "58889d0c2459775bc215d981", // DVL-10 Lobaev Arms stock + "5888996c24597754281f9419", // DVL-10 M2 7.62x51 muzzle brake + "5888976c24597754281f93f5", // DVL-10 M2 handguard + "5ae0973a5acfc4001562206c", // Mosin Rifle 7.62x54R 5-round magazine + "5ae096d95acfc400185c2c81", // Mosin Rifle standard stock + "5ae09bff5acfc4001562219d", // Mosin Rifle 7.62x54R 730mm regular barrel + "5ae099875acfc4001714e593", // Mosin Rifle front sight + "5ae099925acfc4001a5fc7b3", // Mosin Rifle rear sight + "5ae0973a5acfc4001562206c", // Mosin Rifle 7.62x54R 5-round magazine + "5bfd35380db83400232fe5cc", // Mosin Rifle Infantry stock + "5ae09bff5acfc4001562219d", // Mosin Rifle 7.62x54R 730mm regular barrel + "5ae099875acfc4001714e593", // Mosin Rifle front sight + "5ae099925acfc4001a5fc7b3", // Mosin Rifle rear sight + "5de653abf76fdc1ce94a5a2a", // VPO-215 "Gornostay" .366 TKM 4-round magazine + "5de655be4a9f347bc92edb88", // VPO-215 "Gornostay" stock + "5de65547883dde217541644b", // VPO-215 "Gornostay" .366TKM 23 inch barrel + "5de6558e9f98ac2bc65950fc", // VPO-215 "Gornostay" scope rail mount + "5de6556a205ddc616a6bc4f7", // VPO-215 "Gornostay" thread protection cap + "5bfea7ad0db834001c38f1ee", // M700 7.62x51 Wyatt's Outdoor 5-round magazine + "5bfeb32b0db834001a6694d9", // M700 Hogue Overmolded Ghillie stock + "5bfebc320db8340019668d79", // M700 7.62x51 20 inch threaded barrel + "5df25b6c0b92095fd441e4cf", // ORSIS T-5000M 7.62x51 5-round magazine + "5df256570dee1b22f862e9c4", // ORSIS T-5000M 7.62x51 660mm barrel + "5df35e59c41b2312ea3334d5", // ORSIS T-5000M aluminium body + "5df35e970b92095fd441e4d2", // ORSIS T-5000M scope mount + "5df35e7f2a78646d96665dd4", // ORSIS T-5000M 7.62x51 muzzle brake-compensator + "5df25d3bfd6b4e6e2276dc9a", // ORSIS T-5000M handguard + "5df38a5fb74cd90030650cb6", // ORSIS T-5000M pistol grip + "5df35ddddfc58d14537c2036", // ORSIS T-5000M stock + "5df35eb2b11454561e3923e2", // ORSIS T-5000M medium length rail + "5df35eb2b11454561e3923e2", // ORSIS T-5000M medium length rail + "5df35ea9c41b2312ea3334d8", // ORSIS T-5000M long length rail + "5df35eb2b11454561e3923e2", // ORSIS T-5000M medium length rail + "5df36948bb49d91fb446d5ad", // ORSIS T-5000M padded handguard grip + "628120fd5631d45211793c9f", // AI AXMC .338 LM 10-round magazine + "62811e2510e26c1f344e6554", // AI AXMC pistol grip + "62811cd7308cb521f87a8f99", // AI AXMC .338 LM bolt assembly + "62811f828193841aca4a45c3", // AI AXMC AX buttstock + "6281204f308cb521f87a8f9b", // AI AXMC .338 LM chassis + "6281209662cba23f6c4d7a19", // AI AXMC AX KeySlot 16 inch handguard + "6281212a09427b40ab14e770", // AI AXMC padded handguard grip + "62811fbf09427b40ab14e767", // AI AXMC upper receiver + "628120c21d5df4475f46a337", // AI AXMC AT X Top Rail + "628120d309427b40ab14e76d", // AI AXMC Adapter Kit short length rail + "628120d309427b40ab14e76d", // AI AXMC Adapter Kit short length rail + "628120dd308cb521f87a8fa1", // AI AXMC Adapter Kit medium length rail + "628121434fa03b6b6c35dc6a", // AI AXMC .338 LM 28 inch barrel + "62812081d23f207deb0ab216", // AI .338 LM Tactical Muzzle Brake + "628120621d5df4475f46a335", // AI AXMC thread protection cap + "5a17fb03fcdbcbcae668728f", // APS 9x18PM 20-round magazine + "5a17fb9dfcdbcbcae6687291", // APB detachable wire stock + "5a17fc70fcdbcb0176308b3d", // APS bakelite side-pieces + "5aba62f8d8ce87001943946b", // APS front sight + "5aba639ed8ce8700182ece67", // APB rear sight + "5abcc328d8ce8700194394f3", // APB 9x18PM sound suppressor + "5cadc1c6ae9215000f2775a4", // M9A3 9x19 threaded barrel + "5cadc431ae921500113bb8d5", // M9A3 polymer side grips + "5cadc55cae921500103bb3be", // M9A3 pistol slide + "5cadc2e0ae9215051e1c21e7", // M9A3 9x19 17-round magazine + "5cadc390ae921500126a77f1", // M9A3 thread protection cap + "5cadd940ae9215051e1c2316", // M9A3 rear sight + "5cadd919ae921500126a77f3", // M9A3 front sight + "624c3074dbbd335e8e6becf3", // Chiappa Rhino 9x19 6-round cylinder + "619f4d304c58466fe1228437", // Chiappa Rhino front sight + "619f4bffd25cbd424731fb97", // Chiappa Rhino wooden pistol grip + "619f54a1d25cbd424731fb99", // Chiappa Rhino .357 6-round cylinder + "619f4cee4c58466fe1228435", // Chiappa Rhino rear sight + "619f4d304c58466fe1228437", // Chiappa Rhino front sight + "619f4bffd25cbd424731fb97", // Chiappa Rhino wooden pistol grip + "5e81c519cb2b95385c177551", // M1911A1 .45 ACP 127mm barrel + "5e81c6bf763d9f754677beff", // M1911A1 side grips + "5e81edc13397a21db957f6a1", // M1911A1 pistol slide + "5e81c4ca763d9f754677befa", // M1911A1 .45 ACP 7-round magazine + "5e81c6a2ac2bb513793cdc7f", // M1911A1 trigger + "5e81c550763d9f754677befd", // M1911A1 hammer + "5e81c539cb2b95385c177553", // M1911A1 slide stop + "5e81ee4dcb2b95385c177582", // M1911A1 rear sight + "5e81ee213397a21db957f6a6", // M1911A1 front sight + "5f3e7801153b8571434a924c", // M1911A1 .45 ACP National Match barrel + "5f3e778efcd9b651187d7201", // M45A1 Mil-Tac GVT G10 side grips + "5f3e7823ddc4f03b010e2045", // M45A1 pistol slide + "5f3e77b26cda304dcc634057", // M1911A1 .45 ACP Wilson Combat 7-round magazine + "5f3e772a670e2a7b01739a52", // M45A1 trigger + "5f3e76d86cda304dcc634054", // M45A1 hammer + "5f3e777688ca2d00ad199d25", // M45A1 slide lock + "5f3e7897ddc4f03b010e204a", // M45A1 Novak Lomount rear sight + "5f3e78a7fbf956000b716b8e", // M45A1 Novak Lomount front sight + "5d3eb5b6a4b9361eab311902", // FN Five-seveN 5.7x28 barrel + "5d3eb44aa4b93650d64e4979", // FN Five-seveN MK2 pistol slide + "5d3eb5eca4b9363b1f22f8e4", // FN Five-seveN 5.7x28 20-round magazine + "5d3eb4aba4b93650d64e497d", // FN Five-seveN MK2 rear sight + "5d3eb536a4b9363b1f22f8e2", // FN Five-seveN MK2 front sight + "5d3eb59ea4b9361c284bb4b2", // FN Five-seveN 5.7x28 threaded barrel + "5d3eb44aa4b93650d64e4979", // FN Five-seveN MK2 pistol slide + "5d3eb5eca4b9363b1f22f8e4", // FN Five-seveN 5.7x28 20-round magazine + "5d3ef698a4b9361182109872", // Gemtech SFN-57 5.7x28 sound suppressor + "5d3eb4aba4b93650d64e497d", // FN Five-seveN MK2 rear sight + "5d3eb536a4b9363b1f22f8e2", // FN Five-seveN MK2 front sight + "5a6b5f868dc32e000a311389", // Glock 17 9x19 barrel + "5a6f5e048dc32e00094b97da", // Glock 17 pistol slide + "5a718b548dc32e000d46d262", // Glock 9x19 17-round magazine + "5a6f5d528dc32e00094b97d9", // Glock rear sight + "5a6f58f68dc32e000a311390", // Glock front sight + "5b1fa9ea5acfc40018633c0a", // Glock 18C 9x19 barrel with a compensator + "5b1faa0f5acfc40dc528aeb5", // Glock 18C pistol slide + "5a718b548dc32e000d46d262", // Glock 9x19 17-round magazine + "5a6f5d528dc32e00094b97d9", // Glock rear sight + "5a6f58f68dc32e000a311390", // Glock front sight + "630764fea987397c0816d219", // Glock 19X 9x19 barrel + "63075cc5962d0247b029dc2a", // Glock 19X pistol slide + "63076701a987397c0816d21b", // Glock 9x19 19-round magazine (Coyote) + "630765cb962d0247b029dc45", // Glock 19X rear sight + "630765777d50ff5e8a1ea718", // Glock 19X front sight + "6194ef39de3cdf1d2614a768", // HK USP .45 ACP barrel + "6193d382ed0429009f543e65", // HK USP .45 ACP pistol slide + "6193d338de3cdf1d2614a6fc", // HK USP .45 ACP 12-round magazine + "6193d3cded0429009f543e6a", // HK USP trigger + "6193d3be7c6c7b169525f0da", // HK USP hammer + "6193d5d4f8ee7e52e4210a1b", // HK USP slide lock + "6194f2912d2c397d6600348d", // HK USP rear sight + "6194f35c18a3974e5e7421e6", // HK USP front sight + "602a95edda11d6478d5a06da", // PL-15 9x19 barrel + "60228924961b8d75ee233c32", // PL-15 pistol slide + "602286df23506e50807090c6", // PL-15 9x19 16-round magazine + "60229948cacb6b0506369e27", // PL-15 rear sight + "60228a76d62c9b14ed777a66", // PL-15 front sight + "5448c12b4bdc2d02308b456f", // PM 9x18PM 90-93 8-round magazine + "6374a822e629013b9c0645c8", // PM pistol slide + "6374a7e7417239a7bf00f042", // PM bakelite side grips + "63c6adcfb4ba094317063742", // PM rear sight + "5448c12b4bdc2d02308b456f", // PM 9x18PM 90-93 8-round magazine + "6374a822e629013b9c0645c8", // PM pistol slide + "6374a7e7417239a7bf00f042", // PM bakelite side grips + "63c6adcfb4ba094317063742", // PM rear sight + "5448c12b4bdc2d02308b456f", // PM 9x18PM 90-93 8-round magazine + "56e05b06d2720bb2668b4586", // PB 9x18PM sound suppressor + "56e05a6ed2720bd0748b4567", // PB bakelite side grips + "633ec6ee025b096d320a3b15", // RSh-12 12.7x55 5-round cylinder + "633ec8e4025b096d320a3b1e", // RSh-12 pistol grip + "56d5a1f7d2720bb3418b456a", // P226 9x19 112mm barrel + "56d5a2bbd2720bb8418b456a", // P226 polymer pistol grip (Black) + "56d5a407d2720bb3418b456b", // P226R MK25 pistol slide + "56d59948d2720bb7418b4582", // P226 9x19 15-round magazine + "56d5a77ed2720b90418b4568", // P226 rear sight + "56d5a661d2720bd8418b456b", // P226 front sight + "59f99a7d86f7745b134aa97b", // SR-1MP 9x21 18-round magazine + "5a17fb03fcdbcbcae668728f", // APS 9x18PM 20-round magazine + "5a17fc70fcdbcb0176308b3d", // APS bakelite side-pieces + "5aba62f8d8ce87001943946b", // APS front sight + "5aba637ad8ce87001773e17f", // APS rear sight + "571a26d524597720680fbe8a", // TT 7.62x25 116mm barrel + "571a282c2459771fb2755a69", // TT side grips + "571a29dc2459771fb2755a6a", // TT 7.62x25 tt-105 8-round magazine + "5b3baf8f5acfc40dc5296692", // TT 7.62x25 116mm gilded barrel + "5b3cadf35acfc400194776a0", // TT ornated side grips + "571a29dc2459771fb2755a6a", // TT 7.62x25 tt-105 8-round magazine + "576a5ed62459771e9c2096cb", // MP-443 "Grach" 9x19 18-round magazine + "576a63cd2459771e796e0e11", // MP-443 "Grach" polymer pistol grip + "5de8eac42a78646d96665d91", // MP9 9x19 30-round magazine + "5de910da8b6c4240ba2651b5", // MP9 stock + "5e0090f7e9dc277128008b93", // MP9 9x19 upper receiver + "5de922d4b11454561e39239f", // MP9 charging handle + "5de8fbf2b74cd90030650c79", // MP9 bottom rail + "5de8fb539f98ac2bc659513a", // MP9 rear sight + "5de8eac42a78646d96665d91", // MP9 9x19 30-round magazine + "5de910da8b6c4240ba2651b5", // MP9 stock + "5de8fbad2fbe23140d3ee9c4", // MP9-N vertical foregrip + "5de8e67c4a9f347bc92edbd7", // MP9-N 9x19 upper receiver + "5de922d4b11454561e39239f", // MP9 charging handle + "5de8fb539f98ac2bc659513a", // MP9 rear sight + "5de8fc0b205ddc616a6bc51b", // MP9 side rail + "5cc70093e4a949033c734312", // FN P90 5.7x28 50-round magazine + "5cc700b9e4a949000f0f0f25", // FN P90 stock + "5cc70102e4a949035e43ba74", // FN P90 5.7x28 upper receiver + "5cc701aae4a949000e1ea45c", // FN P90 5.7x28 10.5 inch barrel + "5cc6ea78e4a949000e1ea3c1", // FN P90 charging handle + "5cc700cae4a949035e43ba72", // FN P90 buttpad + "5cebec38d7f00c00110a652a", // FN P90 Ring Sight reflex sight + "5cc70146e4a949000d73bf6b", // FN P90 upper receiver side rail + "5cc70146e4a949000d73bf6b", // FN P90 upper receiver side rail + "5cc82796e24e8d000f5859a8", // FN P90 5.7x28 flash hider + "5d2f213448f0355009199284", // HK MP5 9x19 20-round magazine + "5d2f261548f03576f500e7b7", // HK MP5K 9x19 upper receiver + "5d2f2d5748f03572ec0c0139", // HK MP5K cocking handle + "5d2f259b48f0355a844acd74", // HK MP5K polymer handguard + "5926d2be86f774134d668e4e", // HK MP5 Drum rear sight + "5d2f25bc48f03502573e5d85", // HK MP5K End Cap stock + "5926c3b286f774640d189b6b", // HK MP5 9x19 30-round magazine + "5926c0df86f77462f647f764", // HK MP5 9x19 upper receiver + "5926c32286f774616e42de99", // HK MP5 cocking handle + "5926c36d86f77467a92a8629", // HK MP5 Wide Tropical polymer handguard + "5926d2be86f774134d668e4e", // HK MP5 Drum rear sight + "5926d3c686f77410de68ebc8", // HK MP5 A2 stock + "5926e16e86f7742f5a0f7ecb", // HK MP5 3-lug thread protector + "5ba264f6d4351e0034777d52", // HK MP7 4.6x30 20-round magazine + "5ba26acdd4351e003562908e", // HK MP7A1 4.6x30 flash hider + "5ba26b01d4351e0085325a51", // HK MP7 flip-up front sight + "5ba26b17d4351e00367f9bdd", // HK MP7 flip-up rear sight + "5bcf0213d4351e0085327c17", // HK MP7A1 stock + "5ba264f6d4351e0034777d52", // HK MP7 4.6x30 20-round magazine + "5ba26acdd4351e003562908e", // HK MP7A1 4.6x30 flash hider + "5ba26b01d4351e0085325a51", // HK MP7 flip-up front sight + "5ba26b17d4351e00367f9bdd", // HK MP7 flip-up rear sight + "5bd704e7209c4d00d7167c31", // HK MP7A2 stock + "57d152ec245977144076ccdf", // PP-91 "Kedr" polymer pistol grip + "57d1519e24597714373db79d", // PP-91 "Kedr" 9x18PM 30-round magazine + "5fc3e466187fea44d52eda90", // HK UMP .45 ACP 25-round magazine + "5fc3e4ee7283c4046c5814af", // HK UMP polymer stock + "5fc3e4a27283c4046c5814ab", // HK UMP .45 ACP 8 inch barrel + "5fc53954f8b6a877a729eaeb", // HK UMP bottom handguard rail + "5fc5396e900b1d5091531e72", // HK UMP side handguard rail + "5fc5396e900b1d5091531e72", // HK UMP side handguard rail + "5998517986f7746017232f7e", // PP-19-01 "Vityaz" pistol grip + "599851db86f77467372f0a18", // PP-19-01 "Vityaz" metal skeleton stock + "599860ac86f77436b225ed1a", // PP-19-01 "Vityaz" 9x19 30-round magazine + "5998597786f77414ea6da093", // PP-19-01 "Vityaz" 9x19 muzzle brake-compensator + "59985a8086f77414ec448d1a", // PP-19-01 "Vityaz" dust cover + "599860e986f7743bb57573a6", // PP-19-01 "Vityaz" rear sight + "59ccd11386f77428f24a488f", // PP-19-01 "Vityaz" gas tube + "5648b1504bdc2d9d488b4584", // AK-74 polymer handguard (6P20 Sb.9) + "5ea03e9400685063ec28bfa4", // PPSh-41 stock + "5ea034eb5aad6446a939737b", // PPSh-41 7.62x25 35-round magazine + "5ea03e5009aa976f2e7a514b", // PPSh-41 dust cover + "5ea02bb600685063ec28bfa1", // PPSh-41 7.62x25 10.6 inch barrel + "57d152ec245977144076ccdf", // PP-91 "Kedr" polymer pistol grip + "57d1519e24597714373db79d", // PP-91 "Kedr" 9x18PM 30-round magazine + "57d152ec245977144076ccdf", // PP-91 "Kedr" polymer pistol grip + "57f3c7e024597738ea4ba286", // PP-91-01 "Kedr-B" threaded suppressor adapter + "57d1519e24597714373db79d", // PP-91 "Kedr" 9x18PM 30-round magazine + "57f3c8cc2459773ec4480328", // PP-91-01 "Kedr-B" 9x18PM sound suppressor + "5894a51286f77426d13baf02", // MPX pistol grip + "5894a05586f774094708ef75", // MPX 9x19 30-round magazine + "5894a5b586f77426d2590767", // MPX GEN1 9x19 upper receiver + "5894a13e86f7742405482982", // MPX/MCX collapsing/telescoping stock + "58949edd86f77409483e16a9", // MPX double latch charging handle + "5894a2c386f77427140b8342", // MPX 9x19 203mm barrel + "5894a42086f77426d2590762", // MPX GEN1 handguard + "5894a81786f77427140b8347", // MPX flip-up rear sight + "58949dea86f77409483e16a8", // MPX A2 9x19 flash hider + "5894a73486f77426d259076c", // MPX flip-up front sight + "58a56f8d86f774651579314c", // MPX GEN1 handguard 2 inch rail + "58a5c12e86f7745d585a2b9e", // MPX GEN1 handguard 4 inch rail + "58a56f8d86f774651579314c", // MPX GEN1 handguard 2 inch rail + "633a98eab8b0506e48497c1a", // SR-2M 9x21 20-round magazine + "62e2a754b6c0ee2f230cee0f", // SR-2M 9x21 hand stopper + "62e292e7b6c0ee2f230cee00", // SR-2M top-folding stock + "62e27a7865f0b1592a49e17b", // SR-2M dust cover + "62e15547db1a5c41971c1b5e", // SR-2M polymer handguard + "637b9c37b7e3bc41b21ce71a", // SR-2M pistol grip + "62ed189fb3608410ef5a2bfc", // SR-2M short side rail + "5998517986f7746017232f7e", // PP-19-01 "Vityaz" pistol grip + "599851db86f77467372f0a18", // PP-19-01 "Vityaz" metal skeleton stock + "5998529a86f774647f44f421", // Saiga-9 9x19 sb.7 10-round magazine + "5998598e86f7740b3f498a86", // Saiga-9 9x19 muzzle brake-compensator + "59985a8086f77414ec448d1a", // PP-19-01 "Vityaz" dust cover + "599860e986f7743bb57573a6", // PP-19-01 "Vityaz" rear sight + "59ccd11386f77428f24a488f", // PP-19-01 "Vityaz" gas tube + "5648b1504bdc2d9d488b4584", // AK-74 polymer handguard (6P20 Sb.9) + "602e71bd53a60014f9705bfa", // AR-15 DLG Tactical DLG-123 pistol grip + "5a7ad2e851dfba0016153692", // Glock 9x19 "Big Stick" 33-round magazine + "602e63fb6335467b0c5ac94d", // STM-9 9x19 upper receiver + "602e3f1254072b51b239f713", // AR-15 Soyuz-TM buffer tube + "6033749e88382f4fab3fd2c5", // AR-15 MASP Industries Ambidextrous Battle Charging Handle + "602f85fd9b513876d4338d9c", // STM-9 magwell + "603372b4da11d6478d5a07ff", // STM-9 9x19 10.5 inch barrel + "6034e3cb0ddce744014cb870", // AR-15 Soyuz-TM 9 inch M-LOK handguard + "602e620f9b513876d4338d9a", // AR-15 FAB Defense GL-CORE buttstock + "60337f5dce399e10262255d1", // STM-9 9x19 muzzle brake + "5fb651b52b1b027b1f50bcff", // Glock .45 ACP 13-round magazine + "5fb6567747ce63734e3fa1dc", // KRISS Defiance low profile flip-up front sight + "5fb6564947ce63734e3fa1da", // KRISS Defiance low profile flip-up rear sight + "5fb6558ad6f0b2136f2d7eb7", // KRISS Vector Gen.2 folding stock + "5fb65363d1409e5ca04b54f5", // KRISS Vector .45 ACP 5 inch barrel + "5fbb976df9986c4cff3fe5f2", // KRISS Vector bottom rail + "5fce0f9b55375d18a253eff2", // KRISS Vector side rail + "5fce0f9b55375d18a253eff2", // KRISS Vector side rail + "5fb6548dd1409e5ca04b54f9", // KRISS Vector .45 ACP thread protection cap + "5a718b548dc32e000d46d262", // Glock 9x19 17-round magazine + "5fb6567747ce63734e3fa1dc", // KRISS Defiance low profile flip-up front sight + "5fb6564947ce63734e3fa1da", // KRISS Defiance low profile flip-up rear sight + "5fb6558ad6f0b2136f2d7eb7", // KRISS Vector Gen.2 folding stock + "5fbbc366ca32ed67276c1557", // KRISS Vector 9x19 5 inch barrel + "5fbb976df9986c4cff3fe5f2", // KRISS Vector bottom rail + "5fce0f9b55375d18a253eff2", // KRISS Vector side rail + "5fce0f9b55375d18a253eff2", // KRISS Vector side rail + "5fbbc34106bde7524f03cbe9", // KRISS Vector 9x19 thread protection cap + "6259c2c1d714855d182bad85", // Benelli M3 Super 90 12ga 500mm barrel + "6259c4347d6aab70bc23a190", // Benelli M3 forend + "625ff2ccb8c587128c1a01dd", // Benelli M3 Super 90 12ga 5-shell magazine cap + "6259c3387d6aab70bc23a18d", // Benelli M3 telescopic stock + "625ed7c64d9b6612df732146", // Benelli M3 Super 90 upper receiver top rail + "625ebcef6f53af4aa66b44dc", // Benelli M3 Ghost Ring rear sight + "625ec45bb14d7326ac20f572", // Benelli M3 Super 90 charging handle + "6259c3d8012d6678ec38eeb8", // Benelli M3 telescopic stock pistol grip + "55d4491a4bdc2d882f8b456e", // MP-133 12ga 510mm barrel + "55d45d3f4bdc2d972f8b456c", // MP-133 beechwood forestock + "55d484b44bdc2d1d4e8b456d", // MP-133 12ga 6-shell magazine + "56083cba4bdc2de22e8b456f", // MP-133/153 wooden stock + "60dc519adf4c47305f6d410d", // MTs-255-12 12ga cylinder + "612368f58b401f4f51239b33", // MTs-255-12 12ga 755mm barrel with rib + "612781056f3d944a17348d60", // MTs-255-12 wooden stock + "6123649463849f3d843da7c4", // MTs-255-12 beechwood forestock + "619d36da53b4d42ee724fae4", // MTs-255-12 12ga choke + "5e87071478f43e51ca2de5e1", // Mossberg 590A1 12ga 20 inch barrel + "5e87076ce2db31558c75a11d", // Mossberg 590A1 SpeedFeed short handguard + "5e87080c81c4ed43e83cefda", // Mossberg 590A1 12ga 8-shell magazine cap + "5e87116b81c4ed43e83cefdd", // Mossberg 590A1 polymer stock + "5e87114fe2db31558c75a120", // Mossberg 590 Ghost Ring rear sight + "5e8708d4ae379e67d22e0102", // Mossberg 590 Ghost Ring front sight + "5a787f7ac5856700177af660", // M870 12ga 508mm barrel + "5a788089c5856700142fdd9c", // M870 SpeedFeed Short handguard + "5a7882dcc5856700177af662", // M870 12ga 4-shell magazine cap + "5a7880d0c5856700142fdd9d", // M870 SPS polymer stock + "576169e62459773c69055191", // SOK-12 polymer handguard (Sb.7-1) + "576167ab2459773cad038c43", // SOK-12 thread protection tube + "5649ade84bdc2d1b2b8b4587", // AK polymer pistol grip (6P1 Sb.8) + "57616c112459773cce774d66", // SOK-12 dust cover (Sb.0-2) + "57a9b9ce2459770ee926038d", // SOK-12 rear sight + "57616ca52459773c69055192", // SOK-12 AK-style stock + "57616a9e2459773c7a400234", // SOK-12 12/76 sb.5 5-round magazine + "56deec93d2720bec348b4568", // MP-153 12ga 750mm barrel + "56deed6ed2720b4c698b4583", // MP-153 polymer forestock + "56deee15d2720bee328b4567", // MP-153 12ga 4-shell magazine cap + "56083be64bdc2d20478b456f", // MP-133/153 plastic stock + "6076c1b9f2cb2e02a42acedc", // MP-155 12ga 510mm barrel + "607d5aa50494a626335e12ed", // MP-155 walnut forestock + "6076c87f232e5a31c233d50e", // MP-155 12ga 6-shell magazine + "607d5a891246154cad35d6aa", // MP-155 walnut stock + "5a38ee51c4a282000c5a955c", // TOZ-106 20ga MTs 20-01 Sb.3 2-shot magazine + "5a38ef1fc4a282000b1521f6", // TOZ-106 stock + "5a38eecdc4a282329a73b512", // TOZ-106 002 pistol grip + "61f4012adfc9f01a816adda1", // MP-18 7.62x54R 600mm barrel + "61f7b234ea4ab34f2f59c3ec", // MP-18 wooden stock + "61f7b85367ddd414173fdb36", // MP-18 wooden handguard + "64748d02d1c009260702b526", // MP-43 12ga sawed-off 310mm barrel + "55d447bb4bdc2d892f8b456f", // MP-43-1C 12ga 725mm barrel + "611a31ce5b7ffe001b4649d1", // MP-43-1C buttpad + "5e848d2eea0a7c419c2f9bfd", // KS-23 23x75 700mm barrel + "5e848d51e4dbc5266a4ec63b", // KS-23M forestock + "5f647d9f8499b57dc40ddb93", // KS-23M 23x75 3-shell magazine cap + "5e848db4681bea2ada00daa9", // KS-23 wooden stock + "59c6633186f7740cf0493bb9", // AK-74 gas tube (6P20 Sb.1-2) + "5ac72e895acfc43b321d4bd5", // AK-104 7.62x39 muzzle brake-compensator (6P46 0-20) + "5649ade84bdc2d1b2b8b4587", // AK polymer pistol grip (6P1 Sb.8) + "5ac50da15acfc4001718d287", // AK-74M dust cover (6P34 0-1) + "5ac733a45acfc400192630e2", // AK-105 rear sight (6P44 Sb.1-30) + "5ac50c185acfc400163398d4", // AK-74M polymer stock (6P34 Sb.15) + "5ac66bea5acfc43b321d4aec", // AK-103 7.62x39 30-round magazine + "668670e3fb75ee4a5e02eb16", // UZI Pro Nut + "669946c157df3e2b4e0a0dc5", // UZI pistol grip cover + "62444cd3674028188b052799", // HK G36 side handguard rail + "622f16a1a5958f63c67f1737", // HK G36 hand stop + "619f52454c58466fe122843b", // Chiappa Rhino Red Fiber Optic front sight + "658188edf026a90c1708c827", // Built-in face shield + "65818e4e566d2de69901b1b1", // Built-in face shield + "5648b1504bdc2d9d488b4584" // AK-74 polymer handguard (6P20 Sb.9) + ] + + // 2d array of rewards sorted by rarity + public presets = [ + [ // _meta + { + "Id": "67b819840100185d5365a2ce", + "Name": "long range supr", + "Root": "67b81993290eea4b80037e58", + "Items": [ + { + "_id": "67b81993290eea4b80037e58", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b81993290eea4b80037e59", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b81993290eea4b80037e58" + }, + { + "_id": "67b81993290eea4b80037e5a", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67b81993290eea4b80037e58" + }, + { + "_id": "67b81993290eea4b80037e5b", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67b81993290eea4b80037e58" + }, + { + "_id": "67b81993290eea4b80037e5c", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b81993290eea4b80037e58" + }, + { + "_id": "67b81993290eea4b80037e5d", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b81993290eea4b80037e58" + }, + { + "_id": "67b81993290eea4b80037e5e", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b81993290eea4b80037e5b" + }, + { + "_id": "67b81993290eea4b80037e5f", + "_tpl": "63d3d44a2a49307baf09386d", + "slotId": "mod_barrel", + "parentId": "67b81993290eea4b80037e5b" + }, + { + "_id": "67b81993290eea4b80037e60", + "_tpl": "5c78f2492e221600114c9f04", + "slotId": "mod_handguard", + "parentId": "67b81993290eea4b80037e5b" + }, + { + "_id": "67b81993290eea4b80037e61", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b81993290eea4b80037e5c" + }, + { + "_id": "67b81993290eea4b80037e62", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b81993290eea4b80037e5e" + }, + { + "_id": "67b81993290eea4b80037e63", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67b81993290eea4b80037e5f" + }, + { + "_id": "67b81993290eea4b80037e64", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b81993290eea4b80037e5f" + }, + { + "_id": "67b81993290eea4b80037e65", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67b81993290eea4b80037e60" + }, + { + "_id": "67b81993290eea4b80037e66", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b81993290eea4b80037e60" + }, + { + "_id": "67b81993290eea4b80037e67", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b81993290eea4b80037e60" + }, + { + "_id": "67b81993290eea4b80037e68", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67b81993290eea4b80037e63" + }, + { + "_id": "67b81993290eea4b80037e69", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b81993290eea4b80037e66" + }, + { + "_id": "67b81993290eea4b80037e6a", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b81993290eea4b80037e61" + } + ] + }, + { + "Id": "67b819e10100185d5389fef6", + "Name": "close range supr", + "Root": "67b819ea290eea4b80038d24", + "Items": [ + { + "_id": "67b819ea290eea4b80038d24", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b819ea290eea4b80038d25", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b819ea290eea4b80038d24" + }, + { + "_id": "67b819ea290eea4b80038d26", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67b819ea290eea4b80038d24" + }, + { + "_id": "67b819ea290eea4b80038d27", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67b819ea290eea4b80038d24" + }, + { + "_id": "67b819ea290eea4b80038d28", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b819ea290eea4b80038d24" + }, + { + "_id": "67b819ea290eea4b80038d29", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b819ea290eea4b80038d24" + }, + { + "_id": "67b819ea290eea4b80038d2a", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b819ea290eea4b80038d27" + }, + { + "_id": "67b819ea290eea4b80038d2b", + "_tpl": "63d3d44a2a49307baf09386d", + "slotId": "mod_barrel", + "parentId": "67b819ea290eea4b80038d27" + }, + { + "_id": "67b819ea290eea4b80038d2c", + "_tpl": "5c78f2492e221600114c9f04", + "slotId": "mod_handguard", + "parentId": "67b819ea290eea4b80038d27" + }, + { + "_id": "67b819ea290eea4b80038d2d", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b819ea290eea4b80038d28" + }, + { + "_id": "67b819ea290eea4b80038d2e", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b819ea290eea4b80038d2b" + }, + { + "_id": "67b819ea290eea4b80038d2f", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b819ea290eea4b80038d2b" + }, + { + "_id": "67b819ea290eea4b80038d30", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67b819ea290eea4b80038d2c" + }, + { + "_id": "67b819ea290eea4b80038d31", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b819ea290eea4b80038d2c" + }, + { + "_id": "67b819ea290eea4b80038d32", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b819ea290eea4b80038d2c" + }, + { + "_id": "67b819ea290eea4b80038d33", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b819ea290eea4b80038d2e" + }, + { + "_id": "67b819ea290eea4b80038d34", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b819ea290eea4b80038d31" + }, + { + "_id": "67b819ea290eea4b80038d35", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b819ea290eea4b80038d2d" + } + ] + }, + { + "Id": "67b81a500100185d53c88220", + "Name": "close range supr short barl", + "Root": "67b81a6d290eea4b8003ab1c", + "Items": [ + { + "_id": "67b81a6d290eea4b8003ab1c", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b81a6d290eea4b8003ab1d", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b81a6d290eea4b8003ab1c" + }, + { + "_id": "67b81a6d290eea4b8003ab1e", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b81a6d290eea4b8003ab1c" + }, + { + "_id": "67b81a6d290eea4b8003ab1f", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67b81a6d290eea4b8003ab1c" + }, + { + "_id": "67b81a6d290eea4b8003ab20", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b81a6d290eea4b8003ab1c" + }, + { + "_id": "67b81a6d290eea4b8003ab21", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b81a6d290eea4b8003ab1c" + }, + { + "_id": "67b81a6d290eea4b8003ab22", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b81a6d290eea4b8003ab1f" + }, + { + "_id": "67b81a6d290eea4b8003ab23", + "_tpl": "63d3ce0446bd475bcb50f55f", + "slotId": "mod_barrel", + "parentId": "67b81a6d290eea4b8003ab1f" + }, + { + "_id": "67b81a6d290eea4b8003ab24", + "_tpl": "5c78f2612e221600114c9f0d", + "slotId": "mod_handguard", + "parentId": "67b81a6d290eea4b8003ab1f" + }, + { + "_id": "67b81a6d290eea4b8003ab25", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b81a6d290eea4b8003ab20" + }, + { + "_id": "67b81a6d290eea4b8003ab26", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b81a6d290eea4b8003ab23" + }, + { + "_id": "67b81a6d290eea4b8003ab27", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b81a6d290eea4b8003ab23" + }, + { + "_id": "67b81a6d290eea4b8003ab28", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b81a6d290eea4b8003ab24" + }, + { + "_id": "67b81a6d290eea4b8003ab29", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b81a6d290eea4b8003ab26" + }, + { + "_id": "67b81a6d290eea4b8003ab2a", + "_tpl": "5c1bc5612e221602b5429350", + "slotId": "mod_foregrip", + "parentId": "67b81a6d290eea4b8003ab28" + }, + { + "_id": "67b81a6d290eea4b8003ab2b", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b81a6d290eea4b8003ab25" + } + ] + }, + { + "Id": "67b81aee0100185d53bf8b8c", + "Name": "close range supr tan", + "Root": "67b81af6290eea4b8003b978", + "Items": [ + { + "_id": "67b81af6290eea4b8003b978", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b81af6290eea4b8003b979", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "slotId": "mod_pistol_grip", + "parentId": "67b81af6290eea4b8003b978" + }, + { + "_id": "67b81af6290eea4b8003b97a", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67b81af6290eea4b8003b978" + }, + { + "_id": "67b81af6290eea4b8003b97b", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67b81af6290eea4b8003b978" + }, + { + "_id": "67b81af6290eea4b8003b97c", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b81af6290eea4b8003b978" + }, + { + "_id": "67b81af6290eea4b8003b97d", + "_tpl": "5b2240bf5acfc40dc528af69", + "slotId": "mod_charge", + "parentId": "67b81af6290eea4b8003b978" + }, + { + "_id": "67b81af6290eea4b8003b97e", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b81af6290eea4b8003b97b" + }, + { + "_id": "67b81af6290eea4b8003b97f", + "_tpl": "63d3ce0446bd475bcb50f55f", + "slotId": "mod_barrel", + "parentId": "67b81af6290eea4b8003b97b" + }, + { + "_id": "67b81af6290eea4b8003b980", + "_tpl": "63888bbd28e5cc32cc09d2b6", + "slotId": "mod_handguard", + "parentId": "67b81af6290eea4b8003b97b" + }, + { + "_id": "67b81af6290eea4b8003b981", + "_tpl": "5c18b9192e2216398b5a8104", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b81af6290eea4b8003b97b" + }, + { + "_id": "67b81af6290eea4b8003b982", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67b81af6290eea4b8003b97c" + }, + { + "_id": "67b81af6290eea4b8003b983", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67b81af6290eea4b8003b97f" + }, + { + "_id": "67b81af6290eea4b8003b984", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b81af6290eea4b8003b97f" + }, + { + "_id": "67b81af6290eea4b8003b985", + "_tpl": "6388c4478d895f557a0c6512", + "slotId": "mod_mount_002", + "parentId": "67b81af6290eea4b8003b980" + }, + { + "_id": "67b81af6290eea4b8003b986", + "_tpl": "6388c4ac8d895f557a0c6515", + "slotId": "mod_mount_003", + "parentId": "67b81af6290eea4b8003b980" + }, + { + "_id": "67b81af6290eea4b8003b987", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67b81af6290eea4b8003b983" + }, + { + "_id": "67b81af6290eea4b8003b988", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b81af6290eea4b8003b985" + }, + { + "_id": "67b81af6290eea4b8003b989", + "_tpl": "5fce0cf655375d18a253eff0", + "slotId": "mod_foregrip", + "parentId": "67b81af6290eea4b8003b986" + }, + { + "_id": "67b81af6290eea4b8003b98a", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b81af6290eea4b8003b982" + } + ] + }, + { + "Id": "67b81b550100185d5347616d", + "Name": "long range supr scope", + "Root": "67b81b5b290eea4b8003d75c", + "Items": [ + { + "_id": "67b81b5b290eea4b8003d75c", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b81b5b290eea4b8003d75d", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b81b5b290eea4b8003d75c" + }, + { + "_id": "67b81b5b290eea4b8003d75e", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67b81b5b290eea4b8003d75c" + }, + { + "_id": "67b81b5b290eea4b8003d75f", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67b81b5b290eea4b8003d75c" + }, + { + "_id": "67b81b5b290eea4b8003d760", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b81b5b290eea4b8003d75c" + }, + { + "_id": "67b81b5b290eea4b8003d761", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b81b5b290eea4b8003d75c" + }, + { + "_id": "67b81b5b290eea4b8003d762", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b81b5b290eea4b8003d75f" + }, + { + "_id": "67b81b5b290eea4b8003d763", + "_tpl": "63d3d44a2a49307baf09386d", + "slotId": "mod_barrel", + "parentId": "67b81b5b290eea4b8003d75f" + }, + { + "_id": "67b81b5b290eea4b8003d764", + "_tpl": "5c78f2492e221600114c9f04", + "slotId": "mod_handguard", + "parentId": "67b81b5b290eea4b8003d75f" + }, + { + "_id": "67b81b5b290eea4b8003d765", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b81b5b290eea4b8003d760" + }, + { + "_id": "67b81b5b290eea4b8003d766", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b81b5b290eea4b8003d762" + }, + { + "_id": "67b81b5b290eea4b8003d767", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b81b5b290eea4b8003d763" + }, + { + "_id": "67b81b5b290eea4b8003d768", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b81b5b290eea4b8003d763" + }, + { + "_id": "67b81b5b290eea4b8003d769", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67b81b5b290eea4b8003d764" + }, + { + "_id": "67b81b5b290eea4b8003d76a", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b81b5b290eea4b8003d764" + }, + { + "_id": "67b81b5b290eea4b8003d76b", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b81b5b290eea4b8003d764" + }, + { + "_id": "67b81b5b290eea4b8003d76c", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b81b5b290eea4b8003d767" + }, + { + "_id": "67b81b5b290eea4b8003d76d", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b81b5b290eea4b8003d76a" + }, + { + "_id": "67b81b5b290eea4b8003d76e", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b81b5b290eea4b8003d765" + } + ] + }, + { + "Id": "67b821a90100185d5303ff53", + "Name": "long range supr holo long", + "Root": "67b821b54007b92e1c0470c3", + "Items": [ + { + "_id": "67b821b54007b92e1c0470c3", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b821b54007b92e1c0470c4", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b821b54007b92e1c0470c3" + }, + { + "_id": "67b821b54007b92e1c0470c5", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67b821b54007b92e1c0470c3" + }, + { + "_id": "67b821b54007b92e1c0470c6", + "_tpl": "59bfe68886f7746004266202", + "slotId": "mod_reciever", + "parentId": "67b821b54007b92e1c0470c3" + }, + { + "_id": "67b821b54007b92e1c0470c7", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b821b54007b92e1c0470c3" + }, + { + "_id": "67b821b54007b92e1c0470c8", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b821b54007b92e1c0470c3" + }, + { + "_id": "67b821b54007b92e1c0470c9", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b821b54007b92e1c0470c6" + }, + { + "_id": "67b821b54007b92e1c0470ca", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67b821b54007b92e1c0470c6" + }, + { + "_id": "67b821b54007b92e1c0470cb", + "_tpl": "5c78f2492e221600114c9f04", + "slotId": "mod_handguard", + "parentId": "67b821b54007b92e1c0470c6" + }, + { + "_id": "67b821b54007b92e1c0470cc", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b821b54007b92e1c0470c7" + }, + { + "_id": "67b821b54007b92e1c0470cd", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b821b54007b92e1c0470ca" + }, + { + "_id": "67b821b54007b92e1c0470ce", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b821b54007b92e1c0470ca" + }, + { + "_id": "67b821b54007b92e1c0470cf", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b821b54007b92e1c0470cb" + }, + { + "_id": "67b821b54007b92e1c0470d0", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b821b54007b92e1c0470cd" + }, + { + "_id": "67b821b54007b92e1c0470d1", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b821b54007b92e1c0470cf" + }, + { + "_id": "67b821b54007b92e1c0470d2", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b821b54007b92e1c0470cc" + } + ] + }, + { + "Id": "67b8226e0100185d53da3352", + "Name": "long range supr 2x fancy", + "Root": "67b8227d4007b92e1c04ab02", + "Items": [ + { + "_id": "67b8227d4007b92e1c04ab02", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8227d4007b92e1c04ab03", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b8227d4007b92e1c04ab02" + }, + { + "_id": "67b8227d4007b92e1c04ab04", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67b8227d4007b92e1c04ab02" + }, + { + "_id": "67b8227d4007b92e1c04ab05", + "_tpl": "59bfe68886f7746004266202", + "slotId": "mod_reciever", + "parentId": "67b8227d4007b92e1c04ab02" + }, + { + "_id": "67b8227d4007b92e1c04ab06", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b8227d4007b92e1c04ab02" + }, + { + "_id": "67b8227d4007b92e1c04ab07", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b8227d4007b92e1c04ab02" + }, + { + "_id": "67b8227d4007b92e1c04ab08", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8227d4007b92e1c04ab05" + }, + { + "_id": "67b8227d4007b92e1c04ab09", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67b8227d4007b92e1c04ab05" + }, + { + "_id": "67b8227d4007b92e1c04ab0a", + "_tpl": "6087e0336d0bd7580617bb7a", + "slotId": "mod_handguard", + "parentId": "67b8227d4007b92e1c04ab05" + }, + { + "_id": "67b8227d4007b92e1c04ab0b", + "_tpl": "6516e971a3d4c6497930b450", + "slotId": "mod_stock_000", + "parentId": "67b8227d4007b92e1c04ab06" + }, + { + "_id": "67b8227d4007b92e1c04ab0c", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b8227d4007b92e1c04ab09" + }, + { + "_id": "67b8227d4007b92e1c04ab0d", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b8227d4007b92e1c04ab09" + }, + { + "_id": "67b8227d4007b92e1c04ab0e", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b8227d4007b92e1c04ab0c" + }, + { + "_id": "67b8227d4007b92e1c04ab0f", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b8227d4007b92e1c04ab0b" + } + ] + }, + { + "Id": "67b8231e0100185d5316bf21", + "Name": "loud short range holoo", + "Root": "67b8232d4007b92e1c04ca37", + "Items": [ + { + "_id": "67b8232d4007b92e1c04ca37", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8232d4007b92e1c04ca38", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b8232d4007b92e1c04ca37" + }, + { + "_id": "67b8232d4007b92e1c04ca39", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b8232d4007b92e1c04ca37" + }, + { + "_id": "67b8232d4007b92e1c04ca3a", + "_tpl": "59bfe68886f7746004266202", + "slotId": "mod_reciever", + "parentId": "67b8232d4007b92e1c04ca37" + }, + { + "_id": "67b8232d4007b92e1c04ca3b", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b8232d4007b92e1c04ca37" + }, + { + "_id": "67b8232d4007b92e1c04ca3c", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b8232d4007b92e1c04ca37" + }, + { + "_id": "67b8232d4007b92e1c04ca3d", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8232d4007b92e1c04ca3a" + }, + { + "_id": "67b8232d4007b92e1c04ca3e", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67b8232d4007b92e1c04ca3a" + }, + { + "_id": "67b8232d4007b92e1c04ca3f", + "_tpl": "5b2cfa535acfc432ff4db7a0", + "slotId": "mod_handguard", + "parentId": "67b8232d4007b92e1c04ca3a" + }, + { + "_id": "67b8232d4007b92e1c04ca40", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b8232d4007b92e1c04ca3b" + }, + { + "_id": "67b8232d4007b92e1c04ca41", + "_tpl": "63ac5c9658d0485fc039f0b8", + "slotId": "mod_muzzle", + "parentId": "67b8232d4007b92e1c04ca3e" + }, + { + "_id": "67b8232d4007b92e1c04ca42", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b8232d4007b92e1c04ca3e" + }, + { + "_id": "67b8232d4007b92e1c04ca43", + "_tpl": "5b30bc285acfc47a8608615d", + "slotId": "mod_mount_000", + "parentId": "67b8232d4007b92e1c04ca3f" + }, + { + "_id": "67b8232d4007b92e1c04ca44", + "_tpl": "5b30bc165acfc40016387293", + "slotId": "mod_mount_001", + "parentId": "67b8232d4007b92e1c04ca3f" + }, + { + "_id": "67b8232d4007b92e1c04ca45", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b8232d4007b92e1c04ca43" + }, + { + "_id": "67b8232d4007b92e1c04ca46", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8232d4007b92e1c04ca44" + }, + { + "_id": "67b8232d4007b92e1c04ca47", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b8232d4007b92e1c04ca40" + } + ] + }, + { + "Id": "67b823b60100185d53b4da6a", + "Name": "loud long range bravo", + "Root": "67b823c14007b92e1c04f980", + "Items": [ + { + "_id": "67b823c14007b92e1c04f980", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b823c14007b92e1c04f981", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b823c14007b92e1c04f980" + }, + { + "_id": "67b823c14007b92e1c04f982", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b823c14007b92e1c04f980" + }, + { + "_id": "67b823c14007b92e1c04f983", + "_tpl": "59bfe68886f7746004266202", + "slotId": "mod_reciever", + "parentId": "67b823c14007b92e1c04f980" + }, + { + "_id": "67b823c14007b92e1c04f984", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b823c14007b92e1c04f980" + }, + { + "_id": "67b823c14007b92e1c04f985", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b823c14007b92e1c04f980" + }, + { + "_id": "67b823c14007b92e1c04f986", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b823c14007b92e1c04f983" + }, + { + "_id": "67b823c14007b92e1c04f987", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67b823c14007b92e1c04f983" + }, + { + "_id": "67b823c14007b92e1c04f988", + "_tpl": "5c78f2492e221600114c9f04", + "slotId": "mod_handguard", + "parentId": "67b823c14007b92e1c04f983" + }, + { + "_id": "67b823c14007b92e1c04f989", + "_tpl": "6516e971a3d4c6497930b450", + "slotId": "mod_stock_000", + "parentId": "67b823c14007b92e1c04f984" + }, + { + "_id": "67b823c14007b92e1c04f98a", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67b823c14007b92e1c04f986" + }, + { + "_id": "67b823c14007b92e1c04f98b", + "_tpl": "63ac5c9658d0485fc039f0b8", + "slotId": "mod_muzzle", + "parentId": "67b823c14007b92e1c04f987" + }, + { + "_id": "67b823c14007b92e1c04f98c", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b823c14007b92e1c04f987" + }, + { + "_id": "67b823c14007b92e1c04f98d", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67b823c14007b92e1c04f988" + }, + { + "_id": "67b823c14007b92e1c04f98e", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b823c14007b92e1c04f988" + }, + { + "_id": "67b823c14007b92e1c04f98f", + "_tpl": "5c78f2882e22165df16b832e", + "slotId": "mod_muzzle", + "parentId": "67b823c14007b92e1c04f988" + }, + { + "_id": "67b823c14007b92e1c04f990", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b823c14007b92e1c04f988" + }, + { + "_id": "67b823c14007b92e1c04f991", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b823c14007b92e1c04f98a" + }, + { + "_id": "67b823c14007b92e1c04f992", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b823c14007b92e1c04f98e" + }, + { + "_id": "67b823c14007b92e1c04f993", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b823c14007b92e1c04f989" + } + ] + }, + { + "Id": "67b8244d0100185d534a0121", + "Name": "small supr buris", + "Root": "67b8245d4007b92e1c0526de", + "Items": [ + { + "_id": "67b8245d4007b92e1c0526de", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8245d4007b92e1c0526df", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b8245d4007b92e1c0526de" + }, + { + "_id": "67b8245d4007b92e1c0526e0", + "_tpl": "5c6d46132e221601da357d56", + "slotId": "mod_magazine", + "parentId": "67b8245d4007b92e1c0526de" + }, + { + "_id": "67b8245d4007b92e1c0526e1", + "_tpl": "59bfe68886f7746004266202", + "slotId": "mod_reciever", + "parentId": "67b8245d4007b92e1c0526de" + }, + { + "_id": "67b8245d4007b92e1c0526e2", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b8245d4007b92e1c0526de" + }, + { + "_id": "67b8245d4007b92e1c0526e3", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b8245d4007b92e1c0526de" + }, + { + "_id": "67b8245d4007b92e1c0526e4", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67b8245d4007b92e1c0526e1" + }, + { + "_id": "67b8245d4007b92e1c0526e5", + "_tpl": "55d35ee94bdc2d61338b4568", + "slotId": "mod_barrel", + "parentId": "67b8245d4007b92e1c0526e1" + }, + { + "_id": "67b8245d4007b92e1c0526e6", + "_tpl": "5c78f2612e221600114c9f0d", + "slotId": "mod_handguard", + "parentId": "67b8245d4007b92e1c0526e1" + }, + { + "_id": "67b8245d4007b92e1c0526e7", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b8245d4007b92e1c0526e2" + }, + { + "_id": "67b8245d4007b92e1c0526e8", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8245d4007b92e1c0526e4" + }, + { + "_id": "67b8245d4007b92e1c0526e9", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b8245d4007b92e1c0526e5" + }, + { + "_id": "67b8245d4007b92e1c0526ea", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b8245d4007b92e1c0526e5" + }, + { + "_id": "67b8245d4007b92e1c0526eb", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b8245d4007b92e1c0526e6" + }, + { + "_id": "67b8245d4007b92e1c0526ec", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8245d4007b92e1c0526e6" + }, + { + "_id": "67b8245d4007b92e1c0526ed", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b8245d4007b92e1c0526e9" + }, + { + "_id": "67b8245d4007b92e1c0526ee", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b8245d4007b92e1c0526eb" + }, + { + "_id": "67b8245d4007b92e1c0526ef", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b8245d4007b92e1c0526e7" + } + ] + }, + { + "Id": "67b824e80100185d5311b19d", + "Name": "loud medium deltapoint", + "Root": "67b824f64007b92e1c055479", + "Items": [ + { + "_id": "67b824f64007b92e1c055479", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b824f64007b92e1c05547a", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b824f64007b92e1c055479" + }, + { + "_id": "67b824f64007b92e1c05547b", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b824f64007b92e1c055479" + }, + { + "_id": "67b824f64007b92e1c05547c", + "_tpl": "59bfe68886f7746004266202", + "slotId": "mod_reciever", + "parentId": "67b824f64007b92e1c055479" + }, + { + "_id": "67b824f64007b92e1c05547d", + "_tpl": "5c793fc42e221600114ca25d", + "slotId": "mod_stock", + "parentId": "67b824f64007b92e1c055479" + }, + { + "_id": "67b824f64007b92e1c05547e", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b824f64007b92e1c055479" + }, + { + "_id": "67b824f64007b92e1c05547f", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b824f64007b92e1c05547c" + }, + { + "_id": "67b824f64007b92e1c055480", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67b824f64007b92e1c05547c" + }, + { + "_id": "67b824f64007b92e1c055481", + "_tpl": "5b2cfa535acfc432ff4db7a0", + "slotId": "mod_handguard", + "parentId": "67b824f64007b92e1c05547c" + }, + { + "_id": "67b824f64007b92e1c055482", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b824f64007b92e1c05547d" + }, + { + "_id": "67b824f64007b92e1c055483", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b824f64007b92e1c05547f" + }, + { + "_id": "67b824f64007b92e1c055484", + "_tpl": "5b3a16655acfc40016387a2a", + "slotId": "mod_muzzle", + "parentId": "67b824f64007b92e1c055480" + }, + { + "_id": "67b824f64007b92e1c055485", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b824f64007b92e1c055480" + }, + { + "_id": "67b824f64007b92e1c055486", + "_tpl": "5b30bc285acfc47a8608615d", + "slotId": "mod_mount_000", + "parentId": "67b824f64007b92e1c055481" + }, + { + "_id": "67b824f64007b92e1c055487", + "_tpl": "5a7dbfc1159bd40016548fde", + "slotId": "mod_foregrip", + "parentId": "67b824f64007b92e1c055486" + }, + { + "_id": "67b824f64007b92e1c055488", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b824f64007b92e1c055486" + }, + { + "_id": "67b824f64007b92e1c055489", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b824f64007b92e1c055482" + } + ] + }, + { + "Id": "67b825570100185d5305e89c", + "Name": "loud small supr buris", + "Root": "67b825604007b92e1c057319", + "Items": [ + { + "_id": "67b825604007b92e1c057319", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b825604007b92e1c05731a", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b825604007b92e1c057319" + }, + { + "_id": "67b825604007b92e1c05731b", + "_tpl": "5c6d46132e221601da357d56", + "slotId": "mod_magazine", + "parentId": "67b825604007b92e1c057319" + }, + { + "_id": "67b825604007b92e1c05731c", + "_tpl": "59bfe68886f7746004266202", + "slotId": "mod_reciever", + "parentId": "67b825604007b92e1c057319" + }, + { + "_id": "67b825604007b92e1c05731d", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b825604007b92e1c057319" + }, + { + "_id": "67b825604007b92e1c05731e", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b825604007b92e1c057319" + }, + { + "_id": "67b825604007b92e1c05731f", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67b825604007b92e1c05731c" + }, + { + "_id": "67b825604007b92e1c057320", + "_tpl": "55d35ee94bdc2d61338b4568", + "slotId": "mod_barrel", + "parentId": "67b825604007b92e1c05731c" + }, + { + "_id": "67b825604007b92e1c057321", + "_tpl": "5c78f2612e221600114c9f0d", + "slotId": "mod_handguard", + "parentId": "67b825604007b92e1c05731c" + }, + { + "_id": "67b825604007b92e1c057322", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b825604007b92e1c05731d" + }, + { + "_id": "67b825604007b92e1c057323", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b825604007b92e1c05731f" + }, + { + "_id": "67b825604007b92e1c057324", + "_tpl": "63ac5c9658d0485fc039f0b8", + "slotId": "mod_muzzle", + "parentId": "67b825604007b92e1c057320" + }, + { + "_id": "67b825604007b92e1c057325", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b825604007b92e1c057320" + }, + { + "_id": "67b825604007b92e1c057326", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b825604007b92e1c057321" + }, + { + "_id": "67b825604007b92e1c057327", + "_tpl": "5c78f2882e22165df16b832e", + "slotId": "mod_muzzle", + "parentId": "67b825604007b92e1c057321" + }, + { + "_id": "67b825604007b92e1c057328", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b825604007b92e1c057321" + }, + { + "_id": "67b825604007b92e1c057329", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b825604007b92e1c057326" + }, + { + "_id": "67b825604007b92e1c05732a", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b825604007b92e1c057322" + } + ] + }, + { + "Id": "67b825bb0100185d5315f517", + "Name": "loud short holo", + "Root": "67b825c74007b92e1c059271", + "Items": [ + { + "_id": "67b825c74007b92e1c059271", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b825c74007b92e1c059272", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b825c74007b92e1c059271" + }, + { + "_id": "67b825c74007b92e1c059273", + "_tpl": "544a37c44bdc2d25388b4567", + "slotId": "mod_magazine", + "parentId": "67b825c74007b92e1c059271" + }, + { + "_id": "67b825c74007b92e1c059274", + "_tpl": "59bfe68886f7746004266202", + "slotId": "mod_reciever", + "parentId": "67b825c74007b92e1c059271" + }, + { + "_id": "67b825c74007b92e1c059275", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b825c74007b92e1c059271" + }, + { + "_id": "67b825c74007b92e1c059276", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b825c74007b92e1c059271" + }, + { + "_id": "67b825c74007b92e1c059277", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b825c74007b92e1c059274" + }, + { + "_id": "67b825c74007b92e1c059278", + "_tpl": "55d35ee94bdc2d61338b4568", + "slotId": "mod_barrel", + "parentId": "67b825c74007b92e1c059274" + }, + { + "_id": "67b825c74007b92e1c059279", + "_tpl": "5c78f2612e221600114c9f0d", + "slotId": "mod_handguard", + "parentId": "67b825c74007b92e1c059274" + }, + { + "_id": "67b825c74007b92e1c05927a", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b825c74007b92e1c059275" + }, + { + "_id": "67b825c74007b92e1c05927b", + "_tpl": "664301213dd83ddae20dda18", + "slotId": "mod_muzzle", + "parentId": "67b825c74007b92e1c059278" + }, + { + "_id": "67b825c74007b92e1c05927c", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b825c74007b92e1c059278" + }, + { + "_id": "67b825c74007b92e1c05927d", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b825c74007b92e1c059279" + }, + { + "_id": "67b825c74007b92e1c05927e", + "_tpl": "5c78f2882e22165df16b832e", + "slotId": "mod_muzzle", + "parentId": "67b825c74007b92e1c059279" + }, + { + "_id": "67b825c74007b92e1c05927f", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b825c74007b92e1c059279" + }, + { + "_id": "67b825c74007b92e1c059280", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b825c74007b92e1c05927d" + }, + { + "_id": "67b825c74007b92e1c059281", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b825c74007b92e1c05927a" + } + ] + }, + { + "Id": "67b826d90100185d53864128", + "Name": "supr holor short", + "Root": "67b826ec4007b92e1c05f4ec", + "Items": [ + { + "_id": "67b826ec4007b92e1c05f4ec", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b826ec4007b92e1c05f4ed", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b826ec4007b92e1c05f4ec" + }, + { + "_id": "67b826ec4007b92e1c05f4ee", + "_tpl": "544a37c44bdc2d25388b4567", + "slotId": "mod_magazine", + "parentId": "67b826ec4007b92e1c05f4ec" + }, + { + "_id": "67b826ec4007b92e1c05f4ef", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67b826ec4007b92e1c05f4ec" + }, + { + "_id": "67b826ec4007b92e1c05f4f0", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b826ec4007b92e1c05f4ec" + }, + { + "_id": "67b826ec4007b92e1c05f4f1", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67b826ec4007b92e1c05f4ec" + }, + { + "_id": "67b826ec4007b92e1c05f4f2", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b826ec4007b92e1c05f4ef" + }, + { + "_id": "67b826ec4007b92e1c05f4f3", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67b826ec4007b92e1c05f4ef" + }, + { + "_id": "67b826ec4007b92e1c05f4f4", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67b826ec4007b92e1c05f4ef" + }, + { + "_id": "67b826ec4007b92e1c05f4f5", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b826ec4007b92e1c05f4ef" + }, + { + "_id": "67b826ec4007b92e1c05f4f6", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b826ec4007b92e1c05f4f0" + }, + { + "_id": "67b826ec4007b92e1c05f4f7", + "_tpl": "5dfa3cd1b33c0951220c079b", + "slotId": "mod_muzzle", + "parentId": "67b826ec4007b92e1c05f4f3" + }, + { + "_id": "67b826ec4007b92e1c05f4f8", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67b826ec4007b92e1c05f4f3" + }, + { + "_id": "67b826ec4007b92e1c05f4f9", + "_tpl": "5a9d6d00a2750c5c985b5305", + "slotId": "mod_mount_000", + "parentId": "67b826ec4007b92e1c05f4f4" + }, + { + "_id": "67b826ec4007b92e1c05f4fa", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67b826ec4007b92e1c05f4f4" + }, + { + "_id": "67b826ec4007b92e1c05f4fb", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b826ec4007b92e1c05f4f7" + }, + { + "_id": "67b826ec4007b92e1c05f4fc", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b826ec4007b92e1c05f4f9" + }, + { + "_id": "67b826ec4007b92e1c05f4fd", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b826ec4007b92e1c05f4fa" + }, + { + "_id": "67b826ec4007b92e1c05f4fe", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock_000", + "parentId": "67b826ec4007b92e1c05f4f6" + }, + { + "_id": "67b826ec4007b92e1c05f4ff", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b826ec4007b92e1c05f4fe" + } + ] + }, + { + "Id": "67b8273a0100185d53afcf77", + "Name": "supr bravo short", + "Root": "67b827414007b92e1c0617c1", + "Items": [ + { + "_id": "67b827414007b92e1c0617c1", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b827414007b92e1c0617c2", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b827414007b92e1c0617c1" + }, + { + "_id": "67b827414007b92e1c0617c3", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b827414007b92e1c0617c1" + }, + { + "_id": "67b827414007b92e1c0617c4", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67b827414007b92e1c0617c1" + }, + { + "_id": "67b827414007b92e1c0617c5", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b827414007b92e1c0617c1" + }, + { + "_id": "67b827414007b92e1c0617c6", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67b827414007b92e1c0617c1" + }, + { + "_id": "67b827414007b92e1c0617c7", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b827414007b92e1c0617c4" + }, + { + "_id": "67b827414007b92e1c0617c8", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67b827414007b92e1c0617c4" + }, + { + "_id": "67b827414007b92e1c0617c9", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67b827414007b92e1c0617c4" + }, + { + "_id": "67b827414007b92e1c0617ca", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b827414007b92e1c0617c4" + }, + { + "_id": "67b827414007b92e1c0617cb", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b827414007b92e1c0617c5" + }, + { + "_id": "67b827414007b92e1c0617cc", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b827414007b92e1c0617c7" + }, + { + "_id": "67b827414007b92e1c0617cd", + "_tpl": "5dfa3cd1b33c0951220c079b", + "slotId": "mod_muzzle", + "parentId": "67b827414007b92e1c0617c8" + }, + { + "_id": "67b827414007b92e1c0617ce", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67b827414007b92e1c0617c8" + }, + { + "_id": "67b827414007b92e1c0617cf", + "_tpl": "5a9d6d00a2750c5c985b5305", + "slotId": "mod_mount_000", + "parentId": "67b827414007b92e1c0617c9" + }, + { + "_id": "67b827414007b92e1c0617d0", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67b827414007b92e1c0617c9" + }, + { + "_id": "67b827414007b92e1c0617d1", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b827414007b92e1c0617cc" + }, + { + "_id": "67b827414007b92e1c0617d2", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b827414007b92e1c0617cd" + }, + { + "_id": "67b827414007b92e1c0617d3", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b827414007b92e1c0617cf" + }, + { + "_id": "67b827414007b92e1c0617d4", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b827414007b92e1c0617d0" + }, + { + "_id": "67b827414007b92e1c0617d5", + "_tpl": "6516e971a3d4c6497930b450", + "slotId": "mod_stock_000", + "parentId": "67b827414007b92e1c0617cb" + }, + { + "_id": "67b827414007b92e1c0617d6", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b827414007b92e1c0617d5" + } + ] + }, + { + "Id": "67b8278f0100185d536e39f0", + "Name": "supr HoloUH1 short", + "Root": "67b8279b4007b92e1c063859", + "Items": [ + { + "_id": "67b8279b4007b92e1c063859", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8279b4007b92e1c06385a", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b8279b4007b92e1c063859" + }, + { + "_id": "67b8279b4007b92e1c06385b", + "_tpl": "544a37c44bdc2d25388b4567", + "slotId": "mod_magazine", + "parentId": "67b8279b4007b92e1c063859" + }, + { + "_id": "67b8279b4007b92e1c06385c", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67b8279b4007b92e1c063859" + }, + { + "_id": "67b8279b4007b92e1c06385d", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b8279b4007b92e1c063859" + }, + { + "_id": "67b8279b4007b92e1c06385e", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67b8279b4007b92e1c063859" + }, + { + "_id": "67b8279b4007b92e1c06385f", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8279b4007b92e1c06385c" + }, + { + "_id": "67b8279b4007b92e1c063860", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67b8279b4007b92e1c06385c" + }, + { + "_id": "67b8279b4007b92e1c063861", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67b8279b4007b92e1c06385c" + }, + { + "_id": "67b8279b4007b92e1c063862", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8279b4007b92e1c06385c" + }, + { + "_id": "67b8279b4007b92e1c063863", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b8279b4007b92e1c06385d" + }, + { + "_id": "67b8279b4007b92e1c063864", + "_tpl": "5dfa3cd1b33c0951220c079b", + "slotId": "mod_muzzle", + "parentId": "67b8279b4007b92e1c063860" + }, + { + "_id": "67b8279b4007b92e1c063865", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67b8279b4007b92e1c063860" + }, + { + "_id": "67b8279b4007b92e1c063866", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67b8279b4007b92e1c063861" + }, + { + "_id": "67b8279b4007b92e1c063867", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67b8279b4007b92e1c063861" + }, + { + "_id": "67b8279b4007b92e1c063868", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b8279b4007b92e1c063864" + }, + { + "_id": "67b8279b4007b92e1c063869", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8279b4007b92e1c063866" + }, + { + "_id": "67b8279b4007b92e1c06386a", + "_tpl": "5c1bc5af2e221602b412949b", + "slotId": "mod_foregrip", + "parentId": "67b8279b4007b92e1c063867" + }, + { + "_id": "67b8279b4007b92e1c06386b", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b8279b4007b92e1c063863" + }, + { + "_id": "67b8279b4007b92e1c06386c", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b8279b4007b92e1c06386b" + } + ] + }, + { + "Id": "67b828200100185d535d7548", + "Name": "supr Holo short", + "Root": "67b828274007b92e1c0665b9", + "Items": [ + { + "_id": "67b828274007b92e1c0665b9", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b828274007b92e1c0665ba", + "_tpl": "6113cce3d92c473c770200c7", + "slotId": "mod_pistol_grip", + "parentId": "67b828274007b92e1c0665b9" + }, + { + "_id": "67b828274007b92e1c0665bb", + "_tpl": "544a37c44bdc2d25388b4567", + "slotId": "mod_magazine", + "parentId": "67b828274007b92e1c0665b9" + }, + { + "_id": "67b828274007b92e1c0665bc", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67b828274007b92e1c0665b9" + }, + { + "_id": "67b828274007b92e1c0665bd", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b828274007b92e1c0665b9" + }, + { + "_id": "67b828274007b92e1c0665be", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67b828274007b92e1c0665b9" + }, + { + "_id": "67b828274007b92e1c0665bf", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b828274007b92e1c0665bc" + }, + { + "_id": "67b828274007b92e1c0665c0", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67b828274007b92e1c0665bc" + }, + { + "_id": "67b828274007b92e1c0665c1", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67b828274007b92e1c0665bc" + }, + { + "_id": "67b828274007b92e1c0665c2", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b828274007b92e1c0665bc" + }, + { + "_id": "67b828274007b92e1c0665c3", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b828274007b92e1c0665bd" + }, + { + "_id": "67b828274007b92e1c0665c4", + "_tpl": "5fbc22ccf24b94483f726483", + "slotId": "mod_muzzle", + "parentId": "67b828274007b92e1c0665c0" + }, + { + "_id": "67b828274007b92e1c0665c5", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67b828274007b92e1c0665c0" + }, + { + "_id": "67b828274007b92e1c0665c6", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67b828274007b92e1c0665c1" + }, + { + "_id": "67b828274007b92e1c0665c7", + "_tpl": "5bc09a30d4351e00367fb7c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b828274007b92e1c0665c1" + }, + { + "_id": "67b828274007b92e1c0665c8", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67b828274007b92e1c0665c1" + }, + { + "_id": "67b828274007b92e1c0665c9", + "_tpl": "5fbcbd10ab884124df0cd563", + "slotId": "mod_muzzle_000", + "parentId": "67b828274007b92e1c0665c4" + }, + { + "_id": "67b828274007b92e1c0665ca", + "_tpl": "5fbe760793164a5b6278efc8", + "slotId": "mod_muzzle_001", + "parentId": "67b828274007b92e1c0665c4" + }, + { + "_id": "67b828274007b92e1c0665cb", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b828274007b92e1c0665c6" + }, + { + "_id": "67b828274007b92e1c0665cc", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b828274007b92e1c0665c8" + }, + { + "_id": "67b828274007b92e1c0665cd", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b828274007b92e1c0665c3" + }, + { + "_id": "67b828274007b92e1c0665ce", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b828274007b92e1c0665cd" + } + ] + }, + { + "Id": "67b828890100185d53a6f1f9", + "Name": "supr bravo long", + "Root": "67b8288e4007b92e1c0692a9", + "Items": [ + { + "_id": "67b8288e4007b92e1c0692a9", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8288e4007b92e1c0692aa", + "_tpl": "6113cce3d92c473c770200c7", + "slotId": "mod_pistol_grip", + "parentId": "67b8288e4007b92e1c0692a9" + }, + { + "_id": "67b8288e4007b92e1c0692ab", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67b8288e4007b92e1c0692a9" + }, + { + "_id": "67b8288e4007b92e1c0692ac", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67b8288e4007b92e1c0692a9" + }, + { + "_id": "67b8288e4007b92e1c0692ad", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b8288e4007b92e1c0692a9" + }, + { + "_id": "67b8288e4007b92e1c0692ae", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67b8288e4007b92e1c0692a9" + }, + { + "_id": "67b8288e4007b92e1c0692af", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8288e4007b92e1c0692ac" + }, + { + "_id": "67b8288e4007b92e1c0692b0", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67b8288e4007b92e1c0692ac" + }, + { + "_id": "67b8288e4007b92e1c0692b1", + "_tpl": "5fbc227aa56d053a3543f79e", + "slotId": "mod_handguard", + "parentId": "67b8288e4007b92e1c0692ac" + }, + { + "_id": "67b8288e4007b92e1c0692b2", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8288e4007b92e1c0692ac" + }, + { + "_id": "67b8288e4007b92e1c0692b3", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b8288e4007b92e1c0692ad" + }, + { + "_id": "67b8288e4007b92e1c0692b4", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67b8288e4007b92e1c0692af" + }, + { + "_id": "67b8288e4007b92e1c0692b5", + "_tpl": "5fbc22ccf24b94483f726483", + "slotId": "mod_muzzle", + "parentId": "67b8288e4007b92e1c0692b0" + }, + { + "_id": "67b8288e4007b92e1c0692b6", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67b8288e4007b92e1c0692b0" + }, + { + "_id": "67b8288e4007b92e1c0692b7", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67b8288e4007b92e1c0692b1" + }, + { + "_id": "67b8288e4007b92e1c0692b8", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67b8288e4007b92e1c0692b1" + }, + { + "_id": "67b8288e4007b92e1c0692b9", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8288e4007b92e1c0692b4" + }, + { + "_id": "67b8288e4007b92e1c0692ba", + "_tpl": "5fbcbd10ab884124df0cd563", + "slotId": "mod_muzzle_000", + "parentId": "67b8288e4007b92e1c0692b5" + }, + { + "_id": "67b8288e4007b92e1c0692bb", + "_tpl": "5fbe760793164a5b6278efc8", + "slotId": "mod_muzzle_001", + "parentId": "67b8288e4007b92e1c0692b5" + }, + { + "_id": "67b8288e4007b92e1c0692bc", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8288e4007b92e1c0692b7" + }, + { + "_id": "67b8288e4007b92e1c0692bd", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b8288e4007b92e1c0692b8" + }, + { + "_id": "67b8288e4007b92e1c0692be", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b8288e4007b92e1c0692b3" + }, + { + "_id": "67b8288e4007b92e1c0692bf", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b8288e4007b92e1c0692be" + } + ] + }, + { + "Id": "67b828e90100185d53cf6cf0", + "Name": "supr vudu long", + "Root": "67b828f14007b92e1c06b220", + "Items": [ + { + "_id": "67b828f14007b92e1c06b220", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b828f14007b92e1c06b221", + "_tpl": "6113cce3d92c473c770200c7", + "slotId": "mod_pistol_grip", + "parentId": "67b828f14007b92e1c06b220" + }, + { + "_id": "67b828f14007b92e1c06b222", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67b828f14007b92e1c06b220" + }, + { + "_id": "67b828f14007b92e1c06b223", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67b828f14007b92e1c06b220" + }, + { + "_id": "67b828f14007b92e1c06b224", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b828f14007b92e1c06b220" + }, + { + "_id": "67b828f14007b92e1c06b225", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67b828f14007b92e1c06b220" + }, + { + "_id": "67b828f14007b92e1c06b226", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b828f14007b92e1c06b223" + }, + { + "_id": "67b828f14007b92e1c06b227", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67b828f14007b92e1c06b223" + }, + { + "_id": "67b828f14007b92e1c06b228", + "_tpl": "5fbc227aa56d053a3543f79e", + "slotId": "mod_handguard", + "parentId": "67b828f14007b92e1c06b223" + }, + { + "_id": "67b828f14007b92e1c06b229", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b828f14007b92e1c06b223" + }, + { + "_id": "67b828f14007b92e1c06b22a", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b828f14007b92e1c06b224" + }, + { + "_id": "67b828f14007b92e1c06b22b", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b828f14007b92e1c06b226" + }, + { + "_id": "67b828f14007b92e1c06b22c", + "_tpl": "5fbc22ccf24b94483f726483", + "slotId": "mod_muzzle", + "parentId": "67b828f14007b92e1c06b227" + }, + { + "_id": "67b828f14007b92e1c06b22d", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67b828f14007b92e1c06b227" + }, + { + "_id": "67b828f14007b92e1c06b22e", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67b828f14007b92e1c06b228" + }, + { + "_id": "67b828f14007b92e1c06b22f", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67b828f14007b92e1c06b228" + }, + { + "_id": "67b828f14007b92e1c06b230", + "_tpl": "5fbcbd10ab884124df0cd563", + "slotId": "mod_muzzle_000", + "parentId": "67b828f14007b92e1c06b22c" + }, + { + "_id": "67b828f14007b92e1c06b231", + "_tpl": "5fbe760793164a5b6278efc8", + "slotId": "mod_muzzle_001", + "parentId": "67b828f14007b92e1c06b22c" + }, + { + "_id": "67b828f14007b92e1c06b232", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b828f14007b92e1c06b22e" + }, + { + "_id": "67b828f14007b92e1c06b233", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b828f14007b92e1c06b22f" + }, + { + "_id": "67b828f14007b92e1c06b234", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b828f14007b92e1c06b22a" + }, + { + "_id": "67b828f14007b92e1c06b235", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b828f14007b92e1c06b234" + } + ] + }, + { + "Id": "67b829430100185d5343b3ea", + "Name": "supr 2x short", + "Root": "67b829494007b92e1c06d29a", + "Items": [ + { + "_id": "67b829494007b92e1c06d29a", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b829494007b92e1c06d29b", + "_tpl": "6113cce3d92c473c770200c7", + "slotId": "mod_pistol_grip", + "parentId": "67b829494007b92e1c06d29a" + }, + { + "_id": "67b829494007b92e1c06d29c", + "_tpl": "5c6d46132e221601da357d56", + "slotId": "mod_magazine", + "parentId": "67b829494007b92e1c06d29a" + }, + { + "_id": "67b829494007b92e1c06d29d", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67b829494007b92e1c06d29a" + }, + { + "_id": "67b829494007b92e1c06d29e", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b829494007b92e1c06d29a" + }, + { + "_id": "67b829494007b92e1c06d29f", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67b829494007b92e1c06d29a" + }, + { + "_id": "67b829494007b92e1c06d2a0", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b829494007b92e1c06d29d" + }, + { + "_id": "67b829494007b92e1c06d2a1", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67b829494007b92e1c06d29d" + }, + { + "_id": "67b829494007b92e1c06d2a2", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67b829494007b92e1c06d29d" + }, + { + "_id": "67b829494007b92e1c06d2a3", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b829494007b92e1c06d29d" + }, + { + "_id": "67b829494007b92e1c06d2a4", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b829494007b92e1c06d29e" + }, + { + "_id": "67b829494007b92e1c06d2a5", + "_tpl": "5dfa3cd1b33c0951220c079b", + "slotId": "mod_muzzle", + "parentId": "67b829494007b92e1c06d2a1" + }, + { + "_id": "67b829494007b92e1c06d2a6", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67b829494007b92e1c06d2a1" + }, + { + "_id": "67b829494007b92e1c06d2a7", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67b829494007b92e1c06d2a2" + }, + { + "_id": "67b829494007b92e1c06d2a8", + "_tpl": "5bc09a30d4351e00367fb7c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b829494007b92e1c06d2a2" + }, + { + "_id": "67b829494007b92e1c06d2a9", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67b829494007b92e1c06d2a2" + }, + { + "_id": "67b829494007b92e1c06d2aa", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b829494007b92e1c06d2a5" + }, + { + "_id": "67b829494007b92e1c06d2ab", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b829494007b92e1c06d2a7" + }, + { + "_id": "67b829494007b92e1c06d2ac", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b829494007b92e1c06d2a9" + }, + { + "_id": "67b829494007b92e1c06d2ad", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b829494007b92e1c06d2a4" + }, + { + "_id": "67b829494007b92e1c06d2ae", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b829494007b92e1c06d2ad" + } + ] + }, + { + "Id": "67b829c80100185d53548a5c", + "Name": "supr Holo 2 short", + "Root": "67b829ce4007b92e1c0712df", + "Items": [ + { + "_id": "67b829ce4007b92e1c0712df", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b829ce4007b92e1c0712e0", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b829ce4007b92e1c0712df" + }, + { + "_id": "67b829ce4007b92e1c0712e1", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67b829ce4007b92e1c0712df" + }, + { + "_id": "67b829ce4007b92e1c0712e2", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67b829ce4007b92e1c0712df" + }, + { + "_id": "67b829ce4007b92e1c0712e3", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b829ce4007b92e1c0712df" + }, + { + "_id": "67b829ce4007b92e1c0712e4", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67b829ce4007b92e1c0712df" + }, + { + "_id": "67b829ce4007b92e1c0712e5", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b829ce4007b92e1c0712e2" + }, + { + "_id": "67b829ce4007b92e1c0712e6", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67b829ce4007b92e1c0712e2" + }, + { + "_id": "67b829ce4007b92e1c0712e7", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67b829ce4007b92e1c0712e2" + }, + { + "_id": "67b829ce4007b92e1c0712e8", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b829ce4007b92e1c0712e2" + }, + { + "_id": "67b829ce4007b92e1c0712e9", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b829ce4007b92e1c0712e3" + }, + { + "_id": "67b829ce4007b92e1c0712ea", + "_tpl": "5dfa3cd1b33c0951220c079b", + "slotId": "mod_muzzle", + "parentId": "67b829ce4007b92e1c0712e6" + }, + { + "_id": "67b829ce4007b92e1c0712eb", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67b829ce4007b92e1c0712e6" + }, + { + "_id": "67b829ce4007b92e1c0712ec", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67b829ce4007b92e1c0712e7" + }, + { + "_id": "67b829ce4007b92e1c0712ed", + "_tpl": "5bc09a30d4351e00367fb7c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b829ce4007b92e1c0712e7" + }, + { + "_id": "67b829ce4007b92e1c0712ee", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67b829ce4007b92e1c0712e7" + }, + { + "_id": "67b829ce4007b92e1c0712ef", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b829ce4007b92e1c0712ea" + }, + { + "_id": "67b829ce4007b92e1c0712f0", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b829ce4007b92e1c0712ec" + }, + { + "_id": "67b829ce4007b92e1c0712f1", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b829ce4007b92e1c0712ee" + }, + { + "_id": "67b829ce4007b92e1c0712f2", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b829ce4007b92e1c0712e9" + }, + { + "_id": "67b829ce4007b92e1c0712f3", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b829ce4007b92e1c0712f2" + } + ] + }, + { + "Id": "67b82ad70100185d53113971", + "Name": "long supr vudu", + "Root": "67b82ae04007b92e1c074ea9", + "Items": [ + { + "_id": "67b82ae04007b92e1c074ea9", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82ae04007b92e1c074eaa", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b82ae04007b92e1c074ea9" + }, + { + "_id": "67b82ae04007b92e1c074eab", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67b82ae04007b92e1c074ea9" + }, + { + "_id": "67b82ae04007b92e1c074eac", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67b82ae04007b92e1c074ea9" + }, + { + "_id": "67b82ae04007b92e1c074ead", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67b82ae04007b92e1c074ea9" + }, + { + "_id": "67b82ae04007b92e1c074eae", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67b82ae04007b92e1c074ea9" + }, + { + "_id": "67b82ae04007b92e1c074eaf", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67b82ae04007b92e1c074eac" + }, + { + "_id": "67b82ae04007b92e1c074eb0", + "_tpl": "5bb20dadd4351e00367faeff", + "slotId": "mod_barrel", + "parentId": "67b82ae04007b92e1c074eac" + }, + { + "_id": "67b82ae04007b92e1c074eb1", + "_tpl": "5c6d10e82e221601da357b07", + "slotId": "mod_handguard", + "parentId": "67b82ae04007b92e1c074eac" + }, + { + "_id": "67b82ae04007b92e1c074eb2", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b82ae04007b92e1c074ead" + }, + { + "_id": "67b82ae04007b92e1c074eb3", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82ae04007b92e1c074eaf" + }, + { + "_id": "67b82ae04007b92e1c074eb4", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b82ae04007b92e1c074eb0" + }, + { + "_id": "67b82ae04007b92e1c074eb5", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67b82ae04007b92e1c074eb0" + }, + { + "_id": "67b82ae04007b92e1c074eb6", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_003", + "parentId": "67b82ae04007b92e1c074eb1" + }, + { + "_id": "67b82ae04007b92e1c074eb7", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b82ae04007b92e1c074eb1" + }, + { + "_id": "67b82ae04007b92e1c074eb8", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b82ae04007b92e1c074eb4" + }, + { + "_id": "67b82ae04007b92e1c074eb9", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82ae04007b92e1c074eb6" + }, + { + "_id": "67b82ae04007b92e1c074eba", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b82ae04007b92e1c074eb7" + }, + { + "_id": "67b82ae04007b92e1c074ebb", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b82ae04007b92e1c074eb2" + } + ] + }, + { + "Id": "67b82b1e0100185d53bda3f0", + "Name": "long supr vudu v2", + "Root": "67b82b244007b92e1c076be8", + "Items": [ + { + "_id": "67b82b244007b92e1c076be8", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82b244007b92e1c076be9", + "_tpl": "59db3a1d86f77429e05b4e92", + "slotId": "mod_pistol_grip", + "parentId": "67b82b244007b92e1c076be8" + }, + { + "_id": "67b82b244007b92e1c076bea", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67b82b244007b92e1c076be8" + }, + { + "_id": "67b82b244007b92e1c076beb", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67b82b244007b92e1c076be8" + }, + { + "_id": "67b82b244007b92e1c076bec", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67b82b244007b92e1c076be8" + }, + { + "_id": "67b82b244007b92e1c076bed", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67b82b244007b92e1c076be8" + }, + { + "_id": "67b82b244007b92e1c076bee", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67b82b244007b92e1c076beb" + }, + { + "_id": "67b82b244007b92e1c076bef", + "_tpl": "5bb20dadd4351e00367faeff", + "slotId": "mod_barrel", + "parentId": "67b82b244007b92e1c076beb" + }, + { + "_id": "67b82b244007b92e1c076bf0", + "_tpl": "5c6d10e82e221601da357b07", + "slotId": "mod_handguard", + "parentId": "67b82b244007b92e1c076beb" + }, + { + "_id": "67b82b244007b92e1c076bf1", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b82b244007b92e1c076bec" + }, + { + "_id": "67b82b244007b92e1c076bf2", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82b244007b92e1c076bee" + }, + { + "_id": "67b82b244007b92e1c076bf3", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b82b244007b92e1c076bef" + }, + { + "_id": "67b82b244007b92e1c076bf4", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67b82b244007b92e1c076bef" + }, + { + "_id": "67b82b244007b92e1c076bf5", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_003", + "parentId": "67b82b244007b92e1c076bf0" + }, + { + "_id": "67b82b244007b92e1c076bf6", + "_tpl": "5649a2464bdc2d91118b45a8", + "slotId": "mod_scope", + "parentId": "67b82b244007b92e1c076bf0" + }, + { + "_id": "67b82b244007b92e1c076bf7", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b82b244007b92e1c076bf0" + }, + { + "_id": "67b82b244007b92e1c076bf8", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b82b244007b92e1c076bf3" + }, + { + "_id": "67b82b244007b92e1c076bf9", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82b244007b92e1c076bf5" + }, + { + "_id": "67b82b244007b92e1c076bfa", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b82b244007b92e1c076bf6" + }, + { + "_id": "67b82b244007b92e1c076bfb", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b82b244007b92e1c076bf7" + }, + { + "_id": "67b82b244007b92e1c076bfc", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82b244007b92e1c076bfa" + }, + { + "_id": "67b82b244007b92e1c076bfd", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b82b244007b92e1c076bf1" + } + ] + }, + { + "Id": "67b82ba10100185d537d8625", + "Name": "long supr razerscope", + "Root": "67b82bc84007b92e1c079605", + "Items": [ + { + "_id": "67b82bc84007b92e1c079605", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82bc84007b92e1c079606", + "_tpl": "59db3a1d86f77429e05b4e92", + "slotId": "mod_pistol_grip", + "parentId": "67b82bc84007b92e1c079605" + }, + { + "_id": "67b82bc84007b92e1c079607", + "_tpl": "5c6d46132e221601da357d56", + "slotId": "mod_magazine", + "parentId": "67b82bc84007b92e1c079605" + }, + { + "_id": "67b82bc84007b92e1c079608", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67b82bc84007b92e1c079605" + }, + { + "_id": "67b82bc84007b92e1c079609", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67b82bc84007b92e1c079605" + }, + { + "_id": "67b82bc84007b92e1c07960a", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67b82bc84007b92e1c079605" + }, + { + "_id": "67b82bc84007b92e1c07960b", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67b82bc84007b92e1c079608" + }, + { + "_id": "67b82bc84007b92e1c07960c", + "_tpl": "5bb20dadd4351e00367faeff", + "slotId": "mod_barrel", + "parentId": "67b82bc84007b92e1c079608" + }, + { + "_id": "67b82bc84007b92e1c07960d", + "_tpl": "5c6d10e82e221601da357b07", + "slotId": "mod_handguard", + "parentId": "67b82bc84007b92e1c079608" + }, + { + "_id": "67b82bc84007b92e1c07960e", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock_000", + "parentId": "67b82bc84007b92e1c079609" + }, + { + "_id": "67b82bc84007b92e1c07960f", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82bc84007b92e1c07960b" + }, + { + "_id": "67b82bc84007b92e1c079610", + "_tpl": "6386120cd6baa055ad1e201c", + "slotId": "mod_muzzle", + "parentId": "67b82bc84007b92e1c07960c" + }, + { + "_id": "67b82bc84007b92e1c079611", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67b82bc84007b92e1c07960c" + }, + { + "_id": "67b82bc84007b92e1c079612", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_003", + "parentId": "67b82bc84007b92e1c07960d" + }, + { + "_id": "67b82bc84007b92e1c079613", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b82bc84007b92e1c07960d" + }, + { + "_id": "67b82bc84007b92e1c079614", + "_tpl": "638612b607dfed1ccb7206ba", + "slotId": "mod_muzzle", + "parentId": "67b82bc84007b92e1c079610" + }, + { + "_id": "67b82bc84007b92e1c079615", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82bc84007b92e1c079612" + }, + { + "_id": "67b82bc84007b92e1c079616", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b82bc84007b92e1c079613" + }, + { + "_id": "67b82bc84007b92e1c079617", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b82bc84007b92e1c07960e" + } + ] + }, + { + "Id": "67b82bfd0100185d537d0e68", + "Name": "long supr hammr", + "Root": "67b82c044007b92e1c07a456", + "Items": [ + { + "_id": "67b82c044007b92e1c07a456", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82c044007b92e1c07a457", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b82c044007b92e1c07a456" + }, + { + "_id": "67b82c044007b92e1c07a458", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67b82c044007b92e1c07a456" + }, + { + "_id": "67b82c044007b92e1c07a459", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67b82c044007b92e1c07a456" + }, + { + "_id": "67b82c044007b92e1c07a45a", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67b82c044007b92e1c07a456" + }, + { + "_id": "67b82c044007b92e1c07a45b", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67b82c044007b92e1c07a456" + }, + { + "_id": "67b82c044007b92e1c07a45c", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82c044007b92e1c07a459" + }, + { + "_id": "67b82c044007b92e1c07a45d", + "_tpl": "5bb20dadd4351e00367faeff", + "slotId": "mod_barrel", + "parentId": "67b82c044007b92e1c07a459" + }, + { + "_id": "67b82c044007b92e1c07a45e", + "_tpl": "5c6d10e82e221601da357b07", + "slotId": "mod_handguard", + "parentId": "67b82c044007b92e1c07a459" + }, + { + "_id": "67b82c044007b92e1c07a45f", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b82c044007b92e1c07a45a" + }, + { + "_id": "67b82c044007b92e1c07a460", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82c044007b92e1c07a45c" + }, + { + "_id": "67b82c044007b92e1c07a461", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b82c044007b92e1c07a45d" + }, + { + "_id": "67b82c044007b92e1c07a462", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67b82c044007b92e1c07a45d" + }, + { + "_id": "67b82c044007b92e1c07a463", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_001", + "parentId": "67b82c044007b92e1c07a45e" + }, + { + "_id": "67b82c044007b92e1c07a464", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b82c044007b92e1c07a45e" + }, + { + "_id": "67b82c044007b92e1c07a465", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b82c044007b92e1c07a461" + }, + { + "_id": "67b82c044007b92e1c07a466", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82c044007b92e1c07a463" + }, + { + "_id": "67b82c044007b92e1c07a467", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b82c044007b92e1c07a464" + }, + { + "_id": "67b82c044007b92e1c07a468", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b82c044007b92e1c07a45f" + } + ] + }, + { + "Id": "67b82c8f0100185d53056975", + "Name": "long supr holo", + "Root": "67b82c964007b92e1c07ce6b", + "Items": [ + { + "_id": "67b82c964007b92e1c07ce6b", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82c964007b92e1c07ce6c", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b82c964007b92e1c07ce6b" + }, + { + "_id": "67b82c964007b92e1c07ce6d", + "_tpl": "544a37c44bdc2d25388b4567", + "slotId": "mod_magazine", + "parentId": "67b82c964007b92e1c07ce6b" + }, + { + "_id": "67b82c964007b92e1c07ce6e", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67b82c964007b92e1c07ce6b" + }, + { + "_id": "67b82c964007b92e1c07ce6f", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67b82c964007b92e1c07ce6b" + }, + { + "_id": "67b82c964007b92e1c07ce70", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67b82c964007b92e1c07ce6b" + }, + { + "_id": "67b82c964007b92e1c07ce71", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82c964007b92e1c07ce6e" + }, + { + "_id": "67b82c964007b92e1c07ce72", + "_tpl": "5bb20dadd4351e00367faeff", + "slotId": "mod_barrel", + "parentId": "67b82c964007b92e1c07ce6e" + }, + { + "_id": "67b82c964007b92e1c07ce73", + "_tpl": "5c6d11152e2216000f2003e7", + "slotId": "mod_handguard", + "parentId": "67b82c964007b92e1c07ce6e" + }, + { + "_id": "67b82c964007b92e1c07ce74", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b82c964007b92e1c07ce6f" + }, + { + "_id": "67b82c964007b92e1c07ce75", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b82c964007b92e1c07ce72" + }, + { + "_id": "67b82c964007b92e1c07ce76", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67b82c964007b92e1c07ce72" + }, + { + "_id": "67b82c964007b92e1c07ce77", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67b82c964007b92e1c07ce73" + }, + { + "_id": "67b82c964007b92e1c07ce78", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b82c964007b92e1c07ce73" + }, + { + "_id": "67b82c964007b92e1c07ce79", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b82c964007b92e1c07ce75" + }, + { + "_id": "67b82c964007b92e1c07ce7a", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82c964007b92e1c07ce77" + }, + { + "_id": "67b82c964007b92e1c07ce7b", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b82c964007b92e1c07ce78" + }, + { + "_id": "67b82c964007b92e1c07ce7c", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b82c964007b92e1c07ce74" + } + ] + }, + { + "Id": "67b82d710100185d539d0377", + "Name": "loud medium holo", + "Root": "67b82e534007b92e1c0852e9", + "Items": [ + { + "_id": "67b82e534007b92e1c0852e9", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82e534007b92e1c0852ea", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b82e534007b92e1c0852e9" + }, + { + "_id": "67b82e534007b92e1c0852eb", + "_tpl": "544a37c44bdc2d25388b4567", + "slotId": "mod_magazine", + "parentId": "67b82e534007b92e1c0852e9" + }, + { + "_id": "67b82e534007b92e1c0852ec", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67b82e534007b92e1c0852e9" + }, + { + "_id": "67b82e534007b92e1c0852ed", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67b82e534007b92e1c0852e9" + }, + { + "_id": "67b82e534007b92e1c0852ee", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b82e534007b92e1c0852e9" + }, + { + "_id": "67b82e534007b92e1c0852ef", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82e534007b92e1c0852ec" + }, + { + "_id": "67b82e534007b92e1c0852f0", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "slotId": "mod_barrel", + "parentId": "67b82e534007b92e1c0852ec" + }, + { + "_id": "67b82e534007b92e1c0852f1", + "_tpl": "5bb20df1d4351e00347787d5", + "slotId": "mod_handguard", + "parentId": "67b82e534007b92e1c0852ec" + }, + { + "_id": "67b82e534007b92e1c0852f2", + "_tpl": "6516e971a3d4c6497930b450", + "slotId": "mod_stock_000", + "parentId": "67b82e534007b92e1c0852ed" + }, + { + "_id": "67b82e534007b92e1c0852f3", + "_tpl": "5cf6937cd7f00c056c53fb39", + "slotId": "mod_muzzle", + "parentId": "67b82e534007b92e1c0852f0" + }, + { + "_id": "67b82e534007b92e1c0852f4", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67b82e534007b92e1c0852f0" + }, + { + "_id": "67b82e534007b92e1c0852f5", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b82e534007b92e1c0852f1" + }, + { + "_id": "67b82e534007b92e1c0852f6", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82e534007b92e1c0852f1" + }, + { + "_id": "67b82e534007b92e1c0852f7", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82e534007b92e1c0852f1" + }, + { + "_id": "67b82e534007b92e1c0852f8", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b82e534007b92e1c0852f2" + } + ] + }, + { + "Id": "67b82dc70100185d539ce1e0", + "Name": "loud medium holo v2", + "Root": "67b82dcc4007b92e1c08270c", + "Items": [ + { + "_id": "67b82dcc4007b92e1c08270c", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82dcc4007b92e1c08270d", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b82dcc4007b92e1c08270c" + }, + { + "_id": "67b82dcc4007b92e1c08270e", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b82dcc4007b92e1c08270c" + }, + { + "_id": "67b82dcc4007b92e1c08270f", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67b82dcc4007b92e1c08270c" + }, + { + "_id": "67b82dcc4007b92e1c082710", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67b82dcc4007b92e1c08270c" + }, + { + "_id": "67b82dcc4007b92e1c082711", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b82dcc4007b92e1c08270c" + }, + { + "_id": "67b82dcc4007b92e1c082712", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82dcc4007b92e1c08270f" + }, + { + "_id": "67b82dcc4007b92e1c082713", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "slotId": "mod_barrel", + "parentId": "67b82dcc4007b92e1c08270f" + }, + { + "_id": "67b82dcc4007b92e1c082714", + "_tpl": "5bb20df1d4351e00347787d5", + "slotId": "mod_handguard", + "parentId": "67b82dcc4007b92e1c08270f" + }, + { + "_id": "67b82dcc4007b92e1c082715", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b82dcc4007b92e1c082710" + }, + { + "_id": "67b82dcc4007b92e1c082716", + "_tpl": "5cf6937cd7f00c056c53fb39", + "slotId": "mod_muzzle", + "parentId": "67b82dcc4007b92e1c082713" + }, + { + "_id": "67b82dcc4007b92e1c082717", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67b82dcc4007b92e1c082713" + }, + { + "_id": "67b82dcc4007b92e1c082718", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b82dcc4007b92e1c082714" + }, + { + "_id": "67b82dcc4007b92e1c082719", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82dcc4007b92e1c082714" + }, + { + "_id": "67b82dcc4007b92e1c08271a", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b82dcc4007b92e1c082715" + } + ] + }, + { + "Id": "67b82e1b0100185d5364eaa4", + "Name": "supr short holoUH", + "Root": "67b82e3f4007b92e1c0844ba", + "Items": [ + { + "_id": "67b82e3f4007b92e1c0844ba", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82e3f4007b92e1c0844bb", + "_tpl": "6113cce3d92c473c770200c7", + "slotId": "mod_pistol_grip", + "parentId": "67b82e3f4007b92e1c0844ba" + }, + { + "_id": "67b82e3f4007b92e1c0844bc", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b82e3f4007b92e1c0844ba" + }, + { + "_id": "67b82e3f4007b92e1c0844bd", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67b82e3f4007b92e1c0844ba" + }, + { + "_id": "67b82e3f4007b92e1c0844be", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67b82e3f4007b92e1c0844ba" + }, + { + "_id": "67b82e3f4007b92e1c0844bf", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67b82e3f4007b92e1c0844ba" + }, + { + "_id": "67b82e3f4007b92e1c0844c0", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82e3f4007b92e1c0844bd" + }, + { + "_id": "67b82e3f4007b92e1c0844c1", + "_tpl": "5bb20d92d4351e00853263eb", + "slotId": "mod_barrel", + "parentId": "67b82e3f4007b92e1c0844bd" + }, + { + "_id": "67b82e3f4007b92e1c0844c2", + "_tpl": "5bb20df1d4351e00347787d5", + "slotId": "mod_handguard", + "parentId": "67b82e3f4007b92e1c0844bd" + }, + { + "_id": "67b82e3f4007b92e1c0844c3", + "_tpl": "5bb20e49d4351e3bac1212de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82e3f4007b92e1c0844bd" + }, + { + "_id": "67b82e3f4007b92e1c0844c4", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock_000", + "parentId": "67b82e3f4007b92e1c0844be" + }, + { + "_id": "67b82e3f4007b92e1c0844c5", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b82e3f4007b92e1c0844c1" + }, + { + "_id": "67b82e3f4007b92e1c0844c6", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67b82e3f4007b92e1c0844c1" + }, + { + "_id": "67b82e3f4007b92e1c0844c7", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b82e3f4007b92e1c0844c2" + }, + { + "_id": "67b82e3f4007b92e1c0844c8", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82e3f4007b92e1c0844c2" + }, + { + "_id": "67b82e3f4007b92e1c0844c9", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b82e3f4007b92e1c0844c5" + }, + { + "_id": "67b82e3f4007b92e1c0844ca", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b82e3f4007b92e1c0844c4" + } + ] + }, + { + "Id": "67b82f0c0100185d53ad38f6", + "Name": "Supr Long Tan Holo", + "Root": "67b82f1a4007b92e1c088f93", + "Items": [ + { + "_id": "67b82f1a4007b92e1c088f93", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82f1a4007b92e1c088f94", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistol_grip", + "parentId": "67b82f1a4007b92e1c088f93" + }, + { + "_id": "67b82f1a4007b92e1c088f95", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67b82f1a4007b92e1c088f93" + }, + { + "_id": "67b82f1a4007b92e1c088f96", + "_tpl": "618426d96c780c1e710c9b9f", + "slotId": "mod_reciever", + "parentId": "67b82f1a4007b92e1c088f93" + }, + { + "_id": "67b82f1a4007b92e1c088f97", + "_tpl": "66ffc20ba73a7bce3d0b45ab", + "slotId": "mod_stock", + "parentId": "67b82f1a4007b92e1c088f93" + }, + { + "_id": "67b82f1a4007b92e1c088f98", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b82f1a4007b92e1c088f93" + }, + { + "_id": "67b82f1a4007b92e1c088f99", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82f1a4007b92e1c088f96" + }, + { + "_id": "67b82f1a4007b92e1c088f9a", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67b82f1a4007b92e1c088f96" + }, + { + "_id": "67b82f1a4007b92e1c088f9b", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82f1a4007b92e1c088f96" + }, + { + "_id": "67b82f1a4007b92e1c088f9c", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b82f1a4007b92e1c088f96" + }, + { + "_id": "67b82f1a4007b92e1c088f9d", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b82f1a4007b92e1c088f96" + }, + { + "_id": "67b82f1a4007b92e1c088f9e", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock", + "parentId": "67b82f1a4007b92e1c088f97" + }, + { + "_id": "67b82f1a4007b92e1c088f9f", + "_tpl": "626667e87379c44d557b7550", + "slotId": "mod_muzzle", + "parentId": "67b82f1a4007b92e1c088f9a" + }, + { + "_id": "67b82f1a4007b92e1c088fa0", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b82f1a4007b92e1c088f9c" + }, + { + "_id": "67b82f1a4007b92e1c088fa1", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b82f1a4007b92e1c088f9c" + }, + { + "_id": "67b82f1a4007b92e1c088fa2", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82f1a4007b92e1c088f9d" + }, + { + "_id": "67b82f1a4007b92e1c088fa3", + "_tpl": "626673016f1edc06f30cf6d5", + "slotId": "mod_muzzle", + "parentId": "67b82f1a4007b92e1c088f9f" + }, + { + "_id": "67b82f1a4007b92e1c088fa4", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b82f1a4007b92e1c088f9e" + } + ] + }, + { + "Id": "67b82f470100185d536b645a", + "Name": "Supr Long Tan Holo v2", + "Root": "67b82f4e4007b92e1c089eab", + "Items": [ + { + "_id": "67b82f4e4007b92e1c089eab", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82f4e4007b92e1c089eac", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistol_grip", + "parentId": "67b82f4e4007b92e1c089eab" + }, + { + "_id": "67b82f4e4007b92e1c089ead", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67b82f4e4007b92e1c089eab" + }, + { + "_id": "67b82f4e4007b92e1c089eae", + "_tpl": "618426d96c780c1e710c9b9f", + "slotId": "mod_reciever", + "parentId": "67b82f4e4007b92e1c089eab" + }, + { + "_id": "67b82f4e4007b92e1c089eaf", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67b82f4e4007b92e1c089eab" + }, + { + "_id": "67b82f4e4007b92e1c089eb0", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b82f4e4007b92e1c089eab" + }, + { + "_id": "67b82f4e4007b92e1c089eb1", + "_tpl": "5c0a2cec0db834001b7ce47d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82f4e4007b92e1c089eae" + }, + { + "_id": "67b82f4e4007b92e1c089eb2", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67b82f4e4007b92e1c089eae" + }, + { + "_id": "67b82f4e4007b92e1c089eb3", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82f4e4007b92e1c089eae" + }, + { + "_id": "67b82f4e4007b92e1c089eb4", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b82f4e4007b92e1c089eae" + }, + { + "_id": "67b82f4e4007b92e1c089eb5", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b82f4e4007b92e1c089eae" + }, + { + "_id": "67b82f4e4007b92e1c089eb6", + "_tpl": "66ffc2ecfe9b3825960652f7", + "slotId": "mod_stock_001", + "parentId": "67b82f4e4007b92e1c089eaf" + }, + { + "_id": "67b82f4e4007b92e1c089eb7", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67b82f4e4007b92e1c089eaf" + }, + { + "_id": "67b82f4e4007b92e1c089eb8", + "_tpl": "626667e87379c44d557b7550", + "slotId": "mod_muzzle", + "parentId": "67b82f4e4007b92e1c089eb2" + }, + { + "_id": "67b82f4e4007b92e1c089eb9", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b82f4e4007b92e1c089eb4" + }, + { + "_id": "67b82f4e4007b92e1c089eba", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b82f4e4007b92e1c089eb4" + }, + { + "_id": "67b82f4e4007b92e1c089ebb", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82f4e4007b92e1c089eb5" + }, + { + "_id": "67b82f4e4007b92e1c089ebc", + "_tpl": "626673016f1edc06f30cf6d5", + "slotId": "mod_muzzle", + "parentId": "67b82f4e4007b92e1c089eb8" + } + ] + }, + { + "Id": "67b82f8f0100185d535f5c98", + "Name": "Supr Long Tan Vudu", + "Root": "67b82fa44007b92e1c08bcfc", + "Items": [ + { + "_id": "67b82fa44007b92e1c08bcfc", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82fa44007b92e1c08bcfd", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistol_grip", + "parentId": "67b82fa44007b92e1c08bcfc" + }, + { + "_id": "67b82fa44007b92e1c08bcfe", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67b82fa44007b92e1c08bcfc" + }, + { + "_id": "67b82fa44007b92e1c08bcff", + "_tpl": "618426d96c780c1e710c9b9f", + "slotId": "mod_reciever", + "parentId": "67b82fa44007b92e1c08bcfc" + }, + { + "_id": "67b82fa44007b92e1c08bd00", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67b82fa44007b92e1c08bcfc" + }, + { + "_id": "67b82fa44007b92e1c08bd01", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b82fa44007b92e1c08bcfc" + }, + { + "_id": "67b82fa44007b92e1c08bd02", + "_tpl": "6567e751a715f85433025998", + "slotId": "mod_scope", + "parentId": "67b82fa44007b92e1c08bcff" + }, + { + "_id": "67b82fa44007b92e1c08bd03", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67b82fa44007b92e1c08bcff" + }, + { + "_id": "67b82fa44007b92e1c08bd04", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82fa44007b92e1c08bcff" + }, + { + "_id": "67b82fa44007b92e1c08bd05", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b82fa44007b92e1c08bcff" + }, + { + "_id": "67b82fa44007b92e1c08bd06", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b82fa44007b92e1c08bcff" + }, + { + "_id": "67b82fa44007b92e1c08bd07", + "_tpl": "66ffc2ecfe9b3825960652f7", + "slotId": "mod_stock_001", + "parentId": "67b82fa44007b92e1c08bd00" + }, + { + "_id": "67b82fa44007b92e1c08bd08", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67b82fa44007b92e1c08bd00" + }, + { + "_id": "67b82fa44007b92e1c08bd09", + "_tpl": "617151c1d92c473c770214ab", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82fa44007b92e1c08bd02" + }, + { + "_id": "67b82fa44007b92e1c08bd0a", + "_tpl": "626667e87379c44d557b7550", + "slotId": "mod_muzzle", + "parentId": "67b82fa44007b92e1c08bd03" + }, + { + "_id": "67b82fa44007b92e1c08bd0b", + "_tpl": "5fce0cf655375d18a253eff0", + "slotId": "mod_foregrip", + "parentId": "67b82fa44007b92e1c08bd05" + }, + { + "_id": "67b82fa44007b92e1c08bd0c", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b82fa44007b92e1c08bd05" + }, + { + "_id": "67b82fa44007b92e1c08bd0d", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82fa44007b92e1c08bd06" + }, + { + "_id": "67b82fa44007b92e1c08bd0e", + "_tpl": "626673016f1edc06f30cf6d5", + "slotId": "mod_muzzle", + "parentId": "67b82fa44007b92e1c08bd0a" + } + ] + }, + { + "Id": "67b82fd50100185d537f7197", + "Name": "Loud Long Tan Vudu", + "Root": "67b82fdb4007b92e1c08ce69", + "Items": [ + { + "_id": "67b82fdb4007b92e1c08ce69", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b82fdb4007b92e1c08ce6a", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistol_grip", + "parentId": "67b82fdb4007b92e1c08ce69" + }, + { + "_id": "67b82fdb4007b92e1c08ce6b", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67b82fdb4007b92e1c08ce69" + }, + { + "_id": "67b82fdb4007b92e1c08ce6c", + "_tpl": "618426d96c780c1e710c9b9f", + "slotId": "mod_reciever", + "parentId": "67b82fdb4007b92e1c08ce69" + }, + { + "_id": "67b82fdb4007b92e1c08ce6d", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67b82fdb4007b92e1c08ce69" + }, + { + "_id": "67b82fdb4007b92e1c08ce6e", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b82fdb4007b92e1c08ce69" + }, + { + "_id": "67b82fdb4007b92e1c08ce6f", + "_tpl": "6567e751a715f85433025998", + "slotId": "mod_scope", + "parentId": "67b82fdb4007b92e1c08ce6c" + }, + { + "_id": "67b82fdb4007b92e1c08ce70", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67b82fdb4007b92e1c08ce6c" + }, + { + "_id": "67b82fdb4007b92e1c08ce71", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82fdb4007b92e1c08ce6c" + }, + { + "_id": "67b82fdb4007b92e1c08ce72", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b82fdb4007b92e1c08ce6c" + }, + { + "_id": "67b82fdb4007b92e1c08ce73", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b82fdb4007b92e1c08ce6c" + }, + { + "_id": "67b82fdb4007b92e1c08ce74", + "_tpl": "61825d136ef05c2ce828f1cc", + "slotId": "mod_stock_001", + "parentId": "67b82fdb4007b92e1c08ce6d" + }, + { + "_id": "67b82fdb4007b92e1c08ce75", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67b82fdb4007b92e1c08ce6d" + }, + { + "_id": "67b82fdb4007b92e1c08ce76", + "_tpl": "617151c1d92c473c770214ab", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b82fdb4007b92e1c08ce6f" + }, + { + "_id": "67b82fdb4007b92e1c08ce77", + "_tpl": "63ac5c9658d0485fc039f0b8", + "slotId": "mod_muzzle", + "parentId": "67b82fdb4007b92e1c08ce70" + }, + { + "_id": "67b82fdb4007b92e1c08ce78", + "_tpl": "5fce0cf655375d18a253eff0", + "slotId": "mod_foregrip", + "parentId": "67b82fdb4007b92e1c08ce72" + }, + { + "_id": "67b82fdb4007b92e1c08ce79", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b82fdb4007b92e1c08ce72" + }, + { + "_id": "67b82fdb4007b92e1c08ce7a", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b82fdb4007b92e1c08ce73" + } + ] + }, + { + "Id": "67b8308f0100185d53bab912", + "Name": "supr long holoUH", + "Root": "67b830ab4007b92e1c090c4a", + "Items": [ + { + "_id": "67b830ab4007b92e1c090c4a", + "_tpl": "6184055050224f204c1da540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b830ab4007b92e1c090c4b", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b830ab4007b92e1c090c4a" + }, + { + "_id": "67b830ab4007b92e1c090c4c", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b830ab4007b92e1c090c4a" + }, + { + "_id": "67b830ab4007b92e1c090c4d", + "_tpl": "618405198004cc50514c3594", + "slotId": "mod_reciever", + "parentId": "67b830ab4007b92e1c090c4a" + }, + { + "_id": "67b830ab4007b92e1c090c4e", + "_tpl": "66ffc246a81a4f85e70d4d06", + "slotId": "mod_stock", + "parentId": "67b830ab4007b92e1c090c4a" + }, + { + "_id": "67b830ab4007b92e1c090c4f", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b830ab4007b92e1c090c4a" + }, + { + "_id": "67b830ab4007b92e1c090c50", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b830ab4007b92e1c090c4d" + }, + { + "_id": "67b830ab4007b92e1c090c51", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67b830ab4007b92e1c090c4d" + }, + { + "_id": "67b830ab4007b92e1c090c52", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b830ab4007b92e1c090c4d" + }, + { + "_id": "67b830ab4007b92e1c090c53", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b830ab4007b92e1c090c4d" + }, + { + "_id": "67b830ab4007b92e1c090c54", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b830ab4007b92e1c090c4d" + }, + { + "_id": "67b830ab4007b92e1c090c55", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b830ab4007b92e1c090c4e" + }, + { + "_id": "67b830ab4007b92e1c090c56", + "_tpl": "5cff9e5ed7ad1a09407397d4", + "slotId": "mod_muzzle", + "parentId": "67b830ab4007b92e1c090c51" + }, + { + "_id": "67b830ab4007b92e1c090c57", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b830ab4007b92e1c090c51" + }, + { + "_id": "67b830ab4007b92e1c090c58", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b830ab4007b92e1c090c53" + }, + { + "_id": "67b830ab4007b92e1c090c59", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b830ab4007b92e1c090c53" + }, + { + "_id": "67b830ab4007b92e1c090c5a", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b830ab4007b92e1c090c54" + }, + { + "_id": "67b830ab4007b92e1c090c5b", + "_tpl": "5cff9e84d7ad1a049e54ed55", + "slotId": "mod_muzzle", + "parentId": "67b830ab4007b92e1c090c56" + }, + { + "_id": "67b830ab4007b92e1c090c5c", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b830ab4007b92e1c090c55" + }, + { + "_id": "67b830ab4007b92e1c090c5d", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b830ab4007b92e1c090c5c" + }, + { + "_id": "67b830ab4007b92e1c090c5e", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b830ab4007b92e1c090c5d" + } + ] + }, + { + "Id": "67b830d70100185d5308bf58", + "Name": "supr long 2x", + "Root": "67b830db4007b92e1c091ba8", + "Items": [ + { + "_id": "67b830db4007b92e1c091ba8", + "_tpl": "6184055050224f204c1da540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b830db4007b92e1c091ba9", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b830db4007b92e1c091ba8" + }, + { + "_id": "67b830db4007b92e1c091baa", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b830db4007b92e1c091ba8" + }, + { + "_id": "67b830db4007b92e1c091bab", + "_tpl": "618405198004cc50514c3594", + "slotId": "mod_reciever", + "parentId": "67b830db4007b92e1c091ba8" + }, + { + "_id": "67b830db4007b92e1c091bac", + "_tpl": "66ffc246a81a4f85e70d4d06", + "slotId": "mod_stock", + "parentId": "67b830db4007b92e1c091ba8" + }, + { + "_id": "67b830db4007b92e1c091bad", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b830db4007b92e1c091ba8" + }, + { + "_id": "67b830db4007b92e1c091bae", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b830db4007b92e1c091bab" + }, + { + "_id": "67b830db4007b92e1c091baf", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67b830db4007b92e1c091bab" + }, + { + "_id": "67b830db4007b92e1c091bb0", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b830db4007b92e1c091bab" + }, + { + "_id": "67b830db4007b92e1c091bb1", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b830db4007b92e1c091bab" + }, + { + "_id": "67b830db4007b92e1c091bb2", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b830db4007b92e1c091bab" + }, + { + "_id": "67b830db4007b92e1c091bb3", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b830db4007b92e1c091bac" + }, + { + "_id": "67b830db4007b92e1c091bb4", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b830db4007b92e1c091baf" + }, + { + "_id": "67b830db4007b92e1c091bb5", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b830db4007b92e1c091baf" + }, + { + "_id": "67b830db4007b92e1c091bb6", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b830db4007b92e1c091bb1" + }, + { + "_id": "67b830db4007b92e1c091bb7", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b830db4007b92e1c091bb1" + }, + { + "_id": "67b830db4007b92e1c091bb8", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b830db4007b92e1c091bb2" + }, + { + "_id": "67b830db4007b92e1c091bb9", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b830db4007b92e1c091bb4" + }, + { + "_id": "67b830db4007b92e1c091bba", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b830db4007b92e1c091bb3" + }, + { + "_id": "67b830db4007b92e1c091bbb", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b830db4007b92e1c091bba" + }, + { + "_id": "67b830db4007b92e1c091bbc", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b830db4007b92e1c091bbb" + } + ] + }, + { + "Id": "67b8310c0100185d530090f2", + "Name": "supr long vudu", + "Root": "67b831114007b92e1c092b2d", + "Items": [ + { + "_id": "67b831114007b92e1c092b2d", + "_tpl": "6184055050224f204c1da540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b831114007b92e1c092b2e", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b831114007b92e1c092b2d" + }, + { + "_id": "67b831114007b92e1c092b2f", + "_tpl": "5c6d46132e221601da357d56", + "slotId": "mod_magazine", + "parentId": "67b831114007b92e1c092b2d" + }, + { + "_id": "67b831114007b92e1c092b30", + "_tpl": "618405198004cc50514c3594", + "slotId": "mod_reciever", + "parentId": "67b831114007b92e1c092b2d" + }, + { + "_id": "67b831114007b92e1c092b31", + "_tpl": "66ffc246a81a4f85e70d4d06", + "slotId": "mod_stock", + "parentId": "67b831114007b92e1c092b2d" + }, + { + "_id": "67b831114007b92e1c092b32", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b831114007b92e1c092b2d" + }, + { + "_id": "67b831114007b92e1c092b33", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67b831114007b92e1c092b30" + }, + { + "_id": "67b831114007b92e1c092b34", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67b831114007b92e1c092b30" + }, + { + "_id": "67b831114007b92e1c092b35", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b831114007b92e1c092b30" + }, + { + "_id": "67b831114007b92e1c092b36", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b831114007b92e1c092b30" + }, + { + "_id": "67b831114007b92e1c092b37", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b831114007b92e1c092b30" + }, + { + "_id": "67b831114007b92e1c092b38", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67b831114007b92e1c092b31" + }, + { + "_id": "67b831114007b92e1c092b39", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b831114007b92e1c092b33" + }, + { + "_id": "67b831114007b92e1c092b3a", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b831114007b92e1c092b34" + }, + { + "_id": "67b831114007b92e1c092b3b", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b831114007b92e1c092b34" + }, + { + "_id": "67b831114007b92e1c092b3c", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b831114007b92e1c092b36" + }, + { + "_id": "67b831114007b92e1c092b3d", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b831114007b92e1c092b36" + }, + { + "_id": "67b831114007b92e1c092b3e", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b831114007b92e1c092b37" + }, + { + "_id": "67b831114007b92e1c092b3f", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b831114007b92e1c092b3a" + }, + { + "_id": "67b831114007b92e1c092b40", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b831114007b92e1c092b38" + }, + { + "_id": "67b831114007b92e1c092b41", + "_tpl": "5d44069ca4b9361ebd26fc37", + "slotId": "mod_stock_000", + "parentId": "67b831114007b92e1c092b40" + } + ] + }, + { + "Id": "67b831420100185d53758213", + "Name": "loud long vudu", + "Root": "67b831484007b92e1c093a66", + "Items": [ + { + "_id": "67b831484007b92e1c093a66", + "_tpl": "6184055050224f204c1da540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b831484007b92e1c093a67", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b831484007b92e1c093a66" + }, + { + "_id": "67b831484007b92e1c093a68", + "_tpl": "5c6d46132e221601da357d56", + "slotId": "mod_magazine", + "parentId": "67b831484007b92e1c093a66" + }, + { + "_id": "67b831484007b92e1c093a69", + "_tpl": "618405198004cc50514c3594", + "slotId": "mod_reciever", + "parentId": "67b831484007b92e1c093a66" + }, + { + "_id": "67b831484007b92e1c093a6a", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67b831484007b92e1c093a66" + }, + { + "_id": "67b831484007b92e1c093a6b", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b831484007b92e1c093a66" + }, + { + "_id": "67b831484007b92e1c093a6c", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67b831484007b92e1c093a69" + }, + { + "_id": "67b831484007b92e1c093a6d", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67b831484007b92e1c093a69" + }, + { + "_id": "67b831484007b92e1c093a6e", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b831484007b92e1c093a69" + }, + { + "_id": "67b831484007b92e1c093a6f", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b831484007b92e1c093a69" + }, + { + "_id": "67b831484007b92e1c093a70", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b831484007b92e1c093a69" + }, + { + "_id": "67b831484007b92e1c093a71", + "_tpl": "618167528004cc50514c34f9", + "slotId": "mod_stock_001", + "parentId": "67b831484007b92e1c093a6a" + }, + { + "_id": "67b831484007b92e1c093a72", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67b831484007b92e1c093a6a" + }, + { + "_id": "67b831484007b92e1c093a73", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b831484007b92e1c093a6c" + }, + { + "_id": "67b831484007b92e1c093a74", + "_tpl": "5d02676dd7ad1a049e54f6dc", + "slotId": "mod_muzzle", + "parentId": "67b831484007b92e1c093a6d" + }, + { + "_id": "67b831484007b92e1c093a75", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b831484007b92e1c093a6d" + }, + { + "_id": "67b831484007b92e1c093a76", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b831484007b92e1c093a6f" + }, + { + "_id": "67b831484007b92e1c093a77", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b831484007b92e1c093a6f" + }, + { + "_id": "67b831484007b92e1c093a78", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b831484007b92e1c093a70" + } + ] + }, + { + "Id": "67b831760100185d53a6a520", + "Name": "loud long holo", + "Root": "67b8317a4007b92e1c094a9c", + "Items": [ + { + "_id": "67b8317a4007b92e1c094a9c", + "_tpl": "6184055050224f204c1da540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8317a4007b92e1c094a9d", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b8317a4007b92e1c094a9c" + }, + { + "_id": "67b8317a4007b92e1c094a9e", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b8317a4007b92e1c094a9c" + }, + { + "_id": "67b8317a4007b92e1c094a9f", + "_tpl": "618405198004cc50514c3594", + "slotId": "mod_reciever", + "parentId": "67b8317a4007b92e1c094a9c" + }, + { + "_id": "67b8317a4007b92e1c094aa0", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67b8317a4007b92e1c094a9c" + }, + { + "_id": "67b8317a4007b92e1c094aa1", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b8317a4007b92e1c094a9c" + }, + { + "_id": "67b8317a4007b92e1c094aa2", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8317a4007b92e1c094a9f" + }, + { + "_id": "67b8317a4007b92e1c094aa3", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67b8317a4007b92e1c094a9f" + }, + { + "_id": "67b8317a4007b92e1c094aa4", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8317a4007b92e1c094a9f" + }, + { + "_id": "67b8317a4007b92e1c094aa5", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b8317a4007b92e1c094a9f" + }, + { + "_id": "67b8317a4007b92e1c094aa6", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b8317a4007b92e1c094a9f" + }, + { + "_id": "67b8317a4007b92e1c094aa7", + "_tpl": "618167528004cc50514c34f9", + "slotId": "mod_stock_001", + "parentId": "67b8317a4007b92e1c094aa0" + }, + { + "_id": "67b8317a4007b92e1c094aa8", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67b8317a4007b92e1c094aa0" + }, + { + "_id": "67b8317a4007b92e1c094aa9", + "_tpl": "5d02676dd7ad1a049e54f6dc", + "slotId": "mod_muzzle", + "parentId": "67b8317a4007b92e1c094aa3" + }, + { + "_id": "67b8317a4007b92e1c094aaa", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8317a4007b92e1c094aa3" + }, + { + "_id": "67b8317a4007b92e1c094aab", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b8317a4007b92e1c094aa5" + }, + { + "_id": "67b8317a4007b92e1c094aac", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b8317a4007b92e1c094aa5" + }, + { + "_id": "67b8317a4007b92e1c094aad", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8317a4007b92e1c094aa6" + }, + { + "_id": "67b8317a4007b92e1c094aae", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67b8317a4007b92e1c094aa7" + } + ] + }, + { + "Id": "67b831f60100185d53dd330b", + "Name": "loud long bravo", + "Root": "67b831fe4007b92e1c097ac2", + "Items": [ + { + "_id": "67b831fe4007b92e1c097ac2", + "_tpl": "6184055050224f204c1da540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b831fe4007b92e1c097ac3", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b831fe4007b92e1c097ac2" + }, + { + "_id": "67b831fe4007b92e1c097ac4", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b831fe4007b92e1c097ac2" + }, + { + "_id": "67b831fe4007b92e1c097ac5", + "_tpl": "618405198004cc50514c3594", + "slotId": "mod_reciever", + "parentId": "67b831fe4007b92e1c097ac2" + }, + { + "_id": "67b831fe4007b92e1c097ac6", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67b831fe4007b92e1c097ac2" + }, + { + "_id": "67b831fe4007b92e1c097ac7", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b831fe4007b92e1c097ac2" + }, + { + "_id": "67b831fe4007b92e1c097ac8", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b831fe4007b92e1c097ac5" + }, + { + "_id": "67b831fe4007b92e1c097ac9", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67b831fe4007b92e1c097ac5" + }, + { + "_id": "67b831fe4007b92e1c097aca", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b831fe4007b92e1c097ac5" + }, + { + "_id": "67b831fe4007b92e1c097acb", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b831fe4007b92e1c097ac5" + }, + { + "_id": "67b831fe4007b92e1c097acc", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b831fe4007b92e1c097ac5" + }, + { + "_id": "67b831fe4007b92e1c097acd", + "_tpl": "618167528004cc50514c34f9", + "slotId": "mod_stock_001", + "parentId": "67b831fe4007b92e1c097ac6" + }, + { + "_id": "67b831fe4007b92e1c097ace", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67b831fe4007b92e1c097ac6" + }, + { + "_id": "67b831fe4007b92e1c097acf", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b831fe4007b92e1c097ac8" + }, + { + "_id": "67b831fe4007b92e1c097ad0", + "_tpl": "5d02676dd7ad1a049e54f6dc", + "slotId": "mod_muzzle", + "parentId": "67b831fe4007b92e1c097ac9" + }, + { + "_id": "67b831fe4007b92e1c097ad1", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b831fe4007b92e1c097ac9" + }, + { + "_id": "67b831fe4007b92e1c097ad2", + "_tpl": "5a7dbfc1159bd40016548fde", + "slotId": "mod_foregrip", + "parentId": "67b831fe4007b92e1c097acb" + }, + { + "_id": "67b831fe4007b92e1c097ad3", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b831fe4007b92e1c097acb" + }, + { + "_id": "67b831fe4007b92e1c097ad4", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b831fe4007b92e1c097acc" + }, + { + "_id": "67b831fe4007b92e1c097ad5", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b831fe4007b92e1c097acf" + }, + { + "_id": "67b831fe4007b92e1c097ad6", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67b831fe4007b92e1c097acd" + } + ] + }, + { + "Id": "67b833460100185d5342d377", + "Name": "supr tan tango", + "Root": "67b833504007b92e1c09d90c", + "Items": [ + { + "_id": "67b833504007b92e1c09d90c", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b833504007b92e1c09d90d", + "_tpl": "5c48a2c22e221602b313fb6c", + "slotId": "mod_pistol_grip", + "parentId": "67b833504007b92e1c09d90c" + }, + { + "_id": "67b833504007b92e1c09d90e", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b833504007b92e1c09d90c" + }, + { + "_id": "67b833504007b92e1c09d90f", + "_tpl": "5c48a14f2e2216152006edd7", + "slotId": "mod_handguard", + "parentId": "67b833504007b92e1c09d90c" + }, + { + "_id": "67b833504007b92e1c09d910", + "_tpl": "5c48a2852e221602b21d5923", + "slotId": "mod_barrel", + "parentId": "67b833504007b92e1c09d90c" + }, + { + "_id": "67b833504007b92e1c09d911", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b833504007b92e1c09d90c" + }, + { + "_id": "67b833504007b92e1c09d912", + "_tpl": "5c18b9192e2216398b5a8104", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b833504007b92e1c09d90c" + }, + { + "_id": "67b833504007b92e1c09d913", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b833504007b92e1c09d90f" + }, + { + "_id": "67b833504007b92e1c09d914", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67b833504007b92e1c09d90f" + }, + { + "_id": "67b833504007b92e1c09d915", + "_tpl": "5c18b90d2e2216152142466b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b833504007b92e1c09d90f" + }, + { + "_id": "67b833504007b92e1c09d916", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67b833504007b92e1c09d910" + }, + { + "_id": "67b833504007b92e1c09d917", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b833504007b92e1c09d911" + }, + { + "_id": "67b833504007b92e1c09d918", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b833504007b92e1c09d913" + }, + { + "_id": "67b833504007b92e1c09d919", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b833504007b92e1c09d914" + }, + { + "_id": "67b833504007b92e1c09d91a", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67b833504007b92e1c09d916" + } + ] + }, + { + "Id": "67b8336e0100185d53290555", + "Name": "supr tan razor", + "Root": "67b833744007b92e1c09e94c", + "Items": [ + { + "_id": "67b833744007b92e1c09e94c", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b833744007b92e1c09e94d", + "_tpl": "5c48a2c22e221602b313fb6c", + "slotId": "mod_pistol_grip", + "parentId": "67b833744007b92e1c09e94c" + }, + { + "_id": "67b833744007b92e1c09e94e", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b833744007b92e1c09e94c" + }, + { + "_id": "67b833744007b92e1c09e94f", + "_tpl": "5c48a14f2e2216152006edd7", + "slotId": "mod_handguard", + "parentId": "67b833744007b92e1c09e94c" + }, + { + "_id": "67b833744007b92e1c09e950", + "_tpl": "5c48a2852e221602b21d5923", + "slotId": "mod_barrel", + "parentId": "67b833744007b92e1c09e94c" + }, + { + "_id": "67b833744007b92e1c09e951", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b833744007b92e1c09e94c" + }, + { + "_id": "67b833744007b92e1c09e952", + "_tpl": "5c18b9192e2216398b5a8104", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b833744007b92e1c09e94c" + }, + { + "_id": "67b833744007b92e1c09e953", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b833744007b92e1c09e94f" + }, + { + "_id": "67b833744007b92e1c09e954", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67b833744007b92e1c09e94f" + }, + { + "_id": "67b833744007b92e1c09e955", + "_tpl": "5c18b90d2e2216152142466b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b833744007b92e1c09e94f" + }, + { + "_id": "67b833744007b92e1c09e956", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b833744007b92e1c09e950" + }, + { + "_id": "67b833744007b92e1c09e957", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b833744007b92e1c09e951" + }, + { + "_id": "67b833744007b92e1c09e958", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b833744007b92e1c09e953" + }, + { + "_id": "67b833744007b92e1c09e959", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b833744007b92e1c09e954" + }, + { + "_id": "67b833744007b92e1c09e95a", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b833744007b92e1c09e956" + } + ] + }, + { + "Id": "67b8339e0100185d53032ec5", + "Name": "supr vudu", + "Root": "67b833a84007b92e1c09f963", + "Items": [ + { + "_id": "67b833a84007b92e1c09f963", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b833a84007b92e1c09f964", + "_tpl": "5c48a2c22e221602b313fb6c", + "slotId": "mod_pistol_grip", + "parentId": "67b833a84007b92e1c09f963" + }, + { + "_id": "67b833a84007b92e1c09f965", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b833a84007b92e1c09f963" + }, + { + "_id": "67b833a84007b92e1c09f966", + "_tpl": "5c48a14f2e2216152006edd7", + "slotId": "mod_handguard", + "parentId": "67b833a84007b92e1c09f963" + }, + { + "_id": "67b833a84007b92e1c09f967", + "_tpl": "5c48a2852e221602b21d5923", + "slotId": "mod_barrel", + "parentId": "67b833a84007b92e1c09f963" + }, + { + "_id": "67b833a84007b92e1c09f968", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b833a84007b92e1c09f963" + }, + { + "_id": "67b833a84007b92e1c09f969", + "_tpl": "5c18b9192e2216398b5a8104", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b833a84007b92e1c09f963" + }, + { + "_id": "67b833a84007b92e1c09f96a", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b833a84007b92e1c09f966" + }, + { + "_id": "67b833a84007b92e1c09f96b", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67b833a84007b92e1c09f966" + }, + { + "_id": "67b833a84007b92e1c09f96c", + "_tpl": "5c18b90d2e2216152142466b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b833a84007b92e1c09f966" + }, + { + "_id": "67b833a84007b92e1c09f96d", + "_tpl": "6386120cd6baa055ad1e201c", + "slotId": "mod_muzzle", + "parentId": "67b833a84007b92e1c09f967" + }, + { + "_id": "67b833a84007b92e1c09f96e", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b833a84007b92e1c09f968" + }, + { + "_id": "67b833a84007b92e1c09f96f", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b833a84007b92e1c09f96a" + }, + { + "_id": "67b833a84007b92e1c09f970", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b833a84007b92e1c09f96b" + }, + { + "_id": "67b833a84007b92e1c09f971", + "_tpl": "638612b607dfed1ccb7206ba", + "slotId": "mod_muzzle", + "parentId": "67b833a84007b92e1c09f96d" + } + ] + }, + { + "Id": "67b833d40100185d5345a5fc", + "Name": "loud holo", + "Root": "67b833da4007b92e1c0a0956", + "Items": [ + { + "_id": "67b833da4007b92e1c0a0956", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b833da4007b92e1c0a0957", + "_tpl": "5c48a2c22e221602b313fb6c", + "slotId": "mod_pistol_grip", + "parentId": "67b833da4007b92e1c0a0956" + }, + { + "_id": "67b833da4007b92e1c0a0958", + "_tpl": "544a37c44bdc2d25388b4567", + "slotId": "mod_magazine", + "parentId": "67b833da4007b92e1c0a0956" + }, + { + "_id": "67b833da4007b92e1c0a0959", + "_tpl": "5c48a14f2e2216152006edd7", + "slotId": "mod_handguard", + "parentId": "67b833da4007b92e1c0a0956" + }, + { + "_id": "67b833da4007b92e1c0a095a", + "_tpl": "5c48a2852e221602b21d5923", + "slotId": "mod_barrel", + "parentId": "67b833da4007b92e1c0a0956" + }, + { + "_id": "67b833da4007b92e1c0a095b", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b833da4007b92e1c0a0956" + }, + { + "_id": "67b833da4007b92e1c0a095c", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b833da4007b92e1c0a0959" + }, + { + "_id": "67b833da4007b92e1c0a095d", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67b833da4007b92e1c0a0959" + }, + { + "_id": "67b833da4007b92e1c0a095e", + "_tpl": "63ac5c9658d0485fc039f0b8", + "slotId": "mod_muzzle", + "parentId": "67b833da4007b92e1c0a095a" + }, + { + "_id": "67b833da4007b92e1c0a095f", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b833da4007b92e1c0a095c" + }, + { + "_id": "67b833da4007b92e1c0a0960", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b833da4007b92e1c0a095d" + } + ] + }, + { + "Id": "67b834190100185d53cef315", + "Name": "loud 2x", + "Root": "67b8341d4007b92e1c0a18f0", + "Items": [ + { + "_id": "67b8341d4007b92e1c0a18f0", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8341d4007b92e1c0a18f1", + "_tpl": "5c48a2c22e221602b313fb6c", + "slotId": "mod_pistol_grip", + "parentId": "67b8341d4007b92e1c0a18f0" + }, + { + "_id": "67b8341d4007b92e1c0a18f2", + "_tpl": "544a37c44bdc2d25388b4567", + "slotId": "mod_magazine", + "parentId": "67b8341d4007b92e1c0a18f0" + }, + { + "_id": "67b8341d4007b92e1c0a18f3", + "_tpl": "5c48a14f2e2216152006edd7", + "slotId": "mod_handguard", + "parentId": "67b8341d4007b92e1c0a18f0" + }, + { + "_id": "67b8341d4007b92e1c0a18f4", + "_tpl": "5c48a2852e221602b21d5923", + "slotId": "mod_barrel", + "parentId": "67b8341d4007b92e1c0a18f0" + }, + { + "_id": "67b8341d4007b92e1c0a18f5", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8341d4007b92e1c0a18f0" + }, + { + "_id": "67b8341d4007b92e1c0a18f6", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b8341d4007b92e1c0a18f3" + }, + { + "_id": "67b8341d4007b92e1c0a18f7", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67b8341d4007b92e1c0a18f3" + }, + { + "_id": "67b8341d4007b92e1c0a18f8", + "_tpl": "664301213dd83ddae20dda18", + "slotId": "mod_muzzle", + "parentId": "67b8341d4007b92e1c0a18f4" + }, + { + "_id": "67b8341d4007b92e1c0a18f9", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b8341d4007b92e1c0a18f6" + }, + { + "_id": "67b8341d4007b92e1c0a18fa", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8341d4007b92e1c0a18f7" + } + ] + }, + { + "Id": "67b834a00100185d53e67f4e", + "Name": "supr hamr", + "Root": "67b834a44007b92e1c0a480a", + "Items": [ + { + "_id": "67b834a44007b92e1c0a480a", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b834a44007b92e1c0a480b", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67b834a44007b92e1c0a480a" + }, + { + "_id": "67b834a44007b92e1c0a480c", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67b834a44007b92e1c0a480a" + }, + { + "_id": "67b834a44007b92e1c0a480d", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67b834a44007b92e1c0a480a" + }, + { + "_id": "67b834a44007b92e1c0a480e", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67b834a44007b92e1c0a480a" + }, + { + "_id": "67b834a44007b92e1c0a480f", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b834a44007b92e1c0a480a" + }, + { + "_id": "67b834a44007b92e1c0a4810", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b834a44007b92e1c0a480d" + }, + { + "_id": "67b834a44007b92e1c0a4811", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67b834a44007b92e1c0a480d" + }, + { + "_id": "67b834a44007b92e1c0a4812", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b834a44007b92e1c0a480e" + }, + { + "_id": "67b834a44007b92e1c0a4813", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b834a44007b92e1c0a480f" + }, + { + "_id": "67b834a44007b92e1c0a4814", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b834a44007b92e1c0a4810" + }, + { + "_id": "67b834a44007b92e1c0a4815", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b834a44007b92e1c0a4811" + }, + { + "_id": "67b834a44007b92e1c0a4816", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b834a44007b92e1c0a4812" + } + ] + }, + { + "Id": "67b834b50100185d53a4a0dc", + "Name": "supr vudu black", + "Root": "67b834bf4007b92e1c0a56e0", + "Items": [ + { + "_id": "67b834bf4007b92e1c0a56e0", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b834bf4007b92e1c0a56e1", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67b834bf4007b92e1c0a56e0" + }, + { + "_id": "67b834bf4007b92e1c0a56e2", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67b834bf4007b92e1c0a56e0" + }, + { + "_id": "67b834bf4007b92e1c0a56e3", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67b834bf4007b92e1c0a56e0" + }, + { + "_id": "67b834bf4007b92e1c0a56e4", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67b834bf4007b92e1c0a56e0" + }, + { + "_id": "67b834bf4007b92e1c0a56e5", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b834bf4007b92e1c0a56e0" + }, + { + "_id": "67b834bf4007b92e1c0a56e6", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b834bf4007b92e1c0a56e3" + }, + { + "_id": "67b834bf4007b92e1c0a56e7", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67b834bf4007b92e1c0a56e3" + }, + { + "_id": "67b834bf4007b92e1c0a56e8", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b834bf4007b92e1c0a56e4" + }, + { + "_id": "67b834bf4007b92e1c0a56e9", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b834bf4007b92e1c0a56e5" + }, + { + "_id": "67b834bf4007b92e1c0a56ea", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b834bf4007b92e1c0a56e6" + }, + { + "_id": "67b834bf4007b92e1c0a56eb", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b834bf4007b92e1c0a56e7" + }, + { + "_id": "67b834bf4007b92e1c0a56ec", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b834bf4007b92e1c0a56e8" + } + ] + }, + { + "Id": "67b834d10100185d53715659", + "Name": "supr vudu black v2", + "Root": "67b834d84007b92e1c0a56f2", + "Items": [ + { + "_id": "67b834d84007b92e1c0a56f2", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b834d84007b92e1c0a56f3", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67b834d84007b92e1c0a56f2" + }, + { + "_id": "67b834d84007b92e1c0a56f4", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67b834d84007b92e1c0a56f2" + }, + { + "_id": "67b834d84007b92e1c0a56f5", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67b834d84007b92e1c0a56f2" + }, + { + "_id": "67b834d84007b92e1c0a56f6", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67b834d84007b92e1c0a56f2" + }, + { + "_id": "67b834d84007b92e1c0a56f7", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b834d84007b92e1c0a56f2" + }, + { + "_id": "67b834d84007b92e1c0a56f8", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b834d84007b92e1c0a56f5" + }, + { + "_id": "67b834d84007b92e1c0a56f9", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67b834d84007b92e1c0a56f5" + }, + { + "_id": "67b834d84007b92e1c0a56fa", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b834d84007b92e1c0a56f6" + }, + { + "_id": "67b834d84007b92e1c0a56fb", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b834d84007b92e1c0a56f7" + }, + { + "_id": "67b834d84007b92e1c0a56fc", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b834d84007b92e1c0a56f8" + }, + { + "_id": "67b834d84007b92e1c0a56fd", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b834d84007b92e1c0a56f9" + }, + { + "_id": "67b834d84007b92e1c0a56fe", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b834d84007b92e1c0a56fa" + } + ] + }, + { + "Id": "67b834f60100185d5308e361", + "Name": "supr holo black", + "Root": "67b834fe4007b92e1c0a660b", + "Items": [ + { + "_id": "67b834fe4007b92e1c0a660b", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b834fe4007b92e1c0a660c", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67b834fe4007b92e1c0a660b" + }, + { + "_id": "67b834fe4007b92e1c0a660d", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67b834fe4007b92e1c0a660b" + }, + { + "_id": "67b834fe4007b92e1c0a660e", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67b834fe4007b92e1c0a660b" + }, + { + "_id": "67b834fe4007b92e1c0a660f", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67b834fe4007b92e1c0a660b" + }, + { + "_id": "67b834fe4007b92e1c0a6610", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b834fe4007b92e1c0a660b" + }, + { + "_id": "67b834fe4007b92e1c0a6611", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b834fe4007b92e1c0a660e" + }, + { + "_id": "67b834fe4007b92e1c0a6612", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67b834fe4007b92e1c0a660e" + }, + { + "_id": "67b834fe4007b92e1c0a6613", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b834fe4007b92e1c0a660f" + }, + { + "_id": "67b834fe4007b92e1c0a6614", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b834fe4007b92e1c0a6611" + }, + { + "_id": "67b834fe4007b92e1c0a6615", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b834fe4007b92e1c0a6612" + }, + { + "_id": "67b834fe4007b92e1c0a6616", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b834fe4007b92e1c0a6613" + } + ] + }, + { + "Id": "67b8353a0100185d531112ab", + "Name": "loud holo black", + "Root": "67b8353f4007b92e1c0a7565", + "Items": [ + { + "_id": "67b8353f4007b92e1c0a7565", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8353f4007b92e1c0a7566", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67b8353f4007b92e1c0a7565" + }, + { + "_id": "67b8353f4007b92e1c0a7567", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67b8353f4007b92e1c0a7565" + }, + { + "_id": "67b8353f4007b92e1c0a7568", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67b8353f4007b92e1c0a7565" + }, + { + "_id": "67b8353f4007b92e1c0a7569", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67b8353f4007b92e1c0a7565" + }, + { + "_id": "67b8353f4007b92e1c0a756a", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8353f4007b92e1c0a7565" + }, + { + "_id": "67b8353f4007b92e1c0a756b", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b8353f4007b92e1c0a7568" + }, + { + "_id": "67b8353f4007b92e1c0a756c", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67b8353f4007b92e1c0a7568" + }, + { + "_id": "67b8353f4007b92e1c0a756d", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67b8353f4007b92e1c0a7569" + }, + { + "_id": "67b8353f4007b92e1c0a756e", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b8353f4007b92e1c0a756b" + }, + { + "_id": "67b8353f4007b92e1c0a756f", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8353f4007b92e1c0a756c" + } + ] + }, + { + "Id": "67b835720100185d539fad92", + "Name": "loud tac30 black", + "Root": "67b835784007b92e1c0a84d4", + "Items": [ + { + "_id": "67b835784007b92e1c0a84d4", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b835784007b92e1c0a84d5", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67b835784007b92e1c0a84d4" + }, + { + "_id": "67b835784007b92e1c0a84d6", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67b835784007b92e1c0a84d4" + }, + { + "_id": "67b835784007b92e1c0a84d7", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67b835784007b92e1c0a84d4" + }, + { + "_id": "67b835784007b92e1c0a84d8", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67b835784007b92e1c0a84d4" + }, + { + "_id": "67b835784007b92e1c0a84d9", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b835784007b92e1c0a84d4" + }, + { + "_id": "67b835784007b92e1c0a84da", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b835784007b92e1c0a84d7" + }, + { + "_id": "67b835784007b92e1c0a84db", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67b835784007b92e1c0a84d7" + }, + { + "_id": "67b835784007b92e1c0a84dc", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67b835784007b92e1c0a84d8" + }, + { + "_id": "67b835784007b92e1c0a84dd", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b835784007b92e1c0a84d9" + }, + { + "_id": "67b835784007b92e1c0a84de", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b835784007b92e1c0a84da" + }, + { + "_id": "67b835784007b92e1c0a84df", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b835784007b92e1c0a84db" + } + ] + }, + { + "Id": "67b835a30100185d5381ce6a", + "Name": "loud vudu black", + "Root": "67b835a84007b92e1c0a94cc", + "Items": [ + { + "_id": "67b835a84007b92e1c0a94cc", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b835a84007b92e1c0a94cd", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67b835a84007b92e1c0a94cc" + }, + { + "_id": "67b835a84007b92e1c0a94ce", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67b835a84007b92e1c0a94cc" + }, + { + "_id": "67b835a84007b92e1c0a94cf", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67b835a84007b92e1c0a94cc" + }, + { + "_id": "67b835a84007b92e1c0a94d0", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67b835a84007b92e1c0a94cc" + }, + { + "_id": "67b835a84007b92e1c0a94d1", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b835a84007b92e1c0a94cc" + }, + { + "_id": "67b835a84007b92e1c0a94d2", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b835a84007b92e1c0a94cf" + }, + { + "_id": "67b835a84007b92e1c0a94d3", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67b835a84007b92e1c0a94cf" + }, + { + "_id": "67b835a84007b92e1c0a94d4", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67b835a84007b92e1c0a94d0" + }, + { + "_id": "67b835a84007b92e1c0a94d5", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b835a84007b92e1c0a94d1" + }, + { + "_id": "67b835a84007b92e1c0a94d6", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b835a84007b92e1c0a94d2" + }, + { + "_id": "67b835a84007b92e1c0a94d7", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b835a84007b92e1c0a94d3" + } + ] + }, + { + "Id": "67b836100100185d5317863f", + "Name": "supr holoUH", + "Root": "67b836184007b92e1c0ac2bc", + "Items": [ + { + "_id": "67b836184007b92e1c0ac2bc", + "_tpl": "6718817435e3cfd9550d2c27", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b836184007b92e1c0ac2bd", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67b836184007b92e1c0ac2bc" + }, + { + "_id": "67b836184007b92e1c0ac2be", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67b836184007b92e1c0ac2bc" + }, + { + "_id": "67b836184007b92e1c0ac2bf", + "_tpl": "62e7c72df68e7a0676050c77", + "slotId": "mod_reciever", + "parentId": "67b836184007b92e1c0ac2bc" + }, + { + "_id": "67b836184007b92e1c0ac2c0", + "_tpl": "630e39c3bd357927e4007c15", + "slotId": "mod_barrel", + "parentId": "67b836184007b92e1c0ac2bf" + }, + { + "_id": "67b836184007b92e1c0ac2c1", + "_tpl": "62e7c8f91cd3fde4d503d690", + "slotId": "mod_mount", + "parentId": "67b836184007b92e1c0ac2bf" + }, + { + "_id": "67b836184007b92e1c0ac2c2", + "_tpl": "630f27f04f3f6281050b94d7", + "slotId": "mod_muzzle", + "parentId": "67b836184007b92e1c0ac2c0" + }, + { + "_id": "67b836184007b92e1c0ac2c3", + "_tpl": "6711107e1ad01bb88705347e", + "slotId": "mod_foregrip", + "parentId": "67b836184007b92e1c0ac2c0" + }, + { + "_id": "67b836184007b92e1c0ac2c4", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b836184007b92e1c0ac2c1" + }, + { + "_id": "67b836184007b92e1c0ac2c5", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b836184007b92e1c0ac2c2" + }, + { + "_id": "67b836184007b92e1c0ac2c6", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_002", + "parentId": "67b836184007b92e1c0ac2c3" + }, + { + "_id": "67b836184007b92e1c0ac2c7", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b836184007b92e1c0ac2c5" + }, + { + "_id": "67b836184007b92e1c0ac2c8", + "_tpl": "5c1bc5af2e221602b412949b", + "slotId": "mod_foregrip", + "parentId": "67b836184007b92e1c0ac2c6" + } + ] + }, + { + "Id": "67b836400100185d532df4f0", + "Name": "supr holoRemeo", + "Root": "67b836474007b92e1c0ac2ef", + "Items": [ + { + "_id": "67b836474007b92e1c0ac2ef", + "_tpl": "6718817435e3cfd9550d2c27", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b836474007b92e1c0ac2f0", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67b836474007b92e1c0ac2ef" + }, + { + "_id": "67b836474007b92e1c0ac2f1", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67b836474007b92e1c0ac2ef" + }, + { + "_id": "67b836474007b92e1c0ac2f2", + "_tpl": "62e7c72df68e7a0676050c77", + "slotId": "mod_reciever", + "parentId": "67b836474007b92e1c0ac2ef" + }, + { + "_id": "67b836474007b92e1c0ac2f3", + "_tpl": "630e39c3bd357927e4007c15", + "slotId": "mod_barrel", + "parentId": "67b836474007b92e1c0ac2f2" + }, + { + "_id": "67b836474007b92e1c0ac2f4", + "_tpl": "62e7c8f91cd3fde4d503d690", + "slotId": "mod_mount", + "parentId": "67b836474007b92e1c0ac2f2" + }, + { + "_id": "67b836474007b92e1c0ac2f5", + "_tpl": "630f27f04f3f6281050b94d7", + "slotId": "mod_muzzle", + "parentId": "67b836474007b92e1c0ac2f3" + }, + { + "_id": "67b836474007b92e1c0ac2f6", + "_tpl": "6711107e1ad01bb88705347e", + "slotId": "mod_foregrip", + "parentId": "67b836474007b92e1c0ac2f3" + }, + { + "_id": "67b836474007b92e1c0ac2f7", + "_tpl": "60a23797a37c940de7062d02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b836474007b92e1c0ac2f4" + }, + { + "_id": "67b836474007b92e1c0ac2f8", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b836474007b92e1c0ac2f5" + }, + { + "_id": "67b836474007b92e1c0ac2f9", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_002", + "parentId": "67b836474007b92e1c0ac2f6" + }, + { + "_id": "67b836474007b92e1c0ac2fa", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b836474007b92e1c0ac2f8" + }, + { + "_id": "67b836474007b92e1c0ac2fb", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b836474007b92e1c0ac2f9" + } + ] + }, + { + "Id": "67b836790100185d53c68f47", + "Name": "supr Bravo", + "Root": "67b8367e4007b92e1c0ae1e9", + "Items": [ + { + "_id": "67b8367e4007b92e1c0ae1e9", + "_tpl": "6718817435e3cfd9550d2c27", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8367e4007b92e1c0ae1ea", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67b8367e4007b92e1c0ae1e9" + }, + { + "_id": "67b8367e4007b92e1c0ae1eb", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67b8367e4007b92e1c0ae1e9" + }, + { + "_id": "67b8367e4007b92e1c0ae1ec", + "_tpl": "62e7c72df68e7a0676050c77", + "slotId": "mod_reciever", + "parentId": "67b8367e4007b92e1c0ae1e9" + }, + { + "_id": "67b8367e4007b92e1c0ae1ed", + "_tpl": "630e39c3bd357927e4007c15", + "slotId": "mod_barrel", + "parentId": "67b8367e4007b92e1c0ae1ec" + }, + { + "_id": "67b8367e4007b92e1c0ae1ee", + "_tpl": "62e7c8f91cd3fde4d503d690", + "slotId": "mod_mount", + "parentId": "67b8367e4007b92e1c0ae1ec" + }, + { + "_id": "67b8367e4007b92e1c0ae1ef", + "_tpl": "630f27f04f3f6281050b94d7", + "slotId": "mod_muzzle", + "parentId": "67b8367e4007b92e1c0ae1ed" + }, + { + "_id": "67b8367e4007b92e1c0ae1f0", + "_tpl": "6711107e1ad01bb88705347e", + "slotId": "mod_foregrip", + "parentId": "67b8367e4007b92e1c0ae1ed" + }, + { + "_id": "67b8367e4007b92e1c0ae1f1", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8367e4007b92e1c0ae1ee" + }, + { + "_id": "67b8367e4007b92e1c0ae1f2", + "_tpl": "6386120cd6baa055ad1e201c", + "slotId": "mod_muzzle", + "parentId": "67b8367e4007b92e1c0ae1ef" + }, + { + "_id": "67b8367e4007b92e1c0ae1f3", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_002", + "parentId": "67b8367e4007b92e1c0ae1f0" + }, + { + "_id": "67b8367e4007b92e1c0ae1f4", + "_tpl": "638612b607dfed1ccb7206ba", + "slotId": "mod_muzzle", + "parentId": "67b8367e4007b92e1c0ae1f2" + }, + { + "_id": "67b8367e4007b92e1c0ae1f5", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b8367e4007b92e1c0ae1f3" + }, + { + "_id": "67b8367e4007b92e1c0ae1f6", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b8367e4007b92e1c0ae1f1" + }, + { + "_id": "67b8367e4007b92e1c0ae1f7", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8367e4007b92e1c0ae1f6" + } + ] + }, + { + "Id": "67b836ed0100185d53f76018", + "Name": "supr vudu green", + "Root": "67b837004007b92e1c0b0015", + "Items": [ + { + "_id": "67b837004007b92e1c0b0015", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b837004007b92e1c0b0016", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67b837004007b92e1c0b0015" + }, + { + "_id": "67b837004007b92e1c0b0017", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67b837004007b92e1c0b0015" + }, + { + "_id": "67b837004007b92e1c0b0018", + "_tpl": "62e7c72df68e7a0676050c77", + "slotId": "mod_reciever", + "parentId": "67b837004007b92e1c0b0015" + }, + { + "_id": "67b837004007b92e1c0b0019", + "_tpl": "62e7c7f3c34ea971710c32fc", + "slotId": "mod_barrel", + "parentId": "67b837004007b92e1c0b0018" + }, + { + "_id": "67b837004007b92e1c0b001a", + "_tpl": "62e7c8f91cd3fde4d503d690", + "slotId": "mod_mount", + "parentId": "67b837004007b92e1c0b0018" + }, + { + "_id": "67b837004007b92e1c0b001b", + "_tpl": "630f27f04f3f6281050b94d7", + "slotId": "mod_muzzle_000", + "parentId": "67b837004007b92e1c0b0019" + }, + { + "_id": "67b837004007b92e1c0b001c", + "_tpl": "6711107e1ad01bb88705347e", + "slotId": "mod_foregrip", + "parentId": "67b837004007b92e1c0b0019" + }, + { + "_id": "67b837004007b92e1c0b001d", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b837004007b92e1c0b001a" + }, + { + "_id": "67b837004007b92e1c0b001e", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b837004007b92e1c0b001b" + }, + { + "_id": "67b837004007b92e1c0b001f", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_002", + "parentId": "67b837004007b92e1c0b001c" + }, + { + "_id": "67b837004007b92e1c0b0020", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b837004007b92e1c0b001e" + }, + { + "_id": "67b837004007b92e1c0b0021", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b837004007b92e1c0b001f" + }, + { + "_id": "67b837004007b92e1c0b0022", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b837004007b92e1c0b001d" + } + ] + }, + { + "Id": "67b8373f0100185d53b4700c", + "Name": "loud vudu green", + "Root": "67b837464007b92e1c0b1fbe", + "Items": [ + { + "_id": "67b837464007b92e1c0b1fbe", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b837464007b92e1c0b1fbf", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67b837464007b92e1c0b1fbe" + }, + { + "_id": "67b837464007b92e1c0b1fc0", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67b837464007b92e1c0b1fbe" + }, + { + "_id": "67b837464007b92e1c0b1fc1", + "_tpl": "62e7c72df68e7a0676050c77", + "slotId": "mod_reciever", + "parentId": "67b837464007b92e1c0b1fbe" + }, + { + "_id": "67b837464007b92e1c0b1fc2", + "_tpl": "62e7c7f3c34ea971710c32fc", + "slotId": "mod_barrel", + "parentId": "67b837464007b92e1c0b1fc1" + }, + { + "_id": "67b837464007b92e1c0b1fc3", + "_tpl": "62e7c8f91cd3fde4d503d690", + "slotId": "mod_mount", + "parentId": "67b837464007b92e1c0b1fc1" + }, + { + "_id": "67b837464007b92e1c0b1fc4", + "_tpl": "630f27f04f3f6281050b94d7", + "slotId": "mod_muzzle_000", + "parentId": "67b837464007b92e1c0b1fc2" + }, + { + "_id": "67b837464007b92e1c0b1fc5", + "_tpl": "6711107e1ad01bb88705347e", + "slotId": "mod_foregrip", + "parentId": "67b837464007b92e1c0b1fc2" + }, + { + "_id": "67b837464007b92e1c0b1fc6", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b837464007b92e1c0b1fc3" + }, + { + "_id": "67b837464007b92e1c0b1fc7", + "_tpl": "5cf6937cd7f00c056c53fb39", + "slotId": "mod_muzzle", + "parentId": "67b837464007b92e1c0b1fc4" + }, + { + "_id": "67b837464007b92e1c0b1fc8", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_002", + "parentId": "67b837464007b92e1c0b1fc5" + }, + { + "_id": "67b837464007b92e1c0b1fc9", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b837464007b92e1c0b1fc8" + }, + { + "_id": "67b837464007b92e1c0b1fca", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b837464007b92e1c0b1fc6" + } + ] + }, + { + "Id": "67b837670100185d5304162b", + "Name": "loud holo green", + "Root": "67b8376d4007b92e1c0b224c", + "Items": [ + { + "_id": "67b8376d4007b92e1c0b224c", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8376d4007b92e1c0b224d", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67b8376d4007b92e1c0b224c" + }, + { + "_id": "67b8376d4007b92e1c0b224e", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67b8376d4007b92e1c0b224c" + }, + { + "_id": "67b8376d4007b92e1c0b224f", + "_tpl": "62e7c72df68e7a0676050c77", + "slotId": "mod_reciever", + "parentId": "67b8376d4007b92e1c0b224c" + }, + { + "_id": "67b8376d4007b92e1c0b2250", + "_tpl": "62e7c7f3c34ea971710c32fc", + "slotId": "mod_barrel", + "parentId": "67b8376d4007b92e1c0b224f" + }, + { + "_id": "67b8376d4007b92e1c0b2251", + "_tpl": "62e7c8f91cd3fde4d503d690", + "slotId": "mod_mount", + "parentId": "67b8376d4007b92e1c0b224f" + }, + { + "_id": "67b8376d4007b92e1c0b2252", + "_tpl": "630f27f04f3f6281050b94d7", + "slotId": "mod_muzzle_000", + "parentId": "67b8376d4007b92e1c0b2250" + }, + { + "_id": "67b8376d4007b92e1c0b2253", + "_tpl": "6711107e1ad01bb88705347e", + "slotId": "mod_foregrip", + "parentId": "67b8376d4007b92e1c0b2250" + }, + { + "_id": "67b8376d4007b92e1c0b2254", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8376d4007b92e1c0b2251" + }, + { + "_id": "67b8376d4007b92e1c0b2255", + "_tpl": "5cf6937cd7f00c056c53fb39", + "slotId": "mod_muzzle", + "parentId": "67b8376d4007b92e1c0b2252" + }, + { + "_id": "67b8376d4007b92e1c0b2256", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_002", + "parentId": "67b8376d4007b92e1c0b2253" + }, + { + "_id": "67b8376d4007b92e1c0b2257", + "_tpl": "5c1bc5612e221602b5429350", + "slotId": "mod_foregrip", + "parentId": "67b8376d4007b92e1c0b2256" + } + ] + }, + { + "Id": "67b837900100185d53057311", + "Name": "supr holo green", + "Root": "67b837974007b92e1c0b31df", + "Items": [ + { + "_id": "67b837974007b92e1c0b31df", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b837974007b92e1c0b31e0", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67b837974007b92e1c0b31df" + }, + { + "_id": "67b837974007b92e1c0b31e1", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67b837974007b92e1c0b31df" + }, + { + "_id": "67b837974007b92e1c0b31e2", + "_tpl": "62e7c72df68e7a0676050c77", + "slotId": "mod_reciever", + "parentId": "67b837974007b92e1c0b31df" + }, + { + "_id": "67b837974007b92e1c0b31e3", + "_tpl": "62e7c7f3c34ea971710c32fc", + "slotId": "mod_barrel", + "parentId": "67b837974007b92e1c0b31e2" + }, + { + "_id": "67b837974007b92e1c0b31e4", + "_tpl": "62e7c8f91cd3fde4d503d690", + "slotId": "mod_mount", + "parentId": "67b837974007b92e1c0b31e2" + }, + { + "_id": "67b837974007b92e1c0b31e5", + "_tpl": "630f27f04f3f6281050b94d7", + "slotId": "mod_muzzle_000", + "parentId": "67b837974007b92e1c0b31e3" + }, + { + "_id": "67b837974007b92e1c0b31e6", + "_tpl": "6711107e1ad01bb88705347e", + "slotId": "mod_foregrip", + "parentId": "67b837974007b92e1c0b31e3" + }, + { + "_id": "67b837974007b92e1c0b31e7", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b837974007b92e1c0b31e4" + }, + { + "_id": "67b837974007b92e1c0b31e8", + "_tpl": "6386120cd6baa055ad1e201c", + "slotId": "mod_muzzle", + "parentId": "67b837974007b92e1c0b31e5" + }, + { + "_id": "67b837974007b92e1c0b31e9", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_002", + "parentId": "67b837974007b92e1c0b31e6" + }, + { + "_id": "67b837974007b92e1c0b31ea", + "_tpl": "638612b607dfed1ccb7206ba", + "slotId": "mod_muzzle", + "parentId": "67b837974007b92e1c0b31e8" + }, + { + "_id": "67b837974007b92e1c0b31eb", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b837974007b92e1c0b31e9" + } + ] + }, + { + "Id": "67b839910100185d53229806", + "Name": "loud short deltap", + "Root": "67b839974007b92e1c0bc8b1", + "Items": [ + { + "_id": "67b839974007b92e1c0bc8b1", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b839974007b92e1c0bc8b2", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67b839974007b92e1c0bc8b1" + }, + { + "_id": "67b839974007b92e1c0bc8b3", + "_tpl": "544a37c44bdc2d25388b4567", + "slotId": "mod_magazine", + "parentId": "67b839974007b92e1c0bc8b1" + }, + { + "_id": "67b839974007b92e1c0bc8b4", + "_tpl": "59bfe68886f7746004266202", + "slotId": "mod_reciever", + "parentId": "67b839974007b92e1c0bc8b1" + }, + { + "_id": "67b839974007b92e1c0bc8b5", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b839974007b92e1c0bc8b1" + }, + { + "_id": "67b839974007b92e1c0bc8b6", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67b839974007b92e1c0bc8b1" + }, + { + "_id": "67b839974007b92e1c0bc8b7", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b839974007b92e1c0bc8b4" + }, + { + "_id": "67b839974007b92e1c0bc8b8", + "_tpl": "55d35ee94bdc2d61338b4568", + "slotId": "mod_barrel", + "parentId": "67b839974007b92e1c0bc8b4" + }, + { + "_id": "67b839974007b92e1c0bc8b9", + "_tpl": "5c78f2612e221600114c9f0d", + "slotId": "mod_handguard", + "parentId": "67b839974007b92e1c0bc8b4" + }, + { + "_id": "67b839974007b92e1c0bc8ba", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b839974007b92e1c0bc8b4" + }, + { + "_id": "67b839974007b92e1c0bc8bb", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b839974007b92e1c0bc8b5" + }, + { + "_id": "67b839974007b92e1c0bc8bc", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b839974007b92e1c0bc8b7" + }, + { + "_id": "67b839974007b92e1c0bc8bd", + "_tpl": "664301213dd83ddae20dda18", + "slotId": "mod_muzzle", + "parentId": "67b839974007b92e1c0bc8b8" + }, + { + "_id": "67b839974007b92e1c0bc8be", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67b839974007b92e1c0bc8b8" + }, + { + "_id": "67b839974007b92e1c0bc8bf", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b839974007b92e1c0bc8b9" + }, + { + "_id": "67b839974007b92e1c0bc8c0", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b839974007b92e1c0bc8b9" + }, + { + "_id": "67b839974007b92e1c0bc8c1", + "_tpl": "5c78f2882e22165df16b832e", + "slotId": "mod_muzzle", + "parentId": "67b839974007b92e1c0bc8b9" + }, + { + "_id": "67b839974007b92e1c0bc8c2", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b839974007b92e1c0bc8b9" + }, + { + "_id": "67b839974007b92e1c0bc8c3", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b839974007b92e1c0bc8bf" + }, + { + "_id": "67b839974007b92e1c0bc8c4", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b839974007b92e1c0bc8bb" + } + ] + }, + { + "Id": "67b83a2c0100185d5334306d", + "Name": "holo", + "Root": "67b83a334007b92e1c0c050f", + "Items": [ + { + "_id": "67b83a334007b92e1c0c050f", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83a334007b92e1c0c0510", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67b83a334007b92e1c0c050f" + }, + { + "_id": "67b83a334007b92e1c0c0511", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67b83a334007b92e1c0c050f" + }, + { + "_id": "67b83a334007b92e1c0c0512", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83a334007b92e1c0c050f" + }, + { + "_id": "67b83a334007b92e1c0c0513", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "slotId": "mod_pistol_grip", + "parentId": "67b83a334007b92e1c0c050f" + }, + { + "_id": "67b83a334007b92e1c0c0514", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67b83a334007b92e1c0c050f" + }, + { + "_id": "67b83a334007b92e1c0c0515", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67b83a334007b92e1c0c050f" + }, + { + "_id": "67b83a334007b92e1c0c0516", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83a334007b92e1c0c0510" + }, + { + "_id": "67b83a334007b92e1c0c0517", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83a334007b92e1c0c0510" + }, + { + "_id": "67b83a334007b92e1c0c0518", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b83a334007b92e1c0c0513" + }, + { + "_id": "67b83a334007b92e1c0c0519", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83a334007b92e1c0c0514" + }, + { + "_id": "67b83a334007b92e1c0c051a", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b83a334007b92e1c0c0517" + }, + { + "_id": "67b83a334007b92e1c0c051b", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b83a334007b92e1c0c0517" + }, + { + "_id": "67b83a334007b92e1c0c051c", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b83a334007b92e1c0c0518" + } + ] + }, + { + "Id": "67b83a4f0100185d534b5a8d", + "Name": "holo v2", + "Root": "67b83a534007b92e1c0c0532", + "Items": [ + { + "_id": "67b83a534007b92e1c0c0532", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83a534007b92e1c0c0533", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67b83a534007b92e1c0c0532" + }, + { + "_id": "67b83a534007b92e1c0c0534", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67b83a534007b92e1c0c0532" + }, + { + "_id": "67b83a534007b92e1c0c0535", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83a534007b92e1c0c0532" + }, + { + "_id": "67b83a534007b92e1c0c0536", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "slotId": "mod_pistol_grip", + "parentId": "67b83a534007b92e1c0c0532" + }, + { + "_id": "67b83a534007b92e1c0c0537", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67b83a534007b92e1c0c0532" + }, + { + "_id": "67b83a534007b92e1c0c0538", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67b83a534007b92e1c0c0532" + }, + { + "_id": "67b83a534007b92e1c0c0539", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83a534007b92e1c0c0533" + }, + { + "_id": "67b83a534007b92e1c0c053a", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83a534007b92e1c0c0533" + }, + { + "_id": "67b83a534007b92e1c0c053b", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b83a534007b92e1c0c0536" + }, + { + "_id": "67b83a534007b92e1c0c053c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83a534007b92e1c0c0537" + }, + { + "_id": "67b83a534007b92e1c0c053d", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b83a534007b92e1c0c053a" + }, + { + "_id": "67b83a534007b92e1c0c053e", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b83a534007b92e1c0c053a" + }, + { + "_id": "67b83a534007b92e1c0c053f", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b83a534007b92e1c0c053b" + } + ] + }, + { + "Id": "67b83a6d0100185d535d280f", + "Name": "holoUH", + "Root": "67b83a734007b92e1c0c14de", + "Items": [ + { + "_id": "67b83a734007b92e1c0c14de", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83a734007b92e1c0c14df", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67b83a734007b92e1c0c14de" + }, + { + "_id": "67b83a734007b92e1c0c14e0", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67b83a734007b92e1c0c14de" + }, + { + "_id": "67b83a734007b92e1c0c14e1", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83a734007b92e1c0c14de" + }, + { + "_id": "67b83a734007b92e1c0c14e2", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "slotId": "mod_pistol_grip", + "parentId": "67b83a734007b92e1c0c14de" + }, + { + "_id": "67b83a734007b92e1c0c14e3", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67b83a734007b92e1c0c14de" + }, + { + "_id": "67b83a734007b92e1c0c14e4", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67b83a734007b92e1c0c14de" + }, + { + "_id": "67b83a734007b92e1c0c14e5", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83a734007b92e1c0c14df" + }, + { + "_id": "67b83a734007b92e1c0c14e6", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83a734007b92e1c0c14df" + }, + { + "_id": "67b83a734007b92e1c0c14e7", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b83a734007b92e1c0c14e2" + }, + { + "_id": "67b83a734007b92e1c0c14e8", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83a734007b92e1c0c14e3" + }, + { + "_id": "67b83a734007b92e1c0c14e9", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b83a734007b92e1c0c14e6" + }, + { + "_id": "67b83a734007b92e1c0c14ea", + "_tpl": "5c1bc5612e221602b5429350", + "slotId": "mod_foregrip", + "parentId": "67b83a734007b92e1c0c14e6" + }, + { + "_id": "67b83a734007b92e1c0c14eb", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b83a734007b92e1c0c14e7" + } + ] + }, + { + "Id": "67b83a960100185d5339677f", + "Name": "bravo", + "Root": "67b83a9b4007b92e1c0c245f", + "Items": [ + { + "_id": "67b83a9b4007b92e1c0c245f", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83a9b4007b92e1c0c2460", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67b83a9b4007b92e1c0c245f" + }, + { + "_id": "67b83a9b4007b92e1c0c2461", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67b83a9b4007b92e1c0c245f" + }, + { + "_id": "67b83a9b4007b92e1c0c2462", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83a9b4007b92e1c0c245f" + }, + { + "_id": "67b83a9b4007b92e1c0c2463", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "slotId": "mod_pistol_grip", + "parentId": "67b83a9b4007b92e1c0c245f" + }, + { + "_id": "67b83a9b4007b92e1c0c2464", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67b83a9b4007b92e1c0c245f" + }, + { + "_id": "67b83a9b4007b92e1c0c2465", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67b83a9b4007b92e1c0c245f" + }, + { + "_id": "67b83a9b4007b92e1c0c2466", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83a9b4007b92e1c0c2460" + }, + { + "_id": "67b83a9b4007b92e1c0c2467", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83a9b4007b92e1c0c2460" + }, + { + "_id": "67b83a9b4007b92e1c0c2468", + "_tpl": "6516e971a3d4c6497930b450", + "slotId": "mod_stock_000", + "parentId": "67b83a9b4007b92e1c0c2463" + }, + { + "_id": "67b83a9b4007b92e1c0c2469", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83a9b4007b92e1c0c2464" + }, + { + "_id": "67b83a9b4007b92e1c0c246a", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b83a9b4007b92e1c0c2467" + }, + { + "_id": "67b83a9b4007b92e1c0c246b", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b83a9b4007b92e1c0c2467" + }, + { + "_id": "67b83a9b4007b92e1c0c246c", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b83a9b4007b92e1c0c2468" + }, + { + "_id": "67b83a9b4007b92e1c0c246d", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b83a9b4007b92e1c0c2469" + }, + { + "_id": "67b83a9b4007b92e1c0c246e", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83a9b4007b92e1c0c246d" + } + ] + }, + { + "Id": "67b83abc0100185d532e939c", + "Name": "vudu", + "Root": "67b83ac04007b92e1c0c2476", + "Items": [ + { + "_id": "67b83ac04007b92e1c0c2476", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83ac04007b92e1c0c2477", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67b83ac04007b92e1c0c2476" + }, + { + "_id": "67b83ac04007b92e1c0c2478", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67b83ac04007b92e1c0c2476" + }, + { + "_id": "67b83ac04007b92e1c0c2479", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83ac04007b92e1c0c2476" + }, + { + "_id": "67b83ac04007b92e1c0c247a", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "slotId": "mod_pistol_grip", + "parentId": "67b83ac04007b92e1c0c2476" + }, + { + "_id": "67b83ac04007b92e1c0c247b", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67b83ac04007b92e1c0c2476" + }, + { + "_id": "67b83ac04007b92e1c0c247c", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67b83ac04007b92e1c0c2476" + }, + { + "_id": "67b83ac04007b92e1c0c247d", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83ac04007b92e1c0c2477" + }, + { + "_id": "67b83ac04007b92e1c0c247e", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83ac04007b92e1c0c2477" + }, + { + "_id": "67b83ac04007b92e1c0c247f", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b83ac04007b92e1c0c247a" + }, + { + "_id": "67b83ac04007b92e1c0c2480", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b83ac04007b92e1c0c247b" + }, + { + "_id": "67b83ac04007b92e1c0c2481", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b83ac04007b92e1c0c247e" + }, + { + "_id": "67b83ac04007b92e1c0c2482", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b83ac04007b92e1c0c247e" + }, + { + "_id": "67b83ac04007b92e1c0c2483", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b83ac04007b92e1c0c247f" + }, + { + "_id": "67b83ac04007b92e1c0c2484", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83ac04007b92e1c0c2480" + } + ] + }, + { + "Id": "67b83af80100185d537b8292", + "Name": "holo tan", + "Root": "67b83afc4007b92e1c0c43cd", + "Items": [ + { + "_id": "67b83afc4007b92e1c0c43cd", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83afc4007b92e1c0c43ce", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67b83afc4007b92e1c0c43cd" + }, + { + "_id": "67b83afc4007b92e1c0c43cf", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67b83afc4007b92e1c0c43cd" + }, + { + "_id": "67b83afc4007b92e1c0c43d0", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83afc4007b92e1c0c43cd" + }, + { + "_id": "67b83afc4007b92e1c0c43d1", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "slotId": "mod_pistol_grip", + "parentId": "67b83afc4007b92e1c0c43cd" + }, + { + "_id": "67b83afc4007b92e1c0c43d2", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67b83afc4007b92e1c0c43cd" + }, + { + "_id": "67b83afc4007b92e1c0c43d3", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67b83afc4007b92e1c0c43cd" + }, + { + "_id": "67b83afc4007b92e1c0c43d4", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83afc4007b92e1c0c43ce" + }, + { + "_id": "67b83afc4007b92e1c0c43d5", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83afc4007b92e1c0c43ce" + }, + { + "_id": "67b83afc4007b92e1c0c43d6", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67b83afc4007b92e1c0c43d1" + }, + { + "_id": "67b83afc4007b92e1c0c43d7", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83afc4007b92e1c0c43d2" + }, + { + "_id": "67b83afc4007b92e1c0c43d8", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b83afc4007b92e1c0c43d5" + }, + { + "_id": "67b83afc4007b92e1c0c43d9", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b83afc4007b92e1c0c43d5" + }, + { + "_id": "67b83afc4007b92e1c0c43da", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b83afc4007b92e1c0c43d6" + } + ] + }, + { + "Id": "67b83ed70100185d53449dc0", + "Name": "tan holo", + "Root": "67b83edc4007b92e1c0d69d1", + "Items": [ + { + "_id": "67b83edc4007b92e1c0d69d1", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83edc4007b92e1c0d69d2", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67b83edc4007b92e1c0d69d1" + }, + { + "_id": "67b83edc4007b92e1c0d69d3", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83edc4007b92e1c0d69d1" + }, + { + "_id": "67b83edc4007b92e1c0d69d4", + "_tpl": "57838c962459774a1651ec63", + "slotId": "mod_muzzle", + "parentId": "67b83edc4007b92e1c0d69d1" + }, + { + "_id": "67b83edc4007b92e1c0d69d5", + "_tpl": "578395402459774a256959b5", + "slotId": "mod_reciever", + "parentId": "67b83edc4007b92e1c0d69d1" + }, + { + "_id": "67b83edc4007b92e1c0d69d6", + "_tpl": "578395e82459774a0e553c7b", + "slotId": "mod_stock", + "parentId": "67b83edc4007b92e1c0d69d1" + }, + { + "_id": "67b83edc4007b92e1c0d69d7", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b83edc4007b92e1c0d69d1" + }, + { + "_id": "67b83edc4007b92e1c0d69d8", + "_tpl": "6565bb7eb4b12a56eb04b084", + "slotId": "mod_handguard", + "parentId": "67b83edc4007b92e1c0d69d1" + }, + { + "_id": "67b83edc4007b92e1c0d69d9", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83edc4007b92e1c0d69d2" + }, + { + "_id": "67b83edc4007b92e1c0d69da", + "_tpl": "57838e1b2459774a256959b1", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83edc4007b92e1c0d69d4" + }, + { + "_id": "67b83edc4007b92e1c0d69db", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83edc4007b92e1c0d69d4" + }, + { + "_id": "67b83edc4007b92e1c0d69dc", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b83edc4007b92e1c0d69db" + } + ] + }, + { + "Id": "67b83f030100185d53c486fe", + "Name": "tan hamr", + "Root": "67b83f074007b92e1c0d7885", + "Items": [ + { + "_id": "67b83f074007b92e1c0d7885", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83f074007b92e1c0d7886", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67b83f074007b92e1c0d7885" + }, + { + "_id": "67b83f074007b92e1c0d7887", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83f074007b92e1c0d7885" + }, + { + "_id": "67b83f074007b92e1c0d7888", + "_tpl": "57838c962459774a1651ec63", + "slotId": "mod_muzzle", + "parentId": "67b83f074007b92e1c0d7885" + }, + { + "_id": "67b83f074007b92e1c0d7889", + "_tpl": "578395402459774a256959b5", + "slotId": "mod_reciever", + "parentId": "67b83f074007b92e1c0d7885" + }, + { + "_id": "67b83f074007b92e1c0d788a", + "_tpl": "578395e82459774a0e553c7b", + "slotId": "mod_stock", + "parentId": "67b83f074007b92e1c0d7885" + }, + { + "_id": "67b83f074007b92e1c0d788b", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b83f074007b92e1c0d7885" + }, + { + "_id": "67b83f074007b92e1c0d788c", + "_tpl": "6565bb7eb4b12a56eb04b084", + "slotId": "mod_handguard", + "parentId": "67b83f074007b92e1c0d7885" + }, + { + "_id": "67b83f074007b92e1c0d788d", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83f074007b92e1c0d7886" + }, + { + "_id": "67b83f074007b92e1c0d788e", + "_tpl": "57838e1b2459774a256959b1", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83f074007b92e1c0d7888" + }, + { + "_id": "67b83f074007b92e1c0d788f", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83f074007b92e1c0d7888" + }, + { + "_id": "67b83f074007b92e1c0d7890", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83f074007b92e1c0d788d" + }, + { + "_id": "67b83f074007b92e1c0d7891", + "_tpl": "619386379fb0c665d5490dbe", + "slotId": "mod_foregrip", + "parentId": "67b83f074007b92e1c0d788f" + } + ] + }, + { + "Id": "67b83f1a0100185d5330dc5f", + "Name": "holoUH vss", + "Root": "67b83f244007b92e1c0d88f6", + "Items": [ + { + "_id": "67b83f244007b92e1c0d88f6", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83f244007b92e1c0d88f7", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67b83f244007b92e1c0d88f6" + }, + { + "_id": "67b83f244007b92e1c0d88f8", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83f244007b92e1c0d88f6" + }, + { + "_id": "67b83f244007b92e1c0d88f9", + "_tpl": "57838c962459774a1651ec63", + "slotId": "mod_muzzle", + "parentId": "67b83f244007b92e1c0d88f6" + }, + { + "_id": "67b83f244007b92e1c0d88fa", + "_tpl": "578395402459774a256959b5", + "slotId": "mod_reciever", + "parentId": "67b83f244007b92e1c0d88f6" + }, + { + "_id": "67b83f244007b92e1c0d88fb", + "_tpl": "578395e82459774a0e553c7b", + "slotId": "mod_stock", + "parentId": "67b83f244007b92e1c0d88f6" + }, + { + "_id": "67b83f244007b92e1c0d88fc", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b83f244007b92e1c0d88f6" + }, + { + "_id": "67b83f244007b92e1c0d88fd", + "_tpl": "6565bb7eb4b12a56eb04b084", + "slotId": "mod_handguard", + "parentId": "67b83f244007b92e1c0d88f6" + }, + { + "_id": "67b83f244007b92e1c0d88fe", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83f244007b92e1c0d88f7" + }, + { + "_id": "67b83f244007b92e1c0d88ff", + "_tpl": "57838e1b2459774a256959b1", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83f244007b92e1c0d88f9" + }, + { + "_id": "67b83f244007b92e1c0d8900", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83f244007b92e1c0d88f9" + }, + { + "_id": "67b83f244007b92e1c0d8901", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b83f244007b92e1c0d8900" + } + ] + }, + { + "Id": "67b83f490100185d537b17cc", + "Name": "2x vss", + "Root": "67b83f4e4007b92e1c0d9850", + "Items": [ + { + "_id": "67b83f4e4007b92e1c0d9850", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83f4e4007b92e1c0d9851", + "_tpl": "67069c8cee8138ed2f05ad34", + "slotId": "mod_mount_000", + "parentId": "67b83f4e4007b92e1c0d9850" + }, + { + "_id": "67b83f4e4007b92e1c0d9852", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83f4e4007b92e1c0d9850" + }, + { + "_id": "67b83f4e4007b92e1c0d9853", + "_tpl": "57838c962459774a1651ec63", + "slotId": "mod_muzzle", + "parentId": "67b83f4e4007b92e1c0d9850" + }, + { + "_id": "67b83f4e4007b92e1c0d9854", + "_tpl": "578395402459774a256959b5", + "slotId": "mod_reciever", + "parentId": "67b83f4e4007b92e1c0d9850" + }, + { + "_id": "67b83f4e4007b92e1c0d9855", + "_tpl": "578395e82459774a0e553c7b", + "slotId": "mod_stock", + "parentId": "67b83f4e4007b92e1c0d9850" + }, + { + "_id": "67b83f4e4007b92e1c0d9856", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b83f4e4007b92e1c0d9850" + }, + { + "_id": "67b83f4e4007b92e1c0d9857", + "_tpl": "6565bb7eb4b12a56eb04b084", + "slotId": "mod_handguard", + "parentId": "67b83f4e4007b92e1c0d9850" + }, + { + "_id": "67b83f4e4007b92e1c0d9858", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83f4e4007b92e1c0d9851" + }, + { + "_id": "67b83f4e4007b92e1c0d9859", + "_tpl": "57838e1b2459774a256959b1", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83f4e4007b92e1c0d9853" + }, + { + "_id": "67b83f4e4007b92e1c0d985a", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83f4e4007b92e1c0d9853" + }, + { + "_id": "67b83f4e4007b92e1c0d985b", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b83f4e4007b92e1c0d985a" + } + ] + }, + { + "Id": "67b83f7f0100185d536c1e7d", + "Name": "deltap vss", + "Root": "67b83f854007b92e1c0da75b", + "Items": [ + { + "_id": "67b83f854007b92e1c0da75b", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83f854007b92e1c0da75c", + "_tpl": "67069c8cee8138ed2f05ad34", + "slotId": "mod_mount_000", + "parentId": "67b83f854007b92e1c0da75b" + }, + { + "_id": "67b83f854007b92e1c0da75d", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83f854007b92e1c0da75b" + }, + { + "_id": "67b83f854007b92e1c0da75e", + "_tpl": "57838c962459774a1651ec63", + "slotId": "mod_muzzle", + "parentId": "67b83f854007b92e1c0da75b" + }, + { + "_id": "67b83f854007b92e1c0da75f", + "_tpl": "578395402459774a256959b5", + "slotId": "mod_reciever", + "parentId": "67b83f854007b92e1c0da75b" + }, + { + "_id": "67b83f854007b92e1c0da760", + "_tpl": "578395e82459774a0e553c7b", + "slotId": "mod_stock", + "parentId": "67b83f854007b92e1c0da75b" + }, + { + "_id": "67b83f854007b92e1c0da761", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b83f854007b92e1c0da75b" + }, + { + "_id": "67b83f854007b92e1c0da762", + "_tpl": "6565bb7eb4b12a56eb04b084", + "slotId": "mod_handguard", + "parentId": "67b83f854007b92e1c0da75b" + }, + { + "_id": "67b83f854007b92e1c0da763", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b83f854007b92e1c0da75c" + }, + { + "_id": "67b83f854007b92e1c0da764", + "_tpl": "57838e1b2459774a256959b1", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83f854007b92e1c0da75e" + }, + { + "_id": "67b83f854007b92e1c0da765", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83f854007b92e1c0da75e" + }, + { + "_id": "67b83f854007b92e1c0da766", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83f854007b92e1c0da763" + }, + { + "_id": "67b83f854007b92e1c0da767", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b83f854007b92e1c0da765" + } + ] + }, + { + "Id": "67b83fc80100185d532f8234", + "Name": "vudu vss", + "Root": "67b83fcd4007b92e1c0db6af", + "Items": [ + { + "_id": "67b83fcd4007b92e1c0db6af", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b83fcd4007b92e1c0db6b0", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67b83fcd4007b92e1c0db6af" + }, + { + "_id": "67b83fcd4007b92e1c0db6b1", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67b83fcd4007b92e1c0db6af" + }, + { + "_id": "67b83fcd4007b92e1c0db6b2", + "_tpl": "57838c962459774a1651ec63", + "slotId": "mod_muzzle", + "parentId": "67b83fcd4007b92e1c0db6af" + }, + { + "_id": "67b83fcd4007b92e1c0db6b3", + "_tpl": "578395402459774a256959b5", + "slotId": "mod_reciever", + "parentId": "67b83fcd4007b92e1c0db6af" + }, + { + "_id": "67b83fcd4007b92e1c0db6b4", + "_tpl": "578395e82459774a0e553c7b", + "slotId": "mod_stock", + "parentId": "67b83fcd4007b92e1c0db6af" + }, + { + "_id": "67b83fcd4007b92e1c0db6b5", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b83fcd4007b92e1c0db6af" + }, + { + "_id": "67b83fcd4007b92e1c0db6b6", + "_tpl": "6565bb7eb4b12a56eb04b084", + "slotId": "mod_handguard", + "parentId": "67b83fcd4007b92e1c0db6af" + }, + { + "_id": "67b83fcd4007b92e1c0db6b7", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b83fcd4007b92e1c0db6b0" + }, + { + "_id": "67b83fcd4007b92e1c0db6b8", + "_tpl": "57838e1b2459774a256959b1", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83fcd4007b92e1c0db6b2" + }, + { + "_id": "67b83fcd4007b92e1c0db6b9", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67b83fcd4007b92e1c0db6b2" + }, + { + "_id": "67b83fcd4007b92e1c0db6ba", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b83fcd4007b92e1c0db6b7" + }, + { + "_id": "67b83fcd4007b92e1c0db6bb", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67b83fcd4007b92e1c0db6b9" + } + ] + }, + { + "Id": "67b8408c0100185d539fb05c", + "Name": "loud holo 101", + "Root": "67b840994007b92e1c0df390", + "Items": [ + { + "_id": "67b840994007b92e1c0df390", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b840994007b92e1c0df391", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67b840994007b92e1c0df390" + }, + { + "_id": "67b840994007b92e1c0df392", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67b840994007b92e1c0df390" + }, + { + "_id": "67b840994007b92e1c0df393", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b840994007b92e1c0df390" + }, + { + "_id": "67b840994007b92e1c0df394", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b840994007b92e1c0df390" + }, + { + "_id": "67b840994007b92e1c0df395", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b840994007b92e1c0df390" + }, + { + "_id": "67b840994007b92e1c0df396", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67b840994007b92e1c0df390" + }, + { + "_id": "67b840994007b92e1c0df397", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67b840994007b92e1c0df390" + }, + { + "_id": "67b840994007b92e1c0df398", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b840994007b92e1c0df390" + }, + { + "_id": "67b840994007b92e1c0df399", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_002", + "parentId": "67b840994007b92e1c0df391" + }, + { + "_id": "67b840994007b92e1c0df39a", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b840994007b92e1c0df391" + }, + { + "_id": "67b840994007b92e1c0df39b", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b840994007b92e1c0df394" + }, + { + "_id": "67b840994007b92e1c0df39c", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock", + "parentId": "67b840994007b92e1c0df396" + }, + { + "_id": "67b840994007b92e1c0df39d", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b840994007b92e1c0df399" + }, + { + "_id": "67b840994007b92e1c0df39e", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b840994007b92e1c0df39a" + }, + { + "_id": "67b840994007b92e1c0df39f", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b840994007b92e1c0df39c" + } + ] + }, + { + "Id": "67b840b20100185d53672a11", + "Name": "loud holo 101 v2", + "Root": "67b840b74007b92e1c0e0282", + "Items": [ + { + "_id": "67b840b74007b92e1c0e0282", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b840b74007b92e1c0e0283", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67b840b74007b92e1c0e0282" + }, + { + "_id": "67b840b74007b92e1c0e0284", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67b840b74007b92e1c0e0282" + }, + { + "_id": "67b840b74007b92e1c0e0285", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b840b74007b92e1c0e0282" + }, + { + "_id": "67b840b74007b92e1c0e0286", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b840b74007b92e1c0e0282" + }, + { + "_id": "67b840b74007b92e1c0e0287", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b840b74007b92e1c0e0282" + }, + { + "_id": "67b840b74007b92e1c0e0288", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67b840b74007b92e1c0e0282" + }, + { + "_id": "67b840b74007b92e1c0e0289", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67b840b74007b92e1c0e0282" + }, + { + "_id": "67b840b74007b92e1c0e028a", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b840b74007b92e1c0e0282" + }, + { + "_id": "67b840b74007b92e1c0e028b", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_002", + "parentId": "67b840b74007b92e1c0e0283" + }, + { + "_id": "67b840b74007b92e1c0e028c", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b840b74007b92e1c0e0283" + }, + { + "_id": "67b840b74007b92e1c0e028d", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b840b74007b92e1c0e0286" + }, + { + "_id": "67b840b74007b92e1c0e028e", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67b840b74007b92e1c0e0288" + }, + { + "_id": "67b840b74007b92e1c0e028f", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b840b74007b92e1c0e028b" + }, + { + "_id": "67b840b74007b92e1c0e0290", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67b840b74007b92e1c0e028c" + }, + { + "_id": "67b840b74007b92e1c0e0291", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b840b74007b92e1c0e028e" + } + ] + }, + { + "Id": "67b840d10100185d530a6d9e", + "Name": "loud 2x 101", + "Root": "67b840d84007b92e1c0e02d2", + "Items": [ + { + "_id": "67b840d84007b92e1c0e02d2", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b840d84007b92e1c0e02d3", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67b840d84007b92e1c0e02d2" + }, + { + "_id": "67b840d84007b92e1c0e02d4", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67b840d84007b92e1c0e02d2" + }, + { + "_id": "67b840d84007b92e1c0e02d5", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b840d84007b92e1c0e02d2" + }, + { + "_id": "67b840d84007b92e1c0e02d6", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b840d84007b92e1c0e02d2" + }, + { + "_id": "67b840d84007b92e1c0e02d7", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b840d84007b92e1c0e02d2" + }, + { + "_id": "67b840d84007b92e1c0e02d8", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67b840d84007b92e1c0e02d2" + }, + { + "_id": "67b840d84007b92e1c0e02d9", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67b840d84007b92e1c0e02d2" + }, + { + "_id": "67b840d84007b92e1c0e02da", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b840d84007b92e1c0e02d2" + }, + { + "_id": "67b840d84007b92e1c0e02db", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_002", + "parentId": "67b840d84007b92e1c0e02d3" + }, + { + "_id": "67b840d84007b92e1c0e02dc", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b840d84007b92e1c0e02d3" + }, + { + "_id": "67b840d84007b92e1c0e02dd", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b840d84007b92e1c0e02d6" + }, + { + "_id": "67b840d84007b92e1c0e02de", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67b840d84007b92e1c0e02d8" + }, + { + "_id": "67b840d84007b92e1c0e02df", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b840d84007b92e1c0e02db" + }, + { + "_id": "67b840d84007b92e1c0e02e0", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b840d84007b92e1c0e02dc" + }, + { + "_id": "67b840d84007b92e1c0e02e1", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b840d84007b92e1c0e02de" + } + ] + }, + { + "Id": "67b840fd0100185d534ef421", + "Name": "loud vudu 101", + "Root": "67b841014007b92e1c0e11fc", + "Items": [ + { + "_id": "67b841014007b92e1c0e11fc", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b841014007b92e1c0e11fd", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67b841014007b92e1c0e11fc" + }, + { + "_id": "67b841014007b92e1c0e11fe", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67b841014007b92e1c0e11fc" + }, + { + "_id": "67b841014007b92e1c0e11ff", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b841014007b92e1c0e11fc" + }, + { + "_id": "67b841014007b92e1c0e1200", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b841014007b92e1c0e11fc" + }, + { + "_id": "67b841014007b92e1c0e1201", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b841014007b92e1c0e11fc" + }, + { + "_id": "67b841014007b92e1c0e1202", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67b841014007b92e1c0e11fc" + }, + { + "_id": "67b841014007b92e1c0e1203", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67b841014007b92e1c0e11fc" + }, + { + "_id": "67b841014007b92e1c0e1204", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b841014007b92e1c0e11fc" + }, + { + "_id": "67b841014007b92e1c0e1205", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_002", + "parentId": "67b841014007b92e1c0e11fd" + }, + { + "_id": "67b841014007b92e1c0e1206", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b841014007b92e1c0e11fd" + }, + { + "_id": "67b841014007b92e1c0e1207", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b841014007b92e1c0e1200" + }, + { + "_id": "67b841014007b92e1c0e1208", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67b841014007b92e1c0e1202" + }, + { + "_id": "67b841014007b92e1c0e1209", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b841014007b92e1c0e1205" + }, + { + "_id": "67b841014007b92e1c0e120a", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b841014007b92e1c0e1206" + }, + { + "_id": "67b841014007b92e1c0e120b", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b841014007b92e1c0e1207" + }, + { + "_id": "67b841014007b92e1c0e120c", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b841014007b92e1c0e1208" + } + ] + }, + { + "Id": "67b8412b0100185d53eaa77d", + "Name": "supr vudu 101", + "Root": "67b841314007b92e1c0e2291", + "Items": [ + { + "_id": "67b841314007b92e1c0e2291", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b841314007b92e1c0e2292", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67b841314007b92e1c0e2291" + }, + { + "_id": "67b841314007b92e1c0e2293", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67b841314007b92e1c0e2291" + }, + { + "_id": "67b841314007b92e1c0e2294", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b841314007b92e1c0e2291" + }, + { + "_id": "67b841314007b92e1c0e2295", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b841314007b92e1c0e2291" + }, + { + "_id": "67b841314007b92e1c0e2296", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b841314007b92e1c0e2291" + }, + { + "_id": "67b841314007b92e1c0e2297", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67b841314007b92e1c0e2291" + }, + { + "_id": "67b841314007b92e1c0e2298", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67b841314007b92e1c0e2291" + }, + { + "_id": "67b841314007b92e1c0e2299", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b841314007b92e1c0e2291" + }, + { + "_id": "67b841314007b92e1c0e229a", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_002", + "parentId": "67b841314007b92e1c0e2292" + }, + { + "_id": "67b841314007b92e1c0e229b", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b841314007b92e1c0e2292" + }, + { + "_id": "67b841314007b92e1c0e229c", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b841314007b92e1c0e2293" + }, + { + "_id": "67b841314007b92e1c0e229d", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b841314007b92e1c0e2295" + }, + { + "_id": "67b841314007b92e1c0e229e", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67b841314007b92e1c0e2297" + }, + { + "_id": "67b841314007b92e1c0e229f", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b841314007b92e1c0e229a" + }, + { + "_id": "67b841314007b92e1c0e22a0", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b841314007b92e1c0e229b" + }, + { + "_id": "67b841314007b92e1c0e22a1", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b841314007b92e1c0e229c" + }, + { + "_id": "67b841314007b92e1c0e22a2", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b841314007b92e1c0e229d" + }, + { + "_id": "67b841314007b92e1c0e22a3", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b841314007b92e1c0e229e" + } + ] + }, + { + "Id": "67b841810100185d5386d50e", + "Name": "supr razor 101", + "Root": "67b841884007b92e1c0e42c1", + "Items": [ + { + "_id": "67b841884007b92e1c0e42c1", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b841884007b92e1c0e42c2", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67b841884007b92e1c0e42c1" + }, + { + "_id": "67b841884007b92e1c0e42c3", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67b841884007b92e1c0e42c1" + }, + { + "_id": "67b841884007b92e1c0e42c4", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "slotId": "mod_pistol_grip", + "parentId": "67b841884007b92e1c0e42c1" + }, + { + "_id": "67b841884007b92e1c0e42c5", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b841884007b92e1c0e42c1" + }, + { + "_id": "67b841884007b92e1c0e42c6", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b841884007b92e1c0e42c1" + }, + { + "_id": "67b841884007b92e1c0e42c7", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67b841884007b92e1c0e42c1" + }, + { + "_id": "67b841884007b92e1c0e42c8", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67b841884007b92e1c0e42c1" + }, + { + "_id": "67b841884007b92e1c0e42c9", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b841884007b92e1c0e42c1" + }, + { + "_id": "67b841884007b92e1c0e42ca", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_002", + "parentId": "67b841884007b92e1c0e42c2" + }, + { + "_id": "67b841884007b92e1c0e42cb", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b841884007b92e1c0e42c2" + }, + { + "_id": "67b841884007b92e1c0e42cc", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b841884007b92e1c0e42c3" + }, + { + "_id": "67b841884007b92e1c0e42cd", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b841884007b92e1c0e42c5" + }, + { + "_id": "67b841884007b92e1c0e42ce", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock", + "parentId": "67b841884007b92e1c0e42c7" + }, + { + "_id": "67b841884007b92e1c0e42cf", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b841884007b92e1c0e42ca" + }, + { + "_id": "67b841884007b92e1c0e42d0", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67b841884007b92e1c0e42cb" + }, + { + "_id": "67b841884007b92e1c0e42d1", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b841884007b92e1c0e42cc" + }, + { + "_id": "67b841884007b92e1c0e42d2", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b841884007b92e1c0e42cd" + }, + { + "_id": "67b841884007b92e1c0e42d3", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b841884007b92e1c0e42ce" + } + ] + }, + { + "Id": "67b8427c0100185d539f978a", + "Name": "loud scopeholo g36", + "Root": "67b8428e4007b92e1c0e8ed9", + "Items": [ + { + "_id": "67b8428e4007b92e1c0e8ed9", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8428e4007b92e1c0e8eda", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b8428e4007b92e1c0e8ed9" + }, + { + "_id": "67b8428e4007b92e1c0e8edb", + "_tpl": "6706a159c67236b2f703bb95", + "slotId": "mod_stock", + "parentId": "67b8428e4007b92e1c0e8ed9" + }, + { + "_id": "67b8428e4007b92e1c0e8edc", + "_tpl": "622b38c56762c718e457e246", + "slotId": "mod_barrel", + "parentId": "67b8428e4007b92e1c0e8ed9" + }, + { + "_id": "67b8428e4007b92e1c0e8edd", + "_tpl": "67069d66af4890b09f0006ec", + "slotId": "mod_handguard", + "parentId": "67b8428e4007b92e1c0e8ed9" + }, + { + "_id": "67b8428e4007b92e1c0e8ede", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67b8428e4007b92e1c0e8ed9" + }, + { + "_id": "67b8428e4007b92e1c0e8edf", + "_tpl": "622b3c081b89c677a33bcda6", + "slotId": "mod_scope", + "parentId": "67b8428e4007b92e1c0e8ed9" + }, + { + "_id": "67b8428e4007b92e1c0e8ee0", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67b8428e4007b92e1c0e8edb" + }, + { + "_id": "67b8428e4007b92e1c0e8ee1", + "_tpl": "5f6372e2865db925d54f3869", + "slotId": "mod_muzzle", + "parentId": "67b8428e4007b92e1c0e8edc" + }, + { + "_id": "67b8428e4007b92e1c0e8ee2", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67b8428e4007b92e1c0e8edc" + }, + { + "_id": "67b8428e4007b92e1c0e8ee3", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8428e4007b92e1c0e8edd" + }, + { + "_id": "67b8428e4007b92e1c0e8ee4", + "_tpl": "5a7dbfc1159bd40016548fde", + "slotId": "mod_foregrip", + "parentId": "67b8428e4007b92e1c0e8edd" + }, + { + "_id": "67b8428e4007b92e1c0e8ee5", + "_tpl": "5c07dd120db834001c39092d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8428e4007b92e1c0e8edf" + }, + { + "_id": "67b8428e4007b92e1c0e8ee6", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b8428e4007b92e1c0e8ee0" + }, + { + "_id": "67b8428e4007b92e1c0e8ee7", + "_tpl": "5f6339d53ada5942720e2dc3", + "slotId": "mod_muzzle", + "parentId": "67b8428e4007b92e1c0e8ee1" + } + ] + }, + { + "Id": "67b842a80100185d532d6815", + "Name": "loud holo g36", + "Root": "67b842ae4007b92e1c0e9e1b", + "Items": [ + { + "_id": "67b842ae4007b92e1c0e9e1b", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b842ae4007b92e1c0e9e1c", + "_tpl": "59c1383d86f774290a37e0ca", + "slotId": "mod_magazine", + "parentId": "67b842ae4007b92e1c0e9e1b" + }, + { + "_id": "67b842ae4007b92e1c0e9e1d", + "_tpl": "6706a159c67236b2f703bb95", + "slotId": "mod_stock", + "parentId": "67b842ae4007b92e1c0e9e1b" + }, + { + "_id": "67b842ae4007b92e1c0e9e1e", + "_tpl": "622b38c56762c718e457e246", + "slotId": "mod_barrel", + "parentId": "67b842ae4007b92e1c0e9e1b" + }, + { + "_id": "67b842ae4007b92e1c0e9e1f", + "_tpl": "67069d66af4890b09f0006ec", + "slotId": "mod_handguard", + "parentId": "67b842ae4007b92e1c0e9e1b" + }, + { + "_id": "67b842ae4007b92e1c0e9e20", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67b842ae4007b92e1c0e9e1b" + }, + { + "_id": "67b842ae4007b92e1c0e9e21", + "_tpl": "622b3c081b89c677a33bcda6", + "slotId": "mod_scope", + "parentId": "67b842ae4007b92e1c0e9e1b" + }, + { + "_id": "67b842ae4007b92e1c0e9e22", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67b842ae4007b92e1c0e9e1d" + }, + { + "_id": "67b842ae4007b92e1c0e9e23", + "_tpl": "5f6372e2865db925d54f3869", + "slotId": "mod_muzzle", + "parentId": "67b842ae4007b92e1c0e9e1e" + }, + { + "_id": "67b842ae4007b92e1c0e9e24", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67b842ae4007b92e1c0e9e1e" + }, + { + "_id": "67b842ae4007b92e1c0e9e25", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b842ae4007b92e1c0e9e1f" + }, + { + "_id": "67b842ae4007b92e1c0e9e26", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b842ae4007b92e1c0e9e1f" + }, + { + "_id": "67b842ae4007b92e1c0e9e27", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b842ae4007b92e1c0e9e21" + }, + { + "_id": "67b842ae4007b92e1c0e9e28", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b842ae4007b92e1c0e9e22" + }, + { + "_id": "67b842ae4007b92e1c0e9e29", + "_tpl": "5f6339d53ada5942720e2dc3", + "slotId": "mod_muzzle", + "parentId": "67b842ae4007b92e1c0e9e23" + } + ] + }, + { + "Id": "67b842e20100185d5368f704", + "Name": "supr holo g36", + "Root": "67b842e84007b92e1c0eacf1", + "Items": [ + { + "_id": "67b842e84007b92e1c0eacf1", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b842e84007b92e1c0eacf2", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67b842e84007b92e1c0eacf1" + }, + { + "_id": "67b842e84007b92e1c0eacf3", + "_tpl": "6706a159c67236b2f703bb95", + "slotId": "mod_stock", + "parentId": "67b842e84007b92e1c0eacf1" + }, + { + "_id": "67b842e84007b92e1c0eacf4", + "_tpl": "622b38c56762c718e457e246", + "slotId": "mod_barrel", + "parentId": "67b842e84007b92e1c0eacf1" + }, + { + "_id": "67b842e84007b92e1c0eacf5", + "_tpl": "67069d66af4890b09f0006ec", + "slotId": "mod_handguard", + "parentId": "67b842e84007b92e1c0eacf1" + }, + { + "_id": "67b842e84007b92e1c0eacf6", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67b842e84007b92e1c0eacf1" + }, + { + "_id": "67b842e84007b92e1c0eacf7", + "_tpl": "622b3c081b89c677a33bcda6", + "slotId": "mod_scope", + "parentId": "67b842e84007b92e1c0eacf1" + }, + { + "_id": "67b842e84007b92e1c0eacf8", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67b842e84007b92e1c0eacf3" + }, + { + "_id": "67b842e84007b92e1c0eacf9", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b842e84007b92e1c0eacf4" + }, + { + "_id": "67b842e84007b92e1c0eacfa", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67b842e84007b92e1c0eacf4" + }, + { + "_id": "67b842e84007b92e1c0eacfb", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b842e84007b92e1c0eacf5" + }, + { + "_id": "67b842e84007b92e1c0eacfc", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67b842e84007b92e1c0eacf5" + }, + { + "_id": "67b842e84007b92e1c0eacfd", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b842e84007b92e1c0eacf7" + }, + { + "_id": "67b842e84007b92e1c0eacfe", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b842e84007b92e1c0eacf8" + }, + { + "_id": "67b842e84007b92e1c0eacff", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b842e84007b92e1c0eacf9" + } + ] + }, + { + "Id": "67b8432d0100185d530ab59a", + "Name": "supr holoUH1 g36", + "Root": "67b843334007b92e1c0ecb4b", + "Items": [ + { + "_id": "67b843334007b92e1c0ecb4b", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b843334007b92e1c0ecb4c", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67b843334007b92e1c0ecb4b" + }, + { + "_id": "67b843334007b92e1c0ecb4d", + "_tpl": "6706a159c67236b2f703bb95", + "slotId": "mod_stock", + "parentId": "67b843334007b92e1c0ecb4b" + }, + { + "_id": "67b843334007b92e1c0ecb4e", + "_tpl": "622b38c56762c718e457e246", + "slotId": "mod_barrel", + "parentId": "67b843334007b92e1c0ecb4b" + }, + { + "_id": "67b843334007b92e1c0ecb4f", + "_tpl": "67069d66af4890b09f0006ec", + "slotId": "mod_handguard", + "parentId": "67b843334007b92e1c0ecb4b" + }, + { + "_id": "67b843334007b92e1c0ecb50", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67b843334007b92e1c0ecb4b" + }, + { + "_id": "67b843334007b92e1c0ecb51", + "_tpl": "622b3c081b89c677a33bcda6", + "slotId": "mod_scope", + "parentId": "67b843334007b92e1c0ecb4b" + }, + { + "_id": "67b843334007b92e1c0ecb52", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67b843334007b92e1c0ecb4d" + }, + { + "_id": "67b843334007b92e1c0ecb53", + "_tpl": "5c7e5f112e221600106f4ede", + "slotId": "mod_muzzle", + "parentId": "67b843334007b92e1c0ecb4e" + }, + { + "_id": "67b843334007b92e1c0ecb54", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67b843334007b92e1c0ecb4e" + }, + { + "_id": "67b843334007b92e1c0ecb55", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b843334007b92e1c0ecb4f" + }, + { + "_id": "67b843334007b92e1c0ecb56", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b843334007b92e1c0ecb4f" + }, + { + "_id": "67b843334007b92e1c0ecb57", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b843334007b92e1c0ecb51" + }, + { + "_id": "67b843334007b92e1c0ecb58", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b843334007b92e1c0ecb52" + }, + { + "_id": "67b843334007b92e1c0ecb59", + "_tpl": "5a34fe59c4a282000b1521a2", + "slotId": "mod_muzzle", + "parentId": "67b843334007b92e1c0ecb53" + } + ] + }, + { + "Id": "67b8435b0100185d539b694e", + "Name": "supr bravo g36", + "Root": "67b8435f4007b92e1c0ecb68", + "Items": [ + { + "_id": "67b8435f4007b92e1c0ecb68", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8435f4007b92e1c0ecb69", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67b8435f4007b92e1c0ecb68" + }, + { + "_id": "67b8435f4007b92e1c0ecb6a", + "_tpl": "6706a159c67236b2f703bb95", + "slotId": "mod_stock", + "parentId": "67b8435f4007b92e1c0ecb68" + }, + { + "_id": "67b8435f4007b92e1c0ecb6b", + "_tpl": "622b38c56762c718e457e246", + "slotId": "mod_barrel", + "parentId": "67b8435f4007b92e1c0ecb68" + }, + { + "_id": "67b8435f4007b92e1c0ecb6c", + "_tpl": "67069d66af4890b09f0006ec", + "slotId": "mod_handguard", + "parentId": "67b8435f4007b92e1c0ecb68" + }, + { + "_id": "67b8435f4007b92e1c0ecb6d", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67b8435f4007b92e1c0ecb68" + }, + { + "_id": "67b8435f4007b92e1c0ecb6e", + "_tpl": "622b3c081b89c677a33bcda6", + "slotId": "mod_scope", + "parentId": "67b8435f4007b92e1c0ecb68" + }, + { + "_id": "67b8435f4007b92e1c0ecb6f", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock", + "parentId": "67b8435f4007b92e1c0ecb6a" + }, + { + "_id": "67b8435f4007b92e1c0ecb70", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b8435f4007b92e1c0ecb6b" + }, + { + "_id": "67b8435f4007b92e1c0ecb71", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67b8435f4007b92e1c0ecb6b" + }, + { + "_id": "67b8435f4007b92e1c0ecb72", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8435f4007b92e1c0ecb6c" + }, + { + "_id": "67b8435f4007b92e1c0ecb73", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b8435f4007b92e1c0ecb6c" + }, + { + "_id": "67b8435f4007b92e1c0ecb74", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8435f4007b92e1c0ecb6e" + }, + { + "_id": "67b8435f4007b92e1c0ecb75", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b8435f4007b92e1c0ecb6f" + }, + { + "_id": "67b8435f4007b92e1c0ecb76", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b8435f4007b92e1c0ecb70" + }, + { + "_id": "67b8435f4007b92e1c0ecb77", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b8435f4007b92e1c0ecb74" + }, + { + "_id": "67b8435f4007b92e1c0ecb78", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8435f4007b92e1c0ecb77" + } + ] + }, + { + "Id": "67b843a00100185d53bb99ed", + "Name": "supr vudu g36", + "Root": "67b843c24007b92e1c0eeb1d", + "Items": [ + { + "_id": "67b843c24007b92e1c0eeb1d", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b843c24007b92e1c0eeb1e", + "_tpl": "5c6d42cb2e2216000e69d7d1", + "slotId": "mod_magazine", + "parentId": "67b843c24007b92e1c0eeb1d" + }, + { + "_id": "67b843c24007b92e1c0eeb1f", + "_tpl": "6706a159c67236b2f703bb95", + "slotId": "mod_stock", + "parentId": "67b843c24007b92e1c0eeb1d" + }, + { + "_id": "67b843c24007b92e1c0eeb20", + "_tpl": "622b38c56762c718e457e246", + "slotId": "mod_barrel", + "parentId": "67b843c24007b92e1c0eeb1d" + }, + { + "_id": "67b843c24007b92e1c0eeb21", + "_tpl": "67069d66af4890b09f0006ec", + "slotId": "mod_handguard", + "parentId": "67b843c24007b92e1c0eeb1d" + }, + { + "_id": "67b843c24007b92e1c0eeb22", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67b843c24007b92e1c0eeb1d" + }, + { + "_id": "67b843c24007b92e1c0eeb23", + "_tpl": "622b3c081b89c677a33bcda6", + "slotId": "mod_scope", + "parentId": "67b843c24007b92e1c0eeb1d" + }, + { + "_id": "67b843c24007b92e1c0eeb24", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock", + "parentId": "67b843c24007b92e1c0eeb1f" + }, + { + "_id": "67b843c24007b92e1c0eeb25", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b843c24007b92e1c0eeb20" + }, + { + "_id": "67b843c24007b92e1c0eeb26", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67b843c24007b92e1c0eeb20" + }, + { + "_id": "67b843c24007b92e1c0eeb27", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b843c24007b92e1c0eeb21" + }, + { + "_id": "67b843c24007b92e1c0eeb28", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b843c24007b92e1c0eeb21" + }, + { + "_id": "67b843c24007b92e1c0eeb29", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b843c24007b92e1c0eeb23" + }, + { + "_id": "67b843c24007b92e1c0eeb2a", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b843c24007b92e1c0eeb24" + }, + { + "_id": "67b843c24007b92e1c0eeb2b", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b843c24007b92e1c0eeb25" + }, + { + "_id": "67b843c24007b92e1c0eeb2c", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b843c24007b92e1c0eeb29" + } + ] + }, + { + "Id": "67b856820100185d53da9c62", + "Name": "UH1 ash12", + "Root": "67b85691efe4594df4038281", + "Items": [ + { + "_id": "67b85691efe4594df4038281", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85691efe4594df4038282", + "_tpl": "5caf187cae92157c28402e43", + "slotId": "mod_muzzle", + "parentId": "67b85691efe4594df4038281" + }, + { + "_id": "67b85691efe4594df4038283", + "_tpl": "5caf1109ae9215753c44119f", + "slotId": "mod_magazine", + "parentId": "67b85691efe4594df4038281" + }, + { + "_id": "67b85691efe4594df4038284", + "_tpl": "5caf16a2ae92152ac412efbc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85691efe4594df4038281" + }, + { + "_id": "67b85691efe4594df4038285", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67b85691efe4594df4038281" + }, + { + "_id": "67b85691efe4594df4038286", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85691efe4594df4038281" + }, + { + "_id": "67b85691efe4594df4038287", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85691efe4594df4038281" + }, + { + "_id": "67b85691efe4594df4038288", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85691efe4594df4038285" + } + ] + }, + { + "Id": "67b856ad0100185d533dd23c", + "Name": "ROMEO ash12", + "Root": "67b856b2efe4594df403828d", + "Items": [ + { + "_id": "67b856b2efe4594df403828d", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b856b2efe4594df403828e", + "_tpl": "5caf187cae92157c28402e43", + "slotId": "mod_muzzle", + "parentId": "67b856b2efe4594df403828d" + }, + { + "_id": "67b856b2efe4594df403828f", + "_tpl": "5caf1109ae9215753c44119f", + "slotId": "mod_magazine", + "parentId": "67b856b2efe4594df403828d" + }, + { + "_id": "67b856b2efe4594df4038290", + "_tpl": "5caf16a2ae92152ac412efbc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b856b2efe4594df403828d" + }, + { + "_id": "67b856b2efe4594df4038291", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67b856b2efe4594df403828d" + }, + { + "_id": "67b856b2efe4594df4038292", + "_tpl": "60a23797a37c940de7062d02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b856b2efe4594df403828d" + }, + { + "_id": "67b856b2efe4594df4038293", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b856b2efe4594df403828d" + }, + { + "_id": "67b856b2efe4594df4038294", + "_tpl": "5c1bc5af2e221602b412949b", + "slotId": "mod_foregrip", + "parentId": "67b856b2efe4594df4038291" + } + ] + }, + { + "Id": "67b856d20100185d5380ddc5", + "Name": "Bravo ash12", + "Root": "67b856d6efe4594df403829a", + "Items": [ + { + "_id": "67b856d6efe4594df403829a", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b856d6efe4594df403829b", + "_tpl": "5caf187cae92157c28402e43", + "slotId": "mod_muzzle", + "parentId": "67b856d6efe4594df403829a" + }, + { + "_id": "67b856d6efe4594df403829c", + "_tpl": "5caf1109ae9215753c44119f", + "slotId": "mod_magazine", + "parentId": "67b856d6efe4594df403829a" + }, + { + "_id": "67b856d6efe4594df403829d", + "_tpl": "5caf16a2ae92152ac412efbc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b856d6efe4594df403829a" + }, + { + "_id": "67b856d6efe4594df403829e", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67b856d6efe4594df403829a" + }, + { + "_id": "67b856d6efe4594df403829f", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b856d6efe4594df403829a" + }, + { + "_id": "67b856d6efe4594df40382a0", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b856d6efe4594df403829a" + }, + { + "_id": "67b856d6efe4594df40382a1", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67b856d6efe4594df403829e" + }, + { + "_id": "67b856d6efe4594df40382a2", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b856d6efe4594df403829f" + }, + { + "_id": "67b856d6efe4594df40382a3", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b856d6efe4594df40382a2" + } + ] + }, + { + "Id": "67b856ec0100185d536a7bac", + "Name": "holo ash12", + "Root": "67b856f1efe4594df40382aa", + "Items": [ + { + "_id": "67b856f1efe4594df40382aa", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b856f1efe4594df40382ab", + "_tpl": "5caf17c9ae92150b30006be1", + "slotId": "mod_muzzle", + "parentId": "67b856f1efe4594df40382aa" + }, + { + "_id": "67b856f1efe4594df40382ac", + "_tpl": "5caf1109ae9215753c44119f", + "slotId": "mod_magazine", + "parentId": "67b856f1efe4594df40382aa" + }, + { + "_id": "67b856f1efe4594df40382ad", + "_tpl": "5caf16a2ae92152ac412efbc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b856f1efe4594df40382aa" + }, + { + "_id": "67b856f1efe4594df40382ae", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67b856f1efe4594df40382aa" + }, + { + "_id": "67b856f1efe4594df40382af", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b856f1efe4594df40382aa" + }, + { + "_id": "67b856f1efe4594df40382b0", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b856f1efe4594df40382aa" + }, + { + "_id": "67b856f1efe4594df40382b1", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b856f1efe4594df40382ae" + } + ] + }, + { + "Id": "67b8570e0100185d53065f92", + "Name": "supr holo ash12", + "Root": "67b85713efe4594df4038307", + "Items": [ + { + "_id": "67b85713efe4594df4038307", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85713efe4594df4038308", + "_tpl": "5caf187cae92157c28402e43", + "slotId": "mod_muzzle", + "parentId": "67b85713efe4594df4038307" + }, + { + "_id": "67b85713efe4594df4038309", + "_tpl": "5caf1109ae9215753c44119f", + "slotId": "mod_magazine", + "parentId": "67b85713efe4594df4038307" + }, + { + "_id": "67b85713efe4594df403830a", + "_tpl": "5caf16a2ae92152ac412efbc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85713efe4594df4038307" + }, + { + "_id": "67b85713efe4594df403830b", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67b85713efe4594df4038307" + }, + { + "_id": "67b85713efe4594df403830c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85713efe4594df4038307" + }, + { + "_id": "67b85713efe4594df403830d", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85713efe4594df4038307" + }, + { + "_id": "67b85713efe4594df403830e", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b85713efe4594df403830b" + } + ] + }, + { + "Id": "67b857400100185d539da4c9", + "Name": "2x ash12", + "Root": "67b85745efe4594df4038314", + "Items": [ + { + "_id": "67b85745efe4594df4038314", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85745efe4594df4038315", + "_tpl": "5caf187cae92157c28402e43", + "slotId": "mod_muzzle", + "parentId": "67b85745efe4594df4038314" + }, + { + "_id": "67b85745efe4594df4038316", + "_tpl": "5caf1109ae9215753c44119f", + "slotId": "mod_magazine", + "parentId": "67b85745efe4594df4038314" + }, + { + "_id": "67b85745efe4594df4038317", + "_tpl": "5caf16a2ae92152ac412efbc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85745efe4594df4038314" + }, + { + "_id": "67b85745efe4594df4038318", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67b85745efe4594df4038314" + }, + { + "_id": "67b85745efe4594df4038319", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85745efe4594df4038314" + }, + { + "_id": "67b85745efe4594df403831a", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85745efe4594df4038314" + }, + { + "_id": "67b85745efe4594df403831b", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85745efe4594df4038318" + } + ] + }, + { + "Id": "67b857ea0100185d530e4228", + "Name": "supr long hamr mutant", + "Root": "67b85826efe4594df403a1af", + "Items": [ + { + "_id": "67b85826efe4594df403a1af", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85826efe4594df403a1b0", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b85826efe4594df403a1af" + }, + { + "_id": "67b85826efe4594df403a1b1", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67b85826efe4594df403a1af" + }, + { + "_id": "67b85826efe4594df403a1b2", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67b85826efe4594df403a1af" + }, + { + "_id": "67b85826efe4594df403a1b3", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67b85826efe4594df403a1af" + }, + { + "_id": "67b85826efe4594df403a1b4", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67b85826efe4594df403a1af" + }, + { + "_id": "67b85826efe4594df403a1b5", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85826efe4594df403a1b2" + }, + { + "_id": "67b85826efe4594df403a1b6", + "_tpl": "6065878ac9cf8012264142fd", + "slotId": "mod_barrel", + "parentId": "67b85826efe4594df403a1b2" + }, + { + "_id": "67b85826efe4594df403a1b7", + "_tpl": "6065881d1246154cad35d637", + "slotId": "mod_handguard", + "parentId": "67b85826efe4594df403a1b2" + }, + { + "_id": "67b85826efe4594df403a1b8", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85826efe4594df403a1b2" + }, + { + "_id": "67b85826efe4594df403a1b9", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b85826efe4594df403a1b3" + }, + { + "_id": "67b85826efe4594df403a1ba", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85826efe4594df403a1b5" + }, + { + "_id": "67b85826efe4594df403a1bb", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b85826efe4594df403a1b6" + }, + { + "_id": "67b85826efe4594df403a1bc", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "slotId": "mod_gas_block", + "parentId": "67b85826efe4594df403a1b6" + }, + { + "_id": "67b85826efe4594df403a1bd", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_002", + "parentId": "67b85826efe4594df403a1b7" + }, + { + "_id": "67b85826efe4594df403a1be", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b85826efe4594df403a1b7" + }, + { + "_id": "67b85826efe4594df403a1bf", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b85826efe4594df403a1bb" + }, + { + "_id": "67b85826efe4594df403a1c0", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85826efe4594df403a1bd" + }, + { + "_id": "67b85826efe4594df403a1c1", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85826efe4594df403a1be" + }, + { + "_id": "67b85826efe4594df403a1c2", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b85826efe4594df403a1b9" + } + ] + }, + { + "Id": "67b858430100185d533afd95", + "Name": "supr long UH1 mutant", + "Root": "67b8584aefe4594df403a1d0", + "Items": [ + { + "_id": "67b8584aefe4594df403a1d0", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8584aefe4594df403a1d1", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b8584aefe4594df403a1d0" + }, + { + "_id": "67b8584aefe4594df403a1d2", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67b8584aefe4594df403a1d0" + }, + { + "_id": "67b8584aefe4594df403a1d3", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67b8584aefe4594df403a1d0" + }, + { + "_id": "67b8584aefe4594df403a1d4", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67b8584aefe4594df403a1d0" + }, + { + "_id": "67b8584aefe4594df403a1d5", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67b8584aefe4594df403a1d0" + }, + { + "_id": "67b8584aefe4594df403a1d6", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8584aefe4594df403a1d3" + }, + { + "_id": "67b8584aefe4594df403a1d7", + "_tpl": "6065878ac9cf8012264142fd", + "slotId": "mod_barrel", + "parentId": "67b8584aefe4594df403a1d3" + }, + { + "_id": "67b8584aefe4594df403a1d8", + "_tpl": "6065881d1246154cad35d637", + "slotId": "mod_handguard", + "parentId": "67b8584aefe4594df403a1d3" + }, + { + "_id": "67b8584aefe4594df403a1d9", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8584aefe4594df403a1d3" + }, + { + "_id": "67b8584aefe4594df403a1da", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b8584aefe4594df403a1d4" + }, + { + "_id": "67b8584aefe4594df403a1db", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b8584aefe4594df403a1d7" + }, + { + "_id": "67b8584aefe4594df403a1dc", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "slotId": "mod_gas_block", + "parentId": "67b8584aefe4594df403a1d7" + }, + { + "_id": "67b8584aefe4594df403a1dd", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_002", + "parentId": "67b8584aefe4594df403a1d8" + }, + { + "_id": "67b8584aefe4594df403a1de", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b8584aefe4594df403a1d8" + }, + { + "_id": "67b8584aefe4594df403a1df", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b8584aefe4594df403a1db" + }, + { + "_id": "67b8584aefe4594df403a1e0", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8584aefe4594df403a1dd" + }, + { + "_id": "67b8584aefe4594df403a1e1", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67b8584aefe4594df403a1de" + }, + { + "_id": "67b8584aefe4594df403a1e2", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b8584aefe4594df403a1da" + } + ] + }, + { + "Id": "67b858900100185d53d13659", + "Name": "loud long UH1 mutant", + "Root": "67b85897efe4594df403b02e", + "Items": [ + { + "_id": "67b85897efe4594df403b02e", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85897efe4594df403b02f", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b85897efe4594df403b02e" + }, + { + "_id": "67b85897efe4594df403b030", + "_tpl": "6272874a6c47bd74f92e2087", + "slotId": "mod_magazine", + "parentId": "67b85897efe4594df403b02e" + }, + { + "_id": "67b85897efe4594df403b031", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67b85897efe4594df403b02e" + }, + { + "_id": "67b85897efe4594df403b032", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67b85897efe4594df403b02e" + }, + { + "_id": "67b85897efe4594df403b033", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67b85897efe4594df403b02e" + }, + { + "_id": "67b85897efe4594df403b034", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85897efe4594df403b031" + }, + { + "_id": "67b85897efe4594df403b035", + "_tpl": "6065878ac9cf8012264142fd", + "slotId": "mod_barrel", + "parentId": "67b85897efe4594df403b031" + }, + { + "_id": "67b85897efe4594df403b036", + "_tpl": "6065881d1246154cad35d637", + "slotId": "mod_handguard", + "parentId": "67b85897efe4594df403b031" + }, + { + "_id": "67b85897efe4594df403b037", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85897efe4594df403b031" + }, + { + "_id": "67b85897efe4594df403b038", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock_000", + "parentId": "67b85897efe4594df403b032" + }, + { + "_id": "67b85897efe4594df403b039", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67b85897efe4594df403b035" + }, + { + "_id": "67b85897efe4594df403b03a", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "slotId": "mod_gas_block", + "parentId": "67b85897efe4594df403b035" + }, + { + "_id": "67b85897efe4594df403b03b", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_002", + "parentId": "67b85897efe4594df403b036" + }, + { + "_id": "67b85897efe4594df403b03c", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b85897efe4594df403b036" + }, + { + "_id": "67b85897efe4594df403b03d", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85897efe4594df403b03b" + }, + { + "_id": "67b85897efe4594df403b03e", + "_tpl": "5c1bc5612e221602b5429350", + "slotId": "mod_foregrip", + "parentId": "67b85897efe4594df403b03c" + }, + { + "_id": "67b85897efe4594df403b03f", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b85897efe4594df403b038" + } + ] + }, + { + "Id": "67b858c20100185d5394e2e9", + "Name": "loud long boss mutant", + "Root": "67b858f5efe4594df403bf70", + "Items": [ + { + "_id": "67b858f5efe4594df403bf70", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b858f5efe4594df403bf71", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b858f5efe4594df403bf70" + }, + { + "_id": "67b858f5efe4594df403bf72", + "_tpl": "6272874a6c47bd74f92e2087", + "slotId": "mod_magazine", + "parentId": "67b858f5efe4594df403bf70" + }, + { + "_id": "67b858f5efe4594df403bf73", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67b858f5efe4594df403bf70" + }, + { + "_id": "67b858f5efe4594df403bf74", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67b858f5efe4594df403bf70" + }, + { + "_id": "67b858f5efe4594df403bf75", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67b858f5efe4594df403bf70" + }, + { + "_id": "67b858f5efe4594df403bf76", + "_tpl": "655f13e0a246670fb0373245", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b858f5efe4594df403bf73" + }, + { + "_id": "67b858f5efe4594df403bf77", + "_tpl": "6065878ac9cf8012264142fd", + "slotId": "mod_barrel", + "parentId": "67b858f5efe4594df403bf73" + }, + { + "_id": "67b858f5efe4594df403bf78", + "_tpl": "6065881d1246154cad35d637", + "slotId": "mod_handguard", + "parentId": "67b858f5efe4594df403bf73" + }, + { + "_id": "67b858f5efe4594df403bf79", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b858f5efe4594df403bf73" + }, + { + "_id": "67b858f5efe4594df403bf7a", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b858f5efe4594df403bf74" + }, + { + "_id": "67b858f5efe4594df403bf7b", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67b858f5efe4594df403bf77" + }, + { + "_id": "67b858f5efe4594df403bf7c", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "slotId": "mod_gas_block", + "parentId": "67b858f5efe4594df403bf77" + }, + { + "_id": "67b858f5efe4594df403bf7d", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_002", + "parentId": "67b858f5efe4594df403bf78" + }, + { + "_id": "67b858f5efe4594df403bf7e", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b858f5efe4594df403bf78" + }, + { + "_id": "67b858f5efe4594df403bf7f", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b858f5efe4594df403bf7d" + }, + { + "_id": "67b858f5efe4594df403bf80", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b858f5efe4594df403bf7e" + }, + { + "_id": "67b858f5efe4594df403bf81", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b858f5efe4594df403bf7a" + } + ] + }, + { + "Id": "67b859220100185d533f4da1", + "Name": "supr long vudu mutant", + "Root": "67b85926efe4594df403ce75", + "Items": [ + { + "_id": "67b85926efe4594df403ce75", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85926efe4594df403ce76", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b85926efe4594df403ce75" + }, + { + "_id": "67b85926efe4594df403ce77", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67b85926efe4594df403ce75" + }, + { + "_id": "67b85926efe4594df403ce78", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67b85926efe4594df403ce75" + }, + { + "_id": "67b85926efe4594df403ce79", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67b85926efe4594df403ce75" + }, + { + "_id": "67b85926efe4594df403ce7a", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67b85926efe4594df403ce75" + }, + { + "_id": "67b85926efe4594df403ce7b", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67b85926efe4594df403ce78" + }, + { + "_id": "67b85926efe4594df403ce7c", + "_tpl": "6065878ac9cf8012264142fd", + "slotId": "mod_barrel", + "parentId": "67b85926efe4594df403ce78" + }, + { + "_id": "67b85926efe4594df403ce7d", + "_tpl": "6065881d1246154cad35d637", + "slotId": "mod_handguard", + "parentId": "67b85926efe4594df403ce78" + }, + { + "_id": "67b85926efe4594df403ce7e", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85926efe4594df403ce78" + }, + { + "_id": "67b85926efe4594df403ce7f", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b85926efe4594df403ce79" + }, + { + "_id": "67b85926efe4594df403ce80", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85926efe4594df403ce7b" + }, + { + "_id": "67b85926efe4594df403ce81", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b85926efe4594df403ce7c" + }, + { + "_id": "67b85926efe4594df403ce82", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "slotId": "mod_gas_block", + "parentId": "67b85926efe4594df403ce7c" + }, + { + "_id": "67b85926efe4594df403ce83", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_002", + "parentId": "67b85926efe4594df403ce7d" + }, + { + "_id": "67b85926efe4594df403ce84", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b85926efe4594df403ce7d" + }, + { + "_id": "67b85926efe4594df403ce85", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b85926efe4594df403ce81" + }, + { + "_id": "67b85926efe4594df403ce86", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85926efe4594df403ce83" + }, + { + "_id": "67b85926efe4594df403ce87", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85926efe4594df403ce84" + }, + { + "_id": "67b85926efe4594df403ce88", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b85926efe4594df403ce7f" + } + ] + }, + { + "Id": "67b8596f0100185d531ece19", + "Name": "supr long holo mutant", + "Root": "67b85976efe4594df403dd74", + "Items": [ + { + "_id": "67b85976efe4594df403dd74", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85976efe4594df403dd75", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b85976efe4594df403dd74" + }, + { + "_id": "67b85976efe4594df403dd76", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67b85976efe4594df403dd74" + }, + { + "_id": "67b85976efe4594df403dd77", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67b85976efe4594df403dd74" + }, + { + "_id": "67b85976efe4594df403dd78", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67b85976efe4594df403dd74" + }, + { + "_id": "67b85976efe4594df403dd79", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67b85976efe4594df403dd74" + }, + { + "_id": "67b85976efe4594df403dd7a", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85976efe4594df403dd77" + }, + { + "_id": "67b85976efe4594df403dd7b", + "_tpl": "6065878ac9cf8012264142fd", + "slotId": "mod_barrel", + "parentId": "67b85976efe4594df403dd77" + }, + { + "_id": "67b85976efe4594df403dd7c", + "_tpl": "5a329052c4a28200741e22d3", + "slotId": "mod_handguard", + "parentId": "67b85976efe4594df403dd77" + }, + { + "_id": "67b85976efe4594df403dd7d", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85976efe4594df403dd77" + }, + { + "_id": "67b85976efe4594df403dd7e", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b85976efe4594df403dd78" + }, + { + "_id": "67b85976efe4594df403dd7f", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b85976efe4594df403dd7b" + }, + { + "_id": "67b85976efe4594df403dd80", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "slotId": "mod_gas_block", + "parentId": "67b85976efe4594df403dd7b" + }, + { + "_id": "67b85976efe4594df403dd81", + "_tpl": "5c0102b20db834001d23eebc", + "slotId": "mod_foregrip", + "parentId": "67b85976efe4594df403dd7c" + }, + { + "_id": "67b85976efe4594df403dd82", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b85976efe4594df403dd7f" + }, + { + "_id": "67b85976efe4594df403dd83", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b85976efe4594df403dd81" + }, + { + "_id": "67b85976efe4594df403dd84", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b85976efe4594df403dd7e" + } + ] + }, + { + "Id": "67b859be0100185d53375fba", + "Name": "supr long vudu mutant v2", + "Root": "67b859c5efe4594df403ec4b", + "Items": [ + { + "_id": "67b859c5efe4594df403ec4b", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b859c5efe4594df403ec4c", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b859c5efe4594df403ec4b" + }, + { + "_id": "67b859c5efe4594df403ec4d", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67b859c5efe4594df403ec4b" + }, + { + "_id": "67b859c5efe4594df403ec4e", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67b859c5efe4594df403ec4b" + }, + { + "_id": "67b859c5efe4594df403ec4f", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67b859c5efe4594df403ec4b" + }, + { + "_id": "67b859c5efe4594df403ec50", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67b859c5efe4594df403ec4b" + }, + { + "_id": "67b859c5efe4594df403ec51", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b859c5efe4594df403ec4e" + }, + { + "_id": "67b859c5efe4594df403ec52", + "_tpl": "6065878ac9cf8012264142fd", + "slotId": "mod_barrel", + "parentId": "67b859c5efe4594df403ec4e" + }, + { + "_id": "67b859c5efe4594df403ec53", + "_tpl": "5a329052c4a28200741e22d3", + "slotId": "mod_handguard", + "parentId": "67b859c5efe4594df403ec4e" + }, + { + "_id": "67b859c5efe4594df403ec54", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b859c5efe4594df403ec4e" + }, + { + "_id": "67b859c5efe4594df403ec55", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67b859c5efe4594df403ec4f" + }, + { + "_id": "67b859c5efe4594df403ec56", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b859c5efe4594df403ec51" + }, + { + "_id": "67b859c5efe4594df403ec57", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b859c5efe4594df403ec52" + }, + { + "_id": "67b859c5efe4594df403ec58", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "slotId": "mod_gas_block", + "parentId": "67b859c5efe4594df403ec52" + }, + { + "_id": "67b859c5efe4594df403ec59", + "_tpl": "5c0102b20db834001d23eebc", + "slotId": "mod_foregrip", + "parentId": "67b859c5efe4594df403ec53" + }, + { + "_id": "67b859c5efe4594df403ec5a", + "_tpl": "5c0102aa0db834001b734ba1", + "slotId": "mod_mount_002", + "parentId": "67b859c5efe4594df403ec53" + }, + { + "_id": "67b859c5efe4594df403ec5b", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b859c5efe4594df403ec57" + }, + { + "_id": "67b859c5efe4594df403ec5c", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b859c5efe4594df403ec59" + }, + { + "_id": "67b859c5efe4594df403ec5d", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b859c5efe4594df403ec5a" + }, + { + "_id": "67b859c5efe4594df403ec5e", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b859c5efe4594df403ec55" + } + ] + }, + { + "Id": "67b85ace0100185d53207fcc", + "Name": "uber long supr UH1 sa58", + "Root": "67b85adeefe4594df4042726", + "Items": [ + { + "_id": "67b85adeefe4594df4042726", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85adeefe4594df4042727", + "_tpl": "5b7d679f5acfc4001a5c4024", + "slotId": "mod_pistol_grip", + "parentId": "67b85adeefe4594df4042726" + }, + { + "_id": "67b85adeefe4594df4042728", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "slotId": "mod_magazine", + "parentId": "67b85adeefe4594df4042726" + }, + { + "_id": "67b85adeefe4594df4042729", + "_tpl": "5b7be2345acfc400196d524a", + "slotId": "mod_handguard", + "parentId": "67b85adeefe4594df4042726" + }, + { + "_id": "67b85adeefe4594df404272a", + "_tpl": "5b7be1265acfc400161d0798", + "slotId": "mod_barrel", + "parentId": "67b85adeefe4594df4042726" + }, + { + "_id": "67b85adeefe4594df404272b", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85adeefe4594df4042726" + }, + { + "_id": "67b85adeefe4594df404272c", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67b85adeefe4594df4042726" + }, + { + "_id": "67b85adeefe4594df404272d", + "_tpl": "5b099bf25acfc4001637e683", + "slotId": "mod_stock", + "parentId": "67b85adeefe4594df4042726" + }, + { + "_id": "67b85adeefe4594df404272e", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_000", + "parentId": "67b85adeefe4594df4042729" + }, + { + "_id": "67b85adeefe4594df404272f", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b85adeefe4594df404272a" + }, + { + "_id": "67b85adeefe4594df4042730", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85adeefe4594df404272c" + }, + { + "_id": "67b85adeefe4594df4042731", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67b85adeefe4594df404272d" + }, + { + "_id": "67b85adeefe4594df4042732", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85adeefe4594df404272e" + }, + { + "_id": "67b85adeefe4594df4042733", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b85adeefe4594df404272f" + }, + { + "_id": "67b85adeefe4594df4042734", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b85adeefe4594df4042731" + }, + { + "_id": "67b85adeefe4594df4042735", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b85adeefe4594df4042734" + } + ] + }, + { + "Id": "67b85b150100185d537da820", + "Name": "uber long supr Bravo sa58", + "Root": "67b85b1cefe4594df4043693", + "Items": [ + { + "_id": "67b85b1cefe4594df4043693", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85b1cefe4594df4043694", + "_tpl": "5b7d679f5acfc4001a5c4024", + "slotId": "mod_pistol_grip", + "parentId": "67b85b1cefe4594df4043693" + }, + { + "_id": "67b85b1cefe4594df4043695", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "slotId": "mod_magazine", + "parentId": "67b85b1cefe4594df4043693" + }, + { + "_id": "67b85b1cefe4594df4043696", + "_tpl": "5b7bebc85acfc43bca706666", + "slotId": "mod_handguard", + "parentId": "67b85b1cefe4594df4043693" + }, + { + "_id": "67b85b1cefe4594df4043697", + "_tpl": "5b7be1265acfc400161d0798", + "slotId": "mod_barrel", + "parentId": "67b85b1cefe4594df4043693" + }, + { + "_id": "67b85b1cefe4594df4043698", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85b1cefe4594df4043693" + }, + { + "_id": "67b85b1cefe4594df4043699", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67b85b1cefe4594df4043693" + }, + { + "_id": "67b85b1cefe4594df404369a", + "_tpl": "5b099bf25acfc4001637e683", + "slotId": "mod_stock", + "parentId": "67b85b1cefe4594df4043693" + }, + { + "_id": "67b85b1cefe4594df404369b", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b85b1cefe4594df4043696" + }, + { + "_id": "67b85b1cefe4594df404369c", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b85b1cefe4594df4043697" + }, + { + "_id": "67b85b1cefe4594df404369d", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85b1cefe4594df4043699" + }, + { + "_id": "67b85b1cefe4594df404369e", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67b85b1cefe4594df404369a" + }, + { + "_id": "67b85b1cefe4594df404369f", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85b1cefe4594df404369b" + }, + { + "_id": "67b85b1cefe4594df40436a0", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b85b1cefe4594df404369c" + }, + { + "_id": "67b85b1cefe4594df40436a1", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b85b1cefe4594df404369d" + }, + { + "_id": "67b85b1cefe4594df40436a2", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85b1cefe4594df40436a1" + }, + { + "_id": "67b85b1cefe4594df40436a3", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock_000", + "parentId": "67b85b1cefe4594df404369e" + }, + { + "_id": "67b85b1cefe4594df40436a4", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b85b1cefe4594df40436a3" + } + ] + }, + { + "Id": "67b85b380100185d53b9373d", + "Name": "uber long supr vudu sa58", + "Root": "67b85b3cefe4594df40436b0", + "Items": [ + { + "_id": "67b85b3cefe4594df40436b0", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85b3cefe4594df40436b1", + "_tpl": "5b7d679f5acfc4001a5c4024", + "slotId": "mod_pistol_grip", + "parentId": "67b85b3cefe4594df40436b0" + }, + { + "_id": "67b85b3cefe4594df40436b2", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "slotId": "mod_magazine", + "parentId": "67b85b3cefe4594df40436b0" + }, + { + "_id": "67b85b3cefe4594df40436b3", + "_tpl": "5b7bebc85acfc43bca706666", + "slotId": "mod_handguard", + "parentId": "67b85b3cefe4594df40436b0" + }, + { + "_id": "67b85b3cefe4594df40436b4", + "_tpl": "5b7be1265acfc400161d0798", + "slotId": "mod_barrel", + "parentId": "67b85b3cefe4594df40436b0" + }, + { + "_id": "67b85b3cefe4594df40436b5", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85b3cefe4594df40436b0" + }, + { + "_id": "67b85b3cefe4594df40436b6", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67b85b3cefe4594df40436b0" + }, + { + "_id": "67b85b3cefe4594df40436b7", + "_tpl": "5b099bf25acfc4001637e683", + "slotId": "mod_stock", + "parentId": "67b85b3cefe4594df40436b0" + }, + { + "_id": "67b85b3cefe4594df40436b8", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b85b3cefe4594df40436b3" + }, + { + "_id": "67b85b3cefe4594df40436b9", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b85b3cefe4594df40436b4" + }, + { + "_id": "67b85b3cefe4594df40436ba", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67b85b3cefe4594df40436b6" + }, + { + "_id": "67b85b3cefe4594df40436bb", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67b85b3cefe4594df40436b7" + }, + { + "_id": "67b85b3cefe4594df40436bc", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85b3cefe4594df40436b8" + }, + { + "_id": "67b85b3cefe4594df40436bd", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b85b3cefe4594df40436b9" + }, + { + "_id": "67b85b3cefe4594df40436be", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85b3cefe4594df40436ba" + }, + { + "_id": "67b85b3cefe4594df40436bf", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock_000", + "parentId": "67b85b3cefe4594df40436bb" + }, + { + "_id": "67b85b3cefe4594df40436c0", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b85b3cefe4594df40436bf" + } + ] + }, + { + "Id": "67b85ba30100185d536df459", + "Name": "uber long loud hamr sa58", + "Root": "67b85babefe4594df40455fd", + "Items": [ + { + "_id": "67b85babefe4594df40455fd", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85babefe4594df40455fe", + "_tpl": "5b7d679f5acfc4001a5c4024", + "slotId": "mod_pistol_grip", + "parentId": "67b85babefe4594df40455fd" + }, + { + "_id": "67b85babefe4594df40455ff", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "slotId": "mod_magazine", + "parentId": "67b85babefe4594df40455fd" + }, + { + "_id": "67b85babefe4594df4045600", + "_tpl": "5b7bebc85acfc43bca706666", + "slotId": "mod_handguard", + "parentId": "67b85babefe4594df40455fd" + }, + { + "_id": "67b85babefe4594df4045601", + "_tpl": "5b7be1265acfc400161d0798", + "slotId": "mod_barrel", + "parentId": "67b85babefe4594df40455fd" + }, + { + "_id": "67b85babefe4594df4045602", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85babefe4594df40455fd" + }, + { + "_id": "67b85babefe4594df4045603", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67b85babefe4594df40455fd" + }, + { + "_id": "67b85babefe4594df4045604", + "_tpl": "5b099bf25acfc4001637e683", + "slotId": "mod_stock", + "parentId": "67b85babefe4594df40455fd" + }, + { + "_id": "67b85babefe4594df4045605", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67b85babefe4594df4045600" + }, + { + "_id": "67b85babefe4594df4045606", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67b85babefe4594df4045600" + }, + { + "_id": "67b85babefe4594df4045607", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67b85babefe4594df4045601" + }, + { + "_id": "67b85babefe4594df4045608", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85babefe4594df4045603" + }, + { + "_id": "67b85babefe4594df4045609", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67b85babefe4594df4045604" + }, + { + "_id": "67b85babefe4594df404560a", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85babefe4594df4045605" + }, + { + "_id": "67b85babefe4594df404560b", + "_tpl": "5b07dd285acfc4001754240d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85babefe4594df4045606" + }, + { + "_id": "67b85babefe4594df404560c", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85babefe4594df4045608" + }, + { + "_id": "67b85babefe4594df404560d", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b85babefe4594df4045609" + }, + { + "_id": "67b85babefe4594df404560e", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b85babefe4594df404560d" + } + ] + }, + { + "Id": "67b85c140100185d535fb370", + "Name": "loud short dp sa58", + "Root": "67b85c24efe4594df4047289", + "Items": [ + { + "_id": "67b85c24efe4594df4047289", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85c24efe4594df404728a", + "_tpl": "5b7d679f5acfc4001a5c4024", + "slotId": "mod_pistol_grip", + "parentId": "67b85c24efe4594df4047289" + }, + { + "_id": "67b85c24efe4594df404728b", + "_tpl": "5b7bef9c5acfc43d102852ec", + "slotId": "mod_magazine", + "parentId": "67b85c24efe4594df4047289" + }, + { + "_id": "67b85c24efe4594df404728c", + "_tpl": "5b7bee755acfc400196d5383", + "slotId": "mod_handguard", + "parentId": "67b85c24efe4594df4047289" + }, + { + "_id": "67b85c24efe4594df404728d", + "_tpl": "5b099a765acfc47a8607efe3", + "slotId": "mod_barrel", + "parentId": "67b85c24efe4594df4047289" + }, + { + "_id": "67b85c24efe4594df404728e", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85c24efe4594df4047289" + }, + { + "_id": "67b85c24efe4594df404728f", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67b85c24efe4594df4047289" + }, + { + "_id": "67b85c24efe4594df4047290", + "_tpl": "5b099bf25acfc4001637e683", + "slotId": "mod_stock", + "parentId": "67b85c24efe4594df4047289" + }, + { + "_id": "67b85c24efe4594df4047291", + "_tpl": "5b7be46e5acfc400170e2dcf", + "slotId": "mod_mount_000", + "parentId": "67b85c24efe4594df404728c" + }, + { + "_id": "67b85c24efe4594df4047292", + "_tpl": "5b7be4575acfc400161d0832", + "slotId": "mod_mount_002", + "parentId": "67b85c24efe4594df404728c" + }, + { + "_id": "67b85c24efe4594df4047293", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67b85c24efe4594df404728d" + }, + { + "_id": "67b85c24efe4594df4047294", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b85c24efe4594df404728f" + }, + { + "_id": "67b85c24efe4594df4047295", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67b85c24efe4594df4047290" + }, + { + "_id": "67b85c24efe4594df4047296", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85c24efe4594df4047291" + }, + { + "_id": "67b85c24efe4594df4047297", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85c24efe4594df4047292" + }, + { + "_id": "67b85c24efe4594df4047298", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85c24efe4594df4047294" + }, + { + "_id": "67b85c24efe4594df4047299", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b85c24efe4594df4047295" + }, + { + "_id": "67b85c24efe4594df404729a", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b85c24efe4594df4047299" + } + ] + }, + { + "Id": "67b85c530100185d536a0e58", + "Name": "loud short valday sa58", + "Root": "67b85c5befe4594df404810d", + "Items": [ + { + "_id": "67b85c5befe4594df404810d", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85c5befe4594df404810e", + "_tpl": "5b7d679f5acfc4001a5c4024", + "slotId": "mod_pistol_grip", + "parentId": "67b85c5befe4594df404810d" + }, + { + "_id": "67b85c5befe4594df404810f", + "_tpl": "5b7bef9c5acfc43d102852ec", + "slotId": "mod_magazine", + "parentId": "67b85c5befe4594df404810d" + }, + { + "_id": "67b85c5befe4594df4048110", + "_tpl": "5b7bee755acfc400196d5383", + "slotId": "mod_handguard", + "parentId": "67b85c5befe4594df404810d" + }, + { + "_id": "67b85c5befe4594df4048111", + "_tpl": "5b099a765acfc47a8607efe3", + "slotId": "mod_barrel", + "parentId": "67b85c5befe4594df404810d" + }, + { + "_id": "67b85c5befe4594df4048112", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85c5befe4594df404810d" + }, + { + "_id": "67b85c5befe4594df4048113", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67b85c5befe4594df404810d" + }, + { + "_id": "67b85c5befe4594df4048114", + "_tpl": "5b099bf25acfc4001637e683", + "slotId": "mod_stock", + "parentId": "67b85c5befe4594df404810d" + }, + { + "_id": "67b85c5befe4594df4048115", + "_tpl": "5b7be46e5acfc400170e2dcf", + "slotId": "mod_mount_000", + "parentId": "67b85c5befe4594df4048110" + }, + { + "_id": "67b85c5befe4594df4048116", + "_tpl": "5b7be4575acfc400161d0832", + "slotId": "mod_mount_002", + "parentId": "67b85c5befe4594df4048110" + }, + { + "_id": "67b85c5befe4594df4048117", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67b85c5befe4594df4048111" + }, + { + "_id": "67b85c5befe4594df4048118", + "_tpl": "5c0517910db83400232ffee5", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85c5befe4594df4048113" + }, + { + "_id": "67b85c5befe4594df4048119", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67b85c5befe4594df4048114" + }, + { + "_id": "67b85c5befe4594df404811a", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85c5befe4594df4048115" + }, + { + "_id": "67b85c5befe4594df404811b", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85c5befe4594df4048116" + }, + { + "_id": "67b85c5befe4594df404811c", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock_000", + "parentId": "67b85c5befe4594df4048119" + }, + { + "_id": "67b85c5befe4594df404811d", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b85c5befe4594df404811c" + } + ] + }, + { + "Id": "67b85c790100185d53970cf7", + "Name": "loud short holo sa58", + "Root": "67b85c7eefe4594df4048f81", + "Items": [ + { + "_id": "67b85c7eefe4594df4048f81", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85c7eefe4594df4048f82", + "_tpl": "5b7d679f5acfc4001a5c4024", + "slotId": "mod_pistol_grip", + "parentId": "67b85c7eefe4594df4048f81" + }, + { + "_id": "67b85c7eefe4594df4048f83", + "_tpl": "5b7bef9c5acfc43d102852ec", + "slotId": "mod_magazine", + "parentId": "67b85c7eefe4594df4048f81" + }, + { + "_id": "67b85c7eefe4594df4048f84", + "_tpl": "5b7bee755acfc400196d5383", + "slotId": "mod_handguard", + "parentId": "67b85c7eefe4594df4048f81" + }, + { + "_id": "67b85c7eefe4594df4048f85", + "_tpl": "5b099a765acfc47a8607efe3", + "slotId": "mod_barrel", + "parentId": "67b85c7eefe4594df4048f81" + }, + { + "_id": "67b85c7eefe4594df4048f86", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85c7eefe4594df4048f81" + }, + { + "_id": "67b85c7eefe4594df4048f87", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67b85c7eefe4594df4048f81" + }, + { + "_id": "67b85c7eefe4594df4048f88", + "_tpl": "5b099bf25acfc4001637e683", + "slotId": "mod_stock", + "parentId": "67b85c7eefe4594df4048f81" + }, + { + "_id": "67b85c7eefe4594df4048f89", + "_tpl": "5b7be46e5acfc400170e2dcf", + "slotId": "mod_mount_000", + "parentId": "67b85c7eefe4594df4048f84" + }, + { + "_id": "67b85c7eefe4594df4048f8a", + "_tpl": "5b7be4575acfc400161d0832", + "slotId": "mod_mount_002", + "parentId": "67b85c7eefe4594df4048f84" + }, + { + "_id": "67b85c7eefe4594df4048f8b", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67b85c7eefe4594df4048f85" + }, + { + "_id": "67b85c7eefe4594df4048f8c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85c7eefe4594df4048f87" + }, + { + "_id": "67b85c7eefe4594df4048f8d", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67b85c7eefe4594df4048f88" + }, + { + "_id": "67b85c7eefe4594df4048f8e", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b85c7eefe4594df4048f89" + }, + { + "_id": "67b85c7eefe4594df4048f8f", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85c7eefe4594df4048f8a" + }, + { + "_id": "67b85c7eefe4594df4048f90", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock_000", + "parentId": "67b85c7eefe4594df4048f8d" + }, + { + "_id": "67b85c7eefe4594df4048f91", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b85c7eefe4594df4048f90" + } + ] + }, + { + "Id": "67b85dff0100185d5398e207", + "Name": "supr hamr 102", + "Root": "67b85e09efe4594df404ed9b", + "Items": [ + { + "_id": "67b85e09efe4594df404ed9b", + "_tpl": "5ac66d015acfc400180ae6e4", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85e09efe4594df404ed9c", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67b85e09efe4594df404ed9b" + }, + { + "_id": "67b85e09efe4594df404ed9d", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67b85e09efe4594df404ed9b" + }, + { + "_id": "67b85e09efe4594df404ed9e", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b85e09efe4594df404ed9b" + }, + { + "_id": "67b85e09efe4594df404ed9f", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b85e09efe4594df404ed9b" + }, + { + "_id": "67b85e09efe4594df404eda0", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67b85e09efe4594df404ed9b" + }, + { + "_id": "67b85e09efe4594df404eda1", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67b85e09efe4594df404ed9b" + }, + { + "_id": "67b85e09efe4594df404eda2", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b85e09efe4594df404ed9b" + }, + { + "_id": "67b85e09efe4594df404eda3", + "_tpl": "5efaf417aeb21837e749c7f2", + "slotId": "mod_handguard", + "parentId": "67b85e09efe4594df404ed9c" + }, + { + "_id": "67b85e09efe4594df404eda4", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b85e09efe4594df404ed9d" + }, + { + "_id": "67b85e09efe4594df404eda5", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85e09efe4594df404ed9f" + }, + { + "_id": "67b85e09efe4594df404eda6", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67b85e09efe4594df404eda0" + }, + { + "_id": "67b85e09efe4594df404eda7", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b85e09efe4594df404eda3" + }, + { + "_id": "67b85e09efe4594df404eda8", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85e09efe4594df404eda3" + }, + { + "_id": "67b85e09efe4594df404eda9", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b85e09efe4594df404eda4" + }, + { + "_id": "67b85e09efe4594df404edaa", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85e09efe4594df404eda5" + }, + { + "_id": "67b85e09efe4594df404edab", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b85e09efe4594df404eda6" + } + ] + }, + { + "Id": "67b85e300100185d53a0c84a", + "Name": "supr hco 102", + "Root": "67b85e36efe4594df404fdd2", + "Items": [ + { + "_id": "67b85e36efe4594df404fdd2", + "_tpl": "5ac66d015acfc400180ae6e4", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85e36efe4594df404fdd3", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67b85e36efe4594df404fdd2" + }, + { + "_id": "67b85e36efe4594df404fdd4", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67b85e36efe4594df404fdd2" + }, + { + "_id": "67b85e36efe4594df404fdd5", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b85e36efe4594df404fdd2" + }, + { + "_id": "67b85e36efe4594df404fdd6", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b85e36efe4594df404fdd2" + }, + { + "_id": "67b85e36efe4594df404fdd7", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67b85e36efe4594df404fdd2" + }, + { + "_id": "67b85e36efe4594df404fdd8", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67b85e36efe4594df404fdd2" + }, + { + "_id": "67b85e36efe4594df404fdd9", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b85e36efe4594df404fdd2" + }, + { + "_id": "67b85e36efe4594df404fdda", + "_tpl": "5efaf417aeb21837e749c7f2", + "slotId": "mod_handguard", + "parentId": "67b85e36efe4594df404fdd3" + }, + { + "_id": "67b85e36efe4594df404fddb", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b85e36efe4594df404fdd4" + }, + { + "_id": "67b85e36efe4594df404fddc", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85e36efe4594df404fdd6" + }, + { + "_id": "67b85e36efe4594df404fddd", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock", + "parentId": "67b85e36efe4594df404fdd7" + }, + { + "_id": "67b85e36efe4594df404fdde", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b85e36efe4594df404fdda" + }, + { + "_id": "67b85e36efe4594df404fddf", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85e36efe4594df404fdda" + }, + { + "_id": "67b85e36efe4594df404fde0", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b85e36efe4594df404fddb" + }, + { + "_id": "67b85e36efe4594df404fde1", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b85e36efe4594df404fddd" + } + ] + }, + { + "Id": "67b85e7f0100185d5335be77", + "Name": "supr xps 102", + "Root": "67b85e85efe4594df40518f8", + "Items": [ + { + "_id": "67b85e85efe4594df40518f8", + "_tpl": "5ac66d015acfc400180ae6e4", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85e85efe4594df40518f9", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67b85e85efe4594df40518f8" + }, + { + "_id": "67b85e85efe4594df40518fa", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67b85e85efe4594df40518f8" + }, + { + "_id": "67b85e85efe4594df40518fb", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b85e85efe4594df40518f8" + }, + { + "_id": "67b85e85efe4594df40518fc", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b85e85efe4594df40518f8" + }, + { + "_id": "67b85e85efe4594df40518fd", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67b85e85efe4594df40518f8" + }, + { + "_id": "67b85e85efe4594df40518fe", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67b85e85efe4594df40518f8" + }, + { + "_id": "67b85e85efe4594df40518ff", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b85e85efe4594df40518f8" + }, + { + "_id": "67b85e85efe4594df4051900", + "_tpl": "5efaf417aeb21837e749c7f2", + "slotId": "mod_handguard", + "parentId": "67b85e85efe4594df40518f9" + }, + { + "_id": "67b85e85efe4594df4051901", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85e85efe4594df40518fc" + }, + { + "_id": "67b85e85efe4594df4051902", + "_tpl": "58d2946c86f7744e271174b5", + "slotId": "mod_stock", + "parentId": "67b85e85efe4594df40518fd" + }, + { + "_id": "67b85e85efe4594df4051903", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85e85efe4594df4051900" + }, + { + "_id": "67b85e85efe4594df4051904", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85e85efe4594df4051900" + }, + { + "_id": "67b85e85efe4594df4051905", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b85e85efe4594df4051902" + } + ] + }, + { + "Id": "67b85ea60100185d5319621d", + "Name": "supr 2x 102", + "Root": "67b85eaaefe4594df4051952", + "Items": [ + { + "_id": "67b85eaaefe4594df4051952", + "_tpl": "5ac66d015acfc400180ae6e4", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85eaaefe4594df4051953", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67b85eaaefe4594df4051952" + }, + { + "_id": "67b85eaaefe4594df4051954", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67b85eaaefe4594df4051952" + }, + { + "_id": "67b85eaaefe4594df4051955", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b85eaaefe4594df4051952" + }, + { + "_id": "67b85eaaefe4594df4051956", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b85eaaefe4594df4051952" + }, + { + "_id": "67b85eaaefe4594df4051957", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67b85eaaefe4594df4051952" + }, + { + "_id": "67b85eaaefe4594df4051958", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67b85eaaefe4594df4051952" + }, + { + "_id": "67b85eaaefe4594df4051959", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b85eaaefe4594df4051952" + }, + { + "_id": "67b85eaaefe4594df405195a", + "_tpl": "5efaf417aeb21837e749c7f2", + "slotId": "mod_handguard", + "parentId": "67b85eaaefe4594df4051953" + }, + { + "_id": "67b85eaaefe4594df405195b", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85eaaefe4594df4051956" + }, + { + "_id": "67b85eaaefe4594df405195c", + "_tpl": "58d2946c86f7744e271174b5", + "slotId": "mod_stock", + "parentId": "67b85eaaefe4594df4051957" + }, + { + "_id": "67b85eaaefe4594df405195d", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85eaaefe4594df405195a" + }, + { + "_id": "67b85eaaefe4594df405195e", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85eaaefe4594df405195a" + }, + { + "_id": "67b85eaaefe4594df405195f", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b85eaaefe4594df405195c" + } + ] + }, + { + "Id": "67b85fad0100185d53cb47d8", + "Name": "supr long vudu scar762x51", + "Root": "67b85fbbefe4594df40573ac", + "Items": [ + { + "_id": "67b85fbbefe4594df40573ac", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b85fbbefe4594df40573ad", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b85fbbefe4594df40573ac" + }, + { + "_id": "67b85fbbefe4594df40573ae", + "_tpl": "618168dc8004cc50514c34fc", + "slotId": "mod_magazine", + "parentId": "67b85fbbefe4594df40573ac" + }, + { + "_id": "67b85fbbefe4594df40573af", + "_tpl": "6165adcdd3a39d50044c120f", + "slotId": "mod_reciever", + "parentId": "67b85fbbefe4594df40573ac" + }, + { + "_id": "67b85fbbefe4594df40573b0", + "_tpl": "66ffc246a81a4f85e70d4d06", + "slotId": "mod_stock", + "parentId": "67b85fbbefe4594df40573ac" + }, + { + "_id": "67b85fbbefe4594df40573b1", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b85fbbefe4594df40573ac" + }, + { + "_id": "67b85fbbefe4594df40573b2", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67b85fbbefe4594df40573af" + }, + { + "_id": "67b85fbbefe4594df40573b3", + "_tpl": "6183b084a112697a4b3a6e6c", + "slotId": "mod_barrel", + "parentId": "67b85fbbefe4594df40573af" + }, + { + "_id": "67b85fbbefe4594df40573b4", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85fbbefe4594df40573af" + }, + { + "_id": "67b85fbbefe4594df40573b5", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b85fbbefe4594df40573af" + }, + { + "_id": "67b85fbbefe4594df40573b6", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b85fbbefe4594df40573af" + }, + { + "_id": "67b85fbbefe4594df40573b7", + "_tpl": "6529348224cbe3c74a05e5c4", + "slotId": "mod_stock", + "parentId": "67b85fbbefe4594df40573b0" + }, + { + "_id": "67b85fbbefe4594df40573b8", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85fbbefe4594df40573b2" + }, + { + "_id": "67b85fbbefe4594df40573b9", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b85fbbefe4594df40573b3" + }, + { + "_id": "67b85fbbefe4594df40573ba", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b85fbbefe4594df40573b3" + }, + { + "_id": "67b85fbbefe4594df40573bb", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b85fbbefe4594df40573b5" + }, + { + "_id": "67b85fbbefe4594df40573bc", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b85fbbefe4594df40573b6" + }, + { + "_id": "67b85fbbefe4594df40573bd", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b85fbbefe4594df40573b9" + }, + { + "_id": "67b85fbbefe4594df40573be", + "_tpl": "6529366450dc782999054ba0", + "slotId": "mod_stock", + "parentId": "67b85fbbefe4594df40573b7" + }, + { + "_id": "67b85fbbefe4594df40573bf", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b85fbbefe4594df40573be" + } + ] + }, + { + "Id": "67b860020100185d533b46c9", + "Name": "supr long vudu scar762x51 v2", + "Root": "67b86013efe4594df4059360", + "Items": [ + { + "_id": "67b86013efe4594df4059360", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b86013efe4594df4059361", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b86013efe4594df4059360" + }, + { + "_id": "67b86013efe4594df4059362", + "_tpl": "618168dc8004cc50514c34fc", + "slotId": "mod_magazine", + "parentId": "67b86013efe4594df4059360" + }, + { + "_id": "67b86013efe4594df4059363", + "_tpl": "6165adcdd3a39d50044c120f", + "slotId": "mod_reciever", + "parentId": "67b86013efe4594df4059360" + }, + { + "_id": "67b86013efe4594df4059364", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67b86013efe4594df4059360" + }, + { + "_id": "67b86013efe4594df4059365", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b86013efe4594df4059360" + }, + { + "_id": "67b86013efe4594df4059366", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67b86013efe4594df4059363" + }, + { + "_id": "67b86013efe4594df4059367", + "_tpl": "6183b084a112697a4b3a6e6c", + "slotId": "mod_barrel", + "parentId": "67b86013efe4594df4059363" + }, + { + "_id": "67b86013efe4594df4059368", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86013efe4594df4059363" + }, + { + "_id": "67b86013efe4594df4059369", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b86013efe4594df4059363" + }, + { + "_id": "67b86013efe4594df405936a", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b86013efe4594df4059363" + }, + { + "_id": "67b86013efe4594df405936b", + "_tpl": "66ffc2bd132225f0fe0611d8", + "slotId": "mod_stock_001", + "parentId": "67b86013efe4594df4059364" + }, + { + "_id": "67b86013efe4594df405936c", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67b86013efe4594df4059364" + }, + { + "_id": "67b86013efe4594df405936d", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86013efe4594df4059366" + }, + { + "_id": "67b86013efe4594df405936e", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b86013efe4594df4059367" + }, + { + "_id": "67b86013efe4594df405936f", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86013efe4594df4059367" + }, + { + "_id": "67b86013efe4594df4059370", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67b86013efe4594df4059369" + }, + { + "_id": "67b86013efe4594df4059371", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b86013efe4594df405936a" + }, + { + "_id": "67b86013efe4594df4059372", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b86013efe4594df405936e" + } + ] + }, + { + "Id": "67b860440100185d531d2705", + "Name": "supr long 2x scar762x51", + "Root": "67b86049efe4594df405a332", + "Items": [ + { + "_id": "67b86049efe4594df405a332", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b86049efe4594df405a333", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b86049efe4594df405a332" + }, + { + "_id": "67b86049efe4594df405a334", + "_tpl": "618168dc8004cc50514c34fc", + "slotId": "mod_magazine", + "parentId": "67b86049efe4594df405a332" + }, + { + "_id": "67b86049efe4594df405a335", + "_tpl": "6165adcdd3a39d50044c120f", + "slotId": "mod_reciever", + "parentId": "67b86049efe4594df405a332" + }, + { + "_id": "67b86049efe4594df405a336", + "_tpl": "66ffc246a81a4f85e70d4d06", + "slotId": "mod_stock", + "parentId": "67b86049efe4594df405a332" + }, + { + "_id": "67b86049efe4594df405a337", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b86049efe4594df405a332" + }, + { + "_id": "67b86049efe4594df405a338", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86049efe4594df405a335" + }, + { + "_id": "67b86049efe4594df405a339", + "_tpl": "6183b084a112697a4b3a6e6c", + "slotId": "mod_barrel", + "parentId": "67b86049efe4594df405a335" + }, + { + "_id": "67b86049efe4594df405a33a", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86049efe4594df405a335" + }, + { + "_id": "67b86049efe4594df405a33b", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b86049efe4594df405a335" + }, + { + "_id": "67b86049efe4594df405a33c", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b86049efe4594df405a335" + }, + { + "_id": "67b86049efe4594df405a33d", + "_tpl": "6529348224cbe3c74a05e5c4", + "slotId": "mod_stock", + "parentId": "67b86049efe4594df405a336" + }, + { + "_id": "67b86049efe4594df405a33e", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b86049efe4594df405a339" + }, + { + "_id": "67b86049efe4594df405a33f", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86049efe4594df405a339" + }, + { + "_id": "67b86049efe4594df405a340", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b86049efe4594df405a33b" + }, + { + "_id": "67b86049efe4594df405a341", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b86049efe4594df405a33c" + }, + { + "_id": "67b86049efe4594df405a342", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b86049efe4594df405a33e" + }, + { + "_id": "67b86049efe4594df405a343", + "_tpl": "6529366450dc782999054ba0", + "slotId": "mod_stock", + "parentId": "67b86049efe4594df405a33d" + }, + { + "_id": "67b86049efe4594df405a344", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b86049efe4594df405a343" + } + ] + }, + { + "Id": "67b860690100185d535c2006", + "Name": "supr long holo scar762x51", + "Root": "67b86072efe4594df405a34e", + "Items": [ + { + "_id": "67b86072efe4594df405a34e", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b86072efe4594df405a34f", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67b86072efe4594df405a34e" + }, + { + "_id": "67b86072efe4594df405a350", + "_tpl": "618168dc8004cc50514c34fc", + "slotId": "mod_magazine", + "parentId": "67b86072efe4594df405a34e" + }, + { + "_id": "67b86072efe4594df405a351", + "_tpl": "6165adcdd3a39d50044c120f", + "slotId": "mod_reciever", + "parentId": "67b86072efe4594df405a34e" + }, + { + "_id": "67b86072efe4594df405a352", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67b86072efe4594df405a34e" + }, + { + "_id": "67b86072efe4594df405a353", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b86072efe4594df405a34e" + }, + { + "_id": "67b86072efe4594df405a354", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86072efe4594df405a351" + }, + { + "_id": "67b86072efe4594df405a355", + "_tpl": "6183b084a112697a4b3a6e6c", + "slotId": "mod_barrel", + "parentId": "67b86072efe4594df405a351" + }, + { + "_id": "67b86072efe4594df405a356", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86072efe4594df405a351" + }, + { + "_id": "67b86072efe4594df405a357", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b86072efe4594df405a351" + }, + { + "_id": "67b86072efe4594df405a358", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b86072efe4594df405a351" + }, + { + "_id": "67b86072efe4594df405a359", + "_tpl": "66ffc2bd132225f0fe0611d8", + "slotId": "mod_stock_001", + "parentId": "67b86072efe4594df405a352" + }, + { + "_id": "67b86072efe4594df405a35a", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67b86072efe4594df405a352" + }, + { + "_id": "67b86072efe4594df405a35b", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b86072efe4594df405a355" + }, + { + "_id": "67b86072efe4594df405a35c", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86072efe4594df405a355" + }, + { + "_id": "67b86072efe4594df405a35d", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b86072efe4594df405a357" + }, + { + "_id": "67b86072efe4594df405a35e", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b86072efe4594df405a358" + }, + { + "_id": "67b86072efe4594df405a35f", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b86072efe4594df405a35b" + } + ] + }, + { + "Id": "67b860d10100185d53fbcf4a", + "Name": "loud holo 762x51TAN", + "Root": "67b860e1efe4594df405d407", + "Items": [ + { + "_id": "67b860e1efe4594df405d407", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b860e1efe4594df405d408", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistol_grip", + "parentId": "67b860e1efe4594df405d407" + }, + { + "_id": "67b860e1efe4594df405d409", + "_tpl": "6183d53f1cb55961fa0fdcda", + "slotId": "mod_magazine", + "parentId": "67b860e1efe4594df405d407" + }, + { + "_id": "67b860e1efe4594df405d40a", + "_tpl": "6165aeedfaa1272e431521e3", + "slotId": "mod_reciever", + "parentId": "67b860e1efe4594df405d407" + }, + { + "_id": "67b860e1efe4594df405d40b", + "_tpl": "61825d06d92c473c770215de", + "slotId": "mod_stock", + "parentId": "67b860e1efe4594df405d407" + }, + { + "_id": "67b860e1efe4594df405d40c", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b860e1efe4594df405d407" + }, + { + "_id": "67b860e1efe4594df405d40d", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b860e1efe4594df405d40a" + }, + { + "_id": "67b860e1efe4594df405d40e", + "_tpl": "6183b0711cb55961fa0fdcad", + "slotId": "mod_barrel", + "parentId": "67b860e1efe4594df405d40a" + }, + { + "_id": "67b860e1efe4594df405d40f", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b860e1efe4594df405d40a" + }, + { + "_id": "67b860e1efe4594df405d410", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b860e1efe4594df405d40a" + }, + { + "_id": "67b860e1efe4594df405d411", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b860e1efe4594df405d40a" + }, + { + "_id": "67b860e1efe4594df405d412", + "_tpl": "61825d136ef05c2ce828f1cc", + "slotId": "mod_stock_001", + "parentId": "67b860e1efe4594df405d40b" + }, + { + "_id": "67b860e1efe4594df405d413", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67b860e1efe4594df405d40b" + }, + { + "_id": "67b860e1efe4594df405d414", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67b860e1efe4594df405d40e" + }, + { + "_id": "67b860e1efe4594df405d415", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b860e1efe4594df405d40e" + }, + { + "_id": "67b860e1efe4594df405d416", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b860e1efe4594df405d410" + }, + { + "_id": "67b860e1efe4594df405d417", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b860e1efe4594df405d410" + }, + { + "_id": "67b860e1efe4594df405d418", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b860e1efe4594df405d417" + }, + { + "_id": "67b860e1efe4594df405d419", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67b860e1efe4594df405d412" + } + ] + }, + { + "Id": "67b861030100185d53fb1415", + "Name": "loud holo 762x51TAN v2", + "Root": "67b86107efe4594df405e1b9", + "Items": [ + { + "_id": "67b86107efe4594df405e1b9", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b86107efe4594df405e1ba", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistol_grip", + "parentId": "67b86107efe4594df405e1b9" + }, + { + "_id": "67b86107efe4594df405e1bb", + "_tpl": "6183d53f1cb55961fa0fdcda", + "slotId": "mod_magazine", + "parentId": "67b86107efe4594df405e1b9" + }, + { + "_id": "67b86107efe4594df405e1bc", + "_tpl": "6165aeedfaa1272e431521e3", + "slotId": "mod_reciever", + "parentId": "67b86107efe4594df405e1b9" + }, + { + "_id": "67b86107efe4594df405e1bd", + "_tpl": "66ffc20ba73a7bce3d0b45ab", + "slotId": "mod_stock", + "parentId": "67b86107efe4594df405e1b9" + }, + { + "_id": "67b86107efe4594df405e1be", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b86107efe4594df405e1b9" + }, + { + "_id": "67b86107efe4594df405e1bf", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86107efe4594df405e1bc" + }, + { + "_id": "67b86107efe4594df405e1c0", + "_tpl": "6183b0711cb55961fa0fdcad", + "slotId": "mod_barrel", + "parentId": "67b86107efe4594df405e1bc" + }, + { + "_id": "67b86107efe4594df405e1c1", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86107efe4594df405e1bc" + }, + { + "_id": "67b86107efe4594df405e1c2", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b86107efe4594df405e1bc" + }, + { + "_id": "67b86107efe4594df405e1c3", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b86107efe4594df405e1bc" + }, + { + "_id": "67b86107efe4594df405e1c4", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock", + "parentId": "67b86107efe4594df405e1bd" + }, + { + "_id": "67b86107efe4594df405e1c5", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b86107efe4594df405e1c0" + }, + { + "_id": "67b86107efe4594df405e1c6", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86107efe4594df405e1c0" + }, + { + "_id": "67b86107efe4594df405e1c7", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b86107efe4594df405e1c2" + }, + { + "_id": "67b86107efe4594df405e1c8", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b86107efe4594df405e1c2" + }, + { + "_id": "67b86107efe4594df405e1c9", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b86107efe4594df405e1c5" + }, + { + "_id": "67b86107efe4594df405e1ca", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b86107efe4594df405e1c8" + }, + { + "_id": "67b86107efe4594df405e1cb", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b86107efe4594df405e1c4" + } + ] + }, + { + "Id": "67b861530100185d53ea482e", + "Name": "loud holo2 762x51TAN", + "Root": "67b86159efe4594df405f2e4", + "Items": [ + { + "_id": "67b86159efe4594df405f2e4", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b86159efe4594df405f2e5", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b86159efe4594df405f2e4" + }, + { + "_id": "67b86159efe4594df405f2e6", + "_tpl": "6183d53f1cb55961fa0fdcda", + "slotId": "mod_magazine", + "parentId": "67b86159efe4594df405f2e4" + }, + { + "_id": "67b86159efe4594df405f2e7", + "_tpl": "6165aeedfaa1272e431521e3", + "slotId": "mod_reciever", + "parentId": "67b86159efe4594df405f2e4" + }, + { + "_id": "67b86159efe4594df405f2e8", + "_tpl": "61825d06d92c473c770215de", + "slotId": "mod_stock", + "parentId": "67b86159efe4594df405f2e4" + }, + { + "_id": "67b86159efe4594df405f2e9", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b86159efe4594df405f2e4" + }, + { + "_id": "67b86159efe4594df405f2ea", + "_tpl": "5c0a2cec0db834001b7ce47d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86159efe4594df405f2e7" + }, + { + "_id": "67b86159efe4594df405f2eb", + "_tpl": "6183b084a112697a4b3a6e6c", + "slotId": "mod_barrel", + "parentId": "67b86159efe4594df405f2e7" + }, + { + "_id": "67b86159efe4594df405f2ec", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86159efe4594df405f2e7" + }, + { + "_id": "67b86159efe4594df405f2ed", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b86159efe4594df405f2e7" + }, + { + "_id": "67b86159efe4594df405f2ee", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b86159efe4594df405f2e7" + }, + { + "_id": "67b86159efe4594df405f2ef", + "_tpl": "61825d136ef05c2ce828f1cc", + "slotId": "mod_stock_001", + "parentId": "67b86159efe4594df405f2e8" + }, + { + "_id": "67b86159efe4594df405f2f0", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67b86159efe4594df405f2e8" + }, + { + "_id": "67b86159efe4594df405f2f1", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b86159efe4594df405f2eb" + }, + { + "_id": "67b86159efe4594df405f2f2", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b86159efe4594df405f2ed" + }, + { + "_id": "67b86159efe4594df405f2f3", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b86159efe4594df405f2ed" + }, + { + "_id": "67b86159efe4594df405f2f4", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b86159efe4594df405f2f1" + }, + { + "_id": "67b86159efe4594df405f2f5", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b86159efe4594df405f2f3" + }, + { + "_id": "67b86159efe4594df405f2f6", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67b86159efe4594df405f2ef" + } + ] + }, + { + "Id": "67b861770100185d532f0ce4", + "Name": "loud p4 762x51TAN", + "Root": "67b8617defe4594df406014d", + "Items": [ + { + "_id": "67b8617defe4594df406014d", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8617defe4594df406014e", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67b8617defe4594df406014d" + }, + { + "_id": "67b8617defe4594df406014f", + "_tpl": "6183d53f1cb55961fa0fdcda", + "slotId": "mod_magazine", + "parentId": "67b8617defe4594df406014d" + }, + { + "_id": "67b8617defe4594df4060150", + "_tpl": "6165aeedfaa1272e431521e3", + "slotId": "mod_reciever", + "parentId": "67b8617defe4594df406014d" + }, + { + "_id": "67b8617defe4594df4060151", + "_tpl": "61825d06d92c473c770215de", + "slotId": "mod_stock", + "parentId": "67b8617defe4594df406014d" + }, + { + "_id": "67b8617defe4594df4060152", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67b8617defe4594df406014d" + }, + { + "_id": "67b8617defe4594df4060153", + "_tpl": "5dfe6104585a0c3e995c7b82", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8617defe4594df4060150" + }, + { + "_id": "67b8617defe4594df4060154", + "_tpl": "6183b084a112697a4b3a6e6c", + "slotId": "mod_barrel", + "parentId": "67b8617defe4594df4060150" + }, + { + "_id": "67b8617defe4594df4060155", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8617defe4594df4060150" + }, + { + "_id": "67b8617defe4594df4060156", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67b8617defe4594df4060150" + }, + { + "_id": "67b8617defe4594df4060157", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67b8617defe4594df4060150" + }, + { + "_id": "67b8617defe4594df4060158", + "_tpl": "61825d136ef05c2ce828f1cc", + "slotId": "mod_stock_001", + "parentId": "67b8617defe4594df4060151" + }, + { + "_id": "67b8617defe4594df4060159", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67b8617defe4594df4060151" + }, + { + "_id": "67b8617defe4594df406015a", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b8617defe4594df4060154" + }, + { + "_id": "67b8617defe4594df406015b", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67b8617defe4594df4060156" + }, + { + "_id": "67b8617defe4594df406015c", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67b8617defe4594df4060156" + }, + { + "_id": "67b8617defe4594df406015d", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b8617defe4594df406015a" + }, + { + "_id": "67b8617defe4594df406015e", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8617defe4594df406015c" + }, + { + "_id": "67b8617defe4594df406015f", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67b8617defe4594df4060158" + } + ] + }, + { + "Id": "67b862f10100185d53ef75e9", + "Name": "loud holo rd704", + "Root": "67b862fcefe4594df40693a3", + "Items": [ + { + "_id": "67b862fcefe4594df40693a3", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b862fcefe4594df40693a4", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67b862fcefe4594df40693a3" + }, + { + "_id": "67b862fcefe4594df40693a5", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67b862fcefe4594df40693a3" + }, + { + "_id": "67b862fcefe4594df40693a6", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b862fcefe4594df40693a3" + }, + { + "_id": "67b862fcefe4594df40693a7", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b862fcefe4594df40693a3" + }, + { + "_id": "67b862fcefe4594df40693a8", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b862fcefe4594df40693a3" + }, + { + "_id": "67b862fcefe4594df40693a9", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock_000", + "parentId": "67b862fcefe4594df40693a3" + }, + { + "_id": "67b862fcefe4594df40693aa", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67b862fcefe4594df40693a3" + }, + { + "_id": "67b862fcefe4594df40693ab", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b862fcefe4594df40693a3" + }, + { + "_id": "67b862fcefe4594df40693ac", + "_tpl": "669a6a4a525be1d2d004b8eb", + "slotId": "mod_mount_001", + "parentId": "67b862fcefe4594df40693a4" + }, + { + "_id": "67b862fcefe4594df40693ad", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b862fcefe4594df40693a4" + }, + { + "_id": "67b862fcefe4594df40693ae", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b862fcefe4594df40693a7" + }, + { + "_id": "67b862fcefe4594df40693af", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b862fcefe4594df40693ac" + }, + { + "_id": "67b862fcefe4594df40693b0", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b862fcefe4594df40693ad" + } + ] + }, + { + "Id": "67b8630c0100185d5388cf4b", + "Name": "supr holo rd704", + "Root": "67b86311efe4594df40693b8", + "Items": [ + { + "_id": "67b86311efe4594df40693b8", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b86311efe4594df40693b9", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67b86311efe4594df40693b8" + }, + { + "_id": "67b86311efe4594df40693ba", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b86311efe4594df40693b8" + }, + { + "_id": "67b86311efe4594df40693bb", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b86311efe4594df40693b8" + }, + { + "_id": "67b86311efe4594df40693bc", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b86311efe4594df40693b8" + }, + { + "_id": "67b86311efe4594df40693bd", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86311efe4594df40693b8" + }, + { + "_id": "67b86311efe4594df40693be", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock_000", + "parentId": "67b86311efe4594df40693b8" + }, + { + "_id": "67b86311efe4594df40693bf", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67b86311efe4594df40693b8" + }, + { + "_id": "67b86311efe4594df40693c0", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b86311efe4594df40693b8" + }, + { + "_id": "67b86311efe4594df40693c1", + "_tpl": "669a6a4a525be1d2d004b8eb", + "slotId": "mod_mount_001", + "parentId": "67b86311efe4594df40693b9" + }, + { + "_id": "67b86311efe4594df40693c2", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b86311efe4594df40693b9" + }, + { + "_id": "67b86311efe4594df40693c3", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b86311efe4594df40693ba" + }, + { + "_id": "67b86311efe4594df40693c4", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86311efe4594df40693bc" + }, + { + "_id": "67b86311efe4594df40693c5", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b86311efe4594df40693c1" + }, + { + "_id": "67b86311efe4594df40693c6", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b86311efe4594df40693c2" + } + ] + }, + { + "Id": "67b8632c0100185d53cd84d7", + "Name": "supr 2x rd704", + "Root": "67b8632fefe4594df406a486", + "Items": [ + { + "_id": "67b8632fefe4594df406a486", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8632fefe4594df406a487", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67b8632fefe4594df406a486" + }, + { + "_id": "67b8632fefe4594df406a488", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b8632fefe4594df406a486" + }, + { + "_id": "67b8632fefe4594df406a489", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b8632fefe4594df406a486" + }, + { + "_id": "67b8632fefe4594df406a48a", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b8632fefe4594df406a486" + }, + { + "_id": "67b8632fefe4594df406a48b", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8632fefe4594df406a486" + }, + { + "_id": "67b8632fefe4594df406a48c", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock_000", + "parentId": "67b8632fefe4594df406a486" + }, + { + "_id": "67b8632fefe4594df406a48d", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67b8632fefe4594df406a486" + }, + { + "_id": "67b8632fefe4594df406a48e", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b8632fefe4594df406a486" + }, + { + "_id": "67b8632fefe4594df406a48f", + "_tpl": "669a6a4a525be1d2d004b8eb", + "slotId": "mod_mount_001", + "parentId": "67b8632fefe4594df406a487" + }, + { + "_id": "67b8632fefe4594df406a490", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b8632fefe4594df406a487" + }, + { + "_id": "67b8632fefe4594df406a491", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b8632fefe4594df406a488" + }, + { + "_id": "67b8632fefe4594df406a492", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8632fefe4594df406a48a" + }, + { + "_id": "67b8632fefe4594df406a493", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8632fefe4594df406a48f" + }, + { + "_id": "67b8632fefe4594df406a494", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b8632fefe4594df406a490" + } + ] + }, + { + "Id": "67b863530100185d53134b0d", + "Name": "loud deltap rd704", + "Root": "67b86359efe4594df406b463", + "Items": [ + { + "_id": "67b86359efe4594df406b463", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b86359efe4594df406b464", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67b86359efe4594df406b463" + }, + { + "_id": "67b86359efe4594df406b465", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67b86359efe4594df406b463" + }, + { + "_id": "67b86359efe4594df406b466", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b86359efe4594df406b463" + }, + { + "_id": "67b86359efe4594df406b467", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b86359efe4594df406b463" + }, + { + "_id": "67b86359efe4594df406b468", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86359efe4594df406b463" + }, + { + "_id": "67b86359efe4594df406b469", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock_000", + "parentId": "67b86359efe4594df406b463" + }, + { + "_id": "67b86359efe4594df406b46a", + "_tpl": "5c6175362e221600133e3b94", + "slotId": "mod_magazine", + "parentId": "67b86359efe4594df406b463" + }, + { + "_id": "67b86359efe4594df406b46b", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b86359efe4594df406b463" + }, + { + "_id": "67b86359efe4594df406b46c", + "_tpl": "669a6a4a525be1d2d004b8eb", + "slotId": "mod_mount_001", + "parentId": "67b86359efe4594df406b464" + }, + { + "_id": "67b86359efe4594df406b46d", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b86359efe4594df406b464" + }, + { + "_id": "67b86359efe4594df406b46e", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b86359efe4594df406b467" + }, + { + "_id": "67b86359efe4594df406b46f", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b86359efe4594df406b46c" + }, + { + "_id": "67b86359efe4594df406b470", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b86359efe4594df406b46d" + }, + { + "_id": "67b86359efe4594df406b471", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86359efe4594df406b46e" + } + ] + }, + { + "Id": "67b863810100185d537f55da", + "Name": "supr vudu rd704", + "Root": "67b8638aefe4594df406c6cb", + "Items": [ + { + "_id": "67b8638aefe4594df406c6cb", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8638aefe4594df406c6cc", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67b8638aefe4594df406c6cb" + }, + { + "_id": "67b8638aefe4594df406c6cd", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b8638aefe4594df406c6cb" + }, + { + "_id": "67b8638aefe4594df406c6ce", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b8638aefe4594df406c6cb" + }, + { + "_id": "67b8638aefe4594df406c6cf", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b8638aefe4594df406c6cb" + }, + { + "_id": "67b8638aefe4594df406c6d0", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8638aefe4594df406c6cb" + }, + { + "_id": "67b8638aefe4594df406c6d1", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock_000", + "parentId": "67b8638aefe4594df406c6cb" + }, + { + "_id": "67b8638aefe4594df406c6d2", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67b8638aefe4594df406c6cb" + }, + { + "_id": "67b8638aefe4594df406c6d3", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b8638aefe4594df406c6cb" + }, + { + "_id": "67b8638aefe4594df406c6d4", + "_tpl": "669a6a4a525be1d2d004b8eb", + "slotId": "mod_mount_001", + "parentId": "67b8638aefe4594df406c6cc" + }, + { + "_id": "67b8638aefe4594df406c6d5", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b8638aefe4594df406c6cc" + }, + { + "_id": "67b8638aefe4594df406c6d6", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b8638aefe4594df406c6cd" + }, + { + "_id": "67b8638aefe4594df406c6d7", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b8638aefe4594df406c6cf" + }, + { + "_id": "67b8638aefe4594df406c6d8", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8638aefe4594df406c6d4" + }, + { + "_id": "67b8638aefe4594df406c6d9", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67b8638aefe4594df406c6d5" + }, + { + "_id": "67b8638aefe4594df406c6da", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8638aefe4594df406c6d7" + } + ] + }, + { + "Id": "67b863b40100185d53a647ac", + "Name": "supr vudu rd704 v2", + "Root": "67b863c8efe4594df406e8a3", + "Items": [ + { + "_id": "67b863c8efe4594df406e8a3", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b863c8efe4594df406e8a4", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67b863c8efe4594df406e8a3" + }, + { + "_id": "67b863c8efe4594df406e8a5", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b863c8efe4594df406e8a3" + }, + { + "_id": "67b863c8efe4594df406e8a6", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b863c8efe4594df406e8a3" + }, + { + "_id": "67b863c8efe4594df406e8a7", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b863c8efe4594df406e8a3" + }, + { + "_id": "67b863c8efe4594df406e8a8", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b863c8efe4594df406e8a3" + }, + { + "_id": "67b863c8efe4594df406e8a9", + "_tpl": "5649b2314bdc2d79388b4576", + "slotId": "mod_stock_000", + "parentId": "67b863c8efe4594df406e8a3" + }, + { + "_id": "67b863c8efe4594df406e8aa", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67b863c8efe4594df406e8a3" + }, + { + "_id": "67b863c8efe4594df406e8ab", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b863c8efe4594df406e8a3" + }, + { + "_id": "67b863c8efe4594df406e8ac", + "_tpl": "669a6a4a525be1d2d004b8eb", + "slotId": "mod_mount_001", + "parentId": "67b863c8efe4594df406e8a4" + }, + { + "_id": "67b863c8efe4594df406e8ad", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b863c8efe4594df406e8a4" + }, + { + "_id": "67b863c8efe4594df406e8ae", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b863c8efe4594df406e8a5" + }, + { + "_id": "67b863c8efe4594df406e8af", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b863c8efe4594df406e8a7" + }, + { + "_id": "67b863c8efe4594df406e8b0", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b863c8efe4594df406e8a9" + }, + { + "_id": "67b863c8efe4594df406e8b1", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b863c8efe4594df406e8ac" + }, + { + "_id": "67b863c8efe4594df406e8b2", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b863c8efe4594df406e8ad" + }, + { + "_id": "67b863c8efe4594df406e8b3", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b863c8efe4594df406e8af" + }, + { + "_id": "67b863c8efe4594df406e8b4", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b863c8efe4594df406e8b0" + }, + { + "_id": "67b863c8efe4594df406e8b5", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b863c8efe4594df406e8b4" + } + ] + }, + { + "Id": "67b863f10100185d530b8277", + "Name": "supr hamr rd704", + "Root": "67b863f8efe4594df406f9f5", + "Items": [ + { + "_id": "67b863f8efe4594df406f9f5", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b863f8efe4594df406f9f6", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67b863f8efe4594df406f9f5" + }, + { + "_id": "67b863f8efe4594df406f9f7", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b863f8efe4594df406f9f5" + }, + { + "_id": "67b863f8efe4594df406f9f8", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b863f8efe4594df406f9f5" + }, + { + "_id": "67b863f8efe4594df406f9f9", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b863f8efe4594df406f9f5" + }, + { + "_id": "67b863f8efe4594df406f9fa", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b863f8efe4594df406f9f5" + }, + { + "_id": "67b863f8efe4594df406f9fb", + "_tpl": "5649b2314bdc2d79388b4576", + "slotId": "mod_stock_000", + "parentId": "67b863f8efe4594df406f9f5" + }, + { + "_id": "67b863f8efe4594df406f9fc", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67b863f8efe4594df406f9f5" + }, + { + "_id": "67b863f8efe4594df406f9fd", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b863f8efe4594df406f9f5" + }, + { + "_id": "67b863f8efe4594df406f9fe", + "_tpl": "669a6a4a525be1d2d004b8eb", + "slotId": "mod_mount_001", + "parentId": "67b863f8efe4594df406f9f6" + }, + { + "_id": "67b863f8efe4594df406f9ff", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67b863f8efe4594df406f9f6" + }, + { + "_id": "67b863f8efe4594df406fa00", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b863f8efe4594df406f9f7" + }, + { + "_id": "67b863f8efe4594df406fa01", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b863f8efe4594df406f9f9" + }, + { + "_id": "67b863f8efe4594df406fa02", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b863f8efe4594df406f9fb" + }, + { + "_id": "67b863f8efe4594df406fa03", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b863f8efe4594df406f9fe" + }, + { + "_id": "67b863f8efe4594df406fa04", + "_tpl": "5c1bc5612e221602b5429350", + "slotId": "mod_foregrip", + "parentId": "67b863f8efe4594df406f9ff" + }, + { + "_id": "67b863f8efe4594df406fa05", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b863f8efe4594df406fa01" + }, + { + "_id": "67b863f8efe4594df406fa06", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b863f8efe4594df406fa02" + }, + { + "_id": "67b863f8efe4594df406fa07", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b863f8efe4594df406fa06" + } + ] + }, + { + "Id": "67b8648d0100185d53d818e8", + "Name": "supr holo 74n", + "Root": "67b86493efe4594df4072871", + "Items": [ + { + "_id": "67b86493efe4594df4072871", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b86493efe4594df4072872", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67b86493efe4594df4072871" + }, + { + "_id": "67b86493efe4594df4072873", + "_tpl": "615d8f5dd92c473c770212ef", + "slotId": "mod_muzzle", + "parentId": "67b86493efe4594df4072871" + }, + { + "_id": "67b86493efe4594df4072874", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b86493efe4594df4072871" + }, + { + "_id": "67b86493efe4594df4072875", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b86493efe4594df4072871" + }, + { + "_id": "67b86493efe4594df4072876", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86493efe4594df4072871" + }, + { + "_id": "67b86493efe4594df4072877", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67b86493efe4594df4072871" + }, + { + "_id": "67b86493efe4594df4072878", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67b86493efe4594df4072871" + }, + { + "_id": "67b86493efe4594df4072879", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b86493efe4594df4072871" + }, + { + "_id": "67b86493efe4594df407287a", + "_tpl": "5c17664f2e2216398b5a7e3c", + "slotId": "mod_handguard", + "parentId": "67b86493efe4594df4072872" + }, + { + "_id": "67b86493efe4594df407287b", + "_tpl": "615d8f8567085e45ef1409ca", + "slotId": "mod_muzzle", + "parentId": "67b86493efe4594df4072873" + }, + { + "_id": "67b86493efe4594df407287c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86493efe4594df4072875" + }, + { + "_id": "67b86493efe4594df407287d", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_000", + "parentId": "67b86493efe4594df407287a" + }, + { + "_id": "67b86493efe4594df407287e", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_001", + "parentId": "67b86493efe4594df407287a" + }, + { + "_id": "67b86493efe4594df407287f", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b86493efe4594df407287d" + }, + { + "_id": "67b86493efe4594df4072880", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b86493efe4594df407287e" + } + ] + }, + { + "Id": "67b864b00100185d530ff23e", + "Name": "supr holo 74n v2", + "Root": "67b864b5efe4594df407288b", + "Items": [ + { + "_id": "67b864b5efe4594df407288b", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b864b5efe4594df407288c", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67b864b5efe4594df407288b" + }, + { + "_id": "67b864b5efe4594df407288d", + "_tpl": "615d8f5dd92c473c770212ef", + "slotId": "mod_muzzle", + "parentId": "67b864b5efe4594df407288b" + }, + { + "_id": "67b864b5efe4594df407288e", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b864b5efe4594df407288b" + }, + { + "_id": "67b864b5efe4594df407288f", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b864b5efe4594df407288b" + }, + { + "_id": "67b864b5efe4594df4072890", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b864b5efe4594df407288b" + }, + { + "_id": "67b864b5efe4594df4072891", + "_tpl": "5649b2314bdc2d79388b4576", + "slotId": "mod_stock", + "parentId": "67b864b5efe4594df407288b" + }, + { + "_id": "67b864b5efe4594df4072892", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67b864b5efe4594df407288b" + }, + { + "_id": "67b864b5efe4594df4072893", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b864b5efe4594df407288b" + }, + { + "_id": "67b864b5efe4594df4072894", + "_tpl": "5c17664f2e2216398b5a7e3c", + "slotId": "mod_handguard", + "parentId": "67b864b5efe4594df407288c" + }, + { + "_id": "67b864b5efe4594df4072895", + "_tpl": "615d8f8567085e45ef1409ca", + "slotId": "mod_muzzle", + "parentId": "67b864b5efe4594df407288d" + }, + { + "_id": "67b864b5efe4594df4072896", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b864b5efe4594df407288f" + }, + { + "_id": "67b864b5efe4594df4072897", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b864b5efe4594df4072891" + }, + { + "_id": "67b864b5efe4594df4072898", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_000", + "parentId": "67b864b5efe4594df4072894" + }, + { + "_id": "67b864b5efe4594df4072899", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_001", + "parentId": "67b864b5efe4594df4072894" + }, + { + "_id": "67b864b5efe4594df407289a", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b864b5efe4594df4072898" + }, + { + "_id": "67b864b5efe4594df407289b", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b864b5efe4594df4072899" + }, + { + "_id": "67b864b5efe4594df407289c", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b864b5efe4594df4072897" + }, + { + "_id": "67b864b5efe4594df407289d", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b864b5efe4594df407289c" + } + ] + }, + { + "Id": "67b864e70100185d532198da", + "Name": "loud 2x 74n", + "Root": "67b864eeefe4594df40737b2", + "Items": [ + { + "_id": "67b864eeefe4594df40737b2", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b864eeefe4594df40737b3", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67b864eeefe4594df40737b2" + }, + { + "_id": "67b864eeefe4594df40737b4", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67b864eeefe4594df40737b2" + }, + { + "_id": "67b864eeefe4594df40737b5", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b864eeefe4594df40737b2" + }, + { + "_id": "67b864eeefe4594df40737b6", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b864eeefe4594df40737b2" + }, + { + "_id": "67b864eeefe4594df40737b7", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b864eeefe4594df40737b2" + }, + { + "_id": "67b864eeefe4594df40737b8", + "_tpl": "5649b2314bdc2d79388b4576", + "slotId": "mod_stock", + "parentId": "67b864eeefe4594df40737b2" + }, + { + "_id": "67b864eeefe4594df40737b9", + "_tpl": "5bed625c0db834001c062946", + "slotId": "mod_magazine", + "parentId": "67b864eeefe4594df40737b2" + }, + { + "_id": "67b864eeefe4594df40737ba", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b864eeefe4594df40737b2" + }, + { + "_id": "67b864eeefe4594df40737bb", + "_tpl": "5c17664f2e2216398b5a7e3c", + "slotId": "mod_handguard", + "parentId": "67b864eeefe4594df40737b3" + }, + { + "_id": "67b864eeefe4594df40737bc", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b864eeefe4594df40737b6" + }, + { + "_id": "67b864eeefe4594df40737bd", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b864eeefe4594df40737b8" + }, + { + "_id": "67b864eeefe4594df40737be", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_000", + "parentId": "67b864eeefe4594df40737bb" + }, + { + "_id": "67b864eeefe4594df40737bf", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_001", + "parentId": "67b864eeefe4594df40737bb" + }, + { + "_id": "67b864eeefe4594df40737c0", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b864eeefe4594df40737be" + }, + { + "_id": "67b864eeefe4594df40737c1", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b864eeefe4594df40737bf" + }, + { + "_id": "67b864eeefe4594df40737c2", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b864eeefe4594df40737bd" + }, + { + "_id": "67b864eeefe4594df40737c3", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b864eeefe4594df40737c2" + } + ] + }, + { + "Id": "67b865270100185d53049925", + "Name": "loud vudu 74n", + "Root": "67b8652befe4594df4074602", + "Items": [ + { + "_id": "67b8652befe4594df4074602", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8652befe4594df4074603", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67b8652befe4594df4074602" + }, + { + "_id": "67b8652befe4594df4074604", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67b8652befe4594df4074602" + }, + { + "_id": "67b8652befe4594df4074605", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b8652befe4594df4074602" + }, + { + "_id": "67b8652befe4594df4074606", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b8652befe4594df4074602" + }, + { + "_id": "67b8652befe4594df4074607", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8652befe4594df4074602" + }, + { + "_id": "67b8652befe4594df4074608", + "_tpl": "5649b2314bdc2d79388b4576", + "slotId": "mod_stock", + "parentId": "67b8652befe4594df4074602" + }, + { + "_id": "67b8652befe4594df4074609", + "_tpl": "5bed625c0db834001c062946", + "slotId": "mod_magazine", + "parentId": "67b8652befe4594df4074602" + }, + { + "_id": "67b8652befe4594df407460a", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b8652befe4594df4074602" + }, + { + "_id": "67b8652befe4594df407460b", + "_tpl": "5c17664f2e2216398b5a7e3c", + "slotId": "mod_handguard", + "parentId": "67b8652befe4594df4074603" + }, + { + "_id": "67b8652befe4594df407460c", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b8652befe4594df4074606" + }, + { + "_id": "67b8652befe4594df407460d", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b8652befe4594df4074608" + }, + { + "_id": "67b8652befe4594df407460e", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_000", + "parentId": "67b8652befe4594df407460b" + }, + { + "_id": "67b8652befe4594df407460f", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_001", + "parentId": "67b8652befe4594df407460b" + }, + { + "_id": "67b8652befe4594df4074610", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b8652befe4594df407460e" + }, + { + "_id": "67b8652befe4594df4074611", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8652befe4594df407460f" + }, + { + "_id": "67b8652befe4594df4074612", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8652befe4594df407460c" + }, + { + "_id": "67b8652befe4594df4074613", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b8652befe4594df407460d" + }, + { + "_id": "67b8652befe4594df4074614", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b8652befe4594df4074613" + } + ] + }, + { + "Id": "67b8654e0100185d53065a58", + "Name": "supr vudu 74n", + "Root": "67b86555efe4594df407568d", + "Items": [ + { + "_id": "67b86555efe4594df407568d", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b86555efe4594df407568e", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67b86555efe4594df407568d" + }, + { + "_id": "67b86555efe4594df407568f", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67b86555efe4594df407568d" + }, + { + "_id": "67b86555efe4594df4075690", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b86555efe4594df407568d" + }, + { + "_id": "67b86555efe4594df4075691", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b86555efe4594df407568d" + }, + { + "_id": "67b86555efe4594df4075692", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86555efe4594df407568d" + }, + { + "_id": "67b86555efe4594df4075693", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67b86555efe4594df407568d" + }, + { + "_id": "67b86555efe4594df4075694", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67b86555efe4594df407568d" + }, + { + "_id": "67b86555efe4594df4075695", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b86555efe4594df407568d" + }, + { + "_id": "67b86555efe4594df4075696", + "_tpl": "5c17664f2e2216398b5a7e3c", + "slotId": "mod_handguard", + "parentId": "67b86555efe4594df407568e" + }, + { + "_id": "67b86555efe4594df4075697", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b86555efe4594df407568f" + }, + { + "_id": "67b86555efe4594df4075698", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67b86555efe4594df4075691" + }, + { + "_id": "67b86555efe4594df4075699", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_000", + "parentId": "67b86555efe4594df4075696" + }, + { + "_id": "67b86555efe4594df407569a", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_001", + "parentId": "67b86555efe4594df4075696" + }, + { + "_id": "67b86555efe4594df407569b", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67b86555efe4594df4075699" + }, + { + "_id": "67b86555efe4594df407569c", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b86555efe4594df407569a" + }, + { + "_id": "67b86555efe4594df407569d", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b86555efe4594df4075697" + }, + { + "_id": "67b86555efe4594df407569e", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86555efe4594df4075698" + } + ] + }, + { + "Id": "67b8659a0100185d532e8937", + "Name": "supr UH1 74n", + "Root": "67b865a0efe4594df4077426", + "Items": [ + { + "_id": "67b865a0efe4594df4077426", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b865a0efe4594df4077427", + "_tpl": "5b237e425acfc4771e1be0b6", + "slotId": "mod_gas_block", + "parentId": "67b865a0efe4594df4077426" + }, + { + "_id": "67b865a0efe4594df4077428", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67b865a0efe4594df4077426" + }, + { + "_id": "67b865a0efe4594df4077429", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b865a0efe4594df4077426" + }, + { + "_id": "67b865a0efe4594df407742a", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b865a0efe4594df4077426" + }, + { + "_id": "67b865a0efe4594df407742b", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b865a0efe4594df4077426" + }, + { + "_id": "67b865a0efe4594df407742c", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67b865a0efe4594df4077426" + }, + { + "_id": "67b865a0efe4594df407742d", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67b865a0efe4594df4077426" + }, + { + "_id": "67b865a0efe4594df407742e", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b865a0efe4594df4077426" + }, + { + "_id": "67b865a0efe4594df407742f", + "_tpl": "5b4736b986f77405cb415c10", + "slotId": "mod_mount_002", + "parentId": "67b865a0efe4594df4077427" + }, + { + "_id": "67b865a0efe4594df4077430", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67b865a0efe4594df4077428" + }, + { + "_id": "67b865a0efe4594df4077431", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b865a0efe4594df407742a" + }, + { + "_id": "67b865a0efe4594df4077432", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b865a0efe4594df407742f" + }, + { + "_id": "67b865a0efe4594df4077433", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67b865a0efe4594df4077430" + } + ] + }, + { + "Id": "67b865c90100185d533b5dd1", + "Name": "loud bravo 74n", + "Root": "67b865d8efe4594df4078275", + "Items": [ + { + "_id": "67b865d8efe4594df4078275", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b865d8efe4594df4078276", + "_tpl": "5b237e425acfc4771e1be0b6", + "slotId": "mod_gas_block", + "parentId": "67b865d8efe4594df4078275" + }, + { + "_id": "67b865d8efe4594df4078277", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67b865d8efe4594df4078275" + }, + { + "_id": "67b865d8efe4594df4078278", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b865d8efe4594df4078275" + }, + { + "_id": "67b865d8efe4594df4078279", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b865d8efe4594df4078275" + }, + { + "_id": "67b865d8efe4594df407827a", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b865d8efe4594df4078275" + }, + { + "_id": "67b865d8efe4594df407827b", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67b865d8efe4594df4078275" + }, + { + "_id": "67b865d8efe4594df407827c", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67b865d8efe4594df4078275" + }, + { + "_id": "67b865d8efe4594df407827d", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b865d8efe4594df4078275" + }, + { + "_id": "67b865d8efe4594df407827e", + "_tpl": "5b4736a986f774040571e998", + "slotId": "mod_mount_001", + "parentId": "67b865d8efe4594df4078276" + }, + { + "_id": "67b865d8efe4594df407827f", + "_tpl": "5b4736b986f77405cb415c10", + "slotId": "mod_mount_002", + "parentId": "67b865d8efe4594df4078276" + }, + { + "_id": "67b865d8efe4594df4078280", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b865d8efe4594df4078279" + }, + { + "_id": "67b865d8efe4594df4078281", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b865d8efe4594df407827e" + }, + { + "_id": "67b865d8efe4594df4078282", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b865d8efe4594df407827f" + }, + { + "_id": "67b865d8efe4594df4078283", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b865d8efe4594df4078280" + }, + { + "_id": "67b865d8efe4594df4078284", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b865d8efe4594df4078283" + } + ] + }, + { + "Id": "67b866d70100185d53548cef", + "Name": "loud holo akm", + "Root": "67b866e2efe4594df407c826", + "Items": [ + { + "_id": "67b866e2efe4594df407c826", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b866e2efe4594df407c827", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67b866e2efe4594df407c826" + }, + { + "_id": "67b866e2efe4594df407c828", + "_tpl": "5f633f68f5750b524b45f112", + "slotId": "mod_muzzle", + "parentId": "67b866e2efe4594df407c826" + }, + { + "_id": "67b866e2efe4594df407c829", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b866e2efe4594df407c826" + }, + { + "_id": "67b866e2efe4594df407c82a", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b866e2efe4594df407c826" + }, + { + "_id": "67b866e2efe4594df407c82b", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b866e2efe4594df407c826" + }, + { + "_id": "67b866e2efe4594df407c82c", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67b866e2efe4594df407c826" + }, + { + "_id": "67b866e2efe4594df407c82d", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67b866e2efe4594df407c826" + }, + { + "_id": "67b866e2efe4594df407c82e", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_002", + "parentId": "67b866e2efe4594df407c827" + }, + { + "_id": "67b866e2efe4594df407c82f", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b866e2efe4594df407c827" + }, + { + "_id": "67b866e2efe4594df407c830", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b866e2efe4594df407c82a" + }, + { + "_id": "67b866e2efe4594df407c831", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b866e2efe4594df407c82e" + }, + { + "_id": "67b866e2efe4594df407c832", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b866e2efe4594df407c82f" + } + ] + }, + { + "Id": "67b8672a0100185d53f60ed8", + "Name": "supr holo akm", + "Root": "67b8672fefe4594df407d69b", + "Items": [ + { + "_id": "67b8672fefe4594df407d69b", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8672fefe4594df407d69c", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67b8672fefe4594df407d69b" + }, + { + "_id": "67b8672fefe4594df407d69d", + "_tpl": "615d8e9867085e45ef1409c6", + "slotId": "mod_muzzle", + "parentId": "67b8672fefe4594df407d69b" + }, + { + "_id": "67b8672fefe4594df407d69e", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b8672fefe4594df407d69b" + }, + { + "_id": "67b8672fefe4594df407d69f", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b8672fefe4594df407d69b" + }, + { + "_id": "67b8672fefe4594df407d6a0", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8672fefe4594df407d69b" + }, + { + "_id": "67b8672fefe4594df407d6a1", + "_tpl": "5649b2314bdc2d79388b4576", + "slotId": "mod_stock", + "parentId": "67b8672fefe4594df407d69b" + }, + { + "_id": "67b8672fefe4594df407d6a2", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67b8672fefe4594df407d69b" + }, + { + "_id": "67b8672fefe4594df407d6a3", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_002", + "parentId": "67b8672fefe4594df407d69c" + }, + { + "_id": "67b8672fefe4594df407d6a4", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b8672fefe4594df407d69c" + }, + { + "_id": "67b8672fefe4594df407d6a5", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b8672fefe4594df407d69d" + }, + { + "_id": "67b8672fefe4594df407d6a6", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8672fefe4594df407d69f" + }, + { + "_id": "67b8672fefe4594df407d6a7", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b8672fefe4594df407d6a1" + }, + { + "_id": "67b8672fefe4594df407d6a8", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8672fefe4594df407d6a3" + }, + { + "_id": "67b8672fefe4594df407d6a9", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b8672fefe4594df407d6a4" + }, + { + "_id": "67b8672fefe4594df407d6aa", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b8672fefe4594df407d6a5" + }, + { + "_id": "67b8672fefe4594df407d6ab", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67b8672fefe4594df407d6a7" + }, + { + "_id": "67b8672fefe4594df407d6ac", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67b8672fefe4594df407d6ab" + } + ] + }, + { + "Id": "67b867570100185d535e082d", + "Name": "supr holo akm bananana", + "Root": "67b8675defe4594df407e50a", + "Items": [ + { + "_id": "67b8675defe4594df407e50a", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8675defe4594df407e50b", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67b8675defe4594df407e50a" + }, + { + "_id": "67b8675defe4594df407e50c", + "_tpl": "615d8e9867085e45ef1409c6", + "slotId": "mod_muzzle", + "parentId": "67b8675defe4594df407e50a" + }, + { + "_id": "67b8675defe4594df407e50d", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b8675defe4594df407e50a" + }, + { + "_id": "67b8675defe4594df407e50e", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b8675defe4594df407e50a" + }, + { + "_id": "67b8675defe4594df407e50f", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8675defe4594df407e50a" + }, + { + "_id": "67b8675defe4594df407e510", + "_tpl": "5649b2314bdc2d79388b4576", + "slotId": "mod_stock", + "parentId": "67b8675defe4594df407e50a" + }, + { + "_id": "67b8675defe4594df407e511", + "_tpl": "5e21a3c67e40bd02257a008a", + "slotId": "mod_magazine", + "parentId": "67b8675defe4594df407e50a" + }, + { + "_id": "67b8675defe4594df407e512", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_002", + "parentId": "67b8675defe4594df407e50b" + }, + { + "_id": "67b8675defe4594df407e513", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b8675defe4594df407e50b" + }, + { + "_id": "67b8675defe4594df407e514", + "_tpl": "5a34fe59c4a282000b1521a2", + "slotId": "mod_muzzle", + "parentId": "67b8675defe4594df407e50c" + }, + { + "_id": "67b8675defe4594df407e515", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8675defe4594df407e50e" + }, + { + "_id": "67b8675defe4594df407e516", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67b8675defe4594df407e510" + }, + { + "_id": "67b8675defe4594df407e517", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8675defe4594df407e512" + }, + { + "_id": "67b8675defe4594df407e518", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67b8675defe4594df407e513" + }, + { + "_id": "67b8675defe4594df407e519", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock_000", + "parentId": "67b8675defe4594df407e516" + }, + { + "_id": "67b8675defe4594df407e51a", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67b8675defe4594df407e519" + } + ] + }, + { + "Id": "67b867960100185d53e8bbc1", + "Name": "supr bravo akm", + "Root": "67b8679defe4594df4080207", + "Items": [ + { + "_id": "67b8679defe4594df4080207", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b8679defe4594df4080208", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67b8679defe4594df4080207" + }, + { + "_id": "67b8679defe4594df4080209", + "_tpl": "615d8e9867085e45ef1409c6", + "slotId": "mod_muzzle", + "parentId": "67b8679defe4594df4080207" + }, + { + "_id": "67b8679defe4594df408020a", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b8679defe4594df4080207" + }, + { + "_id": "67b8679defe4594df408020b", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b8679defe4594df4080207" + }, + { + "_id": "67b8679defe4594df408020c", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8679defe4594df4080207" + }, + { + "_id": "67b8679defe4594df408020d", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67b8679defe4594df4080207" + }, + { + "_id": "67b8679defe4594df408020e", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67b8679defe4594df4080207" + }, + { + "_id": "67b8679defe4594df408020f", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_002", + "parentId": "67b8679defe4594df4080208" + }, + { + "_id": "67b8679defe4594df4080210", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67b8679defe4594df4080208" + }, + { + "_id": "67b8679defe4594df4080211", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67b8679defe4594df4080209" + }, + { + "_id": "67b8679defe4594df4080212", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8679defe4594df408020b" + }, + { + "_id": "67b8679defe4594df4080213", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b8679defe4594df408020f" + }, + { + "_id": "67b8679defe4594df4080214", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67b8679defe4594df4080210" + }, + { + "_id": "67b8679defe4594df4080215", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67b8679defe4594df4080211" + }, + { + "_id": "67b8679defe4594df4080216", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b8679defe4594df4080212" + }, + { + "_id": "67b8679defe4594df4080217", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b8679defe4594df4080216" + } + ] + }, + { + "Id": "67b867de0100185d53d3908a", + "Name": "loud hamr akm", + "Root": "67b867e5efe4594df408103a", + "Items": [ + { + "_id": "67b867e5efe4594df408103a", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b867e5efe4594df408103b", + "_tpl": "59d64ec286f774171d1e0a42", + "slotId": "mod_gas_block", + "parentId": "67b867e5efe4594df408103a" + }, + { + "_id": "67b867e5efe4594df408103c", + "_tpl": "615d8e9867085e45ef1409c6", + "slotId": "mod_muzzle", + "parentId": "67b867e5efe4594df408103a" + }, + { + "_id": "67b867e5efe4594df408103d", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b867e5efe4594df408103a" + }, + { + "_id": "67b867e5efe4594df408103e", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b867e5efe4594df408103a" + }, + { + "_id": "67b867e5efe4594df408103f", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b867e5efe4594df408103a" + }, + { + "_id": "67b867e5efe4594df4081040", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67b867e5efe4594df408103a" + }, + { + "_id": "67b867e5efe4594df4081041", + "_tpl": "5c6175362e221600133e3b94", + "slotId": "mod_magazine", + "parentId": "67b867e5efe4594df408103a" + }, + { + "_id": "67b867e5efe4594df4081042", + "_tpl": "5c17664f2e2216398b5a7e3c", + "slotId": "mod_handguard", + "parentId": "67b867e5efe4594df408103b" + }, + { + "_id": "67b867e5efe4594df4081043", + "_tpl": "5cf78496d7f00c065703d6ca", + "slotId": "mod_muzzle", + "parentId": "67b867e5efe4594df408103c" + }, + { + "_id": "67b867e5efe4594df4081044", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b867e5efe4594df408103e" + }, + { + "_id": "67b867e5efe4594df4081045", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_000", + "parentId": "67b867e5efe4594df4081042" + }, + { + "_id": "67b867e5efe4594df4081046", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_002", + "parentId": "67b867e5efe4594df4081042" + }, + { + "_id": "67b867e5efe4594df4081047", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67b867e5efe4594df4081045" + }, + { + "_id": "67b867e5efe4594df4081048", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b867e5efe4594df4081046" + }, + { + "_id": "67b867e5efe4594df4081049", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle_000", + "parentId": "67b867e5efe4594df4081043" + }, + { + "_id": "67b867e5efe4594df408104a", + "_tpl": "5cf78720d7f00c06595bc93e", + "slotId": "mod_muzzle_001", + "parentId": "67b867e5efe4594df4081043" + }, + { + "_id": "67b867e5efe4594df408104b", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b867e5efe4594df4081044" + } + ] + }, + { + "Id": "67b8681d0100185d53bd404c", + "Name": "loud dp akm", + "Root": "67b86821efe4594df4081edf", + "Items": [ + { + "_id": "67b86821efe4594df4081edf", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67b86821efe4594df4081ee0", + "_tpl": "59d64ec286f774171d1e0a42", + "slotId": "mod_gas_block", + "parentId": "67b86821efe4594df4081edf" + }, + { + "_id": "67b86821efe4594df4081ee1", + "_tpl": "615d8e9867085e45ef1409c6", + "slotId": "mod_muzzle", + "parentId": "67b86821efe4594df4081edf" + }, + { + "_id": "67b86821efe4594df4081ee2", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67b86821efe4594df4081edf" + }, + { + "_id": "67b86821efe4594df4081ee3", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67b86821efe4594df4081edf" + }, + { + "_id": "67b86821efe4594df4081ee4", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86821efe4594df4081edf" + }, + { + "_id": "67b86821efe4594df4081ee5", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67b86821efe4594df4081edf" + }, + { + "_id": "67b86821efe4594df4081ee6", + "_tpl": "5c6175362e221600133e3b94", + "slotId": "mod_magazine", + "parentId": "67b86821efe4594df4081edf" + }, + { + "_id": "67b86821efe4594df4081ee7", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67b86821efe4594df4081edf" + }, + { + "_id": "67b86821efe4594df4081ee8", + "_tpl": "5c17664f2e2216398b5a7e3c", + "slotId": "mod_handguard", + "parentId": "67b86821efe4594df4081ee0" + }, + { + "_id": "67b86821efe4594df4081ee9", + "_tpl": "5cf78496d7f00c065703d6ca", + "slotId": "mod_muzzle", + "parentId": "67b86821efe4594df4081ee1" + }, + { + "_id": "67b86821efe4594df4081eea", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67b86821efe4594df4081ee3" + }, + { + "_id": "67b86821efe4594df4081eeb", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_000", + "parentId": "67b86821efe4594df4081ee8" + }, + { + "_id": "67b86821efe4594df4081eec", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_002", + "parentId": "67b86821efe4594df4081ee8" + }, + { + "_id": "67b86821efe4594df4081eed", + "_tpl": "5c1bc5fb2e221602b1779b32", + "slotId": "mod_foregrip", + "parentId": "67b86821efe4594df4081eeb" + }, + { + "_id": "67b86821efe4594df4081eee", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67b86821efe4594df4081eec" + }, + { + "_id": "67b86821efe4594df4081eef", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle_000", + "parentId": "67b86821efe4594df4081ee9" + }, + { + "_id": "67b86821efe4594df4081ef0", + "_tpl": "5cf78720d7f00c06595bc93e", + "slotId": "mod_muzzle_001", + "parentId": "67b86821efe4594df4081ee9" + }, + { + "_id": "67b86821efe4594df4081ef1", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67b86821efe4594df4081eea" + } + ] + }, + { + "Id": "67bc4d540100185d5392c02a", + "Name": "close range supr tan v2", + "Root": "67bc4d595ef62d72f4037cbd", + "Items": [ + { + "_id": "67bc4d595ef62d72f4037cbd", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc4d595ef62d72f4037cbe", + "_tpl": "59db3b0886f77429d72fb895", + "slotId": "mod_pistol_grip", + "parentId": "67bc4d595ef62d72f4037cbd" + }, + { + "_id": "67bc4d595ef62d72f4037cbf", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67bc4d595ef62d72f4037cbd" + }, + { + "_id": "67bc4d595ef62d72f4037cc0", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67bc4d595ef62d72f4037cbd" + }, + { + "_id": "67bc4d595ef62d72f4037cc1", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67bc4d595ef62d72f4037cbd" + }, + { + "_id": "67bc4d595ef62d72f4037cc2", + "_tpl": "5b2240bf5acfc40dc528af69", + "slotId": "mod_charge", + "parentId": "67bc4d595ef62d72f4037cbd" + }, + { + "_id": "67bc4d595ef62d72f4037cc3", + "_tpl": "5c0a2cec0db834001b7ce47d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4d595ef62d72f4037cc0" + }, + { + "_id": "67bc4d595ef62d72f4037cc4", + "_tpl": "63d3ce0446bd475bcb50f55f", + "slotId": "mod_barrel", + "parentId": "67bc4d595ef62d72f4037cc0" + }, + { + "_id": "67bc4d595ef62d72f4037cc5", + "_tpl": "63888bbd28e5cc32cc09d2b6", + "slotId": "mod_handguard", + "parentId": "67bc4d595ef62d72f4037cc0" + }, + { + "_id": "67bc4d595ef62d72f4037cc6", + "_tpl": "5c18b9192e2216398b5a8104", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4d595ef62d72f4037cc0" + }, + { + "_id": "67bc4d595ef62d72f4037cc7", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67bc4d595ef62d72f4037cc1" + }, + { + "_id": "67bc4d595ef62d72f4037cc8", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67bc4d595ef62d72f4037cc4" + }, + { + "_id": "67bc4d595ef62d72f4037cc9", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67bc4d595ef62d72f4037cc4" + }, + { + "_id": "67bc4d595ef62d72f4037cca", + "_tpl": "6388c4478d895f557a0c6512", + "slotId": "mod_mount_002", + "parentId": "67bc4d595ef62d72f4037cc5" + }, + { + "_id": "67bc4d595ef62d72f4037ccb", + "_tpl": "6388c4ac8d895f557a0c6515", + "slotId": "mod_mount_003", + "parentId": "67bc4d595ef62d72f4037cc5" + }, + { + "_id": "67bc4d595ef62d72f4037ccc", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67bc4d595ef62d72f4037cc8" + }, + { + "_id": "67bc4d595ef62d72f4037ccd", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc4d595ef62d72f4037cca" + }, + { + "_id": "67bc4d595ef62d72f4037cce", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67bc4d595ef62d72f4037ccb" + }, + { + "_id": "67bc4d595ef62d72f4037ccf", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc4d595ef62d72f4037cc7" + } + ] + }, + { + "Id": "67bc4dc40100185d53baba23", + "Name": "supr vudu akm", + "Root": "67bc4dcb5ef62d72f4037d3a", + "Items": [ + { + "_id": "67bc4dcb5ef62d72f4037d3a", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc4dcb5ef62d72f4037d3b", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67bc4dcb5ef62d72f4037d3a" + }, + { + "_id": "67bc4dcb5ef62d72f4037d3c", + "_tpl": "615d8e9867085e45ef1409c6", + "slotId": "mod_muzzle", + "parentId": "67bc4dcb5ef62d72f4037d3a" + }, + { + "_id": "67bc4dcb5ef62d72f4037d3d", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc4dcb5ef62d72f4037d3a" + }, + { + "_id": "67bc4dcb5ef62d72f4037d3e", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67bc4dcb5ef62d72f4037d3a" + }, + { + "_id": "67bc4dcb5ef62d72f4037d3f", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4dcb5ef62d72f4037d3a" + }, + { + "_id": "67bc4dcb5ef62d72f4037d40", + "_tpl": "5649b2314bdc2d79388b4576", + "slotId": "mod_stock", + "parentId": "67bc4dcb5ef62d72f4037d3a" + }, + { + "_id": "67bc4dcb5ef62d72f4037d41", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67bc4dcb5ef62d72f4037d3a" + }, + { + "_id": "67bc4dcb5ef62d72f4037d42", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_002", + "parentId": "67bc4dcb5ef62d72f4037d3b" + }, + { + "_id": "67bc4dcb5ef62d72f4037d43", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67bc4dcb5ef62d72f4037d3b" + }, + { + "_id": "67bc4dcb5ef62d72f4037d44", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bc4dcb5ef62d72f4037d3c" + }, + { + "_id": "67bc4dcb5ef62d72f4037d45", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67bc4dcb5ef62d72f4037d3e" + }, + { + "_id": "67bc4dcb5ef62d72f4037d46", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67bc4dcb5ef62d72f4037d40" + }, + { + "_id": "67bc4dcb5ef62d72f4037d47", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc4dcb5ef62d72f4037d42" + }, + { + "_id": "67bc4dcb5ef62d72f4037d48", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bc4dcb5ef62d72f4037d43" + }, + { + "_id": "67bc4dcb5ef62d72f4037d49", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bc4dcb5ef62d72f4037d44" + }, + { + "_id": "67bc4dcb5ef62d72f4037d4a", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4dcb5ef62d72f4037d45" + }, + { + "_id": "67bc4dcb5ef62d72f4037d4b", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bc4dcb5ef62d72f4037d46" + }, + { + "_id": "67bc4dcb5ef62d72f4037d4c", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc4dcb5ef62d72f4037d4b" + } + ] + }, + { + "Id": "67bc4e120100185d530a40e7", + "Name": "loud 2x akm", + "Root": "67bc4e185ef62d72f4037d5c", + "Items": [ + { + "_id": "67bc4e185ef62d72f4037d5c", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc4e185ef62d72f4037d5d", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67bc4e185ef62d72f4037d5c" + }, + { + "_id": "67bc4e185ef62d72f4037d5e", + "_tpl": "5f633f68f5750b524b45f112", + "slotId": "mod_muzzle", + "parentId": "67bc4e185ef62d72f4037d5c" + }, + { + "_id": "67bc4e185ef62d72f4037d5f", + "_tpl": "5f6341043ada5942720e2dc5", + "slotId": "mod_pistol_grip", + "parentId": "67bc4e185ef62d72f4037d5c" + }, + { + "_id": "67bc4e185ef62d72f4037d60", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67bc4e185ef62d72f4037d5c" + }, + { + "_id": "67bc4e185ef62d72f4037d61", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4e185ef62d72f4037d5c" + }, + { + "_id": "67bc4e185ef62d72f4037d62", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67bc4e185ef62d72f4037d5c" + }, + { + "_id": "67bc4e185ef62d72f4037d63", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67bc4e185ef62d72f4037d5c" + }, + { + "_id": "67bc4e185ef62d72f4037d64", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_002", + "parentId": "67bc4e185ef62d72f4037d5d" + }, + { + "_id": "67bc4e185ef62d72f4037d65", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67bc4e185ef62d72f4037d5d" + }, + { + "_id": "67bc4e185ef62d72f4037d66", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4e185ef62d72f4037d60" + }, + { + "_id": "67bc4e185ef62d72f4037d67", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc4e185ef62d72f4037d64" + }, + { + "_id": "67bc4e185ef62d72f4037d68", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bc4e185ef62d72f4037d65" + } + ] + }, + { + "Id": "67bc4f300100185d5302276e", + "Name": "loud holo 103", + "Root": "67bc4f376a424f7ed00374c8", + "Items": [ + { + "_id": "67bc4f376a424f7ed00374c8", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc4f376a424f7ed00374c9", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67bc4f376a424f7ed00374c8" + }, + { + "_id": "67bc4f376a424f7ed00374ca", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67bc4f376a424f7ed00374c8" + }, + { + "_id": "67bc4f376a424f7ed00374cb", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc4f376a424f7ed00374c8" + }, + { + "_id": "67bc4f376a424f7ed00374cc", + "_tpl": "5d2c76ed48f03532f2136169", + "slotId": "mod_reciever", + "parentId": "67bc4f376a424f7ed00374c8" + }, + { + "_id": "67bc4f376a424f7ed00374cd", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67bc4f376a424f7ed00374c8" + }, + { + "_id": "67bc4f376a424f7ed00374ce", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67bc4f376a424f7ed00374c8" + }, + { + "_id": "67bc4f376a424f7ed00374cf", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc4f376a424f7ed00374c8" + }, + { + "_id": "67bc4f376a424f7ed00374d0", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67bc4f376a424f7ed00374c9" + }, + { + "_id": "67bc4f376a424f7ed00374d1", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bc4f376a424f7ed00374c9" + }, + { + "_id": "67bc4f376a424f7ed00374d2", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4f376a424f7ed00374cc" + }, + { + "_id": "67bc4f376a424f7ed00374d3", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67bc4f376a424f7ed00374cd" + }, + { + "_id": "67bc4f376a424f7ed00374d4", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc4f376a424f7ed00374d0" + }, + { + "_id": "67bc4f376a424f7ed00374d5", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bc4f376a424f7ed00374d1" + }, + { + "_id": "67bc4f376a424f7ed00374d6", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc4f376a424f7ed00374d3" + } + ] + }, + { + "Id": "67bc4f520100185d539f4402", + "Name": "loud 2x 103", + "Root": "67bc4f576a424f7ed003750a", + "Items": [ + { + "_id": "67bc4f576a424f7ed003750a", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc4f576a424f7ed003750b", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67bc4f576a424f7ed003750a" + }, + { + "_id": "67bc4f576a424f7ed003750c", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67bc4f576a424f7ed003750a" + }, + { + "_id": "67bc4f576a424f7ed003750d", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc4f576a424f7ed003750a" + }, + { + "_id": "67bc4f576a424f7ed003750e", + "_tpl": "5d2c76ed48f03532f2136169", + "slotId": "mod_reciever", + "parentId": "67bc4f576a424f7ed003750a" + }, + { + "_id": "67bc4f576a424f7ed003750f", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67bc4f576a424f7ed003750a" + }, + { + "_id": "67bc4f576a424f7ed0037510", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67bc4f576a424f7ed003750a" + }, + { + "_id": "67bc4f576a424f7ed0037511", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc4f576a424f7ed003750a" + }, + { + "_id": "67bc4f576a424f7ed0037512", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67bc4f576a424f7ed003750b" + }, + { + "_id": "67bc4f576a424f7ed0037513", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bc4f576a424f7ed003750b" + }, + { + "_id": "67bc4f576a424f7ed0037514", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4f576a424f7ed003750e" + }, + { + "_id": "67bc4f576a424f7ed0037515", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67bc4f576a424f7ed003750f" + }, + { + "_id": "67bc4f576a424f7ed0037516", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc4f576a424f7ed0037512" + }, + { + "_id": "67bc4f576a424f7ed0037517", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bc4f576a424f7ed0037513" + }, + { + "_id": "67bc4f576a424f7ed0037518", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc4f576a424f7ed0037515" + } + ] + }, + { + "Id": "67bc4f820100185d53de3e19", + "Name": "loud bravo 103", + "Root": "67bc4f876a424f7ed0037525", + "Items": [ + { + "_id": "67bc4f876a424f7ed0037525", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc4f876a424f7ed0037526", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67bc4f876a424f7ed0037525" + }, + { + "_id": "67bc4f876a424f7ed0037527", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67bc4f876a424f7ed0037525" + }, + { + "_id": "67bc4f876a424f7ed0037528", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "slotId": "mod_pistol_grip", + "parentId": "67bc4f876a424f7ed0037525" + }, + { + "_id": "67bc4f876a424f7ed0037529", + "_tpl": "5d2c76ed48f03532f2136169", + "slotId": "mod_reciever", + "parentId": "67bc4f876a424f7ed0037525" + }, + { + "_id": "67bc4f876a424f7ed003752a", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67bc4f876a424f7ed0037525" + }, + { + "_id": "67bc4f876a424f7ed003752b", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67bc4f876a424f7ed0037525" + }, + { + "_id": "67bc4f876a424f7ed003752c", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc4f876a424f7ed0037525" + }, + { + "_id": "67bc4f876a424f7ed003752d", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67bc4f876a424f7ed0037526" + }, + { + "_id": "67bc4f876a424f7ed003752e", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bc4f876a424f7ed0037526" + }, + { + "_id": "67bc4f876a424f7ed003752f", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4f876a424f7ed0037529" + }, + { + "_id": "67bc4f876a424f7ed0037530", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock", + "parentId": "67bc4f876a424f7ed003752a" + }, + { + "_id": "67bc4f876a424f7ed0037531", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc4f876a424f7ed003752d" + }, + { + "_id": "67bc4f876a424f7ed0037532", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bc4f876a424f7ed003752e" + }, + { + "_id": "67bc4f876a424f7ed0037533", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bc4f876a424f7ed003752f" + }, + { + "_id": "67bc4f876a424f7ed0037534", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4f876a424f7ed0037533" + }, + { + "_id": "67bc4f876a424f7ed0037535", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67bc4f876a424f7ed0037530" + } + ] + }, + { + "Id": "67bc4fda0100185d535c7423", + "Name": "loud holo 103 v2", + "Root": "67bc4fe16a424f7ed0037546", + "Items": [ + { + "_id": "67bc4fe16a424f7ed0037546", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc4fe16a424f7ed0037547", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67bc4fe16a424f7ed0037546" + }, + { + "_id": "67bc4fe16a424f7ed0037548", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67bc4fe16a424f7ed0037546" + }, + { + "_id": "67bc4fe16a424f7ed0037549", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc4fe16a424f7ed0037546" + }, + { + "_id": "67bc4fe16a424f7ed003754a", + "_tpl": "5d2c76ed48f03532f2136169", + "slotId": "mod_reciever", + "parentId": "67bc4fe16a424f7ed0037546" + }, + { + "_id": "67bc4fe16a424f7ed003754b", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67bc4fe16a424f7ed0037546" + }, + { + "_id": "67bc4fe16a424f7ed003754c", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67bc4fe16a424f7ed0037546" + }, + { + "_id": "67bc4fe16a424f7ed003754d", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc4fe16a424f7ed0037546" + }, + { + "_id": "67bc4fe16a424f7ed003754e", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67bc4fe16a424f7ed0037547" + }, + { + "_id": "67bc4fe16a424f7ed003754f", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bc4fe16a424f7ed0037547" + }, + { + "_id": "67bc4fe16a424f7ed0037550", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc4fe16a424f7ed003754a" + }, + { + "_id": "67bc4fe16a424f7ed0037551", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67bc4fe16a424f7ed003754b" + }, + { + "_id": "67bc4fe16a424f7ed0037552", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc4fe16a424f7ed003754e" + }, + { + "_id": "67bc4fe16a424f7ed0037553", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bc4fe16a424f7ed003754f" + }, + { + "_id": "67bc4fe16a424f7ed0037554", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc4fe16a424f7ed0037551" + } + ] + }, + { + "Id": "67bc501c0100185d53c25d96", + "Name": "supr holo 103", + "Root": "67bc50216a424f7ed0038348", + "Items": [ + { + "_id": "67bc50216a424f7ed0038348", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc50216a424f7ed0038349", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67bc50216a424f7ed0038348" + }, + { + "_id": "67bc50216a424f7ed003834a", + "_tpl": "59bffc1f86f77435b128b872", + "slotId": "mod_muzzle", + "parentId": "67bc50216a424f7ed0038348" + }, + { + "_id": "67bc50216a424f7ed003834b", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc50216a424f7ed0038348" + }, + { + "_id": "67bc50216a424f7ed003834c", + "_tpl": "5d2c76ed48f03532f2136169", + "slotId": "mod_reciever", + "parentId": "67bc50216a424f7ed0038348" + }, + { + "_id": "67bc50216a424f7ed003834d", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67bc50216a424f7ed0038348" + }, + { + "_id": "67bc50216a424f7ed003834e", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67bc50216a424f7ed0038348" + }, + { + "_id": "67bc50216a424f7ed003834f", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc50216a424f7ed0038348" + }, + { + "_id": "67bc50216a424f7ed0038350", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67bc50216a424f7ed0038349" + }, + { + "_id": "67bc50216a424f7ed0038351", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bc50216a424f7ed0038349" + }, + { + "_id": "67bc50216a424f7ed0038352", + "_tpl": "59bffbb386f77435b379b9c2", + "slotId": "mod_muzzle", + "parentId": "67bc50216a424f7ed003834a" + }, + { + "_id": "67bc50216a424f7ed0038353", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc50216a424f7ed003834c" + }, + { + "_id": "67bc50216a424f7ed0038354", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67bc50216a424f7ed003834d" + }, + { + "_id": "67bc50216a424f7ed0038355", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc50216a424f7ed0038350" + }, + { + "_id": "67bc50216a424f7ed0038356", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bc50216a424f7ed0038351" + }, + { + "_id": "67bc50216a424f7ed0038357", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc50216a424f7ed0038354" + } + ] + }, + { + "Id": "67bc50360100185d53526505", + "Name": "supr bravo 103", + "Root": "67bc503c6a424f7ed0038362", + "Items": [ + { + "_id": "67bc503c6a424f7ed0038362", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc503c6a424f7ed0038363", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67bc503c6a424f7ed0038362" + }, + { + "_id": "67bc503c6a424f7ed0038364", + "_tpl": "59bffc1f86f77435b128b872", + "slotId": "mod_muzzle", + "parentId": "67bc503c6a424f7ed0038362" + }, + { + "_id": "67bc503c6a424f7ed0038365", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc503c6a424f7ed0038362" + }, + { + "_id": "67bc503c6a424f7ed0038366", + "_tpl": "5d2c76ed48f03532f2136169", + "slotId": "mod_reciever", + "parentId": "67bc503c6a424f7ed0038362" + }, + { + "_id": "67bc503c6a424f7ed0038367", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67bc503c6a424f7ed0038362" + }, + { + "_id": "67bc503c6a424f7ed0038368", + "_tpl": "5cfe8010d7ad1a59283b14c6", + "slotId": "mod_magazine", + "parentId": "67bc503c6a424f7ed0038362" + }, + { + "_id": "67bc503c6a424f7ed0038369", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc503c6a424f7ed0038362" + }, + { + "_id": "67bc503c6a424f7ed003836a", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67bc503c6a424f7ed0038363" + }, + { + "_id": "67bc503c6a424f7ed003836b", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bc503c6a424f7ed0038363" + }, + { + "_id": "67bc503c6a424f7ed003836c", + "_tpl": "59bffbb386f77435b379b9c2", + "slotId": "mod_muzzle", + "parentId": "67bc503c6a424f7ed0038364" + }, + { + "_id": "67bc503c6a424f7ed003836d", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc503c6a424f7ed0038366" + }, + { + "_id": "67bc503c6a424f7ed003836e", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock", + "parentId": "67bc503c6a424f7ed0038367" + }, + { + "_id": "67bc503c6a424f7ed003836f", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc503c6a424f7ed003836a" + }, + { + "_id": "67bc503c6a424f7ed0038370", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bc503c6a424f7ed003836b" + }, + { + "_id": "67bc503c6a424f7ed0038371", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc503c6a424f7ed003836d" + }, + { + "_id": "67bc503c6a424f7ed0038372", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc503c6a424f7ed003836e" + } + ] + }, + { + "Id": "67bc506d0100185d539d5a5f", + "Name": "supr razor 103", + "Root": "67bc50736a424f7ed00392a4", + "Items": [ + { + "_id": "67bc50736a424f7ed00392a4", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc50736a424f7ed00392a5", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67bc50736a424f7ed00392a4" + }, + { + "_id": "67bc50736a424f7ed00392a6", + "_tpl": "59bffc1f86f77435b128b872", + "slotId": "mod_muzzle", + "parentId": "67bc50736a424f7ed00392a4" + }, + { + "_id": "67bc50736a424f7ed00392a7", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc50736a424f7ed00392a4" + }, + { + "_id": "67bc50736a424f7ed00392a8", + "_tpl": "5d2c76ed48f03532f2136169", + "slotId": "mod_reciever", + "parentId": "67bc50736a424f7ed00392a4" + }, + { + "_id": "67bc50736a424f7ed00392a9", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67bc50736a424f7ed00392a4" + }, + { + "_id": "67bc50736a424f7ed00392aa", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67bc50736a424f7ed00392a4" + }, + { + "_id": "67bc50736a424f7ed00392ab", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc50736a424f7ed00392a4" + }, + { + "_id": "67bc50736a424f7ed00392ac", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_001", + "parentId": "67bc50736a424f7ed00392a5" + }, + { + "_id": "67bc50736a424f7ed00392ad", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bc50736a424f7ed00392a5" + }, + { + "_id": "67bc50736a424f7ed00392ae", + "_tpl": "59bffbb386f77435b379b9c2", + "slotId": "mod_muzzle", + "parentId": "67bc50736a424f7ed00392a6" + }, + { + "_id": "67bc50736a424f7ed00392af", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67bc50736a424f7ed00392a8" + }, + { + "_id": "67bc50736a424f7ed00392b0", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock", + "parentId": "67bc50736a424f7ed00392a9" + }, + { + "_id": "67bc50736a424f7ed00392b1", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc50736a424f7ed00392ac" + }, + { + "_id": "67bc50736a424f7ed00392b2", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bc50736a424f7ed00392ad" + }, + { + "_id": "67bc50736a424f7ed00392b3", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc50736a424f7ed00392af" + }, + { + "_id": "67bc50736a424f7ed00392b4", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc50736a424f7ed00392b0" + } + ] + }, + { + "Id": "67bc510a0100185d53b33655", + "Name": "supr hamr ak12", + "Root": "67bc51156a424f7ed003b1bb", + "Items": [ + { + "_id": "67bc51156a424f7ed003b1bb", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc51156a424f7ed003b1bc", + "_tpl": "649ec107961514b22506b10c", + "slotId": "mod_gas_block", + "parentId": "67bc51156a424f7ed003b1bb" + }, + { + "_id": "67bc51156a424f7ed003b1bd", + "_tpl": "64c196ad26a15b84aa07132f", + "slotId": "mod_muzzle", + "parentId": "67bc51156a424f7ed003b1bb" + }, + { + "_id": "67bc51156a424f7ed003b1be", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc51156a424f7ed003b1bb" + }, + { + "_id": "67bc51156a424f7ed003b1bf", + "_tpl": "649ec2f3961514b22506b111", + "slotId": "mod_reciever", + "parentId": "67bc51156a424f7ed003b1bb" + }, + { + "_id": "67bc51156a424f7ed003b1c0", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67bc51156a424f7ed003b1bb" + }, + { + "_id": "67bc51156a424f7ed003b1c1", + "_tpl": "5bed625c0db834001c062946", + "slotId": "mod_magazine", + "parentId": "67bc51156a424f7ed003b1bb" + }, + { + "_id": "67bc51156a424f7ed003b1c2", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc51156a424f7ed003b1bb" + }, + { + "_id": "67bc51156a424f7ed003b1c3", + "_tpl": "649ec127c93611967b034957", + "slotId": "mod_handguard", + "parentId": "67bc51156a424f7ed003b1bb" + }, + { + "_id": "67bc51156a424f7ed003b1c4", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51156a424f7ed003b1bf" + }, + { + "_id": "67bc51156a424f7ed003b1c5", + "_tpl": "649ec2da59cbb3c813042dca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51156a424f7ed003b1bf" + }, + { + "_id": "67bc51156a424f7ed003b1c6", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67bc51156a424f7ed003b1c0" + }, + { + "_id": "67bc51156a424f7ed003b1c7", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67bc51156a424f7ed003b1c3" + }, + { + "_id": "67bc51156a424f7ed003b1c8", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bc51156a424f7ed003b1c3" + }, + { + "_id": "67bc51156a424f7ed003b1c9", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51156a424f7ed003b1c4" + }, + { + "_id": "67bc51156a424f7ed003b1ca", + "_tpl": "649ec2cec93611967b03495e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51156a424f7ed003b1c5" + }, + { + "_id": "67bc51156a424f7ed003b1cb", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc51156a424f7ed003b1c6" + }, + { + "_id": "67bc51156a424f7ed003b1cc", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc51156a424f7ed003b1c7" + } + ] + }, + { + "Id": "67bc512c0100185d53401d12", + "Name": "supr 2x ak12", + "Root": "67bc51326a424f7ed003b1d6", + "Items": [ + { + "_id": "67bc51326a424f7ed003b1d6", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc51326a424f7ed003b1d7", + "_tpl": "649ec107961514b22506b10c", + "slotId": "mod_gas_block", + "parentId": "67bc51326a424f7ed003b1d6" + }, + { + "_id": "67bc51326a424f7ed003b1d8", + "_tpl": "64c196ad26a15b84aa07132f", + "slotId": "mod_muzzle", + "parentId": "67bc51326a424f7ed003b1d6" + }, + { + "_id": "67bc51326a424f7ed003b1d9", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc51326a424f7ed003b1d6" + }, + { + "_id": "67bc51326a424f7ed003b1da", + "_tpl": "649ec2f3961514b22506b111", + "slotId": "mod_reciever", + "parentId": "67bc51326a424f7ed003b1d6" + }, + { + "_id": "67bc51326a424f7ed003b1db", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67bc51326a424f7ed003b1d6" + }, + { + "_id": "67bc51326a424f7ed003b1dc", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67bc51326a424f7ed003b1d6" + }, + { + "_id": "67bc51326a424f7ed003b1dd", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc51326a424f7ed003b1d6" + }, + { + "_id": "67bc51326a424f7ed003b1de", + "_tpl": "649ec127c93611967b034957", + "slotId": "mod_handguard", + "parentId": "67bc51326a424f7ed003b1d6" + }, + { + "_id": "67bc51326a424f7ed003b1df", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51326a424f7ed003b1da" + }, + { + "_id": "67bc51326a424f7ed003b1e0", + "_tpl": "649ec2da59cbb3c813042dca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51326a424f7ed003b1da" + }, + { + "_id": "67bc51326a424f7ed003b1e1", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67bc51326a424f7ed003b1db" + }, + { + "_id": "67bc51326a424f7ed003b1e2", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67bc51326a424f7ed003b1de" + }, + { + "_id": "67bc51326a424f7ed003b1e3", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bc51326a424f7ed003b1de" + }, + { + "_id": "67bc51326a424f7ed003b1e4", + "_tpl": "649ec2cec93611967b03495e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51326a424f7ed003b1e0" + }, + { + "_id": "67bc51326a424f7ed003b1e5", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc51326a424f7ed003b1e1" + }, + { + "_id": "67bc51326a424f7ed003b1e6", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc51326a424f7ed003b1e2" + } + ] + }, + { + "Id": "67bc51490100185d53bbecb5", + "Name": "supr holo ak12", + "Root": "67bc514e6a424f7ed003b22d", + "Items": [ + { + "_id": "67bc514e6a424f7ed003b22d", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc514e6a424f7ed003b22e", + "_tpl": "649ec107961514b22506b10c", + "slotId": "mod_gas_block", + "parentId": "67bc514e6a424f7ed003b22d" + }, + { + "_id": "67bc514e6a424f7ed003b22f", + "_tpl": "64c196ad26a15b84aa07132f", + "slotId": "mod_muzzle", + "parentId": "67bc514e6a424f7ed003b22d" + }, + { + "_id": "67bc514e6a424f7ed003b230", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc514e6a424f7ed003b22d" + }, + { + "_id": "67bc514e6a424f7ed003b231", + "_tpl": "649ec2f3961514b22506b111", + "slotId": "mod_reciever", + "parentId": "67bc514e6a424f7ed003b22d" + }, + { + "_id": "67bc514e6a424f7ed003b232", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67bc514e6a424f7ed003b22d" + }, + { + "_id": "67bc514e6a424f7ed003b233", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67bc514e6a424f7ed003b22d" + }, + { + "_id": "67bc514e6a424f7ed003b234", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc514e6a424f7ed003b22d" + }, + { + "_id": "67bc514e6a424f7ed003b235", + "_tpl": "649ec127c93611967b034957", + "slotId": "mod_handguard", + "parentId": "67bc514e6a424f7ed003b22d" + }, + { + "_id": "67bc514e6a424f7ed003b236", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc514e6a424f7ed003b231" + }, + { + "_id": "67bc514e6a424f7ed003b237", + "_tpl": "649ec2da59cbb3c813042dca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc514e6a424f7ed003b231" + }, + { + "_id": "67bc514e6a424f7ed003b238", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67bc514e6a424f7ed003b232" + }, + { + "_id": "67bc514e6a424f7ed003b239", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67bc514e6a424f7ed003b235" + }, + { + "_id": "67bc514e6a424f7ed003b23a", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bc514e6a424f7ed003b235" + }, + { + "_id": "67bc514e6a424f7ed003b23b", + "_tpl": "649ec2cec93611967b03495e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc514e6a424f7ed003b237" + }, + { + "_id": "67bc514e6a424f7ed003b23c", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bc514e6a424f7ed003b238" + }, + { + "_id": "67bc514e6a424f7ed003b23d", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc514e6a424f7ed003b239" + } + ] + }, + { + "Id": "67bc51830100185d53d2b301", + "Name": "loud romeo ak12", + "Root": "67bc51956a424f7ed003c187", + "Items": [ + { + "_id": "67bc51956a424f7ed003c187", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc51956a424f7ed003c188", + "_tpl": "649ec107961514b22506b10c", + "slotId": "mod_gas_block", + "parentId": "67bc51956a424f7ed003c187" + }, + { + "_id": "67bc51956a424f7ed003c189", + "_tpl": "649ec2af961514b22506b10f", + "slotId": "mod_muzzle", + "parentId": "67bc51956a424f7ed003c187" + }, + { + "_id": "67bc51956a424f7ed003c18a", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc51956a424f7ed003c187" + }, + { + "_id": "67bc51956a424f7ed003c18b", + "_tpl": "649ec2f3961514b22506b111", + "slotId": "mod_reciever", + "parentId": "67bc51956a424f7ed003c187" + }, + { + "_id": "67bc51956a424f7ed003c18c", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67bc51956a424f7ed003c187" + }, + { + "_id": "67bc51956a424f7ed003c18d", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67bc51956a424f7ed003c187" + }, + { + "_id": "67bc51956a424f7ed003c18e", + "_tpl": "649ec127c93611967b034957", + "slotId": "mod_handguard", + "parentId": "67bc51956a424f7ed003c187" + }, + { + "_id": "67bc51956a424f7ed003c18f", + "_tpl": "60a23797a37c940de7062d02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51956a424f7ed003c18b" + }, + { + "_id": "67bc51956a424f7ed003c190", + "_tpl": "649ec2da59cbb3c813042dca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51956a424f7ed003c18b" + }, + { + "_id": "67bc51956a424f7ed003c191", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock", + "parentId": "67bc51956a424f7ed003c18c" + }, + { + "_id": "67bc51956a424f7ed003c192", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67bc51956a424f7ed003c18e" + }, + { + "_id": "67bc51956a424f7ed003c193", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bc51956a424f7ed003c18e" + }, + { + "_id": "67bc51956a424f7ed003c194", + "_tpl": "649ec2cec93611967b03495e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51956a424f7ed003c190" + }, + { + "_id": "67bc51956a424f7ed003c195", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67bc51956a424f7ed003c191" + }, + { + "_id": "67bc51956a424f7ed003c196", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc51956a424f7ed003c192" + } + ] + }, + { + "Id": "67bc51b70100185d53b1a030", + "Name": "loud holo ak12", + "Root": "67bc51bc6a424f7ed003cff3", + "Items": [ + { + "_id": "67bc51bc6a424f7ed003cff3", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc51bc6a424f7ed003cff4", + "_tpl": "649ec107961514b22506b10c", + "slotId": "mod_gas_block", + "parentId": "67bc51bc6a424f7ed003cff3" + }, + { + "_id": "67bc51bc6a424f7ed003cff5", + "_tpl": "649ec2af961514b22506b10f", + "slotId": "mod_muzzle", + "parentId": "67bc51bc6a424f7ed003cff3" + }, + { + "_id": "67bc51bc6a424f7ed003cff6", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc51bc6a424f7ed003cff3" + }, + { + "_id": "67bc51bc6a424f7ed003cff7", + "_tpl": "649ec2f3961514b22506b111", + "slotId": "mod_reciever", + "parentId": "67bc51bc6a424f7ed003cff3" + }, + { + "_id": "67bc51bc6a424f7ed003cff8", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67bc51bc6a424f7ed003cff3" + }, + { + "_id": "67bc51bc6a424f7ed003cff9", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67bc51bc6a424f7ed003cff3" + }, + { + "_id": "67bc51bc6a424f7ed003cffa", + "_tpl": "649ec127c93611967b034957", + "slotId": "mod_handguard", + "parentId": "67bc51bc6a424f7ed003cff3" + }, + { + "_id": "67bc51bc6a424f7ed003cffb", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51bc6a424f7ed003cff7" + }, + { + "_id": "67bc51bc6a424f7ed003cffc", + "_tpl": "649ec2da59cbb3c813042dca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51bc6a424f7ed003cff7" + }, + { + "_id": "67bc51bc6a424f7ed003cffd", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock", + "parentId": "67bc51bc6a424f7ed003cff8" + }, + { + "_id": "67bc51bc6a424f7ed003cffe", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67bc51bc6a424f7ed003cffa" + }, + { + "_id": "67bc51bc6a424f7ed003cfff", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bc51bc6a424f7ed003cffa" + }, + { + "_id": "67bc51bc6a424f7ed003d000", + "_tpl": "649ec2cec93611967b03495e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc51bc6a424f7ed003cffc" + }, + { + "_id": "67bc51bc6a424f7ed003d001", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67bc51bc6a424f7ed003cffd" + }, + { + "_id": "67bc51bc6a424f7ed003d002", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc51bc6a424f7ed003cffe" + } + ] + }, + { + "Id": "67bc52ac0100185d532b1212", + "Name": "supr holo 74UB", + "Root": "67bc52bc6a424f7ed003fb6b", + "Items": [ + { + "_id": "67bc52bc6a424f7ed003fb6b", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc52bc6a424f7ed003fb6c", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc52bc6a424f7ed003fb6b" + }, + { + "_id": "67bc52bc6a424f7ed003fb6d", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67bc52bc6a424f7ed003fb6b" + }, + { + "_id": "67bc52bc6a424f7ed003fb6e", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc52bc6a424f7ed003fb6b" + }, + { + "_id": "67bc52bc6a424f7ed003fb6f", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67bc52bc6a424f7ed003fb6b" + }, + { + "_id": "67bc52bc6a424f7ed003fb70", + "_tpl": "615d8f5dd92c473c770212ef", + "slotId": "mod_muzzle", + "parentId": "67bc52bc6a424f7ed003fb6b" + }, + { + "_id": "67bc52bc6a424f7ed003fb71", + "_tpl": "57dc334d245977597164366f", + "slotId": "mod_reciever", + "parentId": "67bc52bc6a424f7ed003fb6b" + }, + { + "_id": "67bc52bc6a424f7ed003fb72", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67bc52bc6a424f7ed003fb6b" + }, + { + "_id": "67bc52bc6a424f7ed003fb73", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67bc52bc6a424f7ed003fb6d" + }, + { + "_id": "67bc52bc6a424f7ed003fb74", + "_tpl": "615d8f8567085e45ef1409ca", + "slotId": "mod_muzzle", + "parentId": "67bc52bc6a424f7ed003fb70" + }, + { + "_id": "67bc52bc6a424f7ed003fb75", + "_tpl": "5a957c3fa2750c00137fa5f7", + "slotId": "mod_handguard", + "parentId": "67bc52bc6a424f7ed003fb72" + }, + { + "_id": "67bc52bc6a424f7ed003fb76", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bc52bc6a424f7ed003fb75" + }, + { + "_id": "67bc52bc6a424f7ed003fb77", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc52bc6a424f7ed003fb75" + }, + { + "_id": "67bc52bc6a424f7ed003fb78", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc52bc6a424f7ed003fb75" + } + ] + }, + { + "Id": "67bc52ee0100185d53aebd7e", + "Name": "loud holo 74UB", + "Root": "67bc52f26a424f7ed0040993", + "Items": [ + { + "_id": "67bc52f26a424f7ed0040993", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc52f26a424f7ed0040994", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc52f26a424f7ed0040993" + }, + { + "_id": "67bc52f26a424f7ed0040995", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67bc52f26a424f7ed0040993" + }, + { + "_id": "67bc52f26a424f7ed0040996", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc52f26a424f7ed0040993" + }, + { + "_id": "67bc52f26a424f7ed0040997", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67bc52f26a424f7ed0040993" + }, + { + "_id": "67bc52f26a424f7ed0040998", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67bc52f26a424f7ed0040993" + }, + { + "_id": "67bc52f26a424f7ed0040999", + "_tpl": "57dc334d245977597164366f", + "slotId": "mod_reciever", + "parentId": "67bc52f26a424f7ed0040993" + }, + { + "_id": "67bc52f26a424f7ed004099a", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67bc52f26a424f7ed0040993" + }, + { + "_id": "67bc52f26a424f7ed004099b", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67bc52f26a424f7ed0040995" + }, + { + "_id": "67bc52f26a424f7ed004099c", + "_tpl": "5a957c3fa2750c00137fa5f7", + "slotId": "mod_handguard", + "parentId": "67bc52f26a424f7ed004099a" + }, + { + "_id": "67bc52f26a424f7ed004099d", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bc52f26a424f7ed004099c" + }, + { + "_id": "67bc52f26a424f7ed004099e", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc52f26a424f7ed004099c" + }, + { + "_id": "67bc52f26a424f7ed004099f", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc52f26a424f7ed004099c" + } + ] + }, + { + "Id": "67bc53290100185d53ab3ccb", + "Name": "supr HCO 74UB", + "Root": "67bc53326a424f7ed0041955", + "Items": [ + { + "_id": "67bc53326a424f7ed0041955", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc53326a424f7ed0041956", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc53326a424f7ed0041955" + }, + { + "_id": "67bc53326a424f7ed0041957", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67bc53326a424f7ed0041955" + }, + { + "_id": "67bc53326a424f7ed0041958", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc53326a424f7ed0041955" + }, + { + "_id": "67bc53326a424f7ed0041959", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67bc53326a424f7ed0041955" + }, + { + "_id": "67bc53326a424f7ed004195a", + "_tpl": "615d8f5dd92c473c770212ef", + "slotId": "mod_muzzle", + "parentId": "67bc53326a424f7ed0041955" + }, + { + "_id": "67bc53326a424f7ed004195b", + "_tpl": "57dc334d245977597164366f", + "slotId": "mod_reciever", + "parentId": "67bc53326a424f7ed0041955" + }, + { + "_id": "67bc53326a424f7ed004195c", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67bc53326a424f7ed0041955" + }, + { + "_id": "67bc53326a424f7ed004195d", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67bc53326a424f7ed0041957" + }, + { + "_id": "67bc53326a424f7ed004195e", + "_tpl": "615d8f8567085e45ef1409ca", + "slotId": "mod_muzzle", + "parentId": "67bc53326a424f7ed004195a" + }, + { + "_id": "67bc53326a424f7ed004195f", + "_tpl": "5a957c3fa2750c00137fa5f7", + "slotId": "mod_handguard", + "parentId": "67bc53326a424f7ed004195c" + }, + { + "_id": "67bc53326a424f7ed0041960", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bc53326a424f7ed004195f" + }, + { + "_id": "67bc53326a424f7ed0041961", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc53326a424f7ed004195f" + }, + { + "_id": "67bc53326a424f7ed0041962", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc53326a424f7ed004195f" + } + ] + }, + { + "Id": "67bc53530100185d53dc69b8", + "Name": "loud DP 74UB", + "Root": "67bc53596a424f7ed00428c9", + "Items": [ + { + "_id": "67bc53596a424f7ed00428c9", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc53596a424f7ed00428ca", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc53596a424f7ed00428c9" + }, + { + "_id": "67bc53596a424f7ed00428cb", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67bc53596a424f7ed00428c9" + }, + { + "_id": "67bc53596a424f7ed00428cc", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc53596a424f7ed00428c9" + }, + { + "_id": "67bc53596a424f7ed00428cd", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67bc53596a424f7ed00428c9" + }, + { + "_id": "67bc53596a424f7ed00428ce", + "_tpl": "5f633f791b231926f2329f13", + "slotId": "mod_muzzle", + "parentId": "67bc53596a424f7ed00428c9" + }, + { + "_id": "67bc53596a424f7ed00428cf", + "_tpl": "57dc334d245977597164366f", + "slotId": "mod_reciever", + "parentId": "67bc53596a424f7ed00428c9" + }, + { + "_id": "67bc53596a424f7ed00428d0", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67bc53596a424f7ed00428c9" + }, + { + "_id": "67bc53596a424f7ed00428d1", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67bc53596a424f7ed00428cb" + }, + { + "_id": "67bc53596a424f7ed00428d2", + "_tpl": "5a957c3fa2750c00137fa5f7", + "slotId": "mod_handguard", + "parentId": "67bc53596a424f7ed00428d0" + }, + { + "_id": "67bc53596a424f7ed00428d3", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bc53596a424f7ed00428d2" + }, + { + "_id": "67bc53596a424f7ed00428d4", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bc53596a424f7ed00428d2" + }, + { + "_id": "67bc53596a424f7ed00428d5", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc53596a424f7ed00428d2" + }, + { + "_id": "67bc53596a424f7ed00428d6", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc53596a424f7ed00428d4" + } + ] + }, + { + "Id": "67bc53b60100185d533d8062", + "Name": "supr holo 74UB v2", + "Root": "67bc53bb6a424f7ed004387d", + "Items": [ + { + "_id": "67bc53bb6a424f7ed004387d", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc53bb6a424f7ed004387e", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc53bb6a424f7ed004387d" + }, + { + "_id": "67bc53bb6a424f7ed004387f", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67bc53bb6a424f7ed004387d" + }, + { + "_id": "67bc53bb6a424f7ed0043880", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc53bb6a424f7ed004387d" + }, + { + "_id": "67bc53bb6a424f7ed0043881", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67bc53bb6a424f7ed004387d" + }, + { + "_id": "67bc53bb6a424f7ed0043882", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67bc53bb6a424f7ed004387d" + }, + { + "_id": "67bc53bb6a424f7ed0043883", + "_tpl": "57dc334d245977597164366f", + "slotId": "mod_reciever", + "parentId": "67bc53bb6a424f7ed004387d" + }, + { + "_id": "67bc53bb6a424f7ed0043884", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67bc53bb6a424f7ed004387d" + }, + { + "_id": "67bc53bb6a424f7ed0043885", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67bc53bb6a424f7ed004387f" + }, + { + "_id": "67bc53bb6a424f7ed0043886", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67bc53bb6a424f7ed0043882" + }, + { + "_id": "67bc53bb6a424f7ed0043887", + "_tpl": "5a957c3fa2750c00137fa5f7", + "slotId": "mod_handguard", + "parentId": "67bc53bb6a424f7ed0043884" + }, + { + "_id": "67bc53bb6a424f7ed0043888", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67bc53bb6a424f7ed0043886" + }, + { + "_id": "67bc53bb6a424f7ed0043889", + "_tpl": "5c791e872e2216001219c40a", + "slotId": "mod_foregrip", + "parentId": "67bc53bb6a424f7ed0043887" + }, + { + "_id": "67bc53bb6a424f7ed004388a", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc53bb6a424f7ed0043887" + }, + { + "_id": "67bc53bb6a424f7ed004388b", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc53bb6a424f7ed0043887" + } + ] + }, + { + "Id": "67bc54240100185d537af811", + "Name": "supr HCO 74UB v2", + "Root": "67bc54336a424f7ed0045710", + "Items": [ + { + "_id": "67bc54336a424f7ed0045710", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bc54336a424f7ed0045711", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bc54336a424f7ed0045710" + }, + { + "_id": "67bc54336a424f7ed0045712", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67bc54336a424f7ed0045710" + }, + { + "_id": "67bc54336a424f7ed0045713", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bc54336a424f7ed0045710" + }, + { + "_id": "67bc54336a424f7ed0045714", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67bc54336a424f7ed0045710" + }, + { + "_id": "67bc54336a424f7ed0045715", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67bc54336a424f7ed0045710" + }, + { + "_id": "67bc54336a424f7ed0045716", + "_tpl": "57dc334d245977597164366f", + "slotId": "mod_reciever", + "parentId": "67bc54336a424f7ed0045710" + }, + { + "_id": "67bc54336a424f7ed0045717", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67bc54336a424f7ed0045710" + }, + { + "_id": "67bc54336a424f7ed0045718", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67bc54336a424f7ed0045712" + }, + { + "_id": "67bc54336a424f7ed0045719", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67bc54336a424f7ed0045715" + }, + { + "_id": "67bc54336a424f7ed004571a", + "_tpl": "57ffb0062459777a045af529", + "slotId": "mod_mount_000", + "parentId": "67bc54336a424f7ed0045716" + }, + { + "_id": "67bc54336a424f7ed004571b", + "_tpl": "5a957c3fa2750c00137fa5f7", + "slotId": "mod_handguard", + "parentId": "67bc54336a424f7ed0045717" + }, + { + "_id": "67bc54336a424f7ed004571c", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67bc54336a424f7ed0045719" + }, + { + "_id": "67bc54336a424f7ed004571d", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bc54336a424f7ed004571a" + }, + { + "_id": "67bc54336a424f7ed004571e", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bc54336a424f7ed004571b" + }, + { + "_id": "67bc54336a424f7ed004571f", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bc54336a424f7ed004571b" + } + ] + }, + { + "Id": "67bec34f0100185d537eb41c", + "Name": "spear", + "Root": "67bec357ea4a651424037c1f", + "Items": [ + { + "_id": "67bec357ea4a651424037c1f", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec357ea4a651424037c20", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistol_grip", + "parentId": "67bec357ea4a651424037c1f" + }, + { + "_id": "67bec357ea4a651424037c21", + "_tpl": "65293c7a17e14363030ad308", + "slotId": "mod_magazine", + "parentId": "67bec357ea4a651424037c1f" + }, + { + "_id": "67bec357ea4a651424037c22", + "_tpl": "6529119424cbe3c74a05e5bb", + "slotId": "mod_reciever", + "parentId": "67bec357ea4a651424037c1f" + }, + { + "_id": "67bec357ea4a651424037c23", + "_tpl": "6529348224cbe3c74a05e5c4", + "slotId": "mod_stock_000", + "parentId": "67bec357ea4a651424037c1f" + }, + { + "_id": "67bec357ea4a651424037c24", + "_tpl": "6529109524cbe3c74a05e5b7", + "slotId": "mod_charge", + "parentId": "67bec357ea4a651424037c1f" + }, + { + "_id": "67bec357ea4a651424037c25", + "_tpl": "6567e751a715f85433025998", + "slotId": "mod_scope", + "parentId": "67bec357ea4a651424037c22" + }, + { + "_id": "67bec357ea4a651424037c26", + "_tpl": "652910565ae2ae97b80fdf35", + "slotId": "mod_barrel", + "parentId": "67bec357ea4a651424037c22" + }, + { + "_id": "67bec357ea4a651424037c27", + "_tpl": "652910ef50dc782999054b97", + "slotId": "mod_handguard", + "parentId": "67bec357ea4a651424037c22" + }, + { + "_id": "67bec357ea4a651424037c28", + "_tpl": "6529366450dc782999054ba0", + "slotId": "mod_stock", + "parentId": "67bec357ea4a651424037c23" + }, + { + "_id": "67bec357ea4a651424037c29", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec357ea4a651424037c25" + }, + { + "_id": "67bec357ea4a651424037c2a", + "_tpl": "6529113b5ae2ae97b80fdf39", + "slotId": "mod_muzzle", + "parentId": "67bec357ea4a651424037c26" + }, + { + "_id": "67bec357ea4a651424037c2b", + "_tpl": "652910bc24cbe3c74a05e5b9", + "slotId": "mod_gas_block", + "parentId": "67bec357ea4a651424037c26" + }, + { + "_id": "67bec357ea4a651424037c2c", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67bec357ea4a651424037c27" + }, + { + "_id": "67bec357ea4a651424037c2d", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67bec357ea4a651424037c27" + }, + { + "_id": "67bec357ea4a651424037c2e", + "_tpl": "652911e650dc782999054b9d", + "slotId": "mod_muzzle", + "parentId": "67bec357ea4a651424037c2a" + }, + { + "_id": "67bec357ea4a651424037c2f", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67bec357ea4a651424037c2c" + }, + { + "_id": "67bec357ea4a651424037c30", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec357ea4a651424037c2d" + }, + { + "_id": "67bec357ea4a651424037c31", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67bec357ea4a651424037c28" + }, + { + "_id": "67bec357ea4a651424037c32", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec357ea4a651424037c31" + } + ] + }, + { + "Id": "67bec3770100185d53715c9c", + "Name": "spear v2", + "Root": "67bec37bea4a651424037c38", + "Items": [ + { + "_id": "67bec37bea4a651424037c38", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec37bea4a651424037c39", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67bec37bea4a651424037c38" + }, + { + "_id": "67bec37bea4a651424037c3a", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67bec37bea4a651424037c38" + }, + { + "_id": "67bec37bea4a651424037c3b", + "_tpl": "6529119424cbe3c74a05e5bb", + "slotId": "mod_reciever", + "parentId": "67bec37bea4a651424037c38" + }, + { + "_id": "67bec37bea4a651424037c3c", + "_tpl": "6529348224cbe3c74a05e5c4", + "slotId": "mod_stock_000", + "parentId": "67bec37bea4a651424037c38" + }, + { + "_id": "67bec37bea4a651424037c3d", + "_tpl": "6529109524cbe3c74a05e5b7", + "slotId": "mod_charge", + "parentId": "67bec37bea4a651424037c38" + }, + { + "_id": "67bec37bea4a651424037c3e", + "_tpl": "6567e751a715f85433025998", + "slotId": "mod_scope", + "parentId": "67bec37bea4a651424037c3b" + }, + { + "_id": "67bec37bea4a651424037c3f", + "_tpl": "652910565ae2ae97b80fdf35", + "slotId": "mod_barrel", + "parentId": "67bec37bea4a651424037c3b" + }, + { + "_id": "67bec37bea4a651424037c40", + "_tpl": "652910ef50dc782999054b97", + "slotId": "mod_handguard", + "parentId": "67bec37bea4a651424037c3b" + }, + { + "_id": "67bec37bea4a651424037c41", + "_tpl": "6529366450dc782999054ba0", + "slotId": "mod_stock", + "parentId": "67bec37bea4a651424037c3c" + }, + { + "_id": "67bec37bea4a651424037c42", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec37bea4a651424037c3e" + }, + { + "_id": "67bec37bea4a651424037c43", + "_tpl": "6529113b5ae2ae97b80fdf39", + "slotId": "mod_muzzle", + "parentId": "67bec37bea4a651424037c3f" + }, + { + "_id": "67bec37bea4a651424037c44", + "_tpl": "652910bc24cbe3c74a05e5b9", + "slotId": "mod_gas_block", + "parentId": "67bec37bea4a651424037c3f" + }, + { + "_id": "67bec37bea4a651424037c45", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67bec37bea4a651424037c40" + }, + { + "_id": "67bec37bea4a651424037c46", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67bec37bea4a651424037c40" + }, + { + "_id": "67bec37bea4a651424037c47", + "_tpl": "652911e650dc782999054b9d", + "slotId": "mod_muzzle", + "parentId": "67bec37bea4a651424037c43" + }, + { + "_id": "67bec37bea4a651424037c48", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bec37bea4a651424037c45" + }, + { + "_id": "67bec37bea4a651424037c49", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec37bea4a651424037c46" + }, + { + "_id": "67bec37bea4a651424037c4a", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bec37bea4a651424037c41" + }, + { + "_id": "67bec37bea4a651424037c4b", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec37bea4a651424037c4a" + } + ] + }, + { + "Id": "67bec3920100185d53b01f17", + "Name": "spear v3", + "Root": "67bec395ea4a651424037c54", + "Items": [ + { + "_id": "67bec395ea4a651424037c54", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec395ea4a651424037c55", + "_tpl": "59db3a1d86f77429e05b4e92", + "slotId": "mod_pistol_grip", + "parentId": "67bec395ea4a651424037c54" + }, + { + "_id": "67bec395ea4a651424037c56", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67bec395ea4a651424037c54" + }, + { + "_id": "67bec395ea4a651424037c57", + "_tpl": "6529119424cbe3c74a05e5bb", + "slotId": "mod_reciever", + "parentId": "67bec395ea4a651424037c54" + }, + { + "_id": "67bec395ea4a651424037c58", + "_tpl": "6529348224cbe3c74a05e5c4", + "slotId": "mod_stock_000", + "parentId": "67bec395ea4a651424037c54" + }, + { + "_id": "67bec395ea4a651424037c59", + "_tpl": "6529109524cbe3c74a05e5b7", + "slotId": "mod_charge", + "parentId": "67bec395ea4a651424037c54" + }, + { + "_id": "67bec395ea4a651424037c5a", + "_tpl": "6567e751a715f85433025998", + "slotId": "mod_scope", + "parentId": "67bec395ea4a651424037c57" + }, + { + "_id": "67bec395ea4a651424037c5b", + "_tpl": "652910565ae2ae97b80fdf35", + "slotId": "mod_barrel", + "parentId": "67bec395ea4a651424037c57" + }, + { + "_id": "67bec395ea4a651424037c5c", + "_tpl": "652910ef50dc782999054b97", + "slotId": "mod_handguard", + "parentId": "67bec395ea4a651424037c57" + }, + { + "_id": "67bec395ea4a651424037c5d", + "_tpl": "6529366450dc782999054ba0", + "slotId": "mod_stock", + "parentId": "67bec395ea4a651424037c58" + }, + { + "_id": "67bec395ea4a651424037c5e", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec395ea4a651424037c5a" + }, + { + "_id": "67bec395ea4a651424037c5f", + "_tpl": "6529113b5ae2ae97b80fdf39", + "slotId": "mod_muzzle", + "parentId": "67bec395ea4a651424037c5b" + }, + { + "_id": "67bec395ea4a651424037c60", + "_tpl": "652910bc24cbe3c74a05e5b9", + "slotId": "mod_gas_block", + "parentId": "67bec395ea4a651424037c5b" + }, + { + "_id": "67bec395ea4a651424037c61", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67bec395ea4a651424037c5c" + }, + { + "_id": "67bec395ea4a651424037c62", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67bec395ea4a651424037c5c" + }, + { + "_id": "67bec395ea4a651424037c63", + "_tpl": "652911e650dc782999054b9d", + "slotId": "mod_muzzle", + "parentId": "67bec395ea4a651424037c5f" + }, + { + "_id": "67bec395ea4a651424037c64", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bec395ea4a651424037c61" + }, + { + "_id": "67bec395ea4a651424037c65", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec395ea4a651424037c62" + }, + { + "_id": "67bec395ea4a651424037c66", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bec395ea4a651424037c5d" + }, + { + "_id": "67bec395ea4a651424037c67", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec395ea4a651424037c66" + } + ] + }, + { + "Id": "67bec3af0100185d537b1bff", + "Name": "spear v4", + "Root": "67bec3b8ea4a651424037c6e", + "Items": [ + { + "_id": "67bec3b8ea4a651424037c6e", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec3b8ea4a651424037c6f", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67bec3b8ea4a651424037c6e" + }, + { + "_id": "67bec3b8ea4a651424037c70", + "_tpl": "65293c7a17e14363030ad308", + "slotId": "mod_magazine", + "parentId": "67bec3b8ea4a651424037c6e" + }, + { + "_id": "67bec3b8ea4a651424037c71", + "_tpl": "6529119424cbe3c74a05e5bb", + "slotId": "mod_reciever", + "parentId": "67bec3b8ea4a651424037c6e" + }, + { + "_id": "67bec3b8ea4a651424037c72", + "_tpl": "6529348224cbe3c74a05e5c4", + "slotId": "mod_stock_000", + "parentId": "67bec3b8ea4a651424037c6e" + }, + { + "_id": "67bec3b8ea4a651424037c73", + "_tpl": "6529109524cbe3c74a05e5b7", + "slotId": "mod_charge", + "parentId": "67bec3b8ea4a651424037c6e" + }, + { + "_id": "67bec3b8ea4a651424037c74", + "_tpl": "6567e751a715f85433025998", + "slotId": "mod_scope", + "parentId": "67bec3b8ea4a651424037c71" + }, + { + "_id": "67bec3b8ea4a651424037c75", + "_tpl": "652910565ae2ae97b80fdf35", + "slotId": "mod_barrel", + "parentId": "67bec3b8ea4a651424037c71" + }, + { + "_id": "67bec3b8ea4a651424037c76", + "_tpl": "652910ef50dc782999054b97", + "slotId": "mod_handguard", + "parentId": "67bec3b8ea4a651424037c71" + }, + { + "_id": "67bec3b8ea4a651424037c77", + "_tpl": "6529366450dc782999054ba0", + "slotId": "mod_stock", + "parentId": "67bec3b8ea4a651424037c72" + }, + { + "_id": "67bec3b8ea4a651424037c78", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec3b8ea4a651424037c74" + }, + { + "_id": "67bec3b8ea4a651424037c79", + "_tpl": "6529113b5ae2ae97b80fdf39", + "slotId": "mod_muzzle", + "parentId": "67bec3b8ea4a651424037c75" + }, + { + "_id": "67bec3b8ea4a651424037c7a", + "_tpl": "652910bc24cbe3c74a05e5b9", + "slotId": "mod_gas_block", + "parentId": "67bec3b8ea4a651424037c75" + }, + { + "_id": "67bec3b8ea4a651424037c7b", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67bec3b8ea4a651424037c76" + }, + { + "_id": "67bec3b8ea4a651424037c7c", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67bec3b8ea4a651424037c76" + }, + { + "_id": "67bec3b8ea4a651424037c7d", + "_tpl": "652911e650dc782999054b9d", + "slotId": "mod_muzzle", + "parentId": "67bec3b8ea4a651424037c79" + }, + { + "_id": "67bec3b8ea4a651424037c7e", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67bec3b8ea4a651424037c7b" + }, + { + "_id": "67bec3b8ea4a651424037c7f", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec3b8ea4a651424037c7c" + }, + { + "_id": "67bec3b8ea4a651424037c80", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67bec3b8ea4a651424037c77" + }, + { + "_id": "67bec3b8ea4a651424037c81", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec3b8ea4a651424037c80" + } + ] + }, + { + "Id": "67bec4850100185d532bb296", + "Name": "loud vudu g28", + "Root": "67bec48eea4a651424039a83", + "Items": [ + { + "_id": "67bec48eea4a651424039a83", + "_tpl": "6176aca650224f204c1da3fb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec48eea4a651424039a84", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67bec48eea4a651424039a83" + }, + { + "_id": "67bec48eea4a651424039a85", + "_tpl": "617131a4568c120fdd29482d", + "slotId": "mod_magazine", + "parentId": "67bec48eea4a651424039a83" + }, + { + "_id": "67bec48eea4a651424039a86", + "_tpl": "617153016c780c1e710c9a2f", + "slotId": "mod_stock", + "parentId": "67bec48eea4a651424039a83" + }, + { + "_id": "67bec48eea4a651424039a87", + "_tpl": "61713a8fd92c473c770214a4", + "slotId": "mod_reciever", + "parentId": "67bec48eea4a651424039a83" + }, + { + "_id": "67bec48eea4a651424039a88", + "_tpl": "61702d8a67085e45ef140b24", + "slotId": "mod_charge", + "parentId": "67bec48eea4a651424039a83" + }, + { + "_id": "67bec48eea4a651424039a89", + "_tpl": "617155ee50224f204c1da3cd", + "slotId": "mod_stock_000", + "parentId": "67bec48eea4a651424039a86" + }, + { + "_id": "67bec48eea4a651424039a8a", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bec48eea4a651424039a87" + }, + { + "_id": "67bec48eea4a651424039a8b", + "_tpl": "61702be9faa1272e431522c3", + "slotId": "mod_barrel", + "parentId": "67bec48eea4a651424039a87" + }, + { + "_id": "67bec48eea4a651424039a8c", + "_tpl": "61703001d92c473c77021497", + "slotId": "mod_handguard", + "parentId": "67bec48eea4a651424039a87" + }, + { + "_id": "67bec48eea4a651424039a8d", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec48eea4a651424039a87" + }, + { + "_id": "67bec48eea4a651424039a8e", + "_tpl": "61715e7e67085e45ef140b33", + "slotId": "mod_stock_000", + "parentId": "67bec48eea4a651424039a89" + }, + { + "_id": "67bec48eea4a651424039a8f", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec48eea4a651424039a8a" + }, + { + "_id": "67bec48eea4a651424039a90", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec48eea4a651424039a8a" + }, + { + "_id": "67bec48eea4a651424039a91", + "_tpl": "5cf78496d7f00c065703d6ca", + "slotId": "mod_muzzle", + "parentId": "67bec48eea4a651424039a8b" + }, + { + "_id": "67bec48eea4a651424039a92", + "_tpl": "61702f1b67085e45ef140b26", + "slotId": "mod_gas_block", + "parentId": "67bec48eea4a651424039a8b" + }, + { + "_id": "67bec48eea4a651424039a93", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bec48eea4a651424039a8c" + }, + { + "_id": "67bec48eea4a651424039a94", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec48eea4a651424039a8c" + }, + { + "_id": "67bec48eea4a651424039a95", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle_000", + "parentId": "67bec48eea4a651424039a91" + }, + { + "_id": "67bec48eea4a651424039a96", + "_tpl": "5cf78720d7f00c06595bc93e", + "slotId": "mod_muzzle_001", + "parentId": "67bec48eea4a651424039a91" + } + ] + }, + { + "Id": "67bec4ad0100185d53ec3b5a", + "Name": "loud vudu g28 v2", + "Root": "67bec4b1ea4a651424039a9f", + "Items": [ + { + "_id": "67bec4b1ea4a651424039a9f", + "_tpl": "6176aca650224f204c1da3fb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec4b1ea4a651424039aa0", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67bec4b1ea4a651424039a9f" + }, + { + "_id": "67bec4b1ea4a651424039aa1", + "_tpl": "617131a4568c120fdd29482d", + "slotId": "mod_magazine", + "parentId": "67bec4b1ea4a651424039a9f" + }, + { + "_id": "67bec4b1ea4a651424039aa2", + "_tpl": "617153016c780c1e710c9a2f", + "slotId": "mod_stock", + "parentId": "67bec4b1ea4a651424039a9f" + }, + { + "_id": "67bec4b1ea4a651424039aa3", + "_tpl": "61713a8fd92c473c770214a4", + "slotId": "mod_reciever", + "parentId": "67bec4b1ea4a651424039a9f" + }, + { + "_id": "67bec4b1ea4a651424039aa4", + "_tpl": "61702d8a67085e45ef140b24", + "slotId": "mod_charge", + "parentId": "67bec4b1ea4a651424039a9f" + }, + { + "_id": "67bec4b1ea4a651424039aa5", + "_tpl": "617155ee50224f204c1da3cd", + "slotId": "mod_stock_000", + "parentId": "67bec4b1ea4a651424039aa2" + }, + { + "_id": "67bec4b1ea4a651424039aa6", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bec4b1ea4a651424039aa3" + }, + { + "_id": "67bec4b1ea4a651424039aa7", + "_tpl": "61702be9faa1272e431522c3", + "slotId": "mod_barrel", + "parentId": "67bec4b1ea4a651424039aa3" + }, + { + "_id": "67bec4b1ea4a651424039aa8", + "_tpl": "61703001d92c473c77021497", + "slotId": "mod_handguard", + "parentId": "67bec4b1ea4a651424039aa3" + }, + { + "_id": "67bec4b1ea4a651424039aa9", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec4b1ea4a651424039aa3" + }, + { + "_id": "67bec4b1ea4a651424039aaa", + "_tpl": "61715e7e67085e45ef140b33", + "slotId": "mod_stock_000", + "parentId": "67bec4b1ea4a651424039aa5" + }, + { + "_id": "67bec4b1ea4a651424039aab", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec4b1ea4a651424039aa6" + }, + { + "_id": "67bec4b1ea4a651424039aac", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec4b1ea4a651424039aa6" + }, + { + "_id": "67bec4b1ea4a651424039aad", + "_tpl": "5cf78496d7f00c065703d6ca", + "slotId": "mod_muzzle", + "parentId": "67bec4b1ea4a651424039aa7" + }, + { + "_id": "67bec4b1ea4a651424039aae", + "_tpl": "61702f1b67085e45ef140b26", + "slotId": "mod_gas_block", + "parentId": "67bec4b1ea4a651424039aa7" + }, + { + "_id": "67bec4b1ea4a651424039aaf", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bec4b1ea4a651424039aa8" + }, + { + "_id": "67bec4b1ea4a651424039ab0", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec4b1ea4a651424039aa8" + }, + { + "_id": "67bec4b1ea4a651424039ab1", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle_000", + "parentId": "67bec4b1ea4a651424039aad" + }, + { + "_id": "67bec4b1ea4a651424039ab2", + "_tpl": "5cf78720d7f00c06595bc93e", + "slotId": "mod_muzzle_001", + "parentId": "67bec4b1ea4a651424039aad" + } + ] + }, + { + "Id": "67bec4da0100185d536b3a4e", + "Name": "supr tango g28", + "Root": "67bec4e5ea4a65142403a9c1", + "Items": [ + { + "_id": "67bec4e5ea4a65142403a9c1", + "_tpl": "6176aca650224f204c1da3fb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec4e5ea4a65142403a9c2", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67bec4e5ea4a65142403a9c1" + }, + { + "_id": "67bec4e5ea4a65142403a9c3", + "_tpl": "617131a4568c120fdd29482d", + "slotId": "mod_magazine", + "parentId": "67bec4e5ea4a65142403a9c1" + }, + { + "_id": "67bec4e5ea4a65142403a9c4", + "_tpl": "617153016c780c1e710c9a2f", + "slotId": "mod_stock", + "parentId": "67bec4e5ea4a65142403a9c1" + }, + { + "_id": "67bec4e5ea4a65142403a9c5", + "_tpl": "61713a8fd92c473c770214a4", + "slotId": "mod_reciever", + "parentId": "67bec4e5ea4a65142403a9c1" + }, + { + "_id": "67bec4e5ea4a65142403a9c6", + "_tpl": "61702d8a67085e45ef140b24", + "slotId": "mod_charge", + "parentId": "67bec4e5ea4a65142403a9c1" + }, + { + "_id": "67bec4e5ea4a65142403a9c7", + "_tpl": "617155ee50224f204c1da3cd", + "slotId": "mod_stock_000", + "parentId": "67bec4e5ea4a65142403a9c4" + }, + { + "_id": "67bec4e5ea4a65142403a9c8", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bec4e5ea4a65142403a9c5" + }, + { + "_id": "67bec4e5ea4a65142403a9c9", + "_tpl": "61702be9faa1272e431522c3", + "slotId": "mod_barrel", + "parentId": "67bec4e5ea4a65142403a9c5" + }, + { + "_id": "67bec4e5ea4a65142403a9ca", + "_tpl": "61703001d92c473c77021497", + "slotId": "mod_handguard", + "parentId": "67bec4e5ea4a65142403a9c5" + }, + { + "_id": "67bec4e5ea4a65142403a9cb", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec4e5ea4a65142403a9c5" + }, + { + "_id": "67bec4e5ea4a65142403a9cc", + "_tpl": "61715e7e67085e45ef140b33", + "slotId": "mod_stock_000", + "parentId": "67bec4e5ea4a65142403a9c7" + }, + { + "_id": "67bec4e5ea4a65142403a9cd", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec4e5ea4a65142403a9c8" + }, + { + "_id": "67bec4e5ea4a65142403a9ce", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec4e5ea4a65142403a9c8" + }, + { + "_id": "67bec4e5ea4a65142403a9cf", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bec4e5ea4a65142403a9c9" + }, + { + "_id": "67bec4e5ea4a65142403a9d0", + "_tpl": "61702f1b67085e45ef140b26", + "slotId": "mod_gas_block", + "parentId": "67bec4e5ea4a65142403a9c9" + }, + { + "_id": "67bec4e5ea4a65142403a9d1", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67bec4e5ea4a65142403a9ca" + }, + { + "_id": "67bec4e5ea4a65142403a9d2", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec4e5ea4a65142403a9ca" + }, + { + "_id": "67bec4e5ea4a65142403a9d3", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bec4e5ea4a65142403a9cf" + } + ] + }, + { + "Id": "67bec4fa0100185d53561903", + "Name": "supr vudu g28", + "Root": "67bec4feea4a65142403b76f", + "Items": [ + { + "_id": "67bec4feea4a65142403b76f", + "_tpl": "6176aca650224f204c1da3fb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec4feea4a65142403b770", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67bec4feea4a65142403b76f" + }, + { + "_id": "67bec4feea4a65142403b771", + "_tpl": "617131a4568c120fdd29482d", + "slotId": "mod_magazine", + "parentId": "67bec4feea4a65142403b76f" + }, + { + "_id": "67bec4feea4a65142403b772", + "_tpl": "617153016c780c1e710c9a2f", + "slotId": "mod_stock", + "parentId": "67bec4feea4a65142403b76f" + }, + { + "_id": "67bec4feea4a65142403b773", + "_tpl": "61713a8fd92c473c770214a4", + "slotId": "mod_reciever", + "parentId": "67bec4feea4a65142403b76f" + }, + { + "_id": "67bec4feea4a65142403b774", + "_tpl": "61702d8a67085e45ef140b24", + "slotId": "mod_charge", + "parentId": "67bec4feea4a65142403b76f" + }, + { + "_id": "67bec4feea4a65142403b775", + "_tpl": "617155ee50224f204c1da3cd", + "slotId": "mod_stock_000", + "parentId": "67bec4feea4a65142403b772" + }, + { + "_id": "67bec4feea4a65142403b776", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bec4feea4a65142403b773" + }, + { + "_id": "67bec4feea4a65142403b777", + "_tpl": "61702be9faa1272e431522c3", + "slotId": "mod_barrel", + "parentId": "67bec4feea4a65142403b773" + }, + { + "_id": "67bec4feea4a65142403b778", + "_tpl": "61703001d92c473c77021497", + "slotId": "mod_handguard", + "parentId": "67bec4feea4a65142403b773" + }, + { + "_id": "67bec4feea4a65142403b779", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec4feea4a65142403b773" + }, + { + "_id": "67bec4feea4a65142403b77a", + "_tpl": "61715e7e67085e45ef140b33", + "slotId": "mod_stock_000", + "parentId": "67bec4feea4a65142403b775" + }, + { + "_id": "67bec4feea4a65142403b77b", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec4feea4a65142403b776" + }, + { + "_id": "67bec4feea4a65142403b77c", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec4feea4a65142403b776" + }, + { + "_id": "67bec4feea4a65142403b77d", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bec4feea4a65142403b777" + }, + { + "_id": "67bec4feea4a65142403b77e", + "_tpl": "61702f1b67085e45ef140b26", + "slotId": "mod_gas_block", + "parentId": "67bec4feea4a65142403b777" + }, + { + "_id": "67bec4feea4a65142403b77f", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67bec4feea4a65142403b778" + }, + { + "_id": "67bec4feea4a65142403b780", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec4feea4a65142403b778" + }, + { + "_id": "67bec4feea4a65142403b781", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bec4feea4a65142403b77d" + } + ] + }, + { + "Id": "67bec5a20100185d53b7003a", + "Name": "supr vudu sr25", + "Root": "67bec5a9ea4a65142403d40f", + "Items": [ + { + "_id": "67bec5a9ea4a65142403d40f", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec5a9ea4a65142403d410", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67bec5a9ea4a65142403d40f" + }, + { + "_id": "67bec5a9ea4a65142403d411", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67bec5a9ea4a65142403d40f" + }, + { + "_id": "67bec5a9ea4a65142403d412", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67bec5a9ea4a65142403d40f" + }, + { + "_id": "67bec5a9ea4a65142403d413", + "_tpl": "5df8e4080b92095fd441e594", + "slotId": "mod_reciever", + "parentId": "67bec5a9ea4a65142403d40f" + }, + { + "_id": "67bec5a9ea4a65142403d414", + "_tpl": "5df8e053bb49d91fb446d6a6", + "slotId": "mod_charge", + "parentId": "67bec5a9ea4a65142403d40f" + }, + { + "_id": "67bec5a9ea4a65142403d415", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "slotId": "mod_stock_000", + "parentId": "67bec5a9ea4a65142403d412" + }, + { + "_id": "67bec5a9ea4a65142403d416", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bec5a9ea4a65142403d413" + }, + { + "_id": "67bec5a9ea4a65142403d417", + "_tpl": "5df917564a9f347bc92edca3", + "slotId": "mod_barrel", + "parentId": "67bec5a9ea4a65142403d413" + }, + { + "_id": "67bec5a9ea4a65142403d418", + "_tpl": "5df916dfbb49d91fb446d6b9", + "slotId": "mod_handguard", + "parentId": "67bec5a9ea4a65142403d413" + }, + { + "_id": "67bec5a9ea4a65142403d419", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5a9ea4a65142403d413" + }, + { + "_id": "67bec5a9ea4a65142403d41a", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5a9ea4a65142403d416" + }, + { + "_id": "67bec5a9ea4a65142403d41b", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5a9ea4a65142403d416" + }, + { + "_id": "67bec5a9ea4a65142403d41c", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bec5a9ea4a65142403d417" + }, + { + "_id": "67bec5a9ea4a65142403d41d", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67bec5a9ea4a65142403d417" + }, + { + "_id": "67bec5a9ea4a65142403d41e", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67bec5a9ea4a65142403d418" + }, + { + "_id": "67bec5a9ea4a65142403d41f", + "_tpl": "5dfa3d950dee1b22f862eae0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5a9ea4a65142403d418" + }, + { + "_id": "67bec5a9ea4a65142403d420", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67bec5a9ea4a65142403d418" + }, + { + "_id": "67bec5a9ea4a65142403d421", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bec5a9ea4a65142403d41c" + }, + { + "_id": "67bec5a9ea4a65142403d422", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec5a9ea4a65142403d41e" + }, + { + "_id": "67bec5a9ea4a65142403d423", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bec5a9ea4a65142403d420" + } + ] + }, + { + "Id": "67bec5c10100185d5398e949", + "Name": "supr vudu sr25 v2", + "Root": "67bec5c4ea4a65142403d42f", + "Items": [ + { + "_id": "67bec5c4ea4a65142403d42f", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec5c4ea4a65142403d430", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67bec5c4ea4a65142403d42f" + }, + { + "_id": "67bec5c4ea4a65142403d431", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67bec5c4ea4a65142403d42f" + }, + { + "_id": "67bec5c4ea4a65142403d432", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67bec5c4ea4a65142403d42f" + }, + { + "_id": "67bec5c4ea4a65142403d433", + "_tpl": "5df8e4080b92095fd441e594", + "slotId": "mod_reciever", + "parentId": "67bec5c4ea4a65142403d42f" + }, + { + "_id": "67bec5c4ea4a65142403d434", + "_tpl": "5df8e053bb49d91fb446d6a6", + "slotId": "mod_charge", + "parentId": "67bec5c4ea4a65142403d42f" + }, + { + "_id": "67bec5c4ea4a65142403d435", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bec5c4ea4a65142403d432" + }, + { + "_id": "67bec5c4ea4a65142403d436", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bec5c4ea4a65142403d433" + }, + { + "_id": "67bec5c4ea4a65142403d437", + "_tpl": "5df917564a9f347bc92edca3", + "slotId": "mod_barrel", + "parentId": "67bec5c4ea4a65142403d433" + }, + { + "_id": "67bec5c4ea4a65142403d438", + "_tpl": "5df916dfbb49d91fb446d6b9", + "slotId": "mod_handguard", + "parentId": "67bec5c4ea4a65142403d433" + }, + { + "_id": "67bec5c4ea4a65142403d439", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5c4ea4a65142403d433" + }, + { + "_id": "67bec5c4ea4a65142403d43a", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec5c4ea4a65142403d435" + }, + { + "_id": "67bec5c4ea4a65142403d43b", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5c4ea4a65142403d436" + }, + { + "_id": "67bec5c4ea4a65142403d43c", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5c4ea4a65142403d436" + }, + { + "_id": "67bec5c4ea4a65142403d43d", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bec5c4ea4a65142403d437" + }, + { + "_id": "67bec5c4ea4a65142403d43e", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67bec5c4ea4a65142403d437" + }, + { + "_id": "67bec5c4ea4a65142403d43f", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67bec5c4ea4a65142403d438" + }, + { + "_id": "67bec5c4ea4a65142403d440", + "_tpl": "5dfa3d950dee1b22f862eae0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5c4ea4a65142403d438" + }, + { + "_id": "67bec5c4ea4a65142403d441", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67bec5c4ea4a65142403d438" + }, + { + "_id": "67bec5c4ea4a65142403d442", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bec5c4ea4a65142403d43d" + }, + { + "_id": "67bec5c4ea4a65142403d443", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec5c4ea4a65142403d43f" + }, + { + "_id": "67bec5c4ea4a65142403d444", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bec5c4ea4a65142403d441" + } + ] + }, + { + "Id": "67bec5f60100185d53336ded", + "Name": "supr hamr sr25", + "Root": "67bec5fbea4a65142403e3e3", + "Items": [ + { + "_id": "67bec5fbea4a65142403e3e3", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec5fbea4a65142403e3e4", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67bec5fbea4a65142403e3e3" + }, + { + "_id": "67bec5fbea4a65142403e3e5", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67bec5fbea4a65142403e3e3" + }, + { + "_id": "67bec5fbea4a65142403e3e6", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67bec5fbea4a65142403e3e3" + }, + { + "_id": "67bec5fbea4a65142403e3e7", + "_tpl": "5df8e4080b92095fd441e594", + "slotId": "mod_reciever", + "parentId": "67bec5fbea4a65142403e3e3" + }, + { + "_id": "67bec5fbea4a65142403e3e8", + "_tpl": "5df8e053bb49d91fb446d6a6", + "slotId": "mod_charge", + "parentId": "67bec5fbea4a65142403e3e3" + }, + { + "_id": "67bec5fbea4a65142403e3e9", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bec5fbea4a65142403e3e6" + }, + { + "_id": "67bec5fbea4a65142403e3ea", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5fbea4a65142403e3e7" + }, + { + "_id": "67bec5fbea4a65142403e3eb", + "_tpl": "5df917564a9f347bc92edca3", + "slotId": "mod_barrel", + "parentId": "67bec5fbea4a65142403e3e7" + }, + { + "_id": "67bec5fbea4a65142403e3ec", + "_tpl": "5df916dfbb49d91fb446d6b9", + "slotId": "mod_handguard", + "parentId": "67bec5fbea4a65142403e3e7" + }, + { + "_id": "67bec5fbea4a65142403e3ed", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5fbea4a65142403e3e7" + }, + { + "_id": "67bec5fbea4a65142403e3ee", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec5fbea4a65142403e3e9" + }, + { + "_id": "67bec5fbea4a65142403e3ef", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5fbea4a65142403e3ea" + }, + { + "_id": "67bec5fbea4a65142403e3f0", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bec5fbea4a65142403e3eb" + }, + { + "_id": "67bec5fbea4a65142403e3f1", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67bec5fbea4a65142403e3eb" + }, + { + "_id": "67bec5fbea4a65142403e3f2", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67bec5fbea4a65142403e3ec" + }, + { + "_id": "67bec5fbea4a65142403e3f3", + "_tpl": "5dfa3d950dee1b22f862eae0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec5fbea4a65142403e3ec" + }, + { + "_id": "67bec5fbea4a65142403e3f4", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67bec5fbea4a65142403e3ec" + }, + { + "_id": "67bec5fbea4a65142403e3f5", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bec5fbea4a65142403e3f0" + }, + { + "_id": "67bec5fbea4a65142403e3f6", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec5fbea4a65142403e3f2" + }, + { + "_id": "67bec5fbea4a65142403e3f7", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bec5fbea4a65142403e3f4" + } + ] + }, + { + "Id": "67bec6200100185d53faf1b9", + "Name": "supr holo sr25", + "Root": "67bec627ea4a65142403e403", + "Items": [ + { + "_id": "67bec627ea4a65142403e403", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec627ea4a65142403e404", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67bec627ea4a65142403e403" + }, + { + "_id": "67bec627ea4a65142403e405", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67bec627ea4a65142403e403" + }, + { + "_id": "67bec627ea4a65142403e406", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67bec627ea4a65142403e403" + }, + { + "_id": "67bec627ea4a65142403e407", + "_tpl": "5df8e4080b92095fd441e594", + "slotId": "mod_reciever", + "parentId": "67bec627ea4a65142403e403" + }, + { + "_id": "67bec627ea4a65142403e408", + "_tpl": "5df8e053bb49d91fb446d6a6", + "slotId": "mod_charge", + "parentId": "67bec627ea4a65142403e403" + }, + { + "_id": "67bec627ea4a65142403e409", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bec627ea4a65142403e406" + }, + { + "_id": "67bec627ea4a65142403e40a", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec627ea4a65142403e407" + }, + { + "_id": "67bec627ea4a65142403e40b", + "_tpl": "5df917564a9f347bc92edca3", + "slotId": "mod_barrel", + "parentId": "67bec627ea4a65142403e407" + }, + { + "_id": "67bec627ea4a65142403e40c", + "_tpl": "5df916dfbb49d91fb446d6b9", + "slotId": "mod_handguard", + "parentId": "67bec627ea4a65142403e407" + }, + { + "_id": "67bec627ea4a65142403e40d", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec627ea4a65142403e407" + }, + { + "_id": "67bec627ea4a65142403e40e", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec627ea4a65142403e409" + }, + { + "_id": "67bec627ea4a65142403e40f", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bec627ea4a65142403e40b" + }, + { + "_id": "67bec627ea4a65142403e410", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67bec627ea4a65142403e40b" + }, + { + "_id": "67bec627ea4a65142403e411", + "_tpl": "5dfa3d950dee1b22f862eae0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec627ea4a65142403e40c" + }, + { + "_id": "67bec627ea4a65142403e412", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67bec627ea4a65142403e40c" + }, + { + "_id": "67bec627ea4a65142403e413", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67bec627ea4a65142403e40c" + }, + { + "_id": "67bec627ea4a65142403e414", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bec627ea4a65142403e40f" + }, + { + "_id": "67bec627ea4a65142403e415", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bec627ea4a65142403e412" + }, + { + "_id": "67bec627ea4a65142403e416", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec627ea4a65142403e413" + } + ] + }, + { + "Id": "67bec6670100185d533b9368", + "Name": "loud holo sr25", + "Root": "67bec66dea4a65142403f3fc", + "Items": [ + { + "_id": "67bec66dea4a65142403f3fc", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec66dea4a65142403f3fd", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67bec66dea4a65142403f3fc" + }, + { + "_id": "67bec66dea4a65142403f3fe", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67bec66dea4a65142403f3fc" + }, + { + "_id": "67bec66dea4a65142403f3ff", + "_tpl": "5c793fc42e221600114ca25d", + "slotId": "mod_stock", + "parentId": "67bec66dea4a65142403f3fc" + }, + { + "_id": "67bec66dea4a65142403f400", + "_tpl": "5df8e4080b92095fd441e594", + "slotId": "mod_reciever", + "parentId": "67bec66dea4a65142403f3fc" + }, + { + "_id": "67bec66dea4a65142403f401", + "_tpl": "5df8e053bb49d91fb446d6a6", + "slotId": "mod_charge", + "parentId": "67bec66dea4a65142403f3fc" + }, + { + "_id": "67bec66dea4a65142403f402", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bec66dea4a65142403f3ff" + }, + { + "_id": "67bec66dea4a65142403f403", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec66dea4a65142403f400" + }, + { + "_id": "67bec66dea4a65142403f404", + "_tpl": "5df917564a9f347bc92edca3", + "slotId": "mod_barrel", + "parentId": "67bec66dea4a65142403f400" + }, + { + "_id": "67bec66dea4a65142403f405", + "_tpl": "5df916dfbb49d91fb446d6b9", + "slotId": "mod_handguard", + "parentId": "67bec66dea4a65142403f400" + }, + { + "_id": "67bec66dea4a65142403f406", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec66dea4a65142403f400" + }, + { + "_id": "67bec66dea4a65142403f407", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec66dea4a65142403f402" + }, + { + "_id": "67bec66dea4a65142403f408", + "_tpl": "5cf78496d7f00c065703d6ca", + "slotId": "mod_muzzle", + "parentId": "67bec66dea4a65142403f404" + }, + { + "_id": "67bec66dea4a65142403f409", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67bec66dea4a65142403f404" + }, + { + "_id": "67bec66dea4a65142403f40a", + "_tpl": "5dfa3d950dee1b22f862eae0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec66dea4a65142403f405" + }, + { + "_id": "67bec66dea4a65142403f40b", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67bec66dea4a65142403f405" + }, + { + "_id": "67bec66dea4a65142403f40c", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67bec66dea4a65142403f405" + }, + { + "_id": "67bec66dea4a65142403f40d", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle_000", + "parentId": "67bec66dea4a65142403f408" + }, + { + "_id": "67bec66dea4a65142403f40e", + "_tpl": "5cf78720d7f00c06595bc93e", + "slotId": "mod_muzzle_001", + "parentId": "67bec66dea4a65142403f408" + }, + { + "_id": "67bec66dea4a65142403f40f", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bec66dea4a65142403f40b" + }, + { + "_id": "67bec66dea4a65142403f410", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec66dea4a65142403f40c" + } + ] + }, + { + "Id": "67bec7280100185d535e6ce8", + "Name": "supr tango m1a", + "Root": "67bec72fea4a651424041f87", + "Items": [ + { + "_id": "67bec72fea4a651424041f87", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec72fea4a651424041f88", + "_tpl": "5addcce35acfc4001a5fc635", + "slotId": "mod_magazine", + "parentId": "67bec72fea4a651424041f87" + }, + { + "_id": "67bec72fea4a651424041f89", + "_tpl": "5ab372a310e891001717f0d8", + "slotId": "mod_stock", + "parentId": "67bec72fea4a651424041f87" + }, + { + "_id": "67bec72fea4a651424041f8a", + "_tpl": "5aaf9d53e5b5b00015042a52", + "slotId": "mod_barrel", + "parentId": "67bec72fea4a651424041f87" + }, + { + "_id": "67bec72fea4a651424041f8b", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67bec72fea4a651424041f89" + }, + { + "_id": "67bec72fea4a651424041f8c", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67bec72fea4a651424041f89" + }, + { + "_id": "67bec72fea4a651424041f8d", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec72fea4a651424041f89" + }, + { + "_id": "67bec72fea4a651424041f8e", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistolgrip", + "parentId": "67bec72fea4a651424041f89" + }, + { + "_id": "67bec72fea4a651424041f8f", + "_tpl": "5c793fc42e221600114ca25d", + "slotId": "mod_stock", + "parentId": "67bec72fea4a651424041f89" + }, + { + "_id": "67bec72fea4a651424041f90", + "_tpl": "5ab3afb2d8ce87001660304d", + "slotId": "mod_muzzle", + "parentId": "67bec72fea4a651424041f8a" + }, + { + "_id": "67bec72fea4a651424041f91", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec72fea4a651424041f8c" + }, + { + "_id": "67bec72fea4a651424041f92", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67bec72fea4a651424041f8f" + }, + { + "_id": "67bec72fea4a651424041f93", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec72fea4a651424041f92" + }, + { + "_id": "67bec72fea4a651424041f94", + "_tpl": "5c7954d52e221600106f4cc7", + "slotId": "mod_muzzle", + "parentId": "67bec72fea4a651424041f90" + }, + { + "_id": "67bec72fea4a651424041f95", + "_tpl": "5c7955c22e221644f31bfd5e", + "slotId": "mod_muzzle", + "parentId": "67bec72fea4a651424041f94" + } + ] + }, + { + "Id": "67bec75f0100185d53ceff61", + "Name": "loud vudu m1a", + "Root": "67bec767ea4a651424042ec3", + "Items": [ + { + "_id": "67bec767ea4a651424042ec3", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec767ea4a651424042ec4", + "_tpl": "5addccf45acfc400185c2989", + "slotId": "mod_magazine", + "parentId": "67bec767ea4a651424042ec3" + }, + { + "_id": "67bec767ea4a651424042ec5", + "_tpl": "5ab372a310e891001717f0d8", + "slotId": "mod_stock", + "parentId": "67bec767ea4a651424042ec3" + }, + { + "_id": "67bec767ea4a651424042ec6", + "_tpl": "5aaf9d53e5b5b00015042a52", + "slotId": "mod_barrel", + "parentId": "67bec767ea4a651424042ec3" + }, + { + "_id": "67bec767ea4a651424042ec7", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bec767ea4a651424042ec5" + }, + { + "_id": "67bec767ea4a651424042ec8", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bec767ea4a651424042ec5" + }, + { + "_id": "67bec767ea4a651424042ec9", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec767ea4a651424042ec5" + }, + { + "_id": "67bec767ea4a651424042eca", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistolgrip", + "parentId": "67bec767ea4a651424042ec5" + }, + { + "_id": "67bec767ea4a651424042ecb", + "_tpl": "5c793fc42e221600114ca25d", + "slotId": "mod_stock", + "parentId": "67bec767ea4a651424042ec5" + }, + { + "_id": "67bec767ea4a651424042ecc", + "_tpl": "5ab3afb2d8ce87001660304d", + "slotId": "mod_muzzle", + "parentId": "67bec767ea4a651424042ec6" + }, + { + "_id": "67bec767ea4a651424042ecd", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec767ea4a651424042ec8" + }, + { + "_id": "67bec767ea4a651424042ece", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec767ea4a651424042ec8" + }, + { + "_id": "67bec767ea4a651424042ecf", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67bec767ea4a651424042ecb" + }, + { + "_id": "67bec767ea4a651424042ed0", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec767ea4a651424042ecf" + }, + { + "_id": "67bec767ea4a651424042ed1", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67bec767ea4a651424042ecc" + } + ] + }, + { + "Id": "67bec79e0100185d5389186b", + "Name": "supr holo m1a", + "Root": "67bec7a7ea4a651424043dd7", + "Items": [ + { + "_id": "67bec7a7ea4a651424043dd7", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec7a7ea4a651424043dd8", + "_tpl": "5addccf45acfc400185c2989", + "slotId": "mod_magazine", + "parentId": "67bec7a7ea4a651424043dd7" + }, + { + "_id": "67bec7a7ea4a651424043dd9", + "_tpl": "5ab372a310e891001717f0d8", + "slotId": "mod_stock", + "parentId": "67bec7a7ea4a651424043dd7" + }, + { + "_id": "67bec7a7ea4a651424043dda", + "_tpl": "5aaf9d53e5b5b00015042a52", + "slotId": "mod_barrel", + "parentId": "67bec7a7ea4a651424043dd7" + }, + { + "_id": "67bec7a7ea4a651424043ddb", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67bec7a7ea4a651424043dd9" + }, + { + "_id": "67bec7a7ea4a651424043ddc", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec7a7ea4a651424043dd9" + }, + { + "_id": "67bec7a7ea4a651424043ddd", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec7a7ea4a651424043dd9" + }, + { + "_id": "67bec7a7ea4a651424043dde", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistolgrip", + "parentId": "67bec7a7ea4a651424043dd9" + }, + { + "_id": "67bec7a7ea4a651424043ddf", + "_tpl": "5c793fc42e221600114ca25d", + "slotId": "mod_stock", + "parentId": "67bec7a7ea4a651424043dd9" + }, + { + "_id": "67bec7a7ea4a651424043de0", + "_tpl": "5ab3afb2d8ce87001660304d", + "slotId": "mod_muzzle", + "parentId": "67bec7a7ea4a651424043dda" + }, + { + "_id": "67bec7a7ea4a651424043de1", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67bec7a7ea4a651424043ddf" + }, + { + "_id": "67bec7a7ea4a651424043de2", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec7a7ea4a651424043de1" + }, + { + "_id": "67bec7a7ea4a651424043de3", + "_tpl": "59bffc1f86f77435b128b872", + "slotId": "mod_muzzle", + "parentId": "67bec7a7ea4a651424043de0" + }, + { + "_id": "67bec7a7ea4a651424043de4", + "_tpl": "59bffbb386f77435b379b9c2", + "slotId": "mod_muzzle", + "parentId": "67bec7a7ea4a651424043de3" + } + ] + }, + { + "Id": "67bec8640100185d5349356c", + "Name": "supr vudu svd", + "Root": "67bec86bea4a65142404684c", + "Items": [ + { + "_id": "67bec86bea4a65142404684c", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec86bea4a65142404684d", + "_tpl": "6516b129609aaf354b34b3a8", + "slotId": "mod_pistol_grip", + "parentId": "67bec86bea4a65142404684c" + }, + { + "_id": "67bec86bea4a65142404684e", + "_tpl": "5c88f24b2e22160bc12c69a6", + "slotId": "mod_magazine", + "parentId": "67bec86bea4a65142404684c" + }, + { + "_id": "67bec86bea4a65142404684f", + "_tpl": "6197b229af1f5202c57a9bea", + "slotId": "mod_stock", + "parentId": "67bec86bea4a65142404684c" + }, + { + "_id": "67bec86bea4a651424046850", + "_tpl": "5c471cb32e221602b177afaa", + "slotId": "mod_barrel", + "parentId": "67bec86bea4a65142404684c" + }, + { + "_id": "67bec86bea4a651424046851", + "_tpl": "5dfcd0e547101c39625f66f9", + "slotId": "mod_mount_001", + "parentId": "67bec86bea4a65142404684c" + }, + { + "_id": "67bec86bea4a651424046852", + "_tpl": "5dfce88fe9dc277128008b2e", + "slotId": "mod_reciever", + "parentId": "67bec86bea4a65142404684c" + }, + { + "_id": "67bec86bea4a651424046853", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistolgrip", + "parentId": "67bec86bea4a65142404684d" + }, + { + "_id": "67bec86bea4a651424046854", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67bec86bea4a65142404684f" + }, + { + "_id": "67bec86bea4a651424046855", + "_tpl": "5c471bfc2e221602b21d4e17", + "slotId": "mod_muzzle", + "parentId": "67bec86bea4a651424046850" + }, + { + "_id": "67bec86bea4a651424046856", + "_tpl": "5c471c842e221615214259b5", + "slotId": "mod_gas_block", + "parentId": "67bec86bea4a651424046850" + }, + { + "_id": "67bec86bea4a651424046857", + "_tpl": "5e569a132642e66b0b68015c", + "slotId": "mod_mount", + "parentId": "67bec86bea4a651424046850" + }, + { + "_id": "67bec86bea4a651424046858", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_001", + "parentId": "67bec86bea4a651424046851" + }, + { + "_id": "67bec86bea4a651424046859", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bec86bea4a651424046851" + }, + { + "_id": "67bec86bea4a65142404685a", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bec86bea4a651424046851" + }, + { + "_id": "67bec86bea4a65142404685b", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bec86bea4a651424046854" + }, + { + "_id": "67bec86bea4a65142404685c", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec86bea4a65142404685b" + }, + { + "_id": "67bec86bea4a65142404685d", + "_tpl": "5c471ba12e221602b3137d76", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec86bea4a651424046855" + }, + { + "_id": "67bec86bea4a65142404685e", + "_tpl": "5e01e9e273d8eb11426f5bc3", + "slotId": "mod_muzzle", + "parentId": "67bec86bea4a651424046855" + }, + { + "_id": "67bec86bea4a65142404685f", + "_tpl": "5e01ea19e9dc277128008c0b", + "slotId": "mod_muzzle", + "parentId": "67bec86bea4a65142404685e" + }, + { + "_id": "67bec86bea4a651424046860", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec86bea4a651424046858" + }, + { + "_id": "67bec86bea4a651424046861", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec86bea4a651424046859" + }, + { + "_id": "67bec86bea4a651424046862", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec86bea4a651424046859" + }, + { + "_id": "67bec86bea4a651424046863", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bec86bea4a65142404685a" + } + ] + }, + { + "Id": "67bec8cb0100185d53ee762f", + "Name": "supr vudu svd v2", + "Root": "67bec8cfea4a6514240484bc", + "Items": [ + { + "_id": "67bec8cfea4a6514240484bc", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec8cfea4a6514240484bd", + "_tpl": "6516b129609aaf354b34b3a8", + "slotId": "mod_pistol_grip", + "parentId": "67bec8cfea4a6514240484bc" + }, + { + "_id": "67bec8cfea4a6514240484be", + "_tpl": "5c88f24b2e22160bc12c69a6", + "slotId": "mod_magazine", + "parentId": "67bec8cfea4a6514240484bc" + }, + { + "_id": "67bec8cfea4a6514240484bf", + "_tpl": "6197b229af1f5202c57a9bea", + "slotId": "mod_stock", + "parentId": "67bec8cfea4a6514240484bc" + }, + { + "_id": "67bec8cfea4a6514240484c0", + "_tpl": "5c471cb32e221602b177afaa", + "slotId": "mod_barrel", + "parentId": "67bec8cfea4a6514240484bc" + }, + { + "_id": "67bec8cfea4a6514240484c1", + "_tpl": "5dfcd0e547101c39625f66f9", + "slotId": "mod_mount_001", + "parentId": "67bec8cfea4a6514240484bc" + }, + { + "_id": "67bec8cfea4a6514240484c2", + "_tpl": "5dfce88fe9dc277128008b2e", + "slotId": "mod_reciever", + "parentId": "67bec8cfea4a6514240484bc" + }, + { + "_id": "67bec8cfea4a6514240484c3", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistolgrip", + "parentId": "67bec8cfea4a6514240484bd" + }, + { + "_id": "67bec8cfea4a6514240484c4", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67bec8cfea4a6514240484bf" + }, + { + "_id": "67bec8cfea4a6514240484c5", + "_tpl": "5c471bfc2e221602b21d4e17", + "slotId": "mod_muzzle", + "parentId": "67bec8cfea4a6514240484c0" + }, + { + "_id": "67bec8cfea4a6514240484c6", + "_tpl": "5c471c842e221615214259b5", + "slotId": "mod_gas_block", + "parentId": "67bec8cfea4a6514240484c0" + }, + { + "_id": "67bec8cfea4a6514240484c7", + "_tpl": "5e569a132642e66b0b68015c", + "slotId": "mod_mount", + "parentId": "67bec8cfea4a6514240484c0" + }, + { + "_id": "67bec8cfea4a6514240484c8", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_001", + "parentId": "67bec8cfea4a6514240484c1" + }, + { + "_id": "67bec8cfea4a6514240484c9", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bec8cfea4a6514240484c1" + }, + { + "_id": "67bec8cfea4a6514240484ca", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bec8cfea4a6514240484c1" + }, + { + "_id": "67bec8cfea4a6514240484cb", + "_tpl": "6516e971a3d4c6497930b450", + "slotId": "mod_stock_000", + "parentId": "67bec8cfea4a6514240484c4" + }, + { + "_id": "67bec8cfea4a6514240484cc", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67bec8cfea4a6514240484cb" + }, + { + "_id": "67bec8cfea4a6514240484cd", + "_tpl": "5c471ba12e221602b3137d76", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec8cfea4a6514240484c5" + }, + { + "_id": "67bec8cfea4a6514240484ce", + "_tpl": "5e01e9e273d8eb11426f5bc3", + "slotId": "mod_muzzle", + "parentId": "67bec8cfea4a6514240484c5" + }, + { + "_id": "67bec8cfea4a6514240484cf", + "_tpl": "5e01ea19e9dc277128008c0b", + "slotId": "mod_muzzle", + "parentId": "67bec8cfea4a6514240484ce" + }, + { + "_id": "67bec8cfea4a6514240484d0", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec8cfea4a6514240484c8" + }, + { + "_id": "67bec8cfea4a6514240484d1", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec8cfea4a6514240484c9" + }, + { + "_id": "67bec8cfea4a6514240484d2", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec8cfea4a6514240484c9" + }, + { + "_id": "67bec8cfea4a6514240484d3", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bec8cfea4a6514240484ca" + } + ] + }, + { + "Id": "67bec8fb0100185d53578d28", + "Name": "supr holo svd", + "Root": "67bec8ffea4a65142404925c", + "Items": [ + { + "_id": "67bec8ffea4a65142404925c", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec8ffea4a65142404925d", + "_tpl": "6516b129609aaf354b34b3a8", + "slotId": "mod_pistol_grip", + "parentId": "67bec8ffea4a65142404925c" + }, + { + "_id": "67bec8ffea4a65142404925e", + "_tpl": "5c88f24b2e22160bc12c69a6", + "slotId": "mod_magazine", + "parentId": "67bec8ffea4a65142404925c" + }, + { + "_id": "67bec8ffea4a65142404925f", + "_tpl": "6197b229af1f5202c57a9bea", + "slotId": "mod_stock", + "parentId": "67bec8ffea4a65142404925c" + }, + { + "_id": "67bec8ffea4a651424049260", + "_tpl": "5c471cb32e221602b177afaa", + "slotId": "mod_barrel", + "parentId": "67bec8ffea4a65142404925c" + }, + { + "_id": "67bec8ffea4a651424049261", + "_tpl": "5dfcd0e547101c39625f66f9", + "slotId": "mod_mount_001", + "parentId": "67bec8ffea4a65142404925c" + }, + { + "_id": "67bec8ffea4a651424049262", + "_tpl": "5dfce88fe9dc277128008b2e", + "slotId": "mod_reciever", + "parentId": "67bec8ffea4a65142404925c" + }, + { + "_id": "67bec8ffea4a651424049263", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistolgrip", + "parentId": "67bec8ffea4a65142404925d" + }, + { + "_id": "67bec8ffea4a651424049264", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67bec8ffea4a65142404925f" + }, + { + "_id": "67bec8ffea4a651424049265", + "_tpl": "5c471bfc2e221602b21d4e17", + "slotId": "mod_muzzle", + "parentId": "67bec8ffea4a651424049260" + }, + { + "_id": "67bec8ffea4a651424049266", + "_tpl": "5c471c842e221615214259b5", + "slotId": "mod_gas_block", + "parentId": "67bec8ffea4a651424049260" + }, + { + "_id": "67bec8ffea4a651424049267", + "_tpl": "5e569a132642e66b0b68015c", + "slotId": "mod_mount", + "parentId": "67bec8ffea4a651424049260" + }, + { + "_id": "67bec8ffea4a651424049268", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_001", + "parentId": "67bec8ffea4a651424049261" + }, + { + "_id": "67bec8ffea4a651424049269", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec8ffea4a651424049261" + }, + { + "_id": "67bec8ffea4a65142404926a", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bec8ffea4a651424049261" + }, + { + "_id": "67bec8ffea4a65142404926b", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bec8ffea4a651424049264" + }, + { + "_id": "67bec8ffea4a65142404926c", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec8ffea4a65142404926b" + }, + { + "_id": "67bec8ffea4a65142404926d", + "_tpl": "5c471ba12e221602b3137d76", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec8ffea4a651424049265" + }, + { + "_id": "67bec8ffea4a65142404926e", + "_tpl": "5e01e9e273d8eb11426f5bc3", + "slotId": "mod_muzzle", + "parentId": "67bec8ffea4a651424049265" + }, + { + "_id": "67bec8ffea4a65142404926f", + "_tpl": "5e01ea19e9dc277128008c0b", + "slotId": "mod_muzzle", + "parentId": "67bec8ffea4a65142404926e" + }, + { + "_id": "67bec8ffea4a651424049270", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec8ffea4a651424049268" + }, + { + "_id": "67bec8ffea4a651424049271", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bec8ffea4a65142404926a" + } + ] + }, + { + "Id": "67bec9580100185d53f52577", + "Name": "supr hamr svd", + "Root": "67bec95dea4a65142404a17f", + "Items": [ + { + "_id": "67bec95dea4a65142404a17f", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bec95dea4a65142404a180", + "_tpl": "6516b129609aaf354b34b3a8", + "slotId": "mod_pistol_grip", + "parentId": "67bec95dea4a65142404a17f" + }, + { + "_id": "67bec95dea4a65142404a181", + "_tpl": "5c88f24b2e22160bc12c69a6", + "slotId": "mod_magazine", + "parentId": "67bec95dea4a65142404a17f" + }, + { + "_id": "67bec95dea4a65142404a182", + "_tpl": "6197b229af1f5202c57a9bea", + "slotId": "mod_stock", + "parentId": "67bec95dea4a65142404a17f" + }, + { + "_id": "67bec95dea4a65142404a183", + "_tpl": "5c471cb32e221602b177afaa", + "slotId": "mod_barrel", + "parentId": "67bec95dea4a65142404a17f" + }, + { + "_id": "67bec95dea4a65142404a184", + "_tpl": "5dfcd0e547101c39625f66f9", + "slotId": "mod_mount_001", + "parentId": "67bec95dea4a65142404a17f" + }, + { + "_id": "67bec95dea4a65142404a185", + "_tpl": "5dfce88fe9dc277128008b2e", + "slotId": "mod_reciever", + "parentId": "67bec95dea4a65142404a17f" + }, + { + "_id": "67bec95dea4a65142404a186", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistolgrip", + "parentId": "67bec95dea4a65142404a180" + }, + { + "_id": "67bec95dea4a65142404a187", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67bec95dea4a65142404a182" + }, + { + "_id": "67bec95dea4a65142404a188", + "_tpl": "5c471bfc2e221602b21d4e17", + "slotId": "mod_muzzle", + "parentId": "67bec95dea4a65142404a183" + }, + { + "_id": "67bec95dea4a65142404a189", + "_tpl": "5c471c842e221615214259b5", + "slotId": "mod_gas_block", + "parentId": "67bec95dea4a65142404a183" + }, + { + "_id": "67bec95dea4a65142404a18a", + "_tpl": "5e569a132642e66b0b68015c", + "slotId": "mod_mount", + "parentId": "67bec95dea4a65142404a183" + }, + { + "_id": "67bec95dea4a65142404a18b", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_001", + "parentId": "67bec95dea4a65142404a184" + }, + { + "_id": "67bec95dea4a65142404a18c", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec95dea4a65142404a184" + }, + { + "_id": "67bec95dea4a65142404a18d", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67bec95dea4a65142404a184" + }, + { + "_id": "67bec95dea4a65142404a18e", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bec95dea4a65142404a187" + }, + { + "_id": "67bec95dea4a65142404a18f", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bec95dea4a65142404a18e" + }, + { + "_id": "67bec95dea4a65142404a190", + "_tpl": "5c471ba12e221602b3137d76", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec95dea4a65142404a188" + }, + { + "_id": "67bec95dea4a65142404a191", + "_tpl": "5e01e9e273d8eb11426f5bc3", + "slotId": "mod_muzzle", + "parentId": "67bec95dea4a65142404a188" + }, + { + "_id": "67bec95dea4a65142404a192", + "_tpl": "5e01ea19e9dc277128008c0b", + "slotId": "mod_muzzle", + "parentId": "67bec95dea4a65142404a191" + }, + { + "_id": "67bec95dea4a65142404a193", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bec95dea4a65142404a18b" + }, + { + "_id": "67bec95dea4a65142404a194", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bec95dea4a65142404a18c" + }, + { + "_id": "67bec95dea4a65142404a195", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bec95dea4a65142404a18d" + } + ] + }, + { + "Id": "67beca0b0100185d53d7508c", + "Name": "loud tango mk18", + "Root": "67beca13ea4a65142404ce86", + "Items": [ + { + "_id": "67beca13ea4a65142404ce86", + "_tpl": "5fc22d7c187fea44d52eda44", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67beca13ea4a65142404ce87", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67beca13ea4a65142404ce86" + }, + { + "_id": "67beca13ea4a65142404ce88", + "_tpl": "5fc23426900b1d5091531e15", + "slotId": "mod_magazine", + "parentId": "67beca13ea4a65142404ce86" + }, + { + "_id": "67beca13ea4a65142404ce89", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67beca13ea4a65142404ce86" + }, + { + "_id": "67beca13ea4a65142404ce8a", + "_tpl": "5fc278107283c4046c581489", + "slotId": "mod_reciever", + "parentId": "67beca13ea4a65142404ce86" + }, + { + "_id": "67beca13ea4a65142404ce8b", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67beca13ea4a65142404ce89" + }, + { + "_id": "67beca13ea4a65142404ce8c", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67beca13ea4a65142404ce8a" + }, + { + "_id": "67beca13ea4a65142404ce8d", + "_tpl": "5fc23678ab884124df0cd590", + "slotId": "mod_barrel", + "parentId": "67beca13ea4a65142404ce8a" + }, + { + "_id": "67beca13ea4a65142404ce8e", + "_tpl": "5fc235db2770a0045c59c683", + "slotId": "mod_handguard", + "parentId": "67beca13ea4a65142404ce8a" + }, + { + "_id": "67beca13ea4a65142404ce8f", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67beca13ea4a65142404ce8b" + }, + { + "_id": "67beca13ea4a65142404ce90", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67beca13ea4a65142404ce8c" + }, + { + "_id": "67beca13ea4a65142404ce91", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67beca13ea4a65142404ce8c" + }, + { + "_id": "67beca13ea4a65142404ce92", + "_tpl": "612e0d81290d254f5e6b291a", + "slotId": "mod_muzzle", + "parentId": "67beca13ea4a65142404ce8d" + }, + { + "_id": "67beca13ea4a65142404ce93", + "_tpl": "5fc2360f900b1d5091531e19", + "slotId": "mod_gas_block", + "parentId": "67beca13ea4a65142404ce8d" + }, + { + "_id": "67beca13ea4a65142404ce94", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67beca13ea4a65142404ce8e" + }, + { + "_id": "67beca13ea4a65142404ce95", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67beca13ea4a65142404ce8e" + }, + { + "_id": "67beca13ea4a65142404ce96", + "_tpl": "612e0e04568c120fdd294258", + "slotId": "mod_muzzle", + "parentId": "67beca13ea4a65142404ce92" + }, + { + "_id": "67beca13ea4a65142404ce97", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67beca13ea4a65142404ce94" + }, + { + "_id": "67beca13ea4a65142404ce98", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67beca13ea4a65142404ce95" + } + ] + }, + { + "Id": "67beca600100185d53e7dbcf", + "Name": "loud vudu mk18", + "Root": "67beca81ea4a65142404ea6b", + "Items": [ + { + "_id": "67beca81ea4a65142404ea6b", + "_tpl": "5fc22d7c187fea44d52eda44", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67beca81ea4a65142404ea6c", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67beca81ea4a65142404ea6b" + }, + { + "_id": "67beca81ea4a65142404ea6d", + "_tpl": "5fc23426900b1d5091531e15", + "slotId": "mod_magazine", + "parentId": "67beca81ea4a65142404ea6b" + }, + { + "_id": "67beca81ea4a65142404ea6e", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67beca81ea4a65142404ea6b" + }, + { + "_id": "67beca81ea4a65142404ea6f", + "_tpl": "5fc278107283c4046c581489", + "slotId": "mod_reciever", + "parentId": "67beca81ea4a65142404ea6b" + }, + { + "_id": "67beca81ea4a65142404ea70", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67beca81ea4a65142404ea6e" + }, + { + "_id": "67beca81ea4a65142404ea71", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67beca81ea4a65142404ea6f" + }, + { + "_id": "67beca81ea4a65142404ea72", + "_tpl": "5fc23678ab884124df0cd590", + "slotId": "mod_barrel", + "parentId": "67beca81ea4a65142404ea6f" + }, + { + "_id": "67beca81ea4a65142404ea73", + "_tpl": "5fc235db2770a0045c59c683", + "slotId": "mod_handguard", + "parentId": "67beca81ea4a65142404ea6f" + }, + { + "_id": "67beca81ea4a65142404ea74", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67beca81ea4a65142404ea70" + }, + { + "_id": "67beca81ea4a65142404ea75", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67beca81ea4a65142404ea71" + }, + { + "_id": "67beca81ea4a65142404ea76", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67beca81ea4a65142404ea71" + }, + { + "_id": "67beca81ea4a65142404ea77", + "_tpl": "612e0d81290d254f5e6b291a", + "slotId": "mod_muzzle", + "parentId": "67beca81ea4a65142404ea72" + }, + { + "_id": "67beca81ea4a65142404ea78", + "_tpl": "5fc2360f900b1d5091531e19", + "slotId": "mod_gas_block", + "parentId": "67beca81ea4a65142404ea72" + }, + { + "_id": "67beca81ea4a65142404ea79", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67beca81ea4a65142404ea73" + }, + { + "_id": "67beca81ea4a65142404ea7a", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67beca81ea4a65142404ea73" + }, + { + "_id": "67beca81ea4a65142404ea7b", + "_tpl": "612e0e04568c120fdd294258", + "slotId": "mod_muzzle", + "parentId": "67beca81ea4a65142404ea77" + }, + { + "_id": "67beca81ea4a65142404ea7c", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67beca81ea4a65142404ea79" + }, + { + "_id": "67beca81ea4a65142404ea7d", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67beca81ea4a65142404ea7a" + } + ] + }, + { + "Id": "67becb0d0100185d5371a118", + "Name": "loud holo rsass", + "Root": "67becb15ea4a6514240516d0", + "Items": [ + { + "_id": "67becb15ea4a6514240516d0", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67becb15ea4a6514240516d1", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67becb15ea4a6514240516d0" + }, + { + "_id": "67becb15ea4a6514240516d2", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67becb15ea4a6514240516d0" + }, + { + "_id": "67becb15ea4a6514240516d3", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67becb15ea4a6514240516d0" + }, + { + "_id": "67becb15ea4a6514240516d4", + "_tpl": "5a329052c4a28200741e22d3", + "slotId": "mod_handguard", + "parentId": "67becb15ea4a6514240516d0" + }, + { + "_id": "67becb15ea4a6514240516d5", + "_tpl": "5a34fae7c4a2826c6e06d760", + "slotId": "mod_barrel", + "parentId": "67becb15ea4a6514240516d0" + }, + { + "_id": "67becb15ea4a6514240516d6", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67becb15ea4a6514240516d0" + }, + { + "_id": "67becb15ea4a6514240516d7", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67becb15ea4a6514240516d3" + }, + { + "_id": "67becb15ea4a6514240516d8", + "_tpl": "5c0102b20db834001d23eebc", + "slotId": "mod_foregrip", + "parentId": "67becb15ea4a6514240516d4" + }, + { + "_id": "67becb15ea4a6514240516d9", + "_tpl": "5c0102aa0db834001b734ba1", + "slotId": "mod_mount_002", + "parentId": "67becb15ea4a6514240516d4" + }, + { + "_id": "67becb15ea4a6514240516da", + "_tpl": "5cf78496d7f00c065703d6ca", + "slotId": "mod_muzzle", + "parentId": "67becb15ea4a6514240516d5" + }, + { + "_id": "67becb15ea4a6514240516db", + "_tpl": "5a34fbadc4a28200741e230a", + "slotId": "mod_gas_block", + "parentId": "67becb15ea4a6514240516d5" + }, + { + "_id": "67becb15ea4a6514240516dc", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67becb15ea4a6514240516d7" + }, + { + "_id": "67becb15ea4a6514240516dd", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67becb15ea4a6514240516d8" + }, + { + "_id": "67becb15ea4a6514240516de", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67becb15ea4a6514240516d9" + }, + { + "_id": "67becb15ea4a6514240516df", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle_000", + "parentId": "67becb15ea4a6514240516da" + }, + { + "_id": "67becb15ea4a6514240516e0", + "_tpl": "5cf78720d7f00c06595bc93e", + "slotId": "mod_muzzle_001", + "parentId": "67becb15ea4a6514240516da" + } + ] + }, + { + "Id": "67becb300100185d537c19c5", + "Name": "loud razor rsass", + "Root": "67becb35ea4a651424052448", + "Items": [ + { + "_id": "67becb35ea4a651424052448", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67becb35ea4a651424052449", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67becb35ea4a651424052448" + }, + { + "_id": "67becb35ea4a65142405244a", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67becb35ea4a651424052448" + }, + { + "_id": "67becb35ea4a65142405244b", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67becb35ea4a651424052448" + }, + { + "_id": "67becb35ea4a65142405244c", + "_tpl": "5a329052c4a28200741e22d3", + "slotId": "mod_handguard", + "parentId": "67becb35ea4a651424052448" + }, + { + "_id": "67becb35ea4a65142405244d", + "_tpl": "5a34fae7c4a2826c6e06d760", + "slotId": "mod_barrel", + "parentId": "67becb35ea4a651424052448" + }, + { + "_id": "67becb35ea4a65142405244e", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67becb35ea4a651424052448" + }, + { + "_id": "67becb35ea4a65142405244f", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67becb35ea4a65142405244b" + }, + { + "_id": "67becb35ea4a651424052450", + "_tpl": "5c0102b20db834001d23eebc", + "slotId": "mod_foregrip", + "parentId": "67becb35ea4a65142405244c" + }, + { + "_id": "67becb35ea4a651424052451", + "_tpl": "5c0102aa0db834001b734ba1", + "slotId": "mod_mount_002", + "parentId": "67becb35ea4a65142405244c" + }, + { + "_id": "67becb35ea4a651424052452", + "_tpl": "5cf78496d7f00c065703d6ca", + "slotId": "mod_muzzle", + "parentId": "67becb35ea4a65142405244d" + }, + { + "_id": "67becb35ea4a651424052453", + "_tpl": "5a34fbadc4a28200741e230a", + "slotId": "mod_gas_block", + "parentId": "67becb35ea4a65142405244d" + }, + { + "_id": "67becb35ea4a651424052454", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67becb35ea4a65142405244e" + }, + { + "_id": "67becb35ea4a651424052455", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67becb35ea4a65142405244f" + }, + { + "_id": "67becb35ea4a651424052456", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67becb35ea4a651424052450" + }, + { + "_id": "67becb35ea4a651424052457", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67becb35ea4a651424052451" + }, + { + "_id": "67becb35ea4a651424052458", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle_000", + "parentId": "67becb35ea4a651424052452" + }, + { + "_id": "67becb35ea4a651424052459", + "_tpl": "5cf78720d7f00c06595bc93e", + "slotId": "mod_muzzle_001", + "parentId": "67becb35ea4a651424052452" + } + ] + }, + { + "Id": "67becb630100185d537e747d", + "Name": "supr vudu rsass", + "Root": "67becb69ea4a651424053296", + "Items": [ + { + "_id": "67becb69ea4a651424053296", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67becb69ea4a651424053297", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67becb69ea4a651424053296" + }, + { + "_id": "67becb69ea4a651424053298", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67becb69ea4a651424053296" + }, + { + "_id": "67becb69ea4a651424053299", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67becb69ea4a651424053296" + }, + { + "_id": "67becb69ea4a65142405329a", + "_tpl": "5a329052c4a28200741e22d3", + "slotId": "mod_handguard", + "parentId": "67becb69ea4a651424053296" + }, + { + "_id": "67becb69ea4a65142405329b", + "_tpl": "5a34fae7c4a2826c6e06d760", + "slotId": "mod_barrel", + "parentId": "67becb69ea4a651424053296" + }, + { + "_id": "67becb69ea4a65142405329c", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67becb69ea4a651424053296" + }, + { + "_id": "67becb69ea4a65142405329d", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67becb69ea4a651424053299" + }, + { + "_id": "67becb69ea4a65142405329e", + "_tpl": "5c0102b20db834001d23eebc", + "slotId": "mod_foregrip", + "parentId": "67becb69ea4a65142405329a" + }, + { + "_id": "67becb69ea4a65142405329f", + "_tpl": "5c0102aa0db834001b734ba1", + "slotId": "mod_mount_002", + "parentId": "67becb69ea4a65142405329a" + }, + { + "_id": "67becb69ea4a6514240532a0", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67becb69ea4a65142405329b" + }, + { + "_id": "67becb69ea4a6514240532a1", + "_tpl": "5a34fbadc4a28200741e230a", + "slotId": "mod_gas_block", + "parentId": "67becb69ea4a65142405329b" + }, + { + "_id": "67becb69ea4a6514240532a2", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67becb69ea4a65142405329c" + }, + { + "_id": "67becb69ea4a6514240532a3", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67becb69ea4a65142405329d" + }, + { + "_id": "67becb69ea4a6514240532a4", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67becb69ea4a65142405329e" + }, + { + "_id": "67becb69ea4a6514240532a5", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67becb69ea4a65142405329f" + }, + { + "_id": "67becb69ea4a6514240532a6", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67becb69ea4a6514240532a0" + } + ] + }, + { + "Id": "67becb7e0100185d53ae788e", + "Name": "supr vudu rsass v2", + "Root": "67becb9aea4a65142405410c", + "Items": [ + { + "_id": "67becb9aea4a65142405410c", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67becb9aea4a65142405410d", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67becb9aea4a65142405410c" + }, + { + "_id": "67becb9aea4a65142405410e", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67becb9aea4a65142405410c" + }, + { + "_id": "67becb9aea4a65142405410f", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67becb9aea4a65142405410c" + }, + { + "_id": "67becb9aea4a651424054110", + "_tpl": "5a329052c4a28200741e22d3", + "slotId": "mod_handguard", + "parentId": "67becb9aea4a65142405410c" + }, + { + "_id": "67becb9aea4a651424054111", + "_tpl": "5a34fae7c4a2826c6e06d760", + "slotId": "mod_barrel", + "parentId": "67becb9aea4a65142405410c" + }, + { + "_id": "67becb9aea4a651424054112", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67becb9aea4a65142405410c" + }, + { + "_id": "67becb9aea4a651424054113", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67becb9aea4a65142405410f" + }, + { + "_id": "67becb9aea4a651424054114", + "_tpl": "5c0102b20db834001d23eebc", + "slotId": "mod_foregrip", + "parentId": "67becb9aea4a651424054110" + }, + { + "_id": "67becb9aea4a651424054115", + "_tpl": "5c0102aa0db834001b734ba1", + "slotId": "mod_mount_002", + "parentId": "67becb9aea4a651424054110" + }, + { + "_id": "67becb9aea4a651424054116", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67becb9aea4a651424054111" + }, + { + "_id": "67becb9aea4a651424054117", + "_tpl": "5a34fbadc4a28200741e230a", + "slotId": "mod_gas_block", + "parentId": "67becb9aea4a651424054111" + }, + { + "_id": "67becb9aea4a651424054118", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67becb9aea4a651424054112" + }, + { + "_id": "67becb9aea4a651424054119", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67becb9aea4a651424054113" + }, + { + "_id": "67becb9aea4a65142405411a", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67becb9aea4a651424054114" + }, + { + "_id": "67becb9aea4a65142405411b", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67becb9aea4a651424054115" + }, + { + "_id": "67becb9aea4a65142405411c", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67becb9aea4a651424054116" + } + ] + }, + { + "Id": "67bf99600100185d5387c5b4", + "Name": "supr dvl", + "Root": "67bf9967d9670a06ec038253", + "Items": [ + { + "_id": "67bf9967d9670a06ec038253", + "_tpl": "588892092459774ac91d4b11", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9967d9670a06ec038254", + "_tpl": "5888988e24597752fe43a6fa", + "slotId": "mod_magazine", + "parentId": "67bf9967d9670a06ec038253" + }, + { + "_id": "67bf9967d9670a06ec038255", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67bf9967d9670a06ec038253" + }, + { + "_id": "67bf9967d9670a06ec038256", + "_tpl": "5888945a2459774bf43ba385", + "slotId": "mod_barrel", + "parentId": "67bf9967d9670a06ec038253" + }, + { + "_id": "67bf9967d9670a06ec038257", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistol_grip", + "parentId": "67bf9967d9670a06ec038253" + }, + { + "_id": "67bf9967d9670a06ec038258", + "_tpl": "58889d0c2459775bc215d981", + "slotId": "mod_stock", + "parentId": "67bf9967d9670a06ec038253" + }, + { + "_id": "67bf9967d9670a06ec038259", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9967d9670a06ec038255" + }, + { + "_id": "67bf9967d9670a06ec03825a", + "_tpl": "58889c7324597754281f9439", + "slotId": "mod_muzzle", + "parentId": "67bf9967d9670a06ec038256" + }, + { + "_id": "67bf9967d9670a06ec03825b", + "_tpl": "5888961624597754281f93f3", + "slotId": "mod_bipod", + "parentId": "67bf9967d9670a06ec038256" + } + ] + }, + { + "Id": "67bf997a0100185d530479ab", + "Name": "supr razor dvl", + "Root": "67bf997fd9670a06ec038261", + "Items": [ + { + "_id": "67bf997fd9670a06ec038261", + "_tpl": "588892092459774ac91d4b11", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf997fd9670a06ec038262", + "_tpl": "5888988e24597752fe43a6fa", + "slotId": "mod_magazine", + "parentId": "67bf997fd9670a06ec038261" + }, + { + "_id": "67bf997fd9670a06ec038263", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67bf997fd9670a06ec038261" + }, + { + "_id": "67bf997fd9670a06ec038264", + "_tpl": "5888945a2459774bf43ba385", + "slotId": "mod_barrel", + "parentId": "67bf997fd9670a06ec038261" + }, + { + "_id": "67bf997fd9670a06ec038265", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistol_grip", + "parentId": "67bf997fd9670a06ec038261" + }, + { + "_id": "67bf997fd9670a06ec038266", + "_tpl": "58889d0c2459775bc215d981", + "slotId": "mod_stock", + "parentId": "67bf997fd9670a06ec038261" + }, + { + "_id": "67bf997fd9670a06ec038267", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf997fd9670a06ec038263" + }, + { + "_id": "67bf997fd9670a06ec038268", + "_tpl": "58889c7324597754281f9439", + "slotId": "mod_muzzle", + "parentId": "67bf997fd9670a06ec038264" + }, + { + "_id": "67bf997fd9670a06ec038269", + "_tpl": "5888961624597754281f93f3", + "slotId": "mod_bipod", + "parentId": "67bf997fd9670a06ec038264" + } + ] + }, + { + "Id": "67bf99950100185d53d7083b", + "Name": "supr tango dvl", + "Root": "67bf999ad9670a06ec038299", + "Items": [ + { + "_id": "67bf999ad9670a06ec038299", + "_tpl": "588892092459774ac91d4b11", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf999ad9670a06ec03829a", + "_tpl": "5888988e24597752fe43a6fa", + "slotId": "mod_magazine", + "parentId": "67bf999ad9670a06ec038299" + }, + { + "_id": "67bf999ad9670a06ec03829b", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67bf999ad9670a06ec038299" + }, + { + "_id": "67bf999ad9670a06ec03829c", + "_tpl": "5888945a2459774bf43ba385", + "slotId": "mod_barrel", + "parentId": "67bf999ad9670a06ec038299" + }, + { + "_id": "67bf999ad9670a06ec03829d", + "_tpl": "6113cc78d3a39d50044c065a", + "slotId": "mod_pistol_grip", + "parentId": "67bf999ad9670a06ec038299" + }, + { + "_id": "67bf999ad9670a06ec03829e", + "_tpl": "58889d0c2459775bc215d981", + "slotId": "mod_stock", + "parentId": "67bf999ad9670a06ec038299" + }, + { + "_id": "67bf999ad9670a06ec03829f", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf999ad9670a06ec03829b" + }, + { + "_id": "67bf999ad9670a06ec0382a0", + "_tpl": "58889c7324597754281f9439", + "slotId": "mod_muzzle", + "parentId": "67bf999ad9670a06ec03829c" + } + ] + }, + { + "Id": "67bf9a040100185d535d346b", + "Name": "supr vudu orsis", + "Root": "67bf9a0cd9670a06ec0382a5", + "Items": [ + { + "_id": "67bf9a0cd9670a06ec0382a5", + "_tpl": "5df24cf80dee1b22f862e9bc", + "upd": { + "PinLockState": "Pinned", + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9a0cd9670a06ec0382a6", + "_tpl": "5df25b6c0b92095fd441e4cf", + "slotId": "mod_magazine", + "parentId": "67bf9a0cd9670a06ec0382a5" + }, + { + "_id": "67bf9a0cd9670a06ec0382a7", + "_tpl": "5df256570dee1b22f862e9c4", + "slotId": "mod_barrel", + "parentId": "67bf9a0cd9670a06ec0382a5" + }, + { + "_id": "67bf9a0cd9670a06ec0382a8", + "_tpl": "5df35e59c41b2312ea3334d5", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67bf9a0cd9670a06ec0382a5" + }, + { + "_id": "67bf9a0cd9670a06ec0382a9", + "_tpl": "5df35e970b92095fd441e4d2", + "slotId": "mod_mount", + "parentId": "67bf9a0cd9670a06ec0382a5" + }, + { + "_id": "67bf9a0cd9670a06ec0382aa", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bf9a0cd9670a06ec0382a7" + }, + { + "_id": "67bf9a0cd9670a06ec0382ab", + "_tpl": "5df25d3bfd6b4e6e2276dc9a", + "slotId": "mod_handguard", + "parentId": "67bf9a0cd9670a06ec0382a8" + }, + { + "_id": "67bf9a0cd9670a06ec0382ac", + "_tpl": "5df38a5fb74cd90030650cb6", + "slotId": "mod_pistol_grip", + "parentId": "67bf9a0cd9670a06ec0382a8" + }, + { + "_id": "67bf9a0cd9670a06ec0382ad", + "_tpl": "5df35ddddfc58d14537c2036", + "slotId": "mod_stock_axis", + "parentId": "67bf9a0cd9670a06ec0382a8" + }, + { + "_id": "67bf9a0cd9670a06ec0382ae", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bf9a0cd9670a06ec0382a9" + }, + { + "_id": "67bf9a0cd9670a06ec0382af", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bf9a0cd9670a06ec0382aa" + }, + { + "_id": "67bf9a0cd9670a06ec0382b0", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_000", + "parentId": "67bf9a0cd9670a06ec0382ab" + }, + { + "_id": "67bf9a0cd9670a06ec0382b1", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_001", + "parentId": "67bf9a0cd9670a06ec0382ab" + }, + { + "_id": "67bf9a0cd9670a06ec0382b2", + "_tpl": "5df35ea9c41b2312ea3334d8", + "slotId": "mod_mount_002", + "parentId": "67bf9a0cd9670a06ec0382ab" + }, + { + "_id": "67bf9a0cd9670a06ec0382b3", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_003", + "parentId": "67bf9a0cd9670a06ec0382ab" + }, + { + "_id": "67bf9a0cd9670a06ec0382b4", + "_tpl": "5df36948bb49d91fb446d5ad", + "slotId": "mod_foregrip", + "parentId": "67bf9a0cd9670a06ec0382ab" + }, + { + "_id": "67bf9a0cd9670a06ec0382b5", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9a0cd9670a06ec0382b0" + }, + { + "_id": "67bf9a0cd9670a06ec0382b6", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9a0cd9670a06ec0382ae" + }, + { + "_id": "67bf9a0cd9670a06ec0382b7", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9a0cd9670a06ec0382ae" + } + ] + }, + { + "Id": "67bf9a250100185d53f1c6b8", + "Name": "supr razor orsis", + "Root": "67bf9a2bd9670a06ec0382bc", + "Items": [ + { + "_id": "67bf9a2bd9670a06ec0382bc", + "_tpl": "5df24cf80dee1b22f862e9bc", + "upd": { + "PinLockState": "Pinned", + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9a2bd9670a06ec0382bd", + "_tpl": "5df25b6c0b92095fd441e4cf", + "slotId": "mod_magazine", + "parentId": "67bf9a2bd9670a06ec0382bc" + }, + { + "_id": "67bf9a2bd9670a06ec0382be", + "_tpl": "5df256570dee1b22f862e9c4", + "slotId": "mod_barrel", + "parentId": "67bf9a2bd9670a06ec0382bc" + }, + { + "_id": "67bf9a2bd9670a06ec0382bf", + "_tpl": "5df35e59c41b2312ea3334d5", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67bf9a2bd9670a06ec0382bc" + }, + { + "_id": "67bf9a2bd9670a06ec0382c0", + "_tpl": "5df35e970b92095fd441e4d2", + "slotId": "mod_mount", + "parentId": "67bf9a2bd9670a06ec0382bc" + }, + { + "_id": "67bf9a2bd9670a06ec0382c1", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bf9a2bd9670a06ec0382be" + }, + { + "_id": "67bf9a2bd9670a06ec0382c2", + "_tpl": "5df25d3bfd6b4e6e2276dc9a", + "slotId": "mod_handguard", + "parentId": "67bf9a2bd9670a06ec0382bf" + }, + { + "_id": "67bf9a2bd9670a06ec0382c3", + "_tpl": "5df38a5fb74cd90030650cb6", + "slotId": "mod_pistol_grip", + "parentId": "67bf9a2bd9670a06ec0382bf" + }, + { + "_id": "67bf9a2bd9670a06ec0382c4", + "_tpl": "5df35ddddfc58d14537c2036", + "slotId": "mod_stock_axis", + "parentId": "67bf9a2bd9670a06ec0382bf" + }, + { + "_id": "67bf9a2bd9670a06ec0382c5", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bf9a2bd9670a06ec0382c0" + }, + { + "_id": "67bf9a2bd9670a06ec0382c6", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bf9a2bd9670a06ec0382c1" + }, + { + "_id": "67bf9a2bd9670a06ec0382c7", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_000", + "parentId": "67bf9a2bd9670a06ec0382c2" + }, + { + "_id": "67bf9a2bd9670a06ec0382c8", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_001", + "parentId": "67bf9a2bd9670a06ec0382c2" + }, + { + "_id": "67bf9a2bd9670a06ec0382c9", + "_tpl": "5df35ea9c41b2312ea3334d8", + "slotId": "mod_mount_002", + "parentId": "67bf9a2bd9670a06ec0382c2" + }, + { + "_id": "67bf9a2bd9670a06ec0382ca", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_003", + "parentId": "67bf9a2bd9670a06ec0382c2" + }, + { + "_id": "67bf9a2bd9670a06ec0382cb", + "_tpl": "5df36948bb49d91fb446d5ad", + "slotId": "mod_foregrip", + "parentId": "67bf9a2bd9670a06ec0382c2" + }, + { + "_id": "67bf9a2bd9670a06ec0382cc", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9a2bd9670a06ec0382c7" + }, + { + "_id": "67bf9a2bd9670a06ec0382cd", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9a2bd9670a06ec0382c5" + }, + { + "_id": "67bf9a2bd9670a06ec0382ce", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9a2bd9670a06ec0382c5" + } + ] + }, + { + "Id": "67bf9a980100185d53737a3c", + "Name": "supr vudu m700", + "Root": "67bf9aa1d9670a06ec0392e7", + "Items": [ + { + "_id": "67bf9aa1d9670a06ec0392e7", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9aa1d9670a06ec0392e8", + "_tpl": "5d25a7b88abbc3054f3e60bc", + "slotId": "mod_magazine", + "parentId": "67bf9aa1d9670a06ec0392e7" + }, + { + "_id": "67bf9aa1d9670a06ec0392e9", + "_tpl": "5d25d0ac8abbc3054f3e61f7", + "slotId": "mod_stock", + "parentId": "67bf9aa1d9670a06ec0392e7" + }, + { + "_id": "67bf9aa1d9670a06ec0392ea", + "_tpl": "5bfebc320db8340019668d79", + "slotId": "mod_barrel", + "parentId": "67bf9aa1d9670a06ec0392e7" + }, + { + "_id": "67bf9aa1d9670a06ec0392eb", + "_tpl": "5bfebc5e0db834001a6694e5", + "slotId": "mod_mount", + "parentId": "67bf9aa1d9670a06ec0392e7" + }, + { + "_id": "67bf9aa1d9670a06ec0392ec", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bf9aa1d9670a06ec0392ea" + }, + { + "_id": "67bf9aa1d9670a06ec0392ed", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9aa1d9670a06ec0392eb" + }, + { + "_id": "67bf9aa1d9670a06ec0392ee", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bf9aa1d9670a06ec0392ec" + } + ] + }, + { + "Id": "67bf9aca0100185d53e8be4d", + "Name": "supr vudu m700 v2", + "Root": "67bf9aced9670a06ec03a299", + "Items": [ + { + "_id": "67bf9aced9670a06ec03a299", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9aced9670a06ec03a29a", + "_tpl": "5ce69cbad7f00c00b61c5098", + "slotId": "mod_magazine", + "parentId": "67bf9aced9670a06ec03a299" + }, + { + "_id": "67bf9aced9670a06ec03a29b", + "_tpl": "5d25d0ac8abbc3054f3e61f7", + "slotId": "mod_stock", + "parentId": "67bf9aced9670a06ec03a299" + }, + { + "_id": "67bf9aced9670a06ec03a29c", + "_tpl": "5bfebc320db8340019668d79", + "slotId": "mod_barrel", + "parentId": "67bf9aced9670a06ec03a299" + }, + { + "_id": "67bf9aced9670a06ec03a29d", + "_tpl": "5bfebc5e0db834001a6694e5", + "slotId": "mod_mount", + "parentId": "67bf9aced9670a06ec03a299" + }, + { + "_id": "67bf9aced9670a06ec03a29e", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bf9aced9670a06ec03a29c" + }, + { + "_id": "67bf9aced9670a06ec03a29f", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9aced9670a06ec03a29d" + }, + { + "_id": "67bf9aced9670a06ec03a2a0", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bf9aced9670a06ec03a29e" + } + ] + }, + { + "Id": "67bf9ada0100185d537138ff", + "Name": "supr tango m700", + "Root": "67bf9ae1d9670a06ec03a2a7", + "Items": [ + { + "_id": "67bf9ae1d9670a06ec03a2a7", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9ae1d9670a06ec03a2a8", + "_tpl": "5ce69cbad7f00c00b61c5098", + "slotId": "mod_magazine", + "parentId": "67bf9ae1d9670a06ec03a2a7" + }, + { + "_id": "67bf9ae1d9670a06ec03a2a9", + "_tpl": "5d25d0ac8abbc3054f3e61f7", + "slotId": "mod_stock", + "parentId": "67bf9ae1d9670a06ec03a2a7" + }, + { + "_id": "67bf9ae1d9670a06ec03a2aa", + "_tpl": "5bfebc320db8340019668d79", + "slotId": "mod_barrel", + "parentId": "67bf9ae1d9670a06ec03a2a7" + }, + { + "_id": "67bf9ae1d9670a06ec03a2ab", + "_tpl": "5bfebc5e0db834001a6694e5", + "slotId": "mod_mount", + "parentId": "67bf9ae1d9670a06ec03a2a7" + }, + { + "_id": "67bf9ae1d9670a06ec03a2ac", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bf9ae1d9670a06ec03a2aa" + }, + { + "_id": "67bf9ae1d9670a06ec03a2ad", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9ae1d9670a06ec03a2ab" + }, + { + "_id": "67bf9ae1d9670a06ec03a2ae", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bf9ae1d9670a06ec03a2ac" + } + ] + }, + { + "Id": "67bf9b0b0100185d53e77898", + "Name": "supr razor m700", + "Root": "67bf9b10d9670a06ec03b17f", + "Items": [ + { + "_id": "67bf9b10d9670a06ec03b17f", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9b10d9670a06ec03b180", + "_tpl": "5ce69cbad7f00c00b61c5098", + "slotId": "mod_magazine", + "parentId": "67bf9b10d9670a06ec03b17f" + }, + { + "_id": "67bf9b10d9670a06ec03b181", + "_tpl": "5d25d0ac8abbc3054f3e61f7", + "slotId": "mod_stock", + "parentId": "67bf9b10d9670a06ec03b17f" + }, + { + "_id": "67bf9b10d9670a06ec03b182", + "_tpl": "5bfebc320db8340019668d79", + "slotId": "mod_barrel", + "parentId": "67bf9b10d9670a06ec03b17f" + }, + { + "_id": "67bf9b10d9670a06ec03b183", + "_tpl": "65f064eec4da400cbb0dc1fe", + "slotId": "mod_mount", + "parentId": "67bf9b10d9670a06ec03b17f" + }, + { + "_id": "67bf9b10d9670a06ec03b184", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67bf9b10d9670a06ec03b182" + }, + { + "_id": "67bf9b10d9670a06ec03b185", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bf9b10d9670a06ec03b183" + }, + { + "_id": "67bf9b10d9670a06ec03b186", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67bf9b10d9670a06ec03b184" + }, + { + "_id": "67bf9b10d9670a06ec03b187", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9b10d9670a06ec03b185" + }, + { + "_id": "67bf9b10d9670a06ec03b188", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9b10d9670a06ec03b185" + } + ] + }, + { + "Id": "67bf9b7e0100185d53f7ec75", + "Name": "supr vudu sv98", + "Root": "67bf9b86d9670a06ec03bf9e", + "Items": [ + { + "_id": "67bf9b86d9670a06ec03bf9e", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9b86d9670a06ec03bf9f", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "slotId": "mod_magazine", + "parentId": "67bf9b86d9670a06ec03bf9e" + }, + { + "_id": "67bf9b86d9670a06ec03bfa0", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bf9b86d9670a06ec03bf9e" + }, + { + "_id": "67bf9b86d9670a06ec03bfa1", + "_tpl": "5c4eec9b2e2216398b5aaba2", + "slotId": "mod_muzzle", + "parentId": "67bf9b86d9670a06ec03bf9e" + }, + { + "_id": "67bf9b86d9670a06ec03bfa2", + "_tpl": "623b2e9d11c3296b440d1638", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67bf9b86d9670a06ec03bf9e" + }, + { + "_id": "67bf9b86d9670a06ec03bfa3", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9b86d9670a06ec03bfa0" + }, + { + "_id": "67bf9b86d9670a06ec03bfa4", + "_tpl": "5c4eecc32e221602b412b440", + "slotId": "mod_muzzle", + "parentId": "67bf9b86d9670a06ec03bfa1" + }, + { + "_id": "67bf9b86d9670a06ec03bfa5", + "_tpl": "623c3c1f37b4b31470357737", + "slotId": "mod_handguard", + "parentId": "67bf9b86d9670a06ec03bfa2" + }, + { + "_id": "67bf9b86d9670a06ec03bfa6", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bf9b86d9670a06ec03bfa2" + }, + { + "_id": "67bf9b86d9670a06ec03bfa7", + "_tpl": "624c29ce09cd027dff2f8cd7", + "slotId": "mod_stock_000", + "parentId": "67bf9b86d9670a06ec03bfa2" + }, + { + "_id": "67bf9b86d9670a06ec03bfa8", + "_tpl": "623c2f4242aee3103f1c44b7", + "slotId": "mod_mount_000", + "parentId": "67bf9b86d9670a06ec03bfa5" + }, + { + "_id": "67bf9b86d9670a06ec03bfa9", + "_tpl": "623c2f652febb22c2777d8d7", + "slotId": "mod_mount_001", + "parentId": "67bf9b86d9670a06ec03bfa5" + }, + { + "_id": "67bf9b86d9670a06ec03bfaa", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9b86d9670a06ec03bfa9" + } + ] + }, + { + "Id": "67bf9ba30100185d534fcfbf", + "Name": "supr pmII sv98", + "Root": "67bf9baad9670a06ec03cece", + "Items": [ + { + "_id": "67bf9baad9670a06ec03cece", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9baad9670a06ec03cecf", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "slotId": "mod_magazine", + "parentId": "67bf9baad9670a06ec03cece" + }, + { + "_id": "67bf9baad9670a06ec03ced0", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bf9baad9670a06ec03cece" + }, + { + "_id": "67bf9baad9670a06ec03ced1", + "_tpl": "5c4eec9b2e2216398b5aaba2", + "slotId": "mod_muzzle", + "parentId": "67bf9baad9670a06ec03cece" + }, + { + "_id": "67bf9baad9670a06ec03ced2", + "_tpl": "623b2e9d11c3296b440d1638", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67bf9baad9670a06ec03cece" + }, + { + "_id": "67bf9baad9670a06ec03ced3", + "_tpl": "617151c1d92c473c770214ab", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9baad9670a06ec03ced0" + }, + { + "_id": "67bf9baad9670a06ec03ced4", + "_tpl": "5c4eecc32e221602b412b440", + "slotId": "mod_muzzle", + "parentId": "67bf9baad9670a06ec03ced1" + }, + { + "_id": "67bf9baad9670a06ec03ced5", + "_tpl": "623c3c1f37b4b31470357737", + "slotId": "mod_handguard", + "parentId": "67bf9baad9670a06ec03ced2" + }, + { + "_id": "67bf9baad9670a06ec03ced6", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bf9baad9670a06ec03ced2" + }, + { + "_id": "67bf9baad9670a06ec03ced7", + "_tpl": "624c29ce09cd027dff2f8cd7", + "slotId": "mod_stock_000", + "parentId": "67bf9baad9670a06ec03ced2" + }, + { + "_id": "67bf9baad9670a06ec03ced8", + "_tpl": "623c2f4242aee3103f1c44b7", + "slotId": "mod_mount_000", + "parentId": "67bf9baad9670a06ec03ced5" + }, + { + "_id": "67bf9baad9670a06ec03ced9", + "_tpl": "623c2f652febb22c2777d8d7", + "slotId": "mod_mount_001", + "parentId": "67bf9baad9670a06ec03ced5" + }, + { + "_id": "67bf9baad9670a06ec03ceda", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9baad9670a06ec03ced9" + } + ] + }, + { + "Id": "67bf9bca0100185d534a5ecf", + "Name": "loud razor sv98", + "Root": "67bf9bd0d9670a06ec03ceeb", + "Items": [ + { + "_id": "67bf9bd0d9670a06ec03ceeb", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9bd0d9670a06ec03ceec", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "slotId": "mod_magazine", + "parentId": "67bf9bd0d9670a06ec03ceeb" + }, + { + "_id": "67bf9bd0d9670a06ec03ceed", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bf9bd0d9670a06ec03ceeb" + }, + { + "_id": "67bf9bd0d9670a06ec03ceee", + "_tpl": "5c4ee3d62e2216152006f302", + "slotId": "mod_muzzle", + "parentId": "67bf9bd0d9670a06ec03ceeb" + }, + { + "_id": "67bf9bd0d9670a06ec03ceef", + "_tpl": "623b2e9d11c3296b440d1638", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67bf9bd0d9670a06ec03ceeb" + }, + { + "_id": "67bf9bd0d9670a06ec03cef0", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9bd0d9670a06ec03ceed" + }, + { + "_id": "67bf9bd0d9670a06ec03cef1", + "_tpl": "623c3c1f37b4b31470357737", + "slotId": "mod_handguard", + "parentId": "67bf9bd0d9670a06ec03ceef" + }, + { + "_id": "67bf9bd0d9670a06ec03cef2", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bf9bd0d9670a06ec03ceef" + }, + { + "_id": "67bf9bd0d9670a06ec03cef3", + "_tpl": "624c29ce09cd027dff2f8cd7", + "slotId": "mod_stock_000", + "parentId": "67bf9bd0d9670a06ec03ceef" + }, + { + "_id": "67bf9bd0d9670a06ec03cef4", + "_tpl": "623c2f4242aee3103f1c44b7", + "slotId": "mod_mount_000", + "parentId": "67bf9bd0d9670a06ec03cef1" + }, + { + "_id": "67bf9bd0d9670a06ec03cef5", + "_tpl": "623c2f652febb22c2777d8d7", + "slotId": "mod_mount_001", + "parentId": "67bf9bd0d9670a06ec03cef1" + }, + { + "_id": "67bf9bd0d9670a06ec03cef6", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9bd0d9670a06ec03cef5" + } + ] + }, + { + "Id": "67bf9bed0100185d53ceba43", + "Name": "loud vudu sv98", + "Root": "67bf9bf1d9670a06ec03de9f", + "Items": [ + { + "_id": "67bf9bf1d9670a06ec03de9f", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9bf1d9670a06ec03dea0", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "slotId": "mod_magazine", + "parentId": "67bf9bf1d9670a06ec03de9f" + }, + { + "_id": "67bf9bf1d9670a06ec03dea1", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67bf9bf1d9670a06ec03de9f" + }, + { + "_id": "67bf9bf1d9670a06ec03dea2", + "_tpl": "5c4ee3d62e2216152006f302", + "slotId": "mod_muzzle", + "parentId": "67bf9bf1d9670a06ec03de9f" + }, + { + "_id": "67bf9bf1d9670a06ec03dea3", + "_tpl": "623b2e9d11c3296b440d1638", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67bf9bf1d9670a06ec03de9f" + }, + { + "_id": "67bf9bf1d9670a06ec03dea4", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9bf1d9670a06ec03dea1" + }, + { + "_id": "67bf9bf1d9670a06ec03dea5", + "_tpl": "623c3c1f37b4b31470357737", + "slotId": "mod_handguard", + "parentId": "67bf9bf1d9670a06ec03dea3" + }, + { + "_id": "67bf9bf1d9670a06ec03dea6", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bf9bf1d9670a06ec03dea3" + }, + { + "_id": "67bf9bf1d9670a06ec03dea7", + "_tpl": "624c29ce09cd027dff2f8cd7", + "slotId": "mod_stock_000", + "parentId": "67bf9bf1d9670a06ec03dea3" + }, + { + "_id": "67bf9bf1d9670a06ec03dea8", + "_tpl": "623c2f4242aee3103f1c44b7", + "slotId": "mod_mount_000", + "parentId": "67bf9bf1d9670a06ec03dea5" + }, + { + "_id": "67bf9bf1d9670a06ec03dea9", + "_tpl": "623c2f652febb22c2777d8d7", + "slotId": "mod_mount_001", + "parentId": "67bf9bf1d9670a06ec03dea5" + }, + { + "_id": "67bf9bf1d9670a06ec03deaa", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9bf1d9670a06ec03dea9" + } + ] + }, + { + "Id": "67bf9cc40100185d5355f1e8", + "Name": "supr front holo p90", + "Root": "67bf9cd0d9670a06ec04090b", + "Items": [ + { + "_id": "67bf9cd0d9670a06ec04090b", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9cd0d9670a06ec04090c", + "_tpl": "5cc70093e4a949033c734312", + "slotId": "mod_magazine", + "parentId": "67bf9cd0d9670a06ec04090b" + }, + { + "_id": "67bf9cd0d9670a06ec04090d", + "_tpl": "5cebec10d7f00c065703d185", + "slotId": "mod_stock", + "parentId": "67bf9cd0d9670a06ec04090b" + }, + { + "_id": "67bf9cd0d9670a06ec04090e", + "_tpl": "5cc700ede4a949033c734315", + "slotId": "mod_reciever", + "parentId": "67bf9cd0d9670a06ec04090b" + }, + { + "_id": "67bf9cd0d9670a06ec04090f", + "_tpl": "5cc701aae4a949000e1ea45c", + "slotId": "mod_barrel", + "parentId": "67bf9cd0d9670a06ec04090b" + }, + { + "_id": "67bf9cd0d9670a06ec040910", + "_tpl": "5cc6ea85e4a949000e1ea3c3", + "slotId": "mod_charge", + "parentId": "67bf9cd0d9670a06ec04090b" + }, + { + "_id": "67bf9cd0d9670a06ec040911", + "_tpl": "5cc700d4e4a949000f0f0f28", + "slotId": "mod_stock_000", + "parentId": "67bf9cd0d9670a06ec04090d" + }, + { + "_id": "67bf9cd0d9670a06ec040912", + "_tpl": "5cc7012ae4a949001252b43e", + "slotId": "mod_mount_000", + "parentId": "67bf9cd0d9670a06ec04090e" + }, + { + "_id": "67bf9cd0d9670a06ec040913", + "_tpl": "5cc7012ae4a949001252b43e", + "slotId": "mod_mount_001", + "parentId": "67bf9cd0d9670a06ec04090e" + }, + { + "_id": "67bf9cd0d9670a06ec040914", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9cd0d9670a06ec04090e" + }, + { + "_id": "67bf9cd0d9670a06ec040915", + "_tpl": "5cc82796e24e8d000f5859a8", + "slotId": "mod_muzzle", + "parentId": "67bf9cd0d9670a06ec04090f" + }, + { + "_id": "67bf9cd0d9670a06ec040916", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9cd0d9670a06ec040912" + }, + { + "_id": "67bf9cd0d9670a06ec040917", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9cd0d9670a06ec040913" + }, + { + "_id": "67bf9cd0d9670a06ec040918", + "_tpl": "5cebec00d7f00c065c53522a", + "slotId": "mod_muzzle", + "parentId": "67bf9cd0d9670a06ec040915" + } + ] + }, + { + "Id": "67bf9ce50100185d53875727", + "Name": "supr front holo p90 v2", + "Root": "67bf9cead9670a06ec040922", + "Items": [ + { + "_id": "67bf9cead9670a06ec040922", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9cead9670a06ec040923", + "_tpl": "5cc70093e4a949033c734312", + "slotId": "mod_magazine", + "parentId": "67bf9cead9670a06ec040922" + }, + { + "_id": "67bf9cead9670a06ec040924", + "_tpl": "5cc700b9e4a949000f0f0f25", + "slotId": "mod_stock", + "parentId": "67bf9cead9670a06ec040922" + }, + { + "_id": "67bf9cead9670a06ec040925", + "_tpl": "5cc700ede4a949033c734315", + "slotId": "mod_reciever", + "parentId": "67bf9cead9670a06ec040922" + }, + { + "_id": "67bf9cead9670a06ec040926", + "_tpl": "5cc701aae4a949000e1ea45c", + "slotId": "mod_barrel", + "parentId": "67bf9cead9670a06ec040922" + }, + { + "_id": "67bf9cead9670a06ec040927", + "_tpl": "5cc6ea85e4a949000e1ea3c3", + "slotId": "mod_charge", + "parentId": "67bf9cead9670a06ec040922" + }, + { + "_id": "67bf9cead9670a06ec040928", + "_tpl": "5cc700d4e4a949000f0f0f28", + "slotId": "mod_stock_000", + "parentId": "67bf9cead9670a06ec040924" + }, + { + "_id": "67bf9cead9670a06ec040929", + "_tpl": "5cc7012ae4a949001252b43e", + "slotId": "mod_mount_000", + "parentId": "67bf9cead9670a06ec040925" + }, + { + "_id": "67bf9cead9670a06ec04092a", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9cead9670a06ec040925" + }, + { + "_id": "67bf9cead9670a06ec04092b", + "_tpl": "5cc82796e24e8d000f5859a8", + "slotId": "mod_muzzle", + "parentId": "67bf9cead9670a06ec040926" + }, + { + "_id": "67bf9cead9670a06ec04092c", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9cead9670a06ec040929" + }, + { + "_id": "67bf9cead9670a06ec04092d", + "_tpl": "5cebec00d7f00c065c53522a", + "slotId": "mod_muzzle", + "parentId": "67bf9cead9670a06ec04092b" + } + ] + }, + { + "Id": "67bf9d0b0100185d53ef8d31", + "Name": "supr 2x p90", + "Root": "67bf9d14d9670a06ec04173f", + "Items": [ + { + "_id": "67bf9d14d9670a06ec04173f", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9d14d9670a06ec041740", + "_tpl": "5cc70093e4a949033c734312", + "slotId": "mod_magazine", + "parentId": "67bf9d14d9670a06ec04173f" + }, + { + "_id": "67bf9d14d9670a06ec041741", + "_tpl": "5cc700b9e4a949000f0f0f25", + "slotId": "mod_stock", + "parentId": "67bf9d14d9670a06ec04173f" + }, + { + "_id": "67bf9d14d9670a06ec041742", + "_tpl": "5cf7acfcd7f00c1084477cf2", + "slotId": "mod_reciever", + "parentId": "67bf9d14d9670a06ec04173f" + }, + { + "_id": "67bf9d14d9670a06ec041743", + "_tpl": "5cc701aae4a949000e1ea45c", + "slotId": "mod_barrel", + "parentId": "67bf9d14d9670a06ec04173f" + }, + { + "_id": "67bf9d14d9670a06ec041744", + "_tpl": "5cc6ea85e4a949000e1ea3c3", + "slotId": "mod_charge", + "parentId": "67bf9d14d9670a06ec04173f" + }, + { + "_id": "67bf9d14d9670a06ec041745", + "_tpl": "5cc700d4e4a949000f0f0f28", + "slotId": "mod_stock_000", + "parentId": "67bf9d14d9670a06ec041741" + }, + { + "_id": "67bf9d14d9670a06ec041746", + "_tpl": "5cc7015ae4a949001152b4c6", + "slotId": "mod_mount_000", + "parentId": "67bf9d14d9670a06ec041742" + }, + { + "_id": "67bf9d14d9670a06ec041747", + "_tpl": "5cc82796e24e8d000f5859a8", + "slotId": "mod_muzzle", + "parentId": "67bf9d14d9670a06ec041743" + }, + { + "_id": "67bf9d14d9670a06ec041748", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9d14d9670a06ec041746" + }, + { + "_id": "67bf9d14d9670a06ec041749", + "_tpl": "5cebec00d7f00c065c53522a", + "slotId": "mod_muzzle", + "parentId": "67bf9d14d9670a06ec041747" + } + ] + }, + { + "Id": "67bf9d500100185d53a27d8c", + "Name": "loud dp p90", + "Root": "67bf9d57d9670a06ec042602", + "Items": [ + { + "_id": "67bf9d57d9670a06ec042602", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9d57d9670a06ec042603", + "_tpl": "5cc70093e4a949033c734312", + "slotId": "mod_magazine", + "parentId": "67bf9d57d9670a06ec042602" + }, + { + "_id": "67bf9d57d9670a06ec042604", + "_tpl": "5cc700b9e4a949000f0f0f25", + "slotId": "mod_stock", + "parentId": "67bf9d57d9670a06ec042602" + }, + { + "_id": "67bf9d57d9670a06ec042605", + "_tpl": "5cc700ede4a949033c734315", + "slotId": "mod_reciever", + "parentId": "67bf9d57d9670a06ec042602" + }, + { + "_id": "67bf9d57d9670a06ec042606", + "_tpl": "5cc701d7e4a94900100ac4e7", + "slotId": "mod_barrel", + "parentId": "67bf9d57d9670a06ec042602" + }, + { + "_id": "67bf9d57d9670a06ec042607", + "_tpl": "5cc6ea85e4a949000e1ea3c3", + "slotId": "mod_charge", + "parentId": "67bf9d57d9670a06ec042602" + }, + { + "_id": "67bf9d57d9670a06ec042608", + "_tpl": "5cc700d4e4a949000f0f0f28", + "slotId": "mod_stock_000", + "parentId": "67bf9d57d9670a06ec042604" + }, + { + "_id": "67bf9d57d9670a06ec042609", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bf9d57d9670a06ec042605" + }, + { + "_id": "67bf9d57d9670a06ec04260a", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9d57d9670a06ec042609" + } + ] + }, + { + "Id": "67bf9d8d0100185d537c819e", + "Name": "loud front HCO p90", + "Root": "67bf9d9ad9670a06ec0434e8", + "Items": [ + { + "_id": "67bf9d9ad9670a06ec0434e8", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bf9d9ad9670a06ec0434e9", + "_tpl": "5cc70093e4a949033c734312", + "slotId": "mod_magazine", + "parentId": "67bf9d9ad9670a06ec0434e8" + }, + { + "_id": "67bf9d9ad9670a06ec0434ea", + "_tpl": "5cebec10d7f00c065703d185", + "slotId": "mod_stock", + "parentId": "67bf9d9ad9670a06ec0434e8" + }, + { + "_id": "67bf9d9ad9670a06ec0434eb", + "_tpl": "5cc700ede4a949033c734315", + "slotId": "mod_reciever", + "parentId": "67bf9d9ad9670a06ec0434e8" + }, + { + "_id": "67bf9d9ad9670a06ec0434ec", + "_tpl": "5cc701d7e4a94900100ac4e7", + "slotId": "mod_barrel", + "parentId": "67bf9d9ad9670a06ec0434e8" + }, + { + "_id": "67bf9d9ad9670a06ec0434ed", + "_tpl": "5cc6ea85e4a949000e1ea3c3", + "slotId": "mod_charge", + "parentId": "67bf9d9ad9670a06ec0434e8" + }, + { + "_id": "67bf9d9ad9670a06ec0434ee", + "_tpl": "5cc700d4e4a949000f0f0f28", + "slotId": "mod_stock_000", + "parentId": "67bf9d9ad9670a06ec0434ea" + }, + { + "_id": "67bf9d9ad9670a06ec0434ef", + "_tpl": "5cc7012ae4a949001252b43e", + "slotId": "mod_mount_000", + "parentId": "67bf9d9ad9670a06ec0434eb" + }, + { + "_id": "67bf9d9ad9670a06ec0434f0", + "_tpl": "5cc7012ae4a949001252b43e", + "slotId": "mod_mount_001", + "parentId": "67bf9d9ad9670a06ec0434eb" + }, + { + "_id": "67bf9d9ad9670a06ec0434f1", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bf9d9ad9670a06ec0434eb" + }, + { + "_id": "67bf9d9ad9670a06ec0434f2", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9d9ad9670a06ec0434ef" + }, + { + "_id": "67bf9d9ad9670a06ec0434f3", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bf9d9ad9670a06ec0434f0" + } + ] + }, + { + "Id": "67bfa2140100185d5321e822", + "Name": "supr dp mp7a2", + "Root": "67bfa220d9670a06ec05601d", + "Items": [ + { + "_id": "67bfa220d9670a06ec05601d", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa220d9670a06ec05601e", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67bfa220d9670a06ec05601d" + }, + { + "_id": "67bfa220d9670a06ec05601f", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67bfa220d9670a06ec05601d" + }, + { + "_id": "67bfa220d9670a06ec056020", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa220d9670a06ec05601d" + }, + { + "_id": "67bfa220d9670a06ec056021", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa220d9670a06ec05601d" + }, + { + "_id": "67bfa220d9670a06ec056022", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bfa220d9670a06ec05601d" + }, + { + "_id": "67bfa220d9670a06ec056023", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa220d9670a06ec05601d" + }, + { + "_id": "67bfa220d9670a06ec056024", + "_tpl": "5bd704e7209c4d00d7167c31", + "slotId": "mod_stock", + "parentId": "67bfa220d9670a06ec05601d" + }, + { + "_id": "67bfa220d9670a06ec056025", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa220d9670a06ec05601d" + }, + { + "_id": "67bfa220d9670a06ec056026", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67bfa220d9670a06ec05601f" + }, + { + "_id": "67bfa220d9670a06ec056027", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa220d9670a06ec056022" + } + ] + }, + { + "Id": "67bfa2330100185d5336c114", + "Name": "supr holo mp7a2", + "Root": "67bfa238d9670a06ec05606f", + "Items": [ + { + "_id": "67bfa238d9670a06ec05606f", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa238d9670a06ec056070", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67bfa238d9670a06ec05606f" + }, + { + "_id": "67bfa238d9670a06ec056071", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67bfa238d9670a06ec05606f" + }, + { + "_id": "67bfa238d9670a06ec056072", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa238d9670a06ec05606f" + }, + { + "_id": "67bfa238d9670a06ec056073", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa238d9670a06ec05606f" + }, + { + "_id": "67bfa238d9670a06ec056074", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa238d9670a06ec05606f" + }, + { + "_id": "67bfa238d9670a06ec056075", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa238d9670a06ec05606f" + }, + { + "_id": "67bfa238d9670a06ec056076", + "_tpl": "5bd704e7209c4d00d7167c31", + "slotId": "mod_stock", + "parentId": "67bfa238d9670a06ec05606f" + }, + { + "_id": "67bfa238d9670a06ec056077", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bfa238d9670a06ec05606f" + }, + { + "_id": "67bfa238d9670a06ec056078", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67bfa238d9670a06ec056071" + } + ] + }, + { + "Id": "67bfa2530100185d53ab14e8", + "Name": "supr holo mp7a2 v2", + "Root": "67bfa258d9670a06ec056fdb", + "Items": [ + { + "_id": "67bfa258d9670a06ec056fdb", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa258d9670a06ec056fdc", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67bfa258d9670a06ec056fdb" + }, + { + "_id": "67bfa258d9670a06ec056fdd", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67bfa258d9670a06ec056fdb" + }, + { + "_id": "67bfa258d9670a06ec056fde", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa258d9670a06ec056fdb" + }, + { + "_id": "67bfa258d9670a06ec056fdf", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa258d9670a06ec056fdb" + }, + { + "_id": "67bfa258d9670a06ec056fe0", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa258d9670a06ec056fdb" + }, + { + "_id": "67bfa258d9670a06ec056fe1", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa258d9670a06ec056fdb" + }, + { + "_id": "67bfa258d9670a06ec056fe2", + "_tpl": "5bd704e7209c4d00d7167c31", + "slotId": "mod_stock", + "parentId": "67bfa258d9670a06ec056fdb" + }, + { + "_id": "67bfa258d9670a06ec056fe3", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa258d9670a06ec056fdb" + }, + { + "_id": "67bfa258d9670a06ec056fe4", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67bfa258d9670a06ec056fdd" + } + ] + }, + { + "Id": "67bfa28d0100185d537562e3", + "Name": "supr 2x mp7a2", + "Root": "67bfa294d9670a06ec057fef", + "Items": [ + { + "_id": "67bfa294d9670a06ec057fef", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa294d9670a06ec057ff0", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67bfa294d9670a06ec057fef" + }, + { + "_id": "67bfa294d9670a06ec057ff1", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67bfa294d9670a06ec057fef" + }, + { + "_id": "67bfa294d9670a06ec057ff2", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa294d9670a06ec057fef" + }, + { + "_id": "67bfa294d9670a06ec057ff3", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa294d9670a06ec057fef" + }, + { + "_id": "67bfa294d9670a06ec057ff4", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa294d9670a06ec057fef" + }, + { + "_id": "67bfa294d9670a06ec057ff5", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa294d9670a06ec057fef" + }, + { + "_id": "67bfa294d9670a06ec057ff6", + "_tpl": "5bd704e7209c4d00d7167c31", + "slotId": "mod_stock", + "parentId": "67bfa294d9670a06ec057fef" + }, + { + "_id": "67bfa294d9670a06ec057ff7", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bfa294d9670a06ec057fef" + }, + { + "_id": "67bfa294d9670a06ec057ff8", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67bfa294d9670a06ec057ff1" + } + ] + }, + { + "Id": "67bfa2bd0100185d5311e4a4", + "Name": "supr UH1 mp7a1", + "Root": "67bfa2c6d9670a06ec058fbb", + "Items": [ + { + "_id": "67bfa2c6d9670a06ec058fbb", + "_tpl": "5ba26383d4351e00334c93d9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa2c6d9670a06ec058fbc", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67bfa2c6d9670a06ec058fbb" + }, + { + "_id": "67bfa2c6d9670a06ec058fbd", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67bfa2c6d9670a06ec058fbb" + }, + { + "_id": "67bfa2c6d9670a06ec058fbe", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa2c6d9670a06ec058fbb" + }, + { + "_id": "67bfa2c6d9670a06ec058fbf", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa2c6d9670a06ec058fbb" + }, + { + "_id": "67bfa2c6d9670a06ec058fc0", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa2c6d9670a06ec058fbb" + }, + { + "_id": "67bfa2c6d9670a06ec058fc1", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa2c6d9670a06ec058fbb" + }, + { + "_id": "67bfa2c6d9670a06ec058fc2", + "_tpl": "5bcf0213d4351e0085327c17", + "slotId": "mod_stock", + "parentId": "67bfa2c6d9670a06ec058fbb" + }, + { + "_id": "67bfa2c6d9670a06ec058fc3", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67bfa2c6d9670a06ec058fbd" + } + ] + }, + { + "Id": "67bfa2e00100185d53044d77", + "Name": "supr holo mp7a1", + "Root": "67bfa2e4d9670a06ec059f96", + "Items": [ + { + "_id": "67bfa2e4d9670a06ec059f96", + "_tpl": "5ba26383d4351e00334c93d9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa2e4d9670a06ec059f97", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67bfa2e4d9670a06ec059f96" + }, + { + "_id": "67bfa2e4d9670a06ec059f98", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67bfa2e4d9670a06ec059f96" + }, + { + "_id": "67bfa2e4d9670a06ec059f99", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa2e4d9670a06ec059f96" + }, + { + "_id": "67bfa2e4d9670a06ec059f9a", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa2e4d9670a06ec059f96" + }, + { + "_id": "67bfa2e4d9670a06ec059f9b", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa2e4d9670a06ec059f96" + }, + { + "_id": "67bfa2e4d9670a06ec059f9c", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa2e4d9670a06ec059f96" + }, + { + "_id": "67bfa2e4d9670a06ec059f9d", + "_tpl": "5bcf0213d4351e0085327c17", + "slotId": "mod_stock", + "parentId": "67bfa2e4d9670a06ec059f96" + }, + { + "_id": "67bfa2e4d9670a06ec059f9e", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67bfa2e4d9670a06ec059f98" + } + ] + }, + { + "Id": "67bfa51f0100185d53148920", + "Name": "supr holo mp5", + "Root": "67bfa526d9670a06ec06670b", + "Items": [ + { + "_id": "67bfa526d9670a06ec06670b", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa526d9670a06ec06670c", + "_tpl": "5a351711c4a282000b1521a4", + "slotId": "mod_magazine", + "parentId": "67bfa526d9670a06ec06670b" + }, + { + "_id": "67bfa526d9670a06ec06670d", + "_tpl": "5926f2e086f7745aae644231", + "slotId": "mod_reciever", + "parentId": "67bfa526d9670a06ec06670b" + }, + { + "_id": "67bfa526d9670a06ec06670e", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67bfa526d9670a06ec06670b" + }, + { + "_id": "67bfa526d9670a06ec06670f", + "_tpl": "5926f34786f77469195bfe92", + "slotId": "mod_handguard", + "parentId": "67bfa526d9670a06ec06670d" + }, + { + "_id": "67bfa526d9670a06ec066710", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa526d9670a06ec06670d" + }, + { + "_id": "67bfa526d9670a06ec066711", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67bfa526d9670a06ec06670d" + }, + { + "_id": "67bfa526d9670a06ec066712", + "_tpl": "5926d33d86f77410de68ebc0", + "slotId": "mod_muzzle", + "parentId": "67bfa526d9670a06ec06670d" + }, + { + "_id": "67bfa526d9670a06ec066713", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67bfa526d9670a06ec06670d" + }, + { + "_id": "67bfa526d9670a06ec066714", + "_tpl": "59c63b4486f7747afb151c1c", + "slotId": "mod_mount", + "parentId": "67bfa526d9670a06ec066712" + }, + { + "_id": "67bfa526d9670a06ec066715", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa526d9670a06ec066713" + }, + { + "_id": "67bfa526d9670a06ec066716", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa526d9670a06ec066714" + } + ] + }, + { + "Id": "67bfa53a0100185d53faafbb", + "Name": "supr mrs mp5", + "Root": "67bfa53fd9670a06ec06671e", + "Items": [ + { + "_id": "67bfa53fd9670a06ec06671e", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa53fd9670a06ec06671f", + "_tpl": "5a351711c4a282000b1521a4", + "slotId": "mod_magazine", + "parentId": "67bfa53fd9670a06ec06671e" + }, + { + "_id": "67bfa53fd9670a06ec066720", + "_tpl": "5926f2e086f7745aae644231", + "slotId": "mod_reciever", + "parentId": "67bfa53fd9670a06ec06671e" + }, + { + "_id": "67bfa53fd9670a06ec066721", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67bfa53fd9670a06ec06671e" + }, + { + "_id": "67bfa53fd9670a06ec066722", + "_tpl": "5926f34786f77469195bfe92", + "slotId": "mod_handguard", + "parentId": "67bfa53fd9670a06ec066720" + }, + { + "_id": "67bfa53fd9670a06ec066723", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa53fd9670a06ec066720" + }, + { + "_id": "67bfa53fd9670a06ec066724", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67bfa53fd9670a06ec066720" + }, + { + "_id": "67bfa53fd9670a06ec066725", + "_tpl": "5926d33d86f77410de68ebc0", + "slotId": "mod_muzzle", + "parentId": "67bfa53fd9670a06ec066720" + }, + { + "_id": "67bfa53fd9670a06ec066726", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67bfa53fd9670a06ec066720" + }, + { + "_id": "67bfa53fd9670a06ec066727", + "_tpl": "59c63b4486f7747afb151c1c", + "slotId": "mod_mount", + "parentId": "67bfa53fd9670a06ec066725" + }, + { + "_id": "67bfa53fd9670a06ec066728", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa53fd9670a06ec066726" + }, + { + "_id": "67bfa53fd9670a06ec066729", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa53fd9670a06ec066727" + } + ] + }, + { + "Id": "67bfa54f0100185d53c037ff", + "Name": "supr dp mp5", + "Root": "67bfa553d9670a06ec0676e2", + "Items": [ + { + "_id": "67bfa553d9670a06ec0676e2", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa553d9670a06ec0676e3", + "_tpl": "5a351711c4a282000b1521a4", + "slotId": "mod_magazine", + "parentId": "67bfa553d9670a06ec0676e2" + }, + { + "_id": "67bfa553d9670a06ec0676e4", + "_tpl": "5926f2e086f7745aae644231", + "slotId": "mod_reciever", + "parentId": "67bfa553d9670a06ec0676e2" + }, + { + "_id": "67bfa553d9670a06ec0676e5", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67bfa553d9670a06ec0676e2" + }, + { + "_id": "67bfa553d9670a06ec0676e6", + "_tpl": "5926f34786f77469195bfe92", + "slotId": "mod_handguard", + "parentId": "67bfa553d9670a06ec0676e4" + }, + { + "_id": "67bfa553d9670a06ec0676e7", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa553d9670a06ec0676e4" + }, + { + "_id": "67bfa553d9670a06ec0676e8", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67bfa553d9670a06ec0676e4" + }, + { + "_id": "67bfa553d9670a06ec0676e9", + "_tpl": "5926d33d86f77410de68ebc0", + "slotId": "mod_muzzle", + "parentId": "67bfa553d9670a06ec0676e4" + }, + { + "_id": "67bfa553d9670a06ec0676ea", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67bfa553d9670a06ec0676e4" + }, + { + "_id": "67bfa553d9670a06ec0676eb", + "_tpl": "59c63b4486f7747afb151c1c", + "slotId": "mod_mount", + "parentId": "67bfa553d9670a06ec0676e9" + }, + { + "_id": "67bfa553d9670a06ec0676ec", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bfa553d9670a06ec0676ea" + }, + { + "_id": "67bfa553d9670a06ec0676ed", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa553d9670a06ec0676eb" + }, + { + "_id": "67bfa553d9670a06ec0676ee", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa553d9670a06ec0676ec" + } + ] + }, + { + "Id": "67bfa5770100185d5391f560", + "Name": "supr HCO mp5", + "Root": "67bfa57dd9670a06ec06868a", + "Items": [ + { + "_id": "67bfa57dd9670a06ec06868a", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa57dd9670a06ec06868b", + "_tpl": "5a351711c4a282000b1521a4", + "slotId": "mod_magazine", + "parentId": "67bfa57dd9670a06ec06868a" + }, + { + "_id": "67bfa57dd9670a06ec06868c", + "_tpl": "5926f2e086f7745aae644231", + "slotId": "mod_reciever", + "parentId": "67bfa57dd9670a06ec06868a" + }, + { + "_id": "67bfa57dd9670a06ec06868d", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67bfa57dd9670a06ec06868a" + }, + { + "_id": "67bfa57dd9670a06ec06868e", + "_tpl": "5926f34786f77469195bfe92", + "slotId": "mod_handguard", + "parentId": "67bfa57dd9670a06ec06868c" + }, + { + "_id": "67bfa57dd9670a06ec06868f", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa57dd9670a06ec06868c" + }, + { + "_id": "67bfa57dd9670a06ec068690", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67bfa57dd9670a06ec06868c" + }, + { + "_id": "67bfa57dd9670a06ec068691", + "_tpl": "5926d33d86f77410de68ebc0", + "slotId": "mod_muzzle", + "parentId": "67bfa57dd9670a06ec06868c" + }, + { + "_id": "67bfa57dd9670a06ec068692", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67bfa57dd9670a06ec06868c" + }, + { + "_id": "67bfa57dd9670a06ec068693", + "_tpl": "59c63b4486f7747afb151c1c", + "slotId": "mod_mount", + "parentId": "67bfa57dd9670a06ec068691" + }, + { + "_id": "67bfa57dd9670a06ec068694", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa57dd9670a06ec068692" + }, + { + "_id": "67bfa57dd9670a06ec068695", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa57dd9670a06ec068693" + } + ] + }, + { + "Id": "67bfa5b90100185d53d1263d", + "Name": "loud holo mp5", + "Root": "67bfa5c0d9670a06ec06a57a", + "Items": [ + { + "_id": "67bfa5c0d9670a06ec06a57a", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa5c0d9670a06ec06a57b", + "_tpl": "5a351711c4a282000b1521a4", + "slotId": "mod_magazine", + "parentId": "67bfa5c0d9670a06ec06a57a" + }, + { + "_id": "67bfa5c0d9670a06ec06a57c", + "_tpl": "5926c0df86f77462f647f764", + "slotId": "mod_reciever", + "parentId": "67bfa5c0d9670a06ec06a57a" + }, + { + "_id": "67bfa5c0d9670a06ec06a57d", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67bfa5c0d9670a06ec06a57a" + }, + { + "_id": "67bfa5c0d9670a06ec06a57e", + "_tpl": "5d19cd96d7ad1a4a992c9f52", + "slotId": "mod_handguard", + "parentId": "67bfa5c0d9670a06ec06a57c" + }, + { + "_id": "67bfa5c0d9670a06ec06a57f", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa5c0d9670a06ec06a57c" + }, + { + "_id": "67bfa5c0d9670a06ec06a580", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67bfa5c0d9670a06ec06a57c" + }, + { + "_id": "67bfa5c0d9670a06ec06a581", + "_tpl": "5c0000c00db834001a6697fc", + "slotId": "mod_muzzle", + "parentId": "67bfa5c0d9670a06ec06a57c" + }, + { + "_id": "67bfa5c0d9670a06ec06a582", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67bfa5c0d9670a06ec06a57c" + }, + { + "_id": "67bfa5c0d9670a06ec06a583", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa5c0d9670a06ec06a57e" + }, + { + "_id": "67bfa5c0d9670a06ec06a584", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa5c0d9670a06ec06a57e" + }, + { + "_id": "67bfa5c0d9670a06ec06a585", + "_tpl": "5c07c5ed0db834001b73571c", + "slotId": "mod_muzzle", + "parentId": "67bfa5c0d9670a06ec06a581" + }, + { + "_id": "67bfa5c0d9670a06ec06a586", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa5c0d9670a06ec06a582" + } + ] + }, + { + "Id": "67bfa5d50100185d531eb34c", + "Name": "loud holo mp5 v2", + "Root": "67bfa5dad9670a06ec06a592", + "Items": [ + { + "_id": "67bfa5dad9670a06ec06a592", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa5dad9670a06ec06a593", + "_tpl": "5a351711c4a282000b1521a4", + "slotId": "mod_magazine", + "parentId": "67bfa5dad9670a06ec06a592" + }, + { + "_id": "67bfa5dad9670a06ec06a594", + "_tpl": "5926c0df86f77462f647f764", + "slotId": "mod_reciever", + "parentId": "67bfa5dad9670a06ec06a592" + }, + { + "_id": "67bfa5dad9670a06ec06a595", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67bfa5dad9670a06ec06a592" + }, + { + "_id": "67bfa5dad9670a06ec06a596", + "_tpl": "5d19cd96d7ad1a4a992c9f52", + "slotId": "mod_handguard", + "parentId": "67bfa5dad9670a06ec06a594" + }, + { + "_id": "67bfa5dad9670a06ec06a597", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa5dad9670a06ec06a594" + }, + { + "_id": "67bfa5dad9670a06ec06a598", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67bfa5dad9670a06ec06a594" + }, + { + "_id": "67bfa5dad9670a06ec06a599", + "_tpl": "5c0000c00db834001a6697fc", + "slotId": "mod_muzzle", + "parentId": "67bfa5dad9670a06ec06a594" + }, + { + "_id": "67bfa5dad9670a06ec06a59a", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67bfa5dad9670a06ec06a594" + }, + { + "_id": "67bfa5dad9670a06ec06a59b", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bfa5dad9670a06ec06a596" + }, + { + "_id": "67bfa5dad9670a06ec06a59c", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa5dad9670a06ec06a596" + }, + { + "_id": "67bfa5dad9670a06ec06a59d", + "_tpl": "5c07c5ed0db834001b73571c", + "slotId": "mod_muzzle", + "parentId": "67bfa5dad9670a06ec06a599" + }, + { + "_id": "67bfa5dad9670a06ec06a59e", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa5dad9670a06ec06a59a" + } + ] + }, + { + "Id": "67bfa60b0100185d539af59f", + "Name": "supr bravo ump", + "Root": "67bfa612d9670a06ec06c5fc", + "Items": [ + { + "_id": "67bfa612d9670a06ec06c5fc", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa612d9670a06ec06c5fd", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67bfa612d9670a06ec06c5fc" + }, + { + "_id": "67bfa612d9670a06ec06c5fe", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa612d9670a06ec06c5fc" + }, + { + "_id": "67bfa612d9670a06ec06c5ff", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67bfa612d9670a06ec06c5fc" + }, + { + "_id": "67bfa612d9670a06ec06c600", + "_tpl": "5fc3e4a27283c4046c5814ab", + "slotId": "mod_barrel", + "parentId": "67bfa612d9670a06ec06c5fc" + }, + { + "_id": "67bfa612d9670a06ec06c601", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67bfa612d9670a06ec06c5fc" + }, + { + "_id": "67bfa612d9670a06ec06c602", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67bfa612d9670a06ec06c5fc" + }, + { + "_id": "67bfa612d9670a06ec06c603", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67bfa612d9670a06ec06c5fc" + }, + { + "_id": "67bfa612d9670a06ec06c604", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bfa612d9670a06ec06c5fe" + }, + { + "_id": "67bfa612d9670a06ec06c605", + "_tpl": "6130c4d51cb55961fa0fd49f", + "slotId": "mod_muzzle", + "parentId": "67bfa612d9670a06ec06c600" + }, + { + "_id": "67bfa612d9670a06ec06c606", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa612d9670a06ec06c601" + }, + { + "_id": "67bfa612d9670a06ec06c607", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa612d9670a06ec06c602" + }, + { + "_id": "67bfa612d9670a06ec06c608", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa612d9670a06ec06c604" + } + ] + }, + { + "Id": "67bfa62c0100185d531c6e72", + "Name": "supr holo ump", + "Root": "67bfa62fd9670a06ec06c61b", + "Items": [ + { + "_id": "67bfa62fd9670a06ec06c61b", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa62fd9670a06ec06c61c", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67bfa62fd9670a06ec06c61b" + }, + { + "_id": "67bfa62fd9670a06ec06c61d", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa62fd9670a06ec06c61b" + }, + { + "_id": "67bfa62fd9670a06ec06c61e", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67bfa62fd9670a06ec06c61b" + }, + { + "_id": "67bfa62fd9670a06ec06c61f", + "_tpl": "5fc3e4a27283c4046c5814ab", + "slotId": "mod_barrel", + "parentId": "67bfa62fd9670a06ec06c61b" + }, + { + "_id": "67bfa62fd9670a06ec06c620", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67bfa62fd9670a06ec06c61b" + }, + { + "_id": "67bfa62fd9670a06ec06c621", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67bfa62fd9670a06ec06c61b" + }, + { + "_id": "67bfa62fd9670a06ec06c622", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67bfa62fd9670a06ec06c61b" + }, + { + "_id": "67bfa62fd9670a06ec06c623", + "_tpl": "6130c4d51cb55961fa0fd49f", + "slotId": "mod_muzzle", + "parentId": "67bfa62fd9670a06ec06c61f" + }, + { + "_id": "67bfa62fd9670a06ec06c624", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa62fd9670a06ec06c620" + }, + { + "_id": "67bfa62fd9670a06ec06c625", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa62fd9670a06ec06c621" + } + ] + }, + { + "Id": "67bfa64e0100185d53b037f8", + "Name": "loud holo ump", + "Root": "67bfa653d9670a06ec06d5df", + "Items": [ + { + "_id": "67bfa653d9670a06ec06d5df", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa653d9670a06ec06d5e0", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67bfa653d9670a06ec06d5df" + }, + { + "_id": "67bfa653d9670a06ec06d5e1", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa653d9670a06ec06d5df" + }, + { + "_id": "67bfa653d9670a06ec06d5e2", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67bfa653d9670a06ec06d5df" + }, + { + "_id": "67bfa653d9670a06ec06d5e3", + "_tpl": "6130c3dffaa1272e43151c7d", + "slotId": "mod_barrel", + "parentId": "67bfa653d9670a06ec06d5df" + }, + { + "_id": "67bfa653d9670a06ec06d5e4", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67bfa653d9670a06ec06d5df" + }, + { + "_id": "67bfa653d9670a06ec06d5e5", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67bfa653d9670a06ec06d5df" + }, + { + "_id": "67bfa653d9670a06ec06d5e6", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67bfa653d9670a06ec06d5df" + }, + { + "_id": "67bfa653d9670a06ec06d5e7", + "_tpl": "5fb65424956329274326f316", + "slotId": "mod_muzzle", + "parentId": "67bfa653d9670a06ec06d5e3" + }, + { + "_id": "67bfa653d9670a06ec06d5e8", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa653d9670a06ec06d5e4" + }, + { + "_id": "67bfa653d9670a06ec06d5e9", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa653d9670a06ec06d5e5" + } + ] + }, + { + "Id": "67bfa65e0100185d5388798a", + "Name": "loud romeo ump", + "Root": "67bfa663d9670a06ec06e4d0", + "Items": [ + { + "_id": "67bfa663d9670a06ec06e4d0", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa663d9670a06ec06e4d1", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67bfa663d9670a06ec06e4d0" + }, + { + "_id": "67bfa663d9670a06ec06e4d2", + "_tpl": "60a23797a37c940de7062d02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa663d9670a06ec06e4d0" + }, + { + "_id": "67bfa663d9670a06ec06e4d3", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67bfa663d9670a06ec06e4d0" + }, + { + "_id": "67bfa663d9670a06ec06e4d4", + "_tpl": "6130c3dffaa1272e43151c7d", + "slotId": "mod_barrel", + "parentId": "67bfa663d9670a06ec06e4d0" + }, + { + "_id": "67bfa663d9670a06ec06e4d5", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67bfa663d9670a06ec06e4d0" + }, + { + "_id": "67bfa663d9670a06ec06e4d6", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67bfa663d9670a06ec06e4d0" + }, + { + "_id": "67bfa663d9670a06ec06e4d7", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67bfa663d9670a06ec06e4d0" + }, + { + "_id": "67bfa663d9670a06ec06e4d8", + "_tpl": "5fb65424956329274326f316", + "slotId": "mod_muzzle", + "parentId": "67bfa663d9670a06ec06e4d4" + }, + { + "_id": "67bfa663d9670a06ec06e4d9", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bfa663d9670a06ec06e4d5" + }, + { + "_id": "67bfa663d9670a06ec06e4da", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa663d9670a06ec06e4d6" + } + ] + }, + { + "Id": "67bfa6fe0100185d5349ae3d", + "Name": "supr holo uzi", + "Root": "67bfa704d9670a06ec071436", + "Items": [ + { + "_id": "67bfa704d9670a06ec071436", + "_tpl": "6680304edadb7aa61d00cef0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa704d9670a06ec071437", + "_tpl": "66866f622a2296a8d9099639", + "slotId": "mod_magazine", + "parentId": "67bfa704d9670a06ec071436" + }, + { + "_id": "67bfa704d9670a06ec071438", + "_tpl": "668670e3fb75ee4a5e02eb16", + "slotId": "mod_muzzle_000", + "parentId": "67bfa704d9670a06ec071436" + }, + { + "_id": "67bfa704d9670a06ec071439", + "_tpl": "66867310f3734a938b077f79", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67bfa704d9670a06ec071436" + }, + { + "_id": "67bfa704d9670a06ec07143a", + "_tpl": "6680326874b8f2050c0b9178", + "slotId": "mod_reciever", + "parentId": "67bfa704d9670a06ec071436" + }, + { + "_id": "67bfa704d9670a06ec07143b", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bfa704d9670a06ec071436" + }, + { + "_id": "67bfa704d9670a06ec07143c", + "_tpl": "668031705014e211b4078046", + "slotId": "mod_barrel", + "parentId": "67bfa704d9670a06ec071436" + }, + { + "_id": "67bfa704d9670a06ec07143d", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa704d9670a06ec07143a" + }, + { + "_id": "67bfa704d9670a06ec07143e", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle_001", + "parentId": "67bfa704d9670a06ec07143c" + } + ] + }, + { + "Id": "67bfa7130100185d53d117f2", + "Name": "supr UH1 uzi", + "Root": "67bfa719d9670a06ec071444", + "Items": [ + { + "_id": "67bfa719d9670a06ec071444", + "_tpl": "6680304edadb7aa61d00cef0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa719d9670a06ec071445", + "_tpl": "66866f622a2296a8d9099639", + "slotId": "mod_magazine", + "parentId": "67bfa719d9670a06ec071444" + }, + { + "_id": "67bfa719d9670a06ec071446", + "_tpl": "668670e3fb75ee4a5e02eb16", + "slotId": "mod_muzzle_000", + "parentId": "67bfa719d9670a06ec071444" + }, + { + "_id": "67bfa719d9670a06ec071447", + "_tpl": "66867310f3734a938b077f79", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67bfa719d9670a06ec071444" + }, + { + "_id": "67bfa719d9670a06ec071448", + "_tpl": "6680326874b8f2050c0b9178", + "slotId": "mod_reciever", + "parentId": "67bfa719d9670a06ec071444" + }, + { + "_id": "67bfa719d9670a06ec071449", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bfa719d9670a06ec071444" + }, + { + "_id": "67bfa719d9670a06ec07144a", + "_tpl": "668031705014e211b4078046", + "slotId": "mod_barrel", + "parentId": "67bfa719d9670a06ec071444" + }, + { + "_id": "67bfa719d9670a06ec07144b", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa719d9670a06ec071448" + }, + { + "_id": "67bfa719d9670a06ec07144c", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle_001", + "parentId": "67bfa719d9670a06ec07144a" + } + ] + }, + { + "Id": "67bfa7510100185d5343de93", + "Name": "supr dp uzi", + "Root": "67bfa755d9670a06ec072340", + "Items": [ + { + "_id": "67bfa755d9670a06ec072340", + "_tpl": "6680304edadb7aa61d00cef0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa755d9670a06ec072341", + "_tpl": "66866f622a2296a8d9099639", + "slotId": "mod_magazine", + "parentId": "67bfa755d9670a06ec072340" + }, + { + "_id": "67bfa755d9670a06ec072342", + "_tpl": "668670e3fb75ee4a5e02eb16", + "slotId": "mod_muzzle_000", + "parentId": "67bfa755d9670a06ec072340" + }, + { + "_id": "67bfa755d9670a06ec072343", + "_tpl": "66867310f3734a938b077f79", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67bfa755d9670a06ec072340" + }, + { + "_id": "67bfa755d9670a06ec072344", + "_tpl": "6680326874b8f2050c0b9178", + "slotId": "mod_reciever", + "parentId": "67bfa755d9670a06ec072340" + }, + { + "_id": "67bfa755d9670a06ec072345", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bfa755d9670a06ec072340" + }, + { + "_id": "67bfa755d9670a06ec072346", + "_tpl": "668031705014e211b4078046", + "slotId": "mod_barrel", + "parentId": "67bfa755d9670a06ec072340" + }, + { + "_id": "67bfa755d9670a06ec072347", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bfa755d9670a06ec072344" + }, + { + "_id": "67bfa755d9670a06ec072348", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle_001", + "parentId": "67bfa755d9670a06ec072346" + }, + { + "_id": "67bfa755d9670a06ec072349", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa755d9670a06ec072347" + } + ] + }, + { + "Id": "67bfa7b30100185d53b756e7", + "Name": "supr holo pp19", + "Root": "67bfa7bad9670a06ec0740a7", + "Items": [ + { + "_id": "67bfa7bad9670a06ec0740a7", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa7bad9670a06ec0740a8", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67bfa7bad9670a06ec0740a7" + }, + { + "_id": "67bfa7bad9670a06ec0740a9", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "slotId": "mod_stock", + "parentId": "67bfa7bad9670a06ec0740a7" + }, + { + "_id": "67bfa7bad9670a06ec0740aa", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bfa7bad9670a06ec0740a7" + }, + { + "_id": "67bfa7bad9670a06ec0740ab", + "_tpl": "5998529a86f774647f44f421", + "slotId": "mod_magazine", + "parentId": "67bfa7bad9670a06ec0740a7" + }, + { + "_id": "67bfa7bad9670a06ec0740ac", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67bfa7bad9670a06ec0740a7" + }, + { + "_id": "67bfa7bad9670a06ec0740ad", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67bfa7bad9670a06ec0740a7" + }, + { + "_id": "67bfa7bad9670a06ec0740ae", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa7bad9670a06ec0740a7" + }, + { + "_id": "67bfa7bad9670a06ec0740af", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67bfa7bad9670a06ec0740a7" + }, + { + "_id": "67bfa7bad9670a06ec0740b0", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67bfa7bad9670a06ec0740a9" + }, + { + "_id": "67bfa7bad9670a06ec0740b1", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa7bad9670a06ec0740ad" + }, + { + "_id": "67bfa7bad9670a06ec0740b2", + "_tpl": "647dba3142c479dde701b654", + "slotId": "mod_handguard", + "parentId": "67bfa7bad9670a06ec0740af" + }, + { + "_id": "67bfa7bad9670a06ec0740b3", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bfa7bad9670a06ec0740b0" + }, + { + "_id": "67bfa7bad9670a06ec0740b4", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa7bad9670a06ec0740b2" + } + ] + }, + { + "Id": "67bfa7ea0100185d5315a0ce", + "Name": "supr dp pp19", + "Root": "67bfa7f1d9670a06ec075126", + "Items": [ + { + "_id": "67bfa7f1d9670a06ec075126", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa7f1d9670a06ec075127", + "_tpl": "5e2192a498a36665e8337386", + "slotId": "mod_pistol_grip", + "parentId": "67bfa7f1d9670a06ec075126" + }, + { + "_id": "67bfa7f1d9670a06ec075128", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "slotId": "mod_stock", + "parentId": "67bfa7f1d9670a06ec075126" + }, + { + "_id": "67bfa7f1d9670a06ec075129", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67bfa7f1d9670a06ec075126" + }, + { + "_id": "67bfa7f1d9670a06ec07512a", + "_tpl": "5998529a86f774647f44f421", + "slotId": "mod_magazine", + "parentId": "67bfa7f1d9670a06ec075126" + }, + { + "_id": "67bfa7f1d9670a06ec07512b", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67bfa7f1d9670a06ec075126" + }, + { + "_id": "67bfa7f1d9670a06ec07512c", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67bfa7f1d9670a06ec075126" + }, + { + "_id": "67bfa7f1d9670a06ec07512d", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa7f1d9670a06ec075126" + }, + { + "_id": "67bfa7f1d9670a06ec07512e", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67bfa7f1d9670a06ec075126" + }, + { + "_id": "67bfa7f1d9670a06ec07512f", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67bfa7f1d9670a06ec075128" + }, + { + "_id": "67bfa7f1d9670a06ec075130", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bfa7f1d9670a06ec07512c" + }, + { + "_id": "67bfa7f1d9670a06ec075131", + "_tpl": "5d4aaa54a4b9365392071170", + "slotId": "mod_handguard", + "parentId": "67bfa7f1d9670a06ec07512e" + }, + { + "_id": "67bfa7f1d9670a06ec075132", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bfa7f1d9670a06ec07512f" + }, + { + "_id": "67bfa7f1d9670a06ec075133", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa7f1d9670a06ec075130" + }, + { + "_id": "67bfa7f1d9670a06ec075134", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67bfa7f1d9670a06ec075131" + }, + { + "_id": "67bfa7f1d9670a06ec075135", + "_tpl": "65169d5b30425317755f8e25", + "slotId": "mod_foregrip", + "parentId": "67bfa7f1d9670a06ec075134" + } + ] + }, + { + "Id": "67bfa8430100185d5373f6e6", + "Name": "sr-2m", + "Root": "67bfa847d9670a06ec076e8c", + "Items": [ + { + "_id": "67bfa847d9670a06ec076e8c", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa847d9670a06ec076e8d", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "slotId": "mod_magazine", + "parentId": "67bfa847d9670a06ec076e8c" + }, + { + "_id": "67bfa847d9670a06ec076e8e", + "_tpl": "62e2a7138e1ac9380579c122", + "slotId": "mod_muzzle", + "parentId": "67bfa847d9670a06ec076e8c" + }, + { + "_id": "67bfa847d9670a06ec076e8f", + "_tpl": "62e2969582ebf260c20539c2", + "slotId": "mod_stock", + "parentId": "67bfa847d9670a06ec076e8c" + }, + { + "_id": "67bfa847d9670a06ec076e90", + "_tpl": "62e27a7865f0b1592a49e17b", + "slotId": "mod_reciever", + "parentId": "67bfa847d9670a06ec076e8c" + }, + { + "_id": "67bfa847d9670a06ec076e91", + "_tpl": "637ba19df7ca6372bf2613d7", + "slotId": "mod_handguard", + "parentId": "67bfa847d9670a06ec076e8c" + }, + { + "_id": "67bfa847d9670a06ec076e92", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "slotId": "mod_pistolgrip", + "parentId": "67bfa847d9670a06ec076e8c" + }, + { + "_id": "67bfa847d9670a06ec076e93", + "_tpl": "62e281349ecd3f493f6df954", + "slotId": "mod_mount", + "parentId": "67bfa847d9670a06ec076e90" + }, + { + "_id": "67bfa847d9670a06ec076e94", + "_tpl": "62ed189fb3608410ef5a2bfc", + "slotId": "mod_mount_000", + "parentId": "67bfa847d9670a06ec076e91" + }, + { + "_id": "67bfa847d9670a06ec076e95", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa847d9670a06ec076e93" + }, + { + "_id": "67bfa847d9670a06ec076e96", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa847d9670a06ec076e94" + } + ] + }, + { + "Id": "67bfa8640100185d53e95527", + "Name": "sr-2m HCO", + "Root": "67bfa86ad9670a06ec076ea5", + "Items": [ + { + "_id": "67bfa86ad9670a06ec076ea5", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa86ad9670a06ec076ea6", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "slotId": "mod_magazine", + "parentId": "67bfa86ad9670a06ec076ea5" + }, + { + "_id": "67bfa86ad9670a06ec076ea7", + "_tpl": "62e2a7138e1ac9380579c122", + "slotId": "mod_muzzle", + "parentId": "67bfa86ad9670a06ec076ea5" + }, + { + "_id": "67bfa86ad9670a06ec076ea8", + "_tpl": "62e2969582ebf260c20539c2", + "slotId": "mod_stock", + "parentId": "67bfa86ad9670a06ec076ea5" + }, + { + "_id": "67bfa86ad9670a06ec076ea9", + "_tpl": "62e27a7865f0b1592a49e17b", + "slotId": "mod_reciever", + "parentId": "67bfa86ad9670a06ec076ea5" + }, + { + "_id": "67bfa86ad9670a06ec076eaa", + "_tpl": "637ba19df7ca6372bf2613d7", + "slotId": "mod_handguard", + "parentId": "67bfa86ad9670a06ec076ea5" + }, + { + "_id": "67bfa86ad9670a06ec076eab", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "slotId": "mod_pistolgrip", + "parentId": "67bfa86ad9670a06ec076ea5" + }, + { + "_id": "67bfa86ad9670a06ec076eac", + "_tpl": "62e281349ecd3f493f6df954", + "slotId": "mod_mount", + "parentId": "67bfa86ad9670a06ec076ea9" + }, + { + "_id": "67bfa86ad9670a06ec076ead", + "_tpl": "62ed189fb3608410ef5a2bfc", + "slotId": "mod_mount_000", + "parentId": "67bfa86ad9670a06ec076eaa" + }, + { + "_id": "67bfa86ad9670a06ec076eae", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa86ad9670a06ec076eac" + }, + { + "_id": "67bfa86ad9670a06ec076eaf", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa86ad9670a06ec076ead" + } + ] + }, + { + "Id": "67bfa8fc0100185d53b7d6ae", + "Name": "supr holo 45vector", + "Root": "67bfa905d9670a06ec079cbb", + "Items": [ + { + "_id": "67bfa905d9670a06ec079cbb", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa905d9670a06ec079cbc", + "_tpl": "5fb651dc85f90547f674b6f4", + "slotId": "mod_magazine", + "parentId": "67bfa905d9670a06ec079cbb" + }, + { + "_id": "67bfa905d9670a06ec079cbd", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa905d9670a06ec079cbb" + }, + { + "_id": "67bfa905d9670a06ec079cbe", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa905d9670a06ec079cbb" + }, + { + "_id": "67bfa905d9670a06ec079cbf", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa905d9670a06ec079cbb" + }, + { + "_id": "67bfa905d9670a06ec079cc0", + "_tpl": "5fb655b748c711690e3a8d5a", + "slotId": "mod_stock", + "parentId": "67bfa905d9670a06ec079cbb" + }, + { + "_id": "67bfa905d9670a06ec079cc1", + "_tpl": "5fb65363d1409e5ca04b54f5", + "slotId": "mod_barrel", + "parentId": "67bfa905d9670a06ec079cbb" + }, + { + "_id": "67bfa905d9670a06ec079cc2", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67bfa905d9670a06ec079cbb" + }, + { + "_id": "67bfa905d9670a06ec079cc3", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67bfa905d9670a06ec079cbb" + }, + { + "_id": "67bfa905d9670a06ec079cc4", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67bfa905d9670a06ec079cbb" + }, + { + "_id": "67bfa905d9670a06ec079cc5", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67bfa905d9670a06ec079cc0" + }, + { + "_id": "67bfa905d9670a06ec079cc6", + "_tpl": "5fc4b992187fea44d52edaa9", + "slotId": "mod_muzzle", + "parentId": "67bfa905d9670a06ec079cc1" + }, + { + "_id": "67bfa905d9670a06ec079cc7", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa905d9670a06ec079cc2" + }, + { + "_id": "67bfa905d9670a06ec079cc8", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa905d9670a06ec079cc3" + }, + { + "_id": "67bfa905d9670a06ec079cc9", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67bfa905d9670a06ec079cc5" + }, + { + "_id": "67bfa905d9670a06ec079cca", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bfa905d9670a06ec079cc9" + }, + { + "_id": "67bfa905d9670a06ec079ccb", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67bfa905d9670a06ec079cc6" + } + ] + }, + { + "Id": "67bfa91c0100185d53e8fdfe", + "Name": "supr BOSS 45vector", + "Root": "67bfa921d9670a06ec07aa27", + "Items": [ + { + "_id": "67bfa921d9670a06ec07aa27", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa921d9670a06ec07aa28", + "_tpl": "5fb651dc85f90547f674b6f4", + "slotId": "mod_magazine", + "parentId": "67bfa921d9670a06ec07aa27" + }, + { + "_id": "67bfa921d9670a06ec07aa29", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa921d9670a06ec07aa27" + }, + { + "_id": "67bfa921d9670a06ec07aa2a", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa921d9670a06ec07aa27" + }, + { + "_id": "67bfa921d9670a06ec07aa2b", + "_tpl": "655f13e0a246670fb0373245", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa921d9670a06ec07aa27" + }, + { + "_id": "67bfa921d9670a06ec07aa2c", + "_tpl": "5fb655b748c711690e3a8d5a", + "slotId": "mod_stock", + "parentId": "67bfa921d9670a06ec07aa27" + }, + { + "_id": "67bfa921d9670a06ec07aa2d", + "_tpl": "5fb65363d1409e5ca04b54f5", + "slotId": "mod_barrel", + "parentId": "67bfa921d9670a06ec07aa27" + }, + { + "_id": "67bfa921d9670a06ec07aa2e", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67bfa921d9670a06ec07aa27" + }, + { + "_id": "67bfa921d9670a06ec07aa2f", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67bfa921d9670a06ec07aa27" + }, + { + "_id": "67bfa921d9670a06ec07aa30", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67bfa921d9670a06ec07aa27" + }, + { + "_id": "67bfa921d9670a06ec07aa31", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67bfa921d9670a06ec07aa2c" + }, + { + "_id": "67bfa921d9670a06ec07aa32", + "_tpl": "5fc4b992187fea44d52edaa9", + "slotId": "mod_muzzle", + "parentId": "67bfa921d9670a06ec07aa2d" + }, + { + "_id": "67bfa921d9670a06ec07aa33", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa921d9670a06ec07aa2e" + }, + { + "_id": "67bfa921d9670a06ec07aa34", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa921d9670a06ec07aa2f" + }, + { + "_id": "67bfa921d9670a06ec07aa35", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67bfa921d9670a06ec07aa31" + }, + { + "_id": "67bfa921d9670a06ec07aa36", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bfa921d9670a06ec07aa35" + }, + { + "_id": "67bfa921d9670a06ec07aa37", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67bfa921d9670a06ec07aa32" + } + ] + }, + { + "Id": "67bfa9390100185d5338a66b", + "Name": "supr dp 45vector", + "Root": "67bfa93dd9670a06ec07aa41", + "Items": [ + { + "_id": "67bfa93dd9670a06ec07aa41", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa93dd9670a06ec07aa42", + "_tpl": "5fb651dc85f90547f674b6f4", + "slotId": "mod_magazine", + "parentId": "67bfa93dd9670a06ec07aa41" + }, + { + "_id": "67bfa93dd9670a06ec07aa43", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa93dd9670a06ec07aa41" + }, + { + "_id": "67bfa93dd9670a06ec07aa44", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa93dd9670a06ec07aa41" + }, + { + "_id": "67bfa93dd9670a06ec07aa45", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bfa93dd9670a06ec07aa41" + }, + { + "_id": "67bfa93dd9670a06ec07aa46", + "_tpl": "5fb655b748c711690e3a8d5a", + "slotId": "mod_stock", + "parentId": "67bfa93dd9670a06ec07aa41" + }, + { + "_id": "67bfa93dd9670a06ec07aa47", + "_tpl": "5fb65363d1409e5ca04b54f5", + "slotId": "mod_barrel", + "parentId": "67bfa93dd9670a06ec07aa41" + }, + { + "_id": "67bfa93dd9670a06ec07aa48", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67bfa93dd9670a06ec07aa41" + }, + { + "_id": "67bfa93dd9670a06ec07aa49", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67bfa93dd9670a06ec07aa41" + }, + { + "_id": "67bfa93dd9670a06ec07aa4a", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67bfa93dd9670a06ec07aa41" + }, + { + "_id": "67bfa93dd9670a06ec07aa4b", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa93dd9670a06ec07aa45" + }, + { + "_id": "67bfa93dd9670a06ec07aa4c", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67bfa93dd9670a06ec07aa46" + }, + { + "_id": "67bfa93dd9670a06ec07aa4d", + "_tpl": "5fc4b992187fea44d52edaa9", + "slotId": "mod_muzzle", + "parentId": "67bfa93dd9670a06ec07aa47" + }, + { + "_id": "67bfa93dd9670a06ec07aa4e", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa93dd9670a06ec07aa48" + }, + { + "_id": "67bfa93dd9670a06ec07aa4f", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa93dd9670a06ec07aa49" + }, + { + "_id": "67bfa93dd9670a06ec07aa50", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67bfa93dd9670a06ec07aa4c" + }, + { + "_id": "67bfa93dd9670a06ec07aa51", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bfa93dd9670a06ec07aa50" + }, + { + "_id": "67bfa93dd9670a06ec07aa52", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67bfa93dd9670a06ec07aa4d" + } + ] + }, + { + "Id": "67bfa9610100185d535d7458", + "Name": "supr holo 45vector v2", + "Root": "67bfa98cd9670a06ec07c7db", + "Items": [ + { + "_id": "67bfa98cd9670a06ec07c7db", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa98cd9670a06ec07c7dc", + "_tpl": "5fb651dc85f90547f674b6f4", + "slotId": "mod_magazine", + "parentId": "67bfa98cd9670a06ec07c7db" + }, + { + "_id": "67bfa98cd9670a06ec07c7dd", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa98cd9670a06ec07c7db" + }, + { + "_id": "67bfa98cd9670a06ec07c7de", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa98cd9670a06ec07c7db" + }, + { + "_id": "67bfa98cd9670a06ec07c7df", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa98cd9670a06ec07c7db" + }, + { + "_id": "67bfa98cd9670a06ec07c7e0", + "_tpl": "5fb655b748c711690e3a8d5a", + "slotId": "mod_stock", + "parentId": "67bfa98cd9670a06ec07c7db" + }, + { + "_id": "67bfa98cd9670a06ec07c7e1", + "_tpl": "5fb65363d1409e5ca04b54f5", + "slotId": "mod_barrel", + "parentId": "67bfa98cd9670a06ec07c7db" + }, + { + "_id": "67bfa98cd9670a06ec07c7e2", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67bfa98cd9670a06ec07c7db" + }, + { + "_id": "67bfa98cd9670a06ec07c7e3", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67bfa98cd9670a06ec07c7db" + }, + { + "_id": "67bfa98cd9670a06ec07c7e4", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67bfa98cd9670a06ec07c7db" + }, + { + "_id": "67bfa98cd9670a06ec07c7e5", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67bfa98cd9670a06ec07c7e0" + }, + { + "_id": "67bfa98cd9670a06ec07c7e6", + "_tpl": "5fc4b992187fea44d52edaa9", + "slotId": "mod_muzzle", + "parentId": "67bfa98cd9670a06ec07c7e1" + }, + { + "_id": "67bfa98cd9670a06ec07c7e7", + "_tpl": "5c1bc5af2e221602b412949b", + "slotId": "mod_foregrip", + "parentId": "67bfa98cd9670a06ec07c7e2" + }, + { + "_id": "67bfa98cd9670a06ec07c7e8", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa98cd9670a06ec07c7e3" + }, + { + "_id": "67bfa98cd9670a06ec07c7e9", + "_tpl": "6516e971a3d4c6497930b450", + "slotId": "mod_stock_000", + "parentId": "67bfa98cd9670a06ec07c7e5" + }, + { + "_id": "67bfa98cd9670a06ec07c7ea", + "_tpl": "6516e9d7e239bd0c487e3766", + "slotId": "mod_stock_000", + "parentId": "67bfa98cd9670a06ec07c7e9" + }, + { + "_id": "67bfa98cd9670a06ec07c7eb", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67bfa98cd9670a06ec07c7e6" + } + ] + }, + { + "Id": "67bfa9b60100185d535009ad", + "Name": "loud holo 19vector", + "Root": "67bfa9bed9670a06ec07d911", + "Items": [ + { + "_id": "67bfa9bed9670a06ec07d911", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa9bed9670a06ec07d912", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67bfa9bed9670a06ec07d911" + }, + { + "_id": "67bfa9bed9670a06ec07d913", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa9bed9670a06ec07d911" + }, + { + "_id": "67bfa9bed9670a06ec07d914", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa9bed9670a06ec07d911" + }, + { + "_id": "67bfa9bed9670a06ec07d915", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa9bed9670a06ec07d911" + }, + { + "_id": "67bfa9bed9670a06ec07d916", + "_tpl": "5fb655b748c711690e3a8d5a", + "slotId": "mod_stock", + "parentId": "67bfa9bed9670a06ec07d911" + }, + { + "_id": "67bfa9bed9670a06ec07d917", + "_tpl": "5fbbc366ca32ed67276c1557", + "slotId": "mod_barrel", + "parentId": "67bfa9bed9670a06ec07d911" + }, + { + "_id": "67bfa9bed9670a06ec07d918", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67bfa9bed9670a06ec07d911" + }, + { + "_id": "67bfa9bed9670a06ec07d919", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67bfa9bed9670a06ec07d911" + }, + { + "_id": "67bfa9bed9670a06ec07d91a", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67bfa9bed9670a06ec07d911" + }, + { + "_id": "67bfa9bed9670a06ec07d91b", + "_tpl": "5c793fc42e221600114ca25d", + "slotId": "mod_stock_000", + "parentId": "67bfa9bed9670a06ec07d916" + }, + { + "_id": "67bfa9bed9670a06ec07d91c", + "_tpl": "5cf6935bd7f00c06585fb791", + "slotId": "mod_muzzle", + "parentId": "67bfa9bed9670a06ec07d917" + }, + { + "_id": "67bfa9bed9670a06ec07d91d", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa9bed9670a06ec07d918" + }, + { + "_id": "67bfa9bed9670a06ec07d91e", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa9bed9670a06ec07d91a" + }, + { + "_id": "67bfa9bed9670a06ec07d91f", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67bfa9bed9670a06ec07d91b" + }, + { + "_id": "67bfa9bed9670a06ec07d920", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bfa9bed9670a06ec07d91f" + } + ] + }, + { + "Id": "67bfa9d80100185d531e063a", + "Name": "supr holo 19vector v2", + "Root": "67bfa9e1d9670a06ec07d97a", + "Items": [ + { + "_id": "67bfa9e1d9670a06ec07d97a", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfa9e1d9670a06ec07d97b", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67bfa9e1d9670a06ec07d97a" + }, + { + "_id": "67bfa9e1d9670a06ec07d97c", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa9e1d9670a06ec07d97a" + }, + { + "_id": "67bfa9e1d9670a06ec07d97d", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa9e1d9670a06ec07d97a" + }, + { + "_id": "67bfa9e1d9670a06ec07d97e", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfa9e1d9670a06ec07d97a" + }, + { + "_id": "67bfa9e1d9670a06ec07d97f", + "_tpl": "5fb655b748c711690e3a8d5a", + "slotId": "mod_stock", + "parentId": "67bfa9e1d9670a06ec07d97a" + }, + { + "_id": "67bfa9e1d9670a06ec07d980", + "_tpl": "5fbbc366ca32ed67276c1557", + "slotId": "mod_barrel", + "parentId": "67bfa9e1d9670a06ec07d97a" + }, + { + "_id": "67bfa9e1d9670a06ec07d981", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67bfa9e1d9670a06ec07d97a" + }, + { + "_id": "67bfa9e1d9670a06ec07d982", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67bfa9e1d9670a06ec07d97a" + }, + { + "_id": "67bfa9e1d9670a06ec07d983", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67bfa9e1d9670a06ec07d97a" + }, + { + "_id": "67bfa9e1d9670a06ec07d984", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67bfa9e1d9670a06ec07d97f" + }, + { + "_id": "67bfa9e1d9670a06ec07d985", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67bfa9e1d9670a06ec07d980" + }, + { + "_id": "67bfa9e1d9670a06ec07d986", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfa9e1d9670a06ec07d981" + }, + { + "_id": "67bfa9e1d9670a06ec07d987", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfa9e1d9670a06ec07d982" + }, + { + "_id": "67bfa9e1d9670a06ec07d988", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67bfa9e1d9670a06ec07d984" + }, + { + "_id": "67bfa9e1d9670a06ec07d989", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bfa9e1d9670a06ec07d988" + } + ] + }, + { + "Id": "67bfaa000100185d53808b8b", + "Name": "supr holo 19vector v3", + "Root": "67bfaa05d9670a06ec07e866", + "Items": [ + { + "_id": "67bfaa05d9670a06ec07e866", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfaa05d9670a06ec07e867", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67bfaa05d9670a06ec07e866" + }, + { + "_id": "67bfaa05d9670a06ec07e868", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfaa05d9670a06ec07e866" + }, + { + "_id": "67bfaa05d9670a06ec07e869", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfaa05d9670a06ec07e866" + }, + { + "_id": "67bfaa05d9670a06ec07e86a", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfaa05d9670a06ec07e866" + }, + { + "_id": "67bfaa05d9670a06ec07e86b", + "_tpl": "5fb655b748c711690e3a8d5a", + "slotId": "mod_stock", + "parentId": "67bfaa05d9670a06ec07e866" + }, + { + "_id": "67bfaa05d9670a06ec07e86c", + "_tpl": "5fbbc366ca32ed67276c1557", + "slotId": "mod_barrel", + "parentId": "67bfaa05d9670a06ec07e866" + }, + { + "_id": "67bfaa05d9670a06ec07e86d", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67bfaa05d9670a06ec07e866" + }, + { + "_id": "67bfaa05d9670a06ec07e86e", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67bfaa05d9670a06ec07e866" + }, + { + "_id": "67bfaa05d9670a06ec07e86f", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67bfaa05d9670a06ec07e866" + }, + { + "_id": "67bfaa05d9670a06ec07e870", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67bfaa05d9670a06ec07e86b" + }, + { + "_id": "67bfaa05d9670a06ec07e871", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle", + "parentId": "67bfaa05d9670a06ec07e86c" + }, + { + "_id": "67bfaa05d9670a06ec07e872", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bfaa05d9670a06ec07e86d" + }, + { + "_id": "67bfaa05d9670a06ec07e873", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfaa05d9670a06ec07e86e" + }, + { + "_id": "67bfaa05d9670a06ec07e874", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bfaa05d9670a06ec07e870" + }, + { + "_id": "67bfaa05d9670a06ec07e875", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bfaa05d9670a06ec07e874" + } + ] + }, + { + "Id": "67bfaa150100185d53b710cb", + "Name": "loud dp 19vector", + "Root": "67bfaa2dd9670a06ec07f6fe", + "Items": [ + { + "_id": "67bfaa2dd9670a06ec07f6fe", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfaa2dd9670a06ec07f6ff", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67bfaa2dd9670a06ec07f6fe" + }, + { + "_id": "67bfaa2dd9670a06ec07f700", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfaa2dd9670a06ec07f6fe" + }, + { + "_id": "67bfaa2dd9670a06ec07f701", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfaa2dd9670a06ec07f6fe" + }, + { + "_id": "67bfaa2dd9670a06ec07f702", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bfaa2dd9670a06ec07f6fe" + }, + { + "_id": "67bfaa2dd9670a06ec07f703", + "_tpl": "5fb655b748c711690e3a8d5a", + "slotId": "mod_stock", + "parentId": "67bfaa2dd9670a06ec07f6fe" + }, + { + "_id": "67bfaa2dd9670a06ec07f704", + "_tpl": "5fbbc366ca32ed67276c1557", + "slotId": "mod_barrel", + "parentId": "67bfaa2dd9670a06ec07f6fe" + }, + { + "_id": "67bfaa2dd9670a06ec07f705", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67bfaa2dd9670a06ec07f6fe" + }, + { + "_id": "67bfaa2dd9670a06ec07f706", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67bfaa2dd9670a06ec07f6fe" + }, + { + "_id": "67bfaa2dd9670a06ec07f707", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67bfaa2dd9670a06ec07f6fe" + }, + { + "_id": "67bfaa2dd9670a06ec07f708", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfaa2dd9670a06ec07f702" + }, + { + "_id": "67bfaa2dd9670a06ec07f709", + "_tpl": "5c793fc42e221600114ca25d", + "slotId": "mod_stock_000", + "parentId": "67bfaa2dd9670a06ec07f703" + }, + { + "_id": "67bfaa2dd9670a06ec07f70a", + "_tpl": "5cf6935bd7f00c06585fb791", + "slotId": "mod_muzzle", + "parentId": "67bfaa2dd9670a06ec07f704" + }, + { + "_id": "67bfaa2dd9670a06ec07f70b", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67bfaa2dd9670a06ec07f705" + }, + { + "_id": "67bfaa2dd9670a06ec07f70c", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfaa2dd9670a06ec07f707" + }, + { + "_id": "67bfaa2dd9670a06ec07f70d", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67bfaa2dd9670a06ec07f709" + }, + { + "_id": "67bfaa2dd9670a06ec07f70e", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67bfaa2dd9670a06ec07f70d" + } + ] + }, + { + "Id": "67bfab570100185d530d68f1", + "Name": "supr holo mp9n", + "Root": "67bfab60d9670a06ec0851d2", + "Items": [ + { + "_id": "67bfab60d9670a06ec0851d2", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfab60d9670a06ec0851d3", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67bfab60d9670a06ec0851d2" + }, + { + "_id": "67bfab60d9670a06ec0851d4", + "_tpl": "5de8f237bbaf010b10528a70", + "slotId": "mod_muzzle", + "parentId": "67bfab60d9670a06ec0851d2" + }, + { + "_id": "67bfab60d9670a06ec0851d5", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67bfab60d9670a06ec0851d2" + }, + { + "_id": "67bfab60d9670a06ec0851d6", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "slotId": "mod_foregrip", + "parentId": "67bfab60d9670a06ec0851d2" + }, + { + "_id": "67bfab60d9670a06ec0851d7", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "slotId": "mod_reciever", + "parentId": "67bfab60d9670a06ec0851d2" + }, + { + "_id": "67bfab60d9670a06ec0851d8", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67bfab60d9670a06ec0851d2" + }, + { + "_id": "67bfab60d9670a06ec0851d9", + "_tpl": "5de8f2d5b74cd90030650c72", + "slotId": "mod_muzzle", + "parentId": "67bfab60d9670a06ec0851d4" + }, + { + "_id": "67bfab60d9670a06ec0851da", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfab60d9670a06ec0851d4" + }, + { + "_id": "67bfab60d9670a06ec0851db", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfab60d9670a06ec0851d7" + }, + { + "_id": "67bfab60d9670a06ec0851dc", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfab60d9670a06ec0851d7" + }, + { + "_id": "67bfab60d9670a06ec0851dd", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "slotId": "mod_mount", + "parentId": "67bfab60d9670a06ec0851d7" + } + ] + }, + { + "Id": "67bfab6f0100185d53d8c4c5", + "Name": "supr dp mp9n", + "Root": "67bfab72d9670a06ec0851e0", + "Items": [ + { + "_id": "67bfab72d9670a06ec0851e0", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfab72d9670a06ec0851e1", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67bfab72d9670a06ec0851e0" + }, + { + "_id": "67bfab72d9670a06ec0851e2", + "_tpl": "5de8f237bbaf010b10528a70", + "slotId": "mod_muzzle", + "parentId": "67bfab72d9670a06ec0851e0" + }, + { + "_id": "67bfab72d9670a06ec0851e3", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67bfab72d9670a06ec0851e0" + }, + { + "_id": "67bfab72d9670a06ec0851e4", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "slotId": "mod_foregrip", + "parentId": "67bfab72d9670a06ec0851e0" + }, + { + "_id": "67bfab72d9670a06ec0851e5", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "slotId": "mod_reciever", + "parentId": "67bfab72d9670a06ec0851e0" + }, + { + "_id": "67bfab72d9670a06ec0851e6", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67bfab72d9670a06ec0851e0" + }, + { + "_id": "67bfab72d9670a06ec0851e7", + "_tpl": "5de8f2d5b74cd90030650c72", + "slotId": "mod_muzzle", + "parentId": "67bfab72d9670a06ec0851e2" + }, + { + "_id": "67bfab72d9670a06ec0851e8", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfab72d9670a06ec0851e2" + }, + { + "_id": "67bfab72d9670a06ec0851e9", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bfab72d9670a06ec0851e5" + }, + { + "_id": "67bfab72d9670a06ec0851ea", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfab72d9670a06ec0851e5" + }, + { + "_id": "67bfab72d9670a06ec0851eb", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "slotId": "mod_mount", + "parentId": "67bfab72d9670a06ec0851e5" + }, + { + "_id": "67bfab72d9670a06ec0851ec", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfab72d9670a06ec0851e9" + } + ] + }, + { + "Id": "67bfab930100185d538379c0", + "Name": "supr holo mp9", + "Root": "67bfab9ad9670a06ec086213", + "Items": [ + { + "_id": "67bfab9ad9670a06ec086213", + "_tpl": "5e00903ae9dc277128008b87", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfab9ad9670a06ec086214", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67bfab9ad9670a06ec086213" + }, + { + "_id": "67bfab9ad9670a06ec086215", + "_tpl": "5de8f237bbaf010b10528a70", + "slotId": "mod_muzzle", + "parentId": "67bfab9ad9670a06ec086213" + }, + { + "_id": "67bfab9ad9670a06ec086216", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67bfab9ad9670a06ec086213" + }, + { + "_id": "67bfab9ad9670a06ec086217", + "_tpl": "5e0090f7e9dc277128008b93", + "slotId": "mod_reciever", + "parentId": "67bfab9ad9670a06ec086213" + }, + { + "_id": "67bfab9ad9670a06ec086218", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67bfab9ad9670a06ec086213" + }, + { + "_id": "67bfab9ad9670a06ec086219", + "_tpl": "5de8fbf2b74cd90030650c79", + "slotId": "mod_mount_000", + "parentId": "67bfab9ad9670a06ec086213" + }, + { + "_id": "67bfab9ad9670a06ec08621a", + "_tpl": "5de8f2d5b74cd90030650c72", + "slotId": "mod_muzzle", + "parentId": "67bfab9ad9670a06ec086215" + }, + { + "_id": "67bfab9ad9670a06ec08621b", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfab9ad9670a06ec086215" + }, + { + "_id": "67bfab9ad9670a06ec08621c", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfab9ad9670a06ec086217" + }, + { + "_id": "67bfab9ad9670a06ec08621d", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfab9ad9670a06ec086217" + }, + { + "_id": "67bfab9ad9670a06ec08621e", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67bfab9ad9670a06ec086219" + } + ] + }, + { + "Id": "67bfabb30100185d53425b4e", + "Name": "supr dp mp9", + "Root": "67bfabb7d9670a06ec087188", + "Items": [ + { + "_id": "67bfabb7d9670a06ec087188", + "_tpl": "5e00903ae9dc277128008b87", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67bfabb7d9670a06ec087189", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67bfabb7d9670a06ec087188" + }, + { + "_id": "67bfabb7d9670a06ec08718a", + "_tpl": "5de8f237bbaf010b10528a70", + "slotId": "mod_muzzle", + "parentId": "67bfabb7d9670a06ec087188" + }, + { + "_id": "67bfabb7d9670a06ec08718b", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67bfabb7d9670a06ec087188" + }, + { + "_id": "67bfabb7d9670a06ec08718c", + "_tpl": "5e0090f7e9dc277128008b93", + "slotId": "mod_reciever", + "parentId": "67bfabb7d9670a06ec087188" + }, + { + "_id": "67bfabb7d9670a06ec08718d", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67bfabb7d9670a06ec087188" + }, + { + "_id": "67bfabb7d9670a06ec08718e", + "_tpl": "5de8fbf2b74cd90030650c79", + "slotId": "mod_mount_000", + "parentId": "67bfabb7d9670a06ec087188" + }, + { + "_id": "67bfabb7d9670a06ec08718f", + "_tpl": "5de8f2d5b74cd90030650c72", + "slotId": "mod_muzzle", + "parentId": "67bfabb7d9670a06ec08718a" + }, + { + "_id": "67bfabb7d9670a06ec087190", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67bfabb7d9670a06ec08718a" + }, + { + "_id": "67bfabb7d9670a06ec087191", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67bfabb7d9670a06ec08718c" + }, + { + "_id": "67bfabb7d9670a06ec087192", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfabb7d9670a06ec08718c" + }, + { + "_id": "67bfabb7d9670a06ec087193", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67bfabb7d9670a06ec08718e" + }, + { + "_id": "67bfabb7d9670a06ec087194", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67bfabb7d9670a06ec087191" + } + ] + }, + { + "Id": "67c007000100185d5377b346", + "Name": "supr holo pp19 v2", + "Root": "67c007049273ef3728037d83", + "Items": [ + { + "_id": "67c007049273ef3728037d83", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c007049273ef3728037d84", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistol_grip", + "parentId": "67c007049273ef3728037d83" + }, + { + "_id": "67c007049273ef3728037d85", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "slotId": "mod_stock", + "parentId": "67c007049273ef3728037d83" + }, + { + "_id": "67c007049273ef3728037d86", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67c007049273ef3728037d83" + }, + { + "_id": "67c007049273ef3728037d87", + "_tpl": "5c0672ed0db834001b7353f3", + "slotId": "mod_magazine", + "parentId": "67c007049273ef3728037d83" + }, + { + "_id": "67c007049273ef3728037d88", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67c007049273ef3728037d83" + }, + { + "_id": "67c007049273ef3728037d89", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67c007049273ef3728037d83" + }, + { + "_id": "67c007049273ef3728037d8a", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007049273ef3728037d83" + }, + { + "_id": "67c007049273ef3728037d8b", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67c007049273ef3728037d83" + }, + { + "_id": "67c007049273ef3728037d8c", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock", + "parentId": "67c007049273ef3728037d85" + }, + { + "_id": "67c007049273ef3728037d8d", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007049273ef3728037d89" + }, + { + "_id": "67c007049273ef3728037d8e", + "_tpl": "5d4aaa73a4b9365392071175", + "slotId": "mod_handguard", + "parentId": "67c007049273ef3728037d8b" + }, + { + "_id": "67c007049273ef3728037d8f", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c007049273ef3728037d8c" + }, + { + "_id": "67c007049273ef3728037d90", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c007049273ef3728037d8e" + }, + { + "_id": "67c007049273ef3728037d91", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67c007049273ef3728037d90" + } + ] + }, + { + "Id": "67c0074a0100185d532a29d9", + "Name": "supr holo stm9", + "Root": "67c007539273ef3728037dbd", + "Items": [ + { + "_id": "67c007539273ef3728037dbd", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c007539273ef3728037dbe", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67c007539273ef3728037dbd" + }, + { + "_id": "67c007539273ef3728037dbf", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67c007539273ef3728037dbd" + }, + { + "_id": "67c007539273ef3728037dc0", + "_tpl": "602e63fb6335467b0c5ac94d", + "slotId": "mod_reciever", + "parentId": "67c007539273ef3728037dbd" + }, + { + "_id": "67c007539273ef3728037dc1", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67c007539273ef3728037dbd" + }, + { + "_id": "67c007539273ef3728037dc2", + "_tpl": "6033749e88382f4fab3fd2c5", + "slotId": "mod_charge", + "parentId": "67c007539273ef3728037dbd" + }, + { + "_id": "67c007539273ef3728037dc3", + "_tpl": "602f85fd9b513876d4338d9c", + "slotId": "mod_tactical_000", + "parentId": "67c007539273ef3728037dbd" + }, + { + "_id": "67c007539273ef3728037dc4", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007539273ef3728037dc0" + }, + { + "_id": "67c007539273ef3728037dc5", + "_tpl": "603372b4da11d6478d5a07ff", + "slotId": "mod_barrel", + "parentId": "67c007539273ef3728037dc0" + }, + { + "_id": "67c007539273ef3728037dc6", + "_tpl": "6034e3cb0ddce744014cb870", + "slotId": "mod_handguard", + "parentId": "67c007539273ef3728037dc0" + }, + { + "_id": "67c007539273ef3728037dc7", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007539273ef3728037dc0" + }, + { + "_id": "67c007539273ef3728037dc8", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c007539273ef3728037dc1" + }, + { + "_id": "67c007539273ef3728037dc9", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle", + "parentId": "67c007539273ef3728037dc5" + }, + { + "_id": "67c007539273ef3728037dca", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67c007539273ef3728037dc6" + }, + { + "_id": "67c007539273ef3728037dcb", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c007539273ef3728037dc6" + }, + { + "_id": "67c007539273ef3728037dcc", + "_tpl": "5bc09a30d4351e00367fb7c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007539273ef3728037dc6" + }, + { + "_id": "67c007539273ef3728037dcd", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c007539273ef3728037dca" + }, + { + "_id": "67c007539273ef3728037dce", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67c007539273ef3728037dcb" + }, + { + "_id": "67c007539273ef3728037dcf", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c007539273ef3728037dc8" + } + ] + }, + { + "Id": "67c007700100185d532b6570", + "Name": "supr holo stm9 v2", + "Root": "67c007739273ef3728037ddb", + "Items": [ + { + "_id": "67c007739273ef3728037ddb", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c007739273ef3728037ddc", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67c007739273ef3728037ddb" + }, + { + "_id": "67c007739273ef3728037ddd", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67c007739273ef3728037ddb" + }, + { + "_id": "67c007739273ef3728037dde", + "_tpl": "602e63fb6335467b0c5ac94d", + "slotId": "mod_reciever", + "parentId": "67c007739273ef3728037ddb" + }, + { + "_id": "67c007739273ef3728037ddf", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67c007739273ef3728037ddb" + }, + { + "_id": "67c007739273ef3728037de0", + "_tpl": "6033749e88382f4fab3fd2c5", + "slotId": "mod_charge", + "parentId": "67c007739273ef3728037ddb" + }, + { + "_id": "67c007739273ef3728037de1", + "_tpl": "602f85fd9b513876d4338d9c", + "slotId": "mod_tactical_000", + "parentId": "67c007739273ef3728037ddb" + }, + { + "_id": "67c007739273ef3728037de2", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007739273ef3728037dde" + }, + { + "_id": "67c007739273ef3728037de3", + "_tpl": "603372b4da11d6478d5a07ff", + "slotId": "mod_barrel", + "parentId": "67c007739273ef3728037dde" + }, + { + "_id": "67c007739273ef3728037de4", + "_tpl": "6034e3cb0ddce744014cb870", + "slotId": "mod_handguard", + "parentId": "67c007739273ef3728037dde" + }, + { + "_id": "67c007739273ef3728037de5", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007739273ef3728037dde" + }, + { + "_id": "67c007739273ef3728037de6", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67c007739273ef3728037ddf" + }, + { + "_id": "67c007739273ef3728037de7", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67c007739273ef3728037de3" + }, + { + "_id": "67c007739273ef3728037de8", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67c007739273ef3728037de4" + }, + { + "_id": "67c007739273ef3728037de9", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c007739273ef3728037de4" + }, + { + "_id": "67c007739273ef3728037dea", + "_tpl": "5bc09a30d4351e00367fb7c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007739273ef3728037de4" + }, + { + "_id": "67c007739273ef3728037deb", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c007739273ef3728037de8" + }, + { + "_id": "67c007739273ef3728037dec", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67c007739273ef3728037de9" + }, + { + "_id": "67c007739273ef3728037ded", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c007739273ef3728037de6" + } + ] + }, + { + "Id": "67c007950100185d530a9fc4", + "Name": "supr sp9 stm9", + "Root": "67c007999273ef3728037e05", + "Items": [ + { + "_id": "67c007999273ef3728037e05", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c007999273ef3728037e06", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67c007999273ef3728037e05" + }, + { + "_id": "67c007999273ef3728037e07", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67c007999273ef3728037e05" + }, + { + "_id": "67c007999273ef3728037e08", + "_tpl": "602e63fb6335467b0c5ac94d", + "slotId": "mod_reciever", + "parentId": "67c007999273ef3728037e05" + }, + { + "_id": "67c007999273ef3728037e09", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67c007999273ef3728037e05" + }, + { + "_id": "67c007999273ef3728037e0a", + "_tpl": "6033749e88382f4fab3fd2c5", + "slotId": "mod_charge", + "parentId": "67c007999273ef3728037e05" + }, + { + "_id": "67c007999273ef3728037e0b", + "_tpl": "602f85fd9b513876d4338d9c", + "slotId": "mod_tactical_000", + "parentId": "67c007999273ef3728037e05" + }, + { + "_id": "67c007999273ef3728037e0c", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67c007999273ef3728037e08" + }, + { + "_id": "67c007999273ef3728037e0d", + "_tpl": "603372b4da11d6478d5a07ff", + "slotId": "mod_barrel", + "parentId": "67c007999273ef3728037e08" + }, + { + "_id": "67c007999273ef3728037e0e", + "_tpl": "6034e3cb0ddce744014cb870", + "slotId": "mod_handguard", + "parentId": "67c007999273ef3728037e08" + }, + { + "_id": "67c007999273ef3728037e0f", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007999273ef3728037e08" + }, + { + "_id": "67c007999273ef3728037e10", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c007999273ef3728037e09" + }, + { + "_id": "67c007999273ef3728037e11", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007999273ef3728037e0c" + }, + { + "_id": "67c007999273ef3728037e12", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle", + "parentId": "67c007999273ef3728037e0d" + }, + { + "_id": "67c007999273ef3728037e13", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67c007999273ef3728037e0e" + }, + { + "_id": "67c007999273ef3728037e14", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c007999273ef3728037e0e" + }, + { + "_id": "67c007999273ef3728037e15", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c007999273ef3728037e13" + }, + { + "_id": "67c007999273ef3728037e16", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67c007999273ef3728037e14" + }, + { + "_id": "67c007999273ef3728037e17", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c007999273ef3728037e10" + } + ] + }, + { + "Id": "67c007da0100185d53518740", + "Name": "loud holo mpx", + "Root": "67c007e99273ef3728038c33", + "Items": [ + { + "_id": "67c007e99273ef3728038c33", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c007e99273ef3728038c34", + "_tpl": "59db3a1d86f77429e05b4e92", + "slotId": "mod_pistol_grip", + "parentId": "67c007e99273ef3728038c33" + }, + { + "_id": "67c007e99273ef3728038c35", + "_tpl": "5c5db6742e2216000f1b2852", + "slotId": "mod_magazine", + "parentId": "67c007e99273ef3728038c33" + }, + { + "_id": "67c007e99273ef3728038c36", + "_tpl": "5894a5b586f77426d2590767", + "slotId": "mod_reciever", + "parentId": "67c007e99273ef3728038c33" + }, + { + "_id": "67c007e99273ef3728038c37", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67c007e99273ef3728038c33" + }, + { + "_id": "67c007e99273ef3728038c38", + "_tpl": "5c5db6b32e221600102611a0", + "slotId": "mod_charge", + "parentId": "67c007e99273ef3728038c33" + }, + { + "_id": "67c007e99273ef3728038c39", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007e99273ef3728038c36" + }, + { + "_id": "67c007e99273ef3728038c3a", + "_tpl": "5894a2c386f77427140b8342", + "slotId": "mod_barrel", + "parentId": "67c007e99273ef3728038c36" + }, + { + "_id": "67c007e99273ef3728038c3b", + "_tpl": "5c5db5fc2e2216000f1b2842", + "slotId": "mod_handguard", + "parentId": "67c007e99273ef3728038c36" + }, + { + "_id": "67c007e99273ef3728038c3c", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c007e99273ef3728038c36" + }, + { + "_id": "67c007e99273ef3728038c3d", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67c007e99273ef3728038c37" + }, + { + "_id": "67c007e99273ef3728038c3e", + "_tpl": "5cf6935bd7f00c06585fb791", + "slotId": "mod_muzzle", + "parentId": "67c007e99273ef3728038c3a" + }, + { + "_id": "67c007e99273ef3728038c3f", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67c007e99273ef3728038c3b" + }, + { + "_id": "67c007e99273ef3728038c40", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c007e99273ef3728038c3b" + }, + { + "_id": "67c007e99273ef3728038c41", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c007e99273ef3728038c3f" + }, + { + "_id": "67c007e99273ef3728038c42", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67c007e99273ef3728038c40" + }, + { + "_id": "67c007e99273ef3728038c43", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c007e99273ef3728038c3d" + }, + { + "_id": "67c007e99273ef3728038c44", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c007e99273ef3728038c43" + } + ] + }, + { + "Id": "67c0084c0100185d5345711a", + "Name": "supr holo long mpx", + "Root": "67c008549273ef3728039b09", + "Items": [ + { + "_id": "67c008549273ef3728039b09", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c008549273ef3728039b0a", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67c008549273ef3728039b09" + }, + { + "_id": "67c008549273ef3728039b0b", + "_tpl": "5c5db6742e2216000f1b2852", + "slotId": "mod_magazine", + "parentId": "67c008549273ef3728039b09" + }, + { + "_id": "67c008549273ef3728039b0c", + "_tpl": "5894a5b586f77426d2590767", + "slotId": "mod_reciever", + "parentId": "67c008549273ef3728039b09" + }, + { + "_id": "67c008549273ef3728039b0d", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67c008549273ef3728039b09" + }, + { + "_id": "67c008549273ef3728039b0e", + "_tpl": "5c5db6b32e221600102611a0", + "slotId": "mod_charge", + "parentId": "67c008549273ef3728039b09" + }, + { + "_id": "67c008549273ef3728039b0f", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c008549273ef3728039b0c" + }, + { + "_id": "67c008549273ef3728039b10", + "_tpl": "5c5db5c62e22160012542255", + "slotId": "mod_barrel", + "parentId": "67c008549273ef3728039b0c" + }, + { + "_id": "67c008549273ef3728039b11", + "_tpl": "5c5db63a2e2216000f1b284a", + "slotId": "mod_handguard", + "parentId": "67c008549273ef3728039b0c" + }, + { + "_id": "67c008549273ef3728039b12", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c008549273ef3728039b0c" + }, + { + "_id": "67c008549273ef3728039b13", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67c008549273ef3728039b0d" + }, + { + "_id": "67c008549273ef3728039b14", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67c008549273ef3728039b10" + }, + { + "_id": "67c008549273ef3728039b15", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c008549273ef3728039b11" + }, + { + "_id": "67c008549273ef3728039b16", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c008549273ef3728039b11" + }, + { + "_id": "67c008549273ef3728039b17", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c008549273ef3728039b15" + }, + { + "_id": "67c008549273ef3728039b18", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67c008549273ef3728039b16" + }, + { + "_id": "67c008549273ef3728039b19", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c008549273ef3728039b13" + }, + { + "_id": "67c008549273ef3728039b1a", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c008549273ef3728039b19" + } + ] + }, + { + "Id": "67c008780100185d53cb7c35", + "Name": "loud UH1 long mpx", + "Root": "67c008809273ef372803aa14", + "Items": [ + { + "_id": "67c008809273ef372803aa14", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c008809273ef372803aa15", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67c008809273ef372803aa14" + }, + { + "_id": "67c008809273ef372803aa16", + "_tpl": "5c5db6742e2216000f1b2852", + "slotId": "mod_magazine", + "parentId": "67c008809273ef372803aa14" + }, + { + "_id": "67c008809273ef372803aa17", + "_tpl": "5894a5b586f77426d2590767", + "slotId": "mod_reciever", + "parentId": "67c008809273ef372803aa14" + }, + { + "_id": "67c008809273ef372803aa18", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67c008809273ef372803aa14" + }, + { + "_id": "67c008809273ef372803aa19", + "_tpl": "5c5db6b32e221600102611a0", + "slotId": "mod_charge", + "parentId": "67c008809273ef372803aa14" + }, + { + "_id": "67c008809273ef372803aa1a", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c008809273ef372803aa17" + }, + { + "_id": "67c008809273ef372803aa1b", + "_tpl": "5c5db5c62e22160012542255", + "slotId": "mod_barrel", + "parentId": "67c008809273ef372803aa17" + }, + { + "_id": "67c008809273ef372803aa1c", + "_tpl": "5c5db63a2e2216000f1b284a", + "slotId": "mod_handguard", + "parentId": "67c008809273ef372803aa17" + }, + { + "_id": "67c008809273ef372803aa1d", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c008809273ef372803aa17" + }, + { + "_id": "67c008809273ef372803aa1e", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67c008809273ef372803aa18" + }, + { + "_id": "67c008809273ef372803aa1f", + "_tpl": "5cf6935bd7f00c06585fb791", + "slotId": "mod_muzzle", + "parentId": "67c008809273ef372803aa1b" + }, + { + "_id": "67c008809273ef372803aa20", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c008809273ef372803aa1c" + }, + { + "_id": "67c008809273ef372803aa21", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c008809273ef372803aa1c" + }, + { + "_id": "67c008809273ef372803aa22", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c008809273ef372803aa20" + }, + { + "_id": "67c008809273ef372803aa23", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67c008809273ef372803aa21" + }, + { + "_id": "67c008809273ef372803aa24", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c008809273ef372803aa1e" + }, + { + "_id": "67c008809273ef372803aa25", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c008809273ef372803aa24" + } + ] + }, + { + "Id": "67c008a30100185d53db0a26", + "Name": "supr Bravo long mpx", + "Root": "67c008aa9273ef372803aa37", + "Items": [ + { + "_id": "67c008aa9273ef372803aa37", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c008aa9273ef372803aa38", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67c008aa9273ef372803aa37" + }, + { + "_id": "67c008aa9273ef372803aa39", + "_tpl": "5c5db6742e2216000f1b2852", + "slotId": "mod_magazine", + "parentId": "67c008aa9273ef372803aa37" + }, + { + "_id": "67c008aa9273ef372803aa3a", + "_tpl": "5894a5b586f77426d2590767", + "slotId": "mod_reciever", + "parentId": "67c008aa9273ef372803aa37" + }, + { + "_id": "67c008aa9273ef372803aa3b", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67c008aa9273ef372803aa37" + }, + { + "_id": "67c008aa9273ef372803aa3c", + "_tpl": "5c5db6b32e221600102611a0", + "slotId": "mod_charge", + "parentId": "67c008aa9273ef372803aa37" + }, + { + "_id": "67c008aa9273ef372803aa3d", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c008aa9273ef372803aa3a" + }, + { + "_id": "67c008aa9273ef372803aa3e", + "_tpl": "5c5db5c62e22160012542255", + "slotId": "mod_barrel", + "parentId": "67c008aa9273ef372803aa3a" + }, + { + "_id": "67c008aa9273ef372803aa3f", + "_tpl": "5c5db63a2e2216000f1b284a", + "slotId": "mod_handguard", + "parentId": "67c008aa9273ef372803aa3a" + }, + { + "_id": "67c008aa9273ef372803aa40", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c008aa9273ef372803aa3a" + }, + { + "_id": "67c008aa9273ef372803aa41", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67c008aa9273ef372803aa3b" + }, + { + "_id": "67c008aa9273ef372803aa42", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c008aa9273ef372803aa3d" + }, + { + "_id": "67c008aa9273ef372803aa43", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67c008aa9273ef372803aa3e" + }, + { + "_id": "67c008aa9273ef372803aa44", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c008aa9273ef372803aa3f" + }, + { + "_id": "67c008aa9273ef372803aa45", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c008aa9273ef372803aa3f" + }, + { + "_id": "67c008aa9273ef372803aa46", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c008aa9273ef372803aa44" + }, + { + "_id": "67c008aa9273ef372803aa47", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67c008aa9273ef372803aa45" + }, + { + "_id": "67c008aa9273ef372803aa48", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c008aa9273ef372803aa41" + }, + { + "_id": "67c008aa9273ef372803aa49", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c008aa9273ef372803aa48" + } + ] + }, + { + "Id": "67c009070100185d53ba2b6d", + "Name": "supr dp long mpx", + "Root": "67c0090c9273ef372803b990", + "Items": [ + { + "_id": "67c0090c9273ef372803b990", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c0090c9273ef372803b991", + "_tpl": "5d025cc1d7ad1a53845279ef", + "slotId": "mod_pistol_grip", + "parentId": "67c0090c9273ef372803b990" + }, + { + "_id": "67c0090c9273ef372803b992", + "_tpl": "5c5db6742e2216000f1b2852", + "slotId": "mod_magazine", + "parentId": "67c0090c9273ef372803b990" + }, + { + "_id": "67c0090c9273ef372803b993", + "_tpl": "5894a5b586f77426d2590767", + "slotId": "mod_reciever", + "parentId": "67c0090c9273ef372803b990" + }, + { + "_id": "67c0090c9273ef372803b994", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67c0090c9273ef372803b990" + }, + { + "_id": "67c0090c9273ef372803b995", + "_tpl": "5c5db6b32e221600102611a0", + "slotId": "mod_charge", + "parentId": "67c0090c9273ef372803b990" + }, + { + "_id": "67c0090c9273ef372803b996", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67c0090c9273ef372803b993" + }, + { + "_id": "67c0090c9273ef372803b997", + "_tpl": "5c5db5c62e22160012542255", + "slotId": "mod_barrel", + "parentId": "67c0090c9273ef372803b993" + }, + { + "_id": "67c0090c9273ef372803b998", + "_tpl": "5c5db63a2e2216000f1b284a", + "slotId": "mod_handguard", + "parentId": "67c0090c9273ef372803b993" + }, + { + "_id": "67c0090c9273ef372803b999", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c0090c9273ef372803b993" + }, + { + "_id": "67c0090c9273ef372803b99a", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67c0090c9273ef372803b994" + }, + { + "_id": "67c0090c9273ef372803b99b", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c0090c9273ef372803b996" + }, + { + "_id": "67c0090c9273ef372803b99c", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67c0090c9273ef372803b997" + }, + { + "_id": "67c0090c9273ef372803b99d", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c0090c9273ef372803b998" + }, + { + "_id": "67c0090c9273ef372803b99e", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c0090c9273ef372803b998" + }, + { + "_id": "67c0090c9273ef372803b99f", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c0090c9273ef372803b99d" + }, + { + "_id": "67c0090c9273ef372803b9a0", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67c0090c9273ef372803b99e" + }, + { + "_id": "67c0090c9273ef372803b9a1", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c0090c9273ef372803b99a" + }, + { + "_id": "67c0090c9273ef372803b9a2", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c0090c9273ef372803b9a1" + } + ] + }, + { + "Id": "67c00a950100185d53006b1c", + "Name": "rpd vanilla", + "Root": "67c00a9b9273ef3728041358", + "Items": [ + { + "_id": "67c00a9b9273ef3728041358", + "_tpl": "6513ef33e06849f06c0957ca", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67c00a9b9273ef3728041359", + "_tpl": "6513f0a194c72326990a3868", + "slotId": "mod_magazine", + "parentId": "67c00a9b9273ef3728041358" + }, + { + "_id": "67c00a9b9273ef372804135a", + "_tpl": "6513f1798cb24472490ee331", + "slotId": "mod_stock", + "parentId": "67c00a9b9273ef3728041358" + }, + { + "_id": "67c00a9b9273ef372804135b", + "_tpl": "6513eff1e06849f06c0957d4", + "slotId": "mod_barrel", + "parentId": "67c00a9b9273ef3728041358" + }, + { + "_id": "67c00a9b9273ef372804135c", + "_tpl": "6513f05a94c72326990a3866", + "slotId": "mod_handguard", + "parentId": "67c00a9b9273ef3728041358" + }, + { + "_id": "67c00a9b9273ef372804135d", + "_tpl": "6513f153e63f29908d0ffaba", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00a9b9273ef3728041358" + }, + { + "_id": "67c00a9b9273ef372804135e", + "_tpl": "6513f13a8cb24472490ee32f", + "slotId": "mod_pistolgrip", + "parentId": "67c00a9b9273ef372804135a" + }, + { + "_id": "67c00a9b9273ef372804135f", + "_tpl": "6513f037e06849f06c0957d7", + "slotId": "mod_bipod", + "parentId": "67c00a9b9273ef372804135b" + }, + { + "_id": "67c00a9b9273ef3728041360", + "_tpl": "6513f0f5e63f29908d0ffab8", + "slotId": "mod_muzzle", + "parentId": "67c00a9b9273ef372804135b" + } + ] + }, + { + "Id": "67c00ab10100185d53d6d570", + "Name": "RPDN vanilla", + "Root": "67c00ab99273ef3728041361", + "Items": [ + { + "_id": "67c00ab99273ef3728041361", + "_tpl": "65268d8ecb944ff1e90ea385", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67c00ab99273ef3728041362", + "_tpl": "6513f0a194c72326990a3868", + "slotId": "mod_magazine", + "parentId": "67c00ab99273ef3728041361" + }, + { + "_id": "67c00ab99273ef3728041363", + "_tpl": "6513f1798cb24472490ee331", + "slotId": "mod_stock", + "parentId": "67c00ab99273ef3728041361" + }, + { + "_id": "67c00ab99273ef3728041364", + "_tpl": "6513eff1e06849f06c0957d4", + "slotId": "mod_barrel", + "parentId": "67c00ab99273ef3728041361" + }, + { + "_id": "67c00ab99273ef3728041365", + "_tpl": "6513f05a94c72326990a3866", + "slotId": "mod_handguard", + "parentId": "67c00ab99273ef3728041361" + }, + { + "_id": "67c00ab99273ef3728041366", + "_tpl": "6513f153e63f29908d0ffaba", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00ab99273ef3728041361" + }, + { + "_id": "67c00ab99273ef3728041367", + "_tpl": "6513f13a8cb24472490ee32f", + "slotId": "mod_pistolgrip", + "parentId": "67c00ab99273ef3728041363" + }, + { + "_id": "67c00ab99273ef3728041368", + "_tpl": "6513f037e06849f06c0957d7", + "slotId": "mod_bipod", + "parentId": "67c00ab99273ef3728041364" + }, + { + "_id": "67c00ab99273ef3728041369", + "_tpl": "6513f0f5e63f29908d0ffab8", + "slotId": "mod_muzzle", + "parentId": "67c00ab99273ef3728041364" + } + ] + }, + { + "Id": "67c00afe0100185d53f1cf32", + "Name": "pkp dp", + "Root": "67c00b079273ef372804229e", + "Items": [ + { + "_id": "67c00b079273ef372804229e", + "_tpl": "64ca3d3954fc657e230529cc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67c00b079273ef372804229f", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistolgrip", + "parentId": "67c00b079273ef372804229e" + }, + { + "_id": "67c00b079273ef37280422a0", + "_tpl": "646372518610c40fc20204e8", + "slotId": "mod_magazine", + "parentId": "67c00b079273ef372804229e" + }, + { + "_id": "67c00b079273ef37280422a1", + "_tpl": "6492e3a97df7d749100e29ee", + "slotId": "mod_stock", + "parentId": "67c00b079273ef372804229e" + }, + { + "_id": "67c00b079273ef37280422a2", + "_tpl": "64639a9aab86f8fd4300146c", + "slotId": "mod_barrel", + "parentId": "67c00b079273ef372804229e" + }, + { + "_id": "67c00b079273ef37280422a3", + "_tpl": "6491c6f6ef312a876705191b", + "slotId": "mod_handguard", + "parentId": "67c00b079273ef372804229e" + }, + { + "_id": "67c00b079273ef37280422a4", + "_tpl": "6492fb8253acae0af00a29b6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00b079273ef372804229e" + }, + { + "_id": "67c00b079273ef37280422a5", + "_tpl": "638db77630c4240f9e06f8b6", + "slotId": "mod_scope", + "parentId": "67c00b079273ef372804229e" + }, + { + "_id": "67c00b079273ef37280422a6", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67c00b079273ef37280422a3" + }, + { + "_id": "67c00b079273ef37280422a7", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67c00b079273ef37280422a5" + }, + { + "_id": "67c00b079273ef37280422a8", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00b079273ef37280422a7" + } + ] + }, + { + "Id": "67c00b810100185d5356a30d", + "Name": "loud holo m60", + "Root": "67c00b899273ef37280440b2", + "Items": [ + { + "_id": "67c00b899273ef37280440b2", + "_tpl": "65fb023261d5829b2d090755", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67c00b899273ef37280440b3", + "_tpl": "660ea4453786cc0af808a1be", + "slotId": "mod_magazine", + "parentId": "67c00b899273ef37280440b2" + }, + { + "_id": "67c00b899273ef37280440b4", + "_tpl": "6615202b96461aa8360271eb", + "slotId": "mod_stock", + "parentId": "67c00b899273ef37280440b2" + }, + { + "_id": "67c00b899273ef37280440b5", + "_tpl": "66225d88a1c7e3b81600c76f", + "slotId": "mod_barrel", + "parentId": "67c00b899273ef37280440b2" + }, + { + "_id": "67c00b899273ef37280440b6", + "_tpl": "66012d64c752a02bbe05e69b", + "slotId": "mod_handguard", + "parentId": "67c00b899273ef37280440b2" + }, + { + "_id": "67c00b899273ef37280440b7", + "_tpl": "6601265f98a610c1aa0ea637", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00b899273ef37280440b2" + }, + { + "_id": "67c00b899273ef37280440b8", + "_tpl": "6615208aa031cbb5570e346a", + "slotId": "mod_pistolgrip_000", + "parentId": "67c00b899273ef37280440b2" + }, + { + "_id": "67c00b899273ef37280440b9", + "_tpl": "66012d9a3dff5074ed002e33", + "slotId": "mod_bipod", + "parentId": "67c00b899273ef37280440b2" + }, + { + "_id": "67c00b899273ef37280440ba", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00b899273ef37280440b2" + }, + { + "_id": "67c00b899273ef37280440bb", + "_tpl": "6642f63667f5cb56a00662eb", + "slotId": "mod_muzzle", + "parentId": "67c00b899273ef37280440b5" + }, + { + "_id": "67c00b899273ef37280440bc", + "_tpl": "660126a98f2b23af220b27e7", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00b899273ef37280440b5" + }, + { + "_id": "67c00b899273ef37280440bd", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67c00b899273ef37280440b6" + }, + { + "_id": "67c00b899273ef37280440be", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c00b899273ef37280440b6" + }, + { + "_id": "67c00b899273ef37280440bf", + "_tpl": "66152060a031cbb5570e3466", + "slotId": "mod_pistolgrip_001", + "parentId": "67c00b899273ef37280440b8" + } + ] + }, + { + "Id": "67c00be30100185d53de4c56", + "Name": "loud pkm", + "Root": "67c00bee9273ef3728045f25", + "Items": [ + { + "_id": "67c00bee9273ef3728045f25", + "_tpl": "64637076203536ad5600c990", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67c00bee9273ef3728045f26", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistolgrip", + "parentId": "67c00bee9273ef3728045f25" + }, + { + "_id": "67c00bee9273ef3728045f27", + "_tpl": "646372518610c40fc20204e8", + "slotId": "mod_magazine", + "parentId": "67c00bee9273ef3728045f25" + }, + { + "_id": "67c00bee9273ef3728045f28", + "_tpl": "6492e3a97df7d749100e29ee", + "slotId": "mod_stock", + "parentId": "67c00bee9273ef3728045f25" + }, + { + "_id": "67c00bee9273ef3728045f29", + "_tpl": "646371faf2404ab67905c8e9", + "slotId": "mod_barrel", + "parentId": "67c00bee9273ef3728045f25" + }, + { + "_id": "67c00bee9273ef3728045f2a", + "_tpl": "6491c6f6ef312a876705191b", + "slotId": "mod_handguard", + "parentId": "67c00bee9273ef3728045f25" + }, + { + "_id": "67c00bee9273ef3728045f2b", + "_tpl": "6492fb8253acae0af00a29b6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00bee9273ef3728045f25" + }, + { + "_id": "67c00bee9273ef3728045f2c", + "_tpl": "6492ef63cfcf7c89e701abf1", + "slotId": "mod_muzzle", + "parentId": "67c00bee9273ef3728045f29" + }, + { + "_id": "67c00bee9273ef3728045f2d", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c00bee9273ef3728045f2a" + }, + { + "_id": "67c00bee9273ef3728045f2e", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67c00bee9273ef3728045f2a" + } + ] + }, + { + "Id": "67c00c420100185d53a95fb5", + "Name": "loud holo tan m60", + "Root": "67c00c569273ef3728047af0", + "Items": [ + { + "_id": "67c00c569273ef3728047af0", + "_tpl": "661cec09b2c6356b4d0c7a36", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67c00c569273ef3728047af1", + "_tpl": "660ea4453786cc0af808a1be", + "slotId": "mod_magazine", + "parentId": "67c00c569273ef3728047af0" + }, + { + "_id": "67c00c569273ef3728047af2", + "_tpl": "661520fb6f8e1a96340afaa6", + "slotId": "mod_stock", + "parentId": "67c00c569273ef3728047af0" + }, + { + "_id": "67c00c569273ef3728047af3", + "_tpl": "66012788c752a02bbe05e68e", + "slotId": "mod_barrel", + "parentId": "67c00c569273ef3728047af0" + }, + { + "_id": "67c00c569273ef3728047af4", + "_tpl": "661fbe066751ee51930b01f2", + "slotId": "mod_handguard", + "parentId": "67c00c569273ef3728047af0" + }, + { + "_id": "67c00c569273ef3728047af5", + "_tpl": "6601265f98a610c1aa0ea637", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00c569273ef3728047af0" + }, + { + "_id": "67c00c569273ef3728047af6", + "_tpl": "66152153a031cbb5570e346f", + "slotId": "mod_pistolgrip_000", + "parentId": "67c00c569273ef3728047af0" + }, + { + "_id": "67c00c569273ef3728047af7", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00c569273ef3728047af0" + }, + { + "_id": "67c00c569273ef3728047af8", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67c00c569273ef3728047af3" + }, + { + "_id": "67c00c569273ef3728047af9", + "_tpl": "660126a98f2b23af220b27e7", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c00c569273ef3728047af3" + }, + { + "_id": "67c00c569273ef3728047afa", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67c00c569273ef3728047af4" + }, + { + "_id": "67c00c569273ef3728047afb", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c00c569273ef3728047af4" + }, + { + "_id": "67c00c569273ef3728047afc", + "_tpl": "6615211ca031cbb5570e346d", + "slotId": "mod_pistolgrip_001", + "parentId": "67c00c569273ef3728047af6" + } + ] + } + ], + [ // _decent + { + "Id": "67c170530100185b957ece87", + "Name": "supr holo flash m4a1", + "Root": "67c1706526e969667c038109", + "Items": [ + { + "_id": "67c1706526e969667c038109", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c1706526e969667c03810a", + "_tpl": "5cc9bcaed7f00c011c04e179", + "slotId": "mod_pistol_grip", + "parentId": "67c1706526e969667c038109" + }, + { + "_id": "67c1706526e969667c03810b", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c1706526e969667c038109" + }, + { + "_id": "67c1706526e969667c03810c", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c1706526e969667c038109" + }, + { + "_id": "67c1706526e969667c03810d", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67c1706526e969667c038109" + }, + { + "_id": "67c1706526e969667c03810e", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67c1706526e969667c038109" + }, + { + "_id": "67c1706526e969667c03810f", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c1706526e969667c03810c" + }, + { + "_id": "67c1706526e969667c038110", + "_tpl": "55d3632e4bdc2d972f8b4569", + "slotId": "mod_barrel", + "parentId": "67c1706526e969667c03810c" + }, + { + "_id": "67c1706526e969667c038111", + "_tpl": "55d459824bdc2d892f8b4573", + "slotId": "mod_handguard", + "parentId": "67c1706526e969667c03810c" + }, + { + "_id": "67c1706526e969667c038112", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c1706526e969667c03810c" + }, + { + "_id": "67c1706526e969667c038113", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c1706526e969667c03810d" + }, + { + "_id": "67c1706526e969667c038114", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67c1706526e969667c038110" + }, + { + "_id": "67c1706526e969667c038115", + "_tpl": "56ea8d2fd2720b7c698b4570", + "slotId": "mod_gas_block", + "parentId": "67c1706526e969667c038110" + }, + { + "_id": "67c1706526e969667c038116", + "_tpl": "57d17e212459775a1179a0f5", + "slotId": "mod_tactical_2", + "parentId": "67c1706526e969667c038111" + }, + { + "_id": "67c1706526e969667c038117", + "_tpl": "637f57b78d137b27f70c496a", + "slotId": "mod_handguard", + "parentId": "67c1706526e969667c038111" + }, + { + "_id": "67c1706526e969667c038118", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67c1706526e969667c038114" + }, + { + "_id": "67c1706526e969667c038119", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c1706526e969667c038115" + }, + { + "_id": "67c1706526e969667c03811a", + "_tpl": "59d790f486f77403cb06aec6", + "slotId": "mod_flashlight", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c1706526e969667c038116" + }, + { + "_id": "67c1706526e969667c03811b", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c1706526e969667c038117" + } + ] + }, + { + "Id": "67c170a50100185b95c2779e", + "Name": "supr holo m4a1 v2", + "Root": "67cfa2d27297384e7c038268", + "Items": [ + { + "_id": "67cfa2d27297384e7c038268", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa2d27297384e7c038269", + "_tpl": "59db3a1d86f77429e05b4e92", + "slotId": "mod_pistol_grip", + "parentId": "67cfa2d27297384e7c038268" + }, + { + "_id": "67cfa2d27297384e7c03826a", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cfa2d27297384e7c038268" + }, + { + "_id": "67cfa2d27297384e7c03826b", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67cfa2d27297384e7c038268" + }, + { + "_id": "67cfa2d27297384e7c03826c", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67cfa2d27297384e7c038268" + }, + { + "_id": "67cfa2d27297384e7c03826d", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67cfa2d27297384e7c038268" + }, + { + "_id": "67cfa2d27297384e7c03826e", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa2d27297384e7c03826b" + }, + { + "_id": "67cfa2d27297384e7c03826f", + "_tpl": "55d3632e4bdc2d972f8b4569", + "slotId": "mod_barrel", + "parentId": "67cfa2d27297384e7c03826b" + }, + { + "_id": "67cfa2d27297384e7c038270", + "_tpl": "55d459824bdc2d892f8b4573", + "slotId": "mod_handguard", + "parentId": "67cfa2d27297384e7c03826b" + }, + { + "_id": "67cfa2d27297384e7c038271", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa2d27297384e7c03826b" + }, + { + "_id": "67cfa2d27297384e7c038272", + "_tpl": "5d135e83d7ad1a21b83f42d8", + "slotId": "mod_stock_000", + "parentId": "67cfa2d27297384e7c03826c" + }, + { + "_id": "67cfa2d27297384e7c038273", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cfa2d27297384e7c03826f" + }, + { + "_id": "67cfa2d27297384e7c038274", + "_tpl": "56ea8d2fd2720b7c698b4570", + "slotId": "mod_gas_block", + "parentId": "67cfa2d27297384e7c03826f" + }, + { + "_id": "67cfa2d27297384e7c038275", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa2d27297384e7c038270" + }, + { + "_id": "67cfa2d27297384e7c038276", + "_tpl": "637f57b78d137b27f70c496a", + "slotId": "mod_handguard", + "parentId": "67cfa2d27297384e7c038270" + }, + { + "_id": "67cfa2d27297384e7c038277", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cfa2d27297384e7c038273" + }, + { + "_id": "67cfa2d27297384e7c038278", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa2d27297384e7c038274" + }, + { + "_id": "67cfa2d27297384e7c038279", + "_tpl": "5c791e872e2216001219c40a", + "slotId": "mod_foregrip", + "parentId": "67cfa2d27297384e7c038276" + } + ] + }, + { + "Id": "67c230dd0100185b95c7b4e6", + "Name": "supr holo m4a1 tan", + "Root": "67c230e3fe1831563c03801a", + "Items": [ + { + "_id": "67c230e3fe1831563c03801a", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c230e3fe1831563c03801b", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "slotId": "mod_pistol_grip", + "parentId": "67c230e3fe1831563c03801a" + }, + { + "_id": "67c230e3fe1831563c03801c", + "_tpl": "5d1340cad7ad1a0b0b249869", + "slotId": "mod_magazine", + "parentId": "67c230e3fe1831563c03801a" + }, + { + "_id": "67c230e3fe1831563c03801d", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c230e3fe1831563c03801a" + }, + { + "_id": "67c230e3fe1831563c03801e", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67c230e3fe1831563c03801a" + }, + { + "_id": "67c230e3fe1831563c03801f", + "_tpl": "5ea16d4d5aad6446a939753d", + "slotId": "mod_charge", + "parentId": "67c230e3fe1831563c03801a" + }, + { + "_id": "67c230e3fe1831563c038020", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c230e3fe1831563c03801d" + }, + { + "_id": "67c230e3fe1831563c038021", + "_tpl": "55d3632e4bdc2d972f8b4569", + "slotId": "mod_barrel", + "parentId": "67c230e3fe1831563c03801d" + }, + { + "_id": "67c230e3fe1831563c038022", + "_tpl": "5c78f2792e221600106f4683", + "slotId": "mod_handguard", + "parentId": "67c230e3fe1831563c03801d" + }, + { + "_id": "67c230e3fe1831563c038023", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c230e3fe1831563c03801d" + }, + { + "_id": "67c230e3fe1831563c038024", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67c230e3fe1831563c03801e" + }, + { + "_id": "67c230e3fe1831563c038025", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67c230e3fe1831563c038021" + }, + { + "_id": "67c230e3fe1831563c038026", + "_tpl": "56ea8d2fd2720b7c698b4570", + "slotId": "mod_gas_block", + "parentId": "67c230e3fe1831563c038021" + }, + { + "_id": "67c230e3fe1831563c038027", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c230e3fe1831563c038022" + }, + { + "_id": "67c230e3fe1831563c038028", + "_tpl": "665edce564fb556f940ab32a", + "slotId": "mod_foregrip", + "parentId": "67c230e3fe1831563c038022" + }, + { + "_id": "67c230e3fe1831563c038029", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67c230e3fe1831563c038025" + }, + { + "_id": "67c230e3fe1831563c03802a", + "_tpl": "5c18b90d2e2216152142466b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c230e3fe1831563c038026" + }, + { + "_id": "67c230e3fe1831563c03802b", + "_tpl": "626becf9582c3e319310b837", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c230e3fe1831563c038027" + }, + { + "_id": "67c230e3fe1831563c03802c", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c230e3fe1831563c038024" + } + ] + }, + { + "Id": "67c230fb0100185b9520d19a", + "Name": "supr holo m4a1 tan v2", + "Root": "67c23101fe1831563c03803d", + "Items": [ + { + "_id": "67c23101fe1831563c03803d", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23101fe1831563c03803e", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "slotId": "mod_pistol_grip", + "parentId": "67c23101fe1831563c03803d" + }, + { + "_id": "67c23101fe1831563c03803f", + "_tpl": "5d1340cad7ad1a0b0b249869", + "slotId": "mod_magazine", + "parentId": "67c23101fe1831563c03803d" + }, + { + "_id": "67c23101fe1831563c038040", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c23101fe1831563c03803d" + }, + { + "_id": "67c23101fe1831563c038041", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67c23101fe1831563c03803d" + }, + { + "_id": "67c23101fe1831563c038042", + "_tpl": "5ea16d4d5aad6446a939753d", + "slotId": "mod_charge", + "parentId": "67c23101fe1831563c03803d" + }, + { + "_id": "67c23101fe1831563c038043", + "_tpl": "5c0a2cec0db834001b7ce47d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23101fe1831563c038040" + }, + { + "_id": "67c23101fe1831563c038044", + "_tpl": "55d3632e4bdc2d972f8b4569", + "slotId": "mod_barrel", + "parentId": "67c23101fe1831563c038040" + }, + { + "_id": "67c23101fe1831563c038045", + "_tpl": "5c78f2792e221600106f4683", + "slotId": "mod_handguard", + "parentId": "67c23101fe1831563c038040" + }, + { + "_id": "67c23101fe1831563c038046", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23101fe1831563c038040" + }, + { + "_id": "67c23101fe1831563c038047", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67c23101fe1831563c038041" + }, + { + "_id": "67c23101fe1831563c038048", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67c23101fe1831563c038044" + }, + { + "_id": "67c23101fe1831563c038049", + "_tpl": "56ea8d2fd2720b7c698b4570", + "slotId": "mod_gas_block", + "parentId": "67c23101fe1831563c038044" + }, + { + "_id": "67c23101fe1831563c03804a", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c23101fe1831563c038045" + }, + { + "_id": "67c23101fe1831563c03804b", + "_tpl": "57cffcd624597763133760c5", + "slotId": "mod_foregrip", + "parentId": "67c23101fe1831563c038045" + }, + { + "_id": "67c23101fe1831563c03804c", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67c23101fe1831563c038048" + }, + { + "_id": "67c23101fe1831563c03804d", + "_tpl": "5c18b90d2e2216152142466b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23101fe1831563c038049" + }, + { + "_id": "67c23101fe1831563c03804e", + "_tpl": "626becf9582c3e319310b837", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c23101fe1831563c03804a" + }, + { + "_id": "67c23101fe1831563c03804f", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c23101fe1831563c038047" + } + ] + }, + { + "Id": "67c231530100185b95a9fce9", + "Name": "loud holo m4a1", + "Root": "67c2315cfe1831563c03809c", + "Items": [ + { + "_id": "67c2315cfe1831563c03809c", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2315cfe1831563c03809d", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c2315cfe1831563c03809c" + }, + { + "_id": "67c2315cfe1831563c03809e", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c2315cfe1831563c03809c" + }, + { + "_id": "67c2315cfe1831563c03809f", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c2315cfe1831563c03809c" + }, + { + "_id": "67c2315cfe1831563c0380a0", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67c2315cfe1831563c03809c" + }, + { + "_id": "67c2315cfe1831563c0380a1", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67c2315cfe1831563c03809c" + }, + { + "_id": "67c2315cfe1831563c0380a2", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2315cfe1831563c03809f" + }, + { + "_id": "67c2315cfe1831563c0380a3", + "_tpl": "55d35ee94bdc2d61338b4568", + "slotId": "mod_barrel", + "parentId": "67c2315cfe1831563c03809f" + }, + { + "_id": "67c2315cfe1831563c0380a4", + "_tpl": "5c78f2612e221600114c9f0d", + "slotId": "mod_handguard", + "parentId": "67c2315cfe1831563c03809f" + }, + { + "_id": "67c2315cfe1831563c0380a5", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2315cfe1831563c03809f" + }, + { + "_id": "67c2315cfe1831563c0380a6", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c2315cfe1831563c0380a0" + }, + { + "_id": "67c2315cfe1831563c0380a7", + "_tpl": "63ac5c9658d0485fc039f0b8", + "slotId": "mod_muzzle", + "parentId": "67c2315cfe1831563c0380a3" + }, + { + "_id": "67c2315cfe1831563c0380a8", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67c2315cfe1831563c0380a3" + }, + { + "_id": "67c2315cfe1831563c0380a9", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67c2315cfe1831563c0380a4" + }, + { + "_id": "67c2315cfe1831563c0380aa", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c2315cfe1831563c0380a4" + }, + { + "_id": "67c2315cfe1831563c0380ab", + "_tpl": "5c78f2882e22165df16b832e", + "slotId": "mod_muzzle", + "parentId": "67c2315cfe1831563c0380a4" + }, + { + "_id": "67c2315cfe1831563c0380ac", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c2315cfe1831563c0380a9" + }, + { + "_id": "67c2315cfe1831563c0380ad", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67c2315cfe1831563c0380aa" + } + ] + }, + { + "Id": "67c2318a0100185b955cd0d0", + "Name": "supr holo m4a1 v3", + "Root": "67c23190fe1831563c0380be", + "Items": [ + { + "_id": "67c23190fe1831563c0380be", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23190fe1831563c0380bf", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c23190fe1831563c0380be" + }, + { + "_id": "67c23190fe1831563c0380c0", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c23190fe1831563c0380be" + }, + { + "_id": "67c23190fe1831563c0380c1", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c23190fe1831563c0380be" + }, + { + "_id": "67c23190fe1831563c0380c2", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67c23190fe1831563c0380be" + }, + { + "_id": "67c23190fe1831563c0380c3", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67c23190fe1831563c0380be" + }, + { + "_id": "67c23190fe1831563c0380c4", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23190fe1831563c0380c1" + }, + { + "_id": "67c23190fe1831563c0380c5", + "_tpl": "55d35ee94bdc2d61338b4568", + "slotId": "mod_barrel", + "parentId": "67c23190fe1831563c0380c1" + }, + { + "_id": "67c23190fe1831563c0380c6", + "_tpl": "595cf16b86f77427440c32e2", + "slotId": "mod_handguard", + "parentId": "67c23190fe1831563c0380c1" + }, + { + "_id": "67c23190fe1831563c0380c7", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23190fe1831563c0380c1" + }, + { + "_id": "67c23190fe1831563c0380c8", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c23190fe1831563c0380c2" + }, + { + "_id": "67c23190fe1831563c0380c9", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67c23190fe1831563c0380c5" + }, + { + "_id": "67c23190fe1831563c0380ca", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67c23190fe1831563c0380c5" + }, + { + "_id": "67c23190fe1831563c0380cb", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_000", + "parentId": "67c23190fe1831563c0380c6" + }, + { + "_id": "67c23190fe1831563c0380cc", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_003", + "parentId": "67c23190fe1831563c0380c6" + }, + { + "_id": "67c23190fe1831563c0380cd", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67c23190fe1831563c0380c9" + }, + { + "_id": "67c23190fe1831563c0380ce", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c23190fe1831563c0380cb" + }, + { + "_id": "67c23190fe1831563c0380cf", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c23190fe1831563c0380cc" + } + ] + }, + { + "Id": "67c231aa0100185b959ba81f", + "Name": "supr hamr m4a1", + "Root": "67c231affe1831563c0380e0", + "Items": [ + { + "_id": "67c231affe1831563c0380e0", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c231affe1831563c0380e1", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c231affe1831563c0380e0" + }, + { + "_id": "67c231affe1831563c0380e2", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c231affe1831563c0380e0" + }, + { + "_id": "67c231affe1831563c0380e3", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c231affe1831563c0380e0" + }, + { + "_id": "67c231affe1831563c0380e4", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67c231affe1831563c0380e0" + }, + { + "_id": "67c231affe1831563c0380e5", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67c231affe1831563c0380e0" + }, + { + "_id": "67c231affe1831563c0380e6", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c231affe1831563c0380e3" + }, + { + "_id": "67c231affe1831563c0380e7", + "_tpl": "55d35ee94bdc2d61338b4568", + "slotId": "mod_barrel", + "parentId": "67c231affe1831563c0380e3" + }, + { + "_id": "67c231affe1831563c0380e8", + "_tpl": "595cf16b86f77427440c32e2", + "slotId": "mod_handguard", + "parentId": "67c231affe1831563c0380e3" + }, + { + "_id": "67c231affe1831563c0380e9", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c231affe1831563c0380e3" + }, + { + "_id": "67c231affe1831563c0380ea", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c231affe1831563c0380e4" + }, + { + "_id": "67c231affe1831563c0380eb", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c231affe1831563c0380e6" + }, + { + "_id": "67c231affe1831563c0380ec", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67c231affe1831563c0380e7" + }, + { + "_id": "67c231affe1831563c0380ed", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67c231affe1831563c0380e7" + }, + { + "_id": "67c231affe1831563c0380ee", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_000", + "parentId": "67c231affe1831563c0380e8" + }, + { + "_id": "67c231affe1831563c0380ef", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_003", + "parentId": "67c231affe1831563c0380e8" + }, + { + "_id": "67c231affe1831563c0380f0", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67c231affe1831563c0380ec" + }, + { + "_id": "67c231affe1831563c0380f1", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c231affe1831563c0380ee" + }, + { + "_id": "67c231affe1831563c0380f2", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c231affe1831563c0380ef" + } + ] + }, + { + "Id": "67c2320d0100185b9549db0b", + "Name": "supr hamr m4a1 v2", + "Root": "67c23211fe1831563c03812e", + "Items": [ + { + "_id": "67c23211fe1831563c03812e", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23211fe1831563c03812f", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c23211fe1831563c03812e" + }, + { + "_id": "67c23211fe1831563c038130", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67c23211fe1831563c03812e" + }, + { + "_id": "67c23211fe1831563c038131", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c23211fe1831563c03812e" + }, + { + "_id": "67c23211fe1831563c038132", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67c23211fe1831563c03812e" + }, + { + "_id": "67c23211fe1831563c038133", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67c23211fe1831563c03812e" + }, + { + "_id": "67c23211fe1831563c038134", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23211fe1831563c038131" + }, + { + "_id": "67c23211fe1831563c038135", + "_tpl": "55d35ee94bdc2d61338b4568", + "slotId": "mod_barrel", + "parentId": "67c23211fe1831563c038131" + }, + { + "_id": "67c23211fe1831563c038136", + "_tpl": "595cf16b86f77427440c32e2", + "slotId": "mod_handguard", + "parentId": "67c23211fe1831563c038131" + }, + { + "_id": "67c23211fe1831563c038137", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23211fe1831563c038131" + }, + { + "_id": "67c23211fe1831563c038138", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67c23211fe1831563c038132" + }, + { + "_id": "67c23211fe1831563c038139", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23211fe1831563c038134" + }, + { + "_id": "67c23211fe1831563c03813a", + "_tpl": "5cf6937cd7f00c056c53fb39", + "slotId": "mod_muzzle", + "parentId": "67c23211fe1831563c038135" + }, + { + "_id": "67c23211fe1831563c03813b", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67c23211fe1831563c038135" + }, + { + "_id": "67c23211fe1831563c03813c", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_000", + "parentId": "67c23211fe1831563c038136" + }, + { + "_id": "67c23211fe1831563c03813d", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_003", + "parentId": "67c23211fe1831563c038136" + }, + { + "_id": "67c23211fe1831563c03813e", + "_tpl": "5a7dbfc1159bd40016548fde", + "slotId": "mod_foregrip", + "parentId": "67c23211fe1831563c03813c" + }, + { + "_id": "67c23211fe1831563c03813f", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c23211fe1831563c03813d" + }, + { + "_id": "67c23211fe1831563c038140", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c23211fe1831563c038138" + } + ] + }, + { + "Id": "67c2327b0100185b9532c8f0", + "Name": "supr ADO m4a1 tan", + "Root": "67c232f1fe1831563c03af60", + "Items": [ + { + "_id": "67c232f1fe1831563c03af60", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c232f1fe1831563c03af61", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "slotId": "mod_pistol_grip", + "parentId": "67c232f1fe1831563c03af60" + }, + { + "_id": "67c232f1fe1831563c03af62", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67c232f1fe1831563c03af60" + }, + { + "_id": "67c232f1fe1831563c03af63", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c232f1fe1831563c03af60" + }, + { + "_id": "67c232f1fe1831563c03af64", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67c232f1fe1831563c03af60" + }, + { + "_id": "67c232f1fe1831563c03af65", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67c232f1fe1831563c03af60" + }, + { + "_id": "67c232f1fe1831563c03af66", + "_tpl": "5dfe6104585a0c3e995c7b82", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c232f1fe1831563c03af63" + }, + { + "_id": "67c232f1fe1831563c03af67", + "_tpl": "55d35ee94bdc2d61338b4568", + "slotId": "mod_barrel", + "parentId": "67c232f1fe1831563c03af63" + }, + { + "_id": "67c232f1fe1831563c03af68", + "_tpl": "5ea16acdfadf1d18c87b0784", + "slotId": "mod_handguard", + "parentId": "67c232f1fe1831563c03af63" + }, + { + "_id": "67c232f1fe1831563c03af69", + "_tpl": "5c18b9192e2216398b5a8104", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c232f1fe1831563c03af63" + }, + { + "_id": "67c232f1fe1831563c03af6a", + "_tpl": "5fce16961f152d4312622bc9", + "slotId": "mod_stock_000", + "parentId": "67c232f1fe1831563c03af64" + }, + { + "_id": "67c232f1fe1831563c03af6b", + "_tpl": "6386120cd6baa055ad1e201c", + "slotId": "mod_muzzle", + "parentId": "67c232f1fe1831563c03af67" + }, + { + "_id": "67c232f1fe1831563c03af6c", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67c232f1fe1831563c03af67" + }, + { + "_id": "67c232f1fe1831563c03af6d", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_001", + "parentId": "67c232f1fe1831563c03af68" + }, + { + "_id": "67c232f1fe1831563c03af6e", + "_tpl": "651a8e529829226ceb67c319", + "slotId": "mod_foregrip", + "parentId": "67c232f1fe1831563c03af68" + }, + { + "_id": "67c232f1fe1831563c03af6f", + "_tpl": "5c18b90d2e2216152142466b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c232f1fe1831563c03af68" + }, + { + "_id": "67c232f1fe1831563c03af70", + "_tpl": "638612b607dfed1ccb7206ba", + "slotId": "mod_muzzle", + "parentId": "67c232f1fe1831563c03af6b" + }, + { + "_id": "67c232f1fe1831563c03af71", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c232f1fe1831563c03af6d" + } + ] + }, + { + "Id": "67c2335f0100185b9550e782", + "Name": "supr dp m4a1", + "Root": "67c23365fe1831563c03cbae", + "Items": [ + { + "_id": "67c23365fe1831563c03cbae", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23365fe1831563c03cbaf", + "_tpl": "59db3a1d86f77429e05b4e92", + "slotId": "mod_pistol_grip", + "parentId": "67c23365fe1831563c03cbae" + }, + { + "_id": "67c23365fe1831563c03cbb0", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c23365fe1831563c03cbae" + }, + { + "_id": "67c23365fe1831563c03cbb1", + "_tpl": "59bfe68886f7746004266202", + "slotId": "mod_reciever", + "parentId": "67c23365fe1831563c03cbae" + }, + { + "_id": "67c23365fe1831563c03cbb2", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67c23365fe1831563c03cbae" + }, + { + "_id": "67c23365fe1831563c03cbb3", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67c23365fe1831563c03cbae" + }, + { + "_id": "67c23365fe1831563c03cbb4", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67c23365fe1831563c03cbb1" + }, + { + "_id": "67c23365fe1831563c03cbb5", + "_tpl": "63d3ce0446bd475bcb50f55f", + "slotId": "mod_barrel", + "parentId": "67c23365fe1831563c03cbb1" + }, + { + "_id": "67c23365fe1831563c03cbb6", + "_tpl": "6087e0336d0bd7580617bb7a", + "slotId": "mod_handguard", + "parentId": "67c23365fe1831563c03cbb1" + }, + { + "_id": "67c23365fe1831563c03cbb7", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c23365fe1831563c03cbb2" + }, + { + "_id": "67c23365fe1831563c03cbb8", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23365fe1831563c03cbb4" + }, + { + "_id": "67c23365fe1831563c03cbb9", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67c23365fe1831563c03cbb5" + }, + { + "_id": "67c23365fe1831563c03cbba", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67c23365fe1831563c03cbb5" + }, + { + "_id": "67c23365fe1831563c03cbbb", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67c23365fe1831563c03cbb9" + }, + { + "_id": "67c23365fe1831563c03cbbc", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c23365fe1831563c03cbb7" + } + ] + }, + { + "Id": "67c234880100185b955fc1a2", + "Name": "supr HCO m4a1", + "Root": "67c2348ffe1831563c040683", + "Items": [ + { + "_id": "67c2348ffe1831563c040683", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2348ffe1831563c040684", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c2348ffe1831563c040683" + }, + { + "_id": "67c2348ffe1831563c040685", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c2348ffe1831563c040683" + }, + { + "_id": "67c2348ffe1831563c040686", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c2348ffe1831563c040683" + }, + { + "_id": "67c2348ffe1831563c040687", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67c2348ffe1831563c040683" + }, + { + "_id": "67c2348ffe1831563c040688", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67c2348ffe1831563c040683" + }, + { + "_id": "67c2348ffe1831563c040689", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2348ffe1831563c040686" + }, + { + "_id": "67c2348ffe1831563c04068a", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67c2348ffe1831563c040686" + }, + { + "_id": "67c2348ffe1831563c04068b", + "_tpl": "5b2cfa535acfc432ff4db7a0", + "slotId": "mod_handguard", + "parentId": "67c2348ffe1831563c040686" + }, + { + "_id": "67c2348ffe1831563c04068c", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2348ffe1831563c040686" + }, + { + "_id": "67c2348ffe1831563c04068d", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c2348ffe1831563c040687" + }, + { + "_id": "67c2348ffe1831563c04068e", + "_tpl": "612e0cfc8004cc50514c2d9e", + "slotId": "mod_muzzle", + "parentId": "67c2348ffe1831563c04068a" + }, + { + "_id": "67c2348ffe1831563c04068f", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67c2348ffe1831563c04068a" + }, + { + "_id": "67c2348ffe1831563c040690", + "_tpl": "5b30bc285acfc47a8608615d", + "slotId": "mod_mount_000", + "parentId": "67c2348ffe1831563c04068b" + }, + { + "_id": "67c2348ffe1831563c040691", + "_tpl": "63877c99e785640d436458ea", + "slotId": "mod_muzzle", + "parentId": "67c2348ffe1831563c04068e" + }, + { + "_id": "67c2348ffe1831563c040692", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67c2348ffe1831563c040690" + } + ] + }, + { + "Id": "67c234cc0100185b95c42b01", + "Name": "supr 2x m4a1", + "Root": "67c234d0fe1831563c0414f4", + "Items": [ + { + "_id": "67c234d0fe1831563c0414f4", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c234d0fe1831563c0414f5", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c234d0fe1831563c0414f4" + }, + { + "_id": "67c234d0fe1831563c0414f6", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c234d0fe1831563c0414f4" + }, + { + "_id": "67c234d0fe1831563c0414f7", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c234d0fe1831563c0414f4" + }, + { + "_id": "67c234d0fe1831563c0414f8", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67c234d0fe1831563c0414f4" + }, + { + "_id": "67c234d0fe1831563c0414f9", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67c234d0fe1831563c0414f4" + }, + { + "_id": "67c234d0fe1831563c0414fa", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c234d0fe1831563c0414f7" + }, + { + "_id": "67c234d0fe1831563c0414fb", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67c234d0fe1831563c0414f7" + }, + { + "_id": "67c234d0fe1831563c0414fc", + "_tpl": "5b2cfa535acfc432ff4db7a0", + "slotId": "mod_handguard", + "parentId": "67c234d0fe1831563c0414f7" + }, + { + "_id": "67c234d0fe1831563c0414fd", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c234d0fe1831563c0414f7" + }, + { + "_id": "67c234d0fe1831563c0414fe", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c234d0fe1831563c0414f8" + }, + { + "_id": "67c234d0fe1831563c0414ff", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67c234d0fe1831563c0414fb" + }, + { + "_id": "67c234d0fe1831563c041500", + "_tpl": "63d3ce281fe77d0f2801859e", + "slotId": "mod_gas_block", + "parentId": "67c234d0fe1831563c0414fb" + }, + { + "_id": "67c234d0fe1831563c041501", + "_tpl": "5b30bc285acfc47a8608615d", + "slotId": "mod_mount_000", + "parentId": "67c234d0fe1831563c0414fc" + }, + { + "_id": "67c234d0fe1831563c041502", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67c234d0fe1831563c0414ff" + }, + { + "_id": "67c234d0fe1831563c041503", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c234d0fe1831563c041501" + }, + { + "_id": "67c234d0fe1831563c041504", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c234d0fe1831563c041501" + }, + { + "_id": "67c234d0fe1831563c041505", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c234d0fe1831563c0414fe" + } + ] + }, + { + "Id": "67c234fa0100185b95063b6f", + "Name": "supr Prism m4a1 stock", + "Root": "67c23507fe1831563c0423f4", + "Items": [ + { + "_id": "67c23507fe1831563c0423f4", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23507fe1831563c0423f5", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c23507fe1831563c0423f4" + }, + { + "_id": "67c23507fe1831563c0423f6", + "_tpl": "55d4887d4bdc2d962f8b4570", + "slotId": "mod_magazine", + "parentId": "67c23507fe1831563c0423f4" + }, + { + "_id": "67c23507fe1831563c0423f7", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c23507fe1831563c0423f4" + }, + { + "_id": "67c23507fe1831563c0423f8", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67c23507fe1831563c0423f4" + }, + { + "_id": "67c23507fe1831563c0423f9", + "_tpl": "55d44fd14bdc2d962f8b456e", + "slotId": "mod_charge", + "parentId": "67c23507fe1831563c0423f4" + }, + { + "_id": "67c23507fe1831563c0423fa", + "_tpl": "55d3632e4bdc2d972f8b4569", + "slotId": "mod_barrel", + "parentId": "67c23507fe1831563c0423f7" + }, + { + "_id": "67c23507fe1831563c0423fb", + "_tpl": "5ae30db85acfc408fb139a05", + "slotId": "mod_handguard", + "parentId": "67c23507fe1831563c0423f7" + }, + { + "_id": "67c23507fe1831563c0423fc", + "_tpl": "5ae30bad5acfc400185c2dc4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23507fe1831563c0423f7" + }, + { + "_id": "67c23507fe1831563c0423fd", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "slotId": "mod_stock_000", + "parentId": "67c23507fe1831563c0423f8" + }, + { + "_id": "67c23507fe1831563c0423fe", + "_tpl": "544a38634bdc2d58388b4568", + "slotId": "mod_muzzle", + "parentId": "67c23507fe1831563c0423fa" + }, + { + "_id": "67c23507fe1831563c0423ff", + "_tpl": "5ae30e795acfc408fb139a0b", + "slotId": "mod_gas_block", + "parentId": "67c23507fe1831563c0423fa" + }, + { + "_id": "67c23507fe1831563c042400", + "_tpl": "637f57a68d137b27f70c4968", + "slotId": "mod_handguard", + "parentId": "67c23507fe1831563c0423fb" + }, + { + "_id": "67c23507fe1831563c042401", + "_tpl": "5c1cdd512e22161b267d91ae", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23507fe1831563c0423fc" + }, + { + "_id": "67c23507fe1831563c042402", + "_tpl": "638612b607dfed1ccb7206ba", + "slotId": "mod_muzzle", + "parentId": "67c23507fe1831563c0423fe" + } + ] + }, + { + "Id": "67c235800100185b9507d718", + "Name": "supr UH-1 m4a1 tan", + "Root": "67c23588fe1831563c044367", + "Items": [ + { + "_id": "67c23588fe1831563c044367", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23588fe1831563c044368", + "_tpl": "59db3b0886f77429d72fb895", + "slotId": "mod_pistol_grip", + "parentId": "67c23588fe1831563c044367" + }, + { + "_id": "67c23588fe1831563c044369", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67c23588fe1831563c044367" + }, + { + "_id": "67c23588fe1831563c04436a", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c23588fe1831563c044367" + }, + { + "_id": "67c23588fe1831563c04436b", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67c23588fe1831563c044367" + }, + { + "_id": "67c23588fe1831563c04436c", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67c23588fe1831563c044367" + }, + { + "_id": "67c23588fe1831563c04436d", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23588fe1831563c04436a" + }, + { + "_id": "67c23588fe1831563c04436e", + "_tpl": "55d3632e4bdc2d972f8b4569", + "slotId": "mod_barrel", + "parentId": "67c23588fe1831563c04436a" + }, + { + "_id": "67c23588fe1831563c04436f", + "_tpl": "63888bbd28e5cc32cc09d2b6", + "slotId": "mod_handguard", + "parentId": "67c23588fe1831563c04436a" + }, + { + "_id": "67c23588fe1831563c044370", + "_tpl": "5d135ecbd7ad1a21c176542e", + "slotId": "mod_stock_000", + "parentId": "67c23588fe1831563c04436b" + }, + { + "_id": "67c23588fe1831563c044371", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67c23588fe1831563c04436e" + }, + { + "_id": "67c23588fe1831563c044372", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67c23588fe1831563c04436e" + }, + { + "_id": "67c23588fe1831563c044373", + "_tpl": "6388c4478d895f557a0c6512", + "slotId": "mod_mount_002", + "parentId": "67c23588fe1831563c04436f" + }, + { + "_id": "67c23588fe1831563c044374", + "_tpl": "6388c4ac8d895f557a0c6515", + "slotId": "mod_mount_003", + "parentId": "67c23588fe1831563c04436f" + }, + { + "_id": "67c23588fe1831563c044375", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67c23588fe1831563c044371" + }, + { + "_id": "67c23588fe1831563c044376", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c23588fe1831563c044373" + }, + { + "_id": "67c23588fe1831563c044377", + "_tpl": "5fce0cf655375d18a253eff0", + "slotId": "mod_foregrip", + "parentId": "67c23588fe1831563c044374" + } + ] + }, + { + "Id": "67c235e00100185b955b34ca", + "Name": "supr Spector m4a1", + "Root": "67c235e7fe1831563c045278", + "Items": [ + { + "_id": "67c235e7fe1831563c045278", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c235e7fe1831563c045279", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c235e7fe1831563c045278" + }, + { + "_id": "67c235e7fe1831563c04527a", + "_tpl": "5c05413a0db834001c390617", + "slotId": "mod_magazine", + "parentId": "67c235e7fe1831563c045278" + }, + { + "_id": "67c235e7fe1831563c04527b", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c235e7fe1831563c045278" + }, + { + "_id": "67c235e7fe1831563c04527c", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67c235e7fe1831563c045278" + }, + { + "_id": "67c235e7fe1831563c04527d", + "_tpl": "55d44fd14bdc2d962f8b456e", + "slotId": "mod_charge", + "parentId": "67c235e7fe1831563c045278" + }, + { + "_id": "67c235e7fe1831563c04527e", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c235e7fe1831563c04527b" + }, + { + "_id": "67c235e7fe1831563c04527f", + "_tpl": "55d3632e4bdc2d972f8b4569", + "slotId": "mod_barrel", + "parentId": "67c235e7fe1831563c04527b" + }, + { + "_id": "67c235e7fe1831563c045280", + "_tpl": "5ae30db85acfc408fb139a05", + "slotId": "mod_handguard", + "parentId": "67c235e7fe1831563c04527b" + }, + { + "_id": "67c235e7fe1831563c045281", + "_tpl": "5c87a07c2e2216001219d4a2", + "slotId": "mod_stock_000", + "parentId": "67c235e7fe1831563c04527c" + }, + { + "_id": "67c235e7fe1831563c045282", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67c235e7fe1831563c04527f" + }, + { + "_id": "67c235e7fe1831563c045283", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67c235e7fe1831563c04527f" + }, + { + "_id": "67c235e7fe1831563c045284", + "_tpl": "637f57a68d137b27f70c4968", + "slotId": "mod_handguard", + "parentId": "67c235e7fe1831563c045280" + } + ] + }, + { + "Id": "67c235e80100185b955ed915", + "Name": "loud Spector m4a1", + "Root": "67c235ebfe1831563c045285", + "Items": [ + { + "_id": "67c235ebfe1831563c045285", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c235ebfe1831563c045286", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c235ebfe1831563c045285" + }, + { + "_id": "67c235ebfe1831563c045287", + "_tpl": "5c05413a0db834001c390617", + "slotId": "mod_magazine", + "parentId": "67c235ebfe1831563c045285" + }, + { + "_id": "67c235ebfe1831563c045288", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67c235ebfe1831563c045285" + }, + { + "_id": "67c235ebfe1831563c045289", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67c235ebfe1831563c045285" + }, + { + "_id": "67c235ebfe1831563c04528a", + "_tpl": "55d44fd14bdc2d962f8b456e", + "slotId": "mod_charge", + "parentId": "67c235ebfe1831563c045285" + }, + { + "_id": "67c235ebfe1831563c04528b", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c235ebfe1831563c045288" + }, + { + "_id": "67c235ebfe1831563c04528c", + "_tpl": "55d3632e4bdc2d972f8b4569", + "slotId": "mod_barrel", + "parentId": "67c235ebfe1831563c045288" + }, + { + "_id": "67c235ebfe1831563c04528d", + "_tpl": "5ae30db85acfc408fb139a05", + "slotId": "mod_handguard", + "parentId": "67c235ebfe1831563c045288" + }, + { + "_id": "67c235ebfe1831563c04528e", + "_tpl": "5c87a07c2e2216001219d4a2", + "slotId": "mod_stock_000", + "parentId": "67c235ebfe1831563c045289" + }, + { + "_id": "67c235ebfe1831563c04528f", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67c235ebfe1831563c04528c" + }, + { + "_id": "67c235ebfe1831563c045290", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67c235ebfe1831563c04528c" + }, + { + "_id": "67c235ebfe1831563c045291", + "_tpl": "637f57a68d137b27f70c4968", + "slotId": "mod_handguard", + "parentId": "67c235ebfe1831563c04528d" + } + ] + }, + { + "Id": "67c236950100185b95a6a02d", + "Name": "supr Tac30 m4a1", + "Root": "67cfa2ae7297384e7c038252", + "Items": [ + { + "_id": "67cfa2ae7297384e7c038252", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa2ae7297384e7c038253", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67cfa2ae7297384e7c038252" + }, + { + "_id": "67cfa2ae7297384e7c038254", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cfa2ae7297384e7c038252" + }, + { + "_id": "67cfa2ae7297384e7c038255", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67cfa2ae7297384e7c038252" + }, + { + "_id": "67cfa2ae7297384e7c038256", + "_tpl": "638de3603a1a4031d8260b8c", + "slotId": "mod_stock", + "parentId": "67cfa2ae7297384e7c038252" + }, + { + "_id": "67cfa2ae7297384e7c038257", + "_tpl": "56ea7165d2720b6e518b4583", + "slotId": "mod_charge", + "parentId": "67cfa2ae7297384e7c038252" + }, + { + "_id": "67cfa2ae7297384e7c038258", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67cfa2ae7297384e7c038255" + }, + { + "_id": "67cfa2ae7297384e7c038259", + "_tpl": "63d3ce0446bd475bcb50f55f", + "slotId": "mod_barrel", + "parentId": "67cfa2ae7297384e7c038255" + }, + { + "_id": "67cfa2ae7297384e7c03825a", + "_tpl": "5c78f2492e221600114c9f04", + "slotId": "mod_handguard", + "parentId": "67cfa2ae7297384e7c038255" + }, + { + "_id": "67cfa2ae7297384e7c03825b", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa2ae7297384e7c038255" + }, + { + "_id": "67cfa2ae7297384e7c03825c", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "slotId": "mod_stock_000", + "parentId": "67cfa2ae7297384e7c038256" + }, + { + "_id": "67cfa2ae7297384e7c03825d", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa2ae7297384e7c038258" + }, + { + "_id": "67cfa2ae7297384e7c03825e", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa2ae7297384e7c038258" + }, + { + "_id": "67cfa2ae7297384e7c03825f", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cfa2ae7297384e7c038259" + }, + { + "_id": "67cfa2ae7297384e7c038260", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cfa2ae7297384e7c038259" + }, + { + "_id": "67cfa2ae7297384e7c038261", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cfa2ae7297384e7c03825a" + }, + { + "_id": "67cfa2ae7297384e7c038262", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cfa2ae7297384e7c03825f" + }, + { + "_id": "67cfa2ae7297384e7c038263", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67cfa2ae7297384e7c038261" + } + ] + }, + { + "Id": "67c236f90100185b95850150", + "Name": "pk val", + "Root": "67c237c6fe1831563c04ca6c", + "Items": [ + { + "_id": "67c237c6fe1831563c04ca6c", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c237c6fe1831563c04ca6d", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c237c6fe1831563c04ca6c" + }, + { + "_id": "67c237c6fe1831563c04ca6e", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c237c6fe1831563c04ca6c" + }, + { + "_id": "67c237c6fe1831563c04ca6f", + "_tpl": "65118f531b90b4fc77015083", + "slotId": "mod_magazine", + "parentId": "67c237c6fe1831563c04ca6c" + }, + { + "_id": "67c237c6fe1831563c04ca70", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67c237c6fe1831563c04ca6c" + }, + { + "_id": "67c237c6fe1831563c04ca71", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67c237c6fe1831563c04ca6c" + }, + { + "_id": "67c237c6fe1831563c04ca72", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67c237c6fe1831563c04ca6c" + }, + { + "_id": "67c237c6fe1831563c04ca73", + "_tpl": "5e569a2e56edd02abe09f280", + "slotId": "mod_mount_004", + "parentId": "67c237c6fe1831563c04ca6c" + }, + { + "_id": "67c237c6fe1831563c04ca74", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c237c6fe1831563c04ca6c" + }, + { + "_id": "67c237c6fe1831563c04ca75", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c237c6fe1831563c04ca6d" + }, + { + "_id": "67c237c6fe1831563c04ca76", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c237c6fe1831563c04ca73" + } + ] + }, + { + "Id": "67c2371f0100185b9522daa9", + "Name": "bravo val", + "Root": "67c23723fe1831563c049bc0", + "Items": [ + { + "_id": "67c23723fe1831563c049bc0", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23723fe1831563c049bc1", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c23723fe1831563c049bc0" + }, + { + "_id": "67c23723fe1831563c049bc2", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c23723fe1831563c049bc0" + }, + { + "_id": "67c23723fe1831563c049bc3", + "_tpl": "57838f9f2459774a150289a0", + "slotId": "mod_magazine", + "parentId": "67c23723fe1831563c049bc0" + }, + { + "_id": "67c23723fe1831563c049bc4", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67c23723fe1831563c049bc0" + }, + { + "_id": "67c23723fe1831563c049bc5", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67c23723fe1831563c049bc0" + }, + { + "_id": "67c23723fe1831563c049bc6", + "_tpl": "5e569a2e56edd02abe09f280", + "slotId": "mod_mount_004", + "parentId": "67c23723fe1831563c049bc0" + }, + { + "_id": "67c23723fe1831563c049bc7", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c23723fe1831563c049bc0" + }, + { + "_id": "67c23723fe1831563c049bc8", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23723fe1831563c049bc1" + }, + { + "_id": "67c23723fe1831563c049bc9", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23723fe1831563c049bc6" + }, + { + "_id": "67c23723fe1831563c049bca", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67c23723fe1831563c049bc9" + }, + { + "_id": "67c23723fe1831563c049bcb", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23723fe1831563c049bca" + } + ] + }, + { + "Id": "67c2373b0100185b9515093e", + "Name": "holo val", + "Root": "67c237d1fe1831563c04ca77", + "Items": [ + { + "_id": "67c237d1fe1831563c04ca77", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c237d1fe1831563c04ca78", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c237d1fe1831563c04ca77" + }, + { + "_id": "67c237d1fe1831563c04ca79", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c237d1fe1831563c04ca77" + }, + { + "_id": "67c237d1fe1831563c04ca7a", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67c237d1fe1831563c04ca77" + }, + { + "_id": "67c237d1fe1831563c04ca7b", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "slotId": "mod_pistol_grip", + "parentId": "67c237d1fe1831563c04ca77" + }, + { + "_id": "67c237d1fe1831563c04ca7c", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67c237d1fe1831563c04ca77" + }, + { + "_id": "67c237d1fe1831563c04ca7d", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67c237d1fe1831563c04ca77" + }, + { + "_id": "67c237d1fe1831563c04ca7e", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c237d1fe1831563c04ca77" + }, + { + "_id": "67c237d1fe1831563c04ca7f", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c237d1fe1831563c04ca78" + }, + { + "_id": "67c237d1fe1831563c04ca80", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c237d1fe1831563c04ca7b" + }, + { + "_id": "67c237d1fe1831563c04ca81", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c237d1fe1831563c04ca7d" + } + ] + }, + { + "Id": "67c237640100185b95584a43", + "Name": "holo val v2", + "Root": "67c237dcfe1831563c04ca82", + "Items": [ + { + "_id": "67c237dcfe1831563c04ca82", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c237dcfe1831563c04ca83", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c237dcfe1831563c04ca82" + }, + { + "_id": "67c237dcfe1831563c04ca84", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c237dcfe1831563c04ca82" + }, + { + "_id": "67c237dcfe1831563c04ca85", + "_tpl": "65118f531b90b4fc77015083", + "slotId": "mod_magazine", + "parentId": "67c237dcfe1831563c04ca82" + }, + { + "_id": "67c237dcfe1831563c04ca86", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "slotId": "mod_pistol_grip", + "parentId": "67c237dcfe1831563c04ca82" + }, + { + "_id": "67c237dcfe1831563c04ca87", + "_tpl": "6130ca3fd92c473c77020dbd", + "slotId": "mod_charge", + "parentId": "67c237dcfe1831563c04ca82" + }, + { + "_id": "67c237dcfe1831563c04ca88", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67c237dcfe1831563c04ca82" + }, + { + "_id": "67c237dcfe1831563c04ca89", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c237dcfe1831563c04ca82" + }, + { + "_id": "67c237dcfe1831563c04ca8a", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c237dcfe1831563c04ca83" + }, + { + "_id": "67c237dcfe1831563c04ca8b", + "_tpl": "5a9fc7e6a2750c0032157184", + "slotId": "mod_mount_000", + "parentId": "67c237dcfe1831563c04ca83" + }, + { + "_id": "67c237dcfe1831563c04ca8c", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67c237dcfe1831563c04ca86" + }, + { + "_id": "67c237dcfe1831563c04ca8d", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c237dcfe1831563c04ca88" + }, + { + "_id": "67c237dcfe1831563c04ca8e", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c237dcfe1831563c04ca8b" + }, + { + "_id": "67c237dcfe1831563c04ca8f", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c237dcfe1831563c04ca8c" + } + ] + }, + { + "Id": "67c237970100185b95d22e78", + "Name": "2x val", + "Root": "67c2379afe1831563c04ba54", + "Items": [ + { + "_id": "67c2379afe1831563c04ba54", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2379afe1831563c04ba55", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c2379afe1831563c04ba54" + }, + { + "_id": "67c2379afe1831563c04ba56", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c2379afe1831563c04ba54" + }, + { + "_id": "67c2379afe1831563c04ba57", + "_tpl": "57838f9f2459774a150289a0", + "slotId": "mod_magazine", + "parentId": "67c2379afe1831563c04ba54" + }, + { + "_id": "67c2379afe1831563c04ba58", + "_tpl": "6565b91666492762f5029c0b", + "slotId": "mod_pistol_grip", + "parentId": "67c2379afe1831563c04ba54" + }, + { + "_id": "67c2379afe1831563c04ba59", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67c2379afe1831563c04ba54" + }, + { + "_id": "67c2379afe1831563c04ba5a", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67c2379afe1831563c04ba54" + }, + { + "_id": "67c2379afe1831563c04ba5b", + "_tpl": "5e569a2e56edd02abe09f280", + "slotId": "mod_mount_004", + "parentId": "67c2379afe1831563c04ba54" + }, + { + "_id": "67c2379afe1831563c04ba5c", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c2379afe1831563c04ba54" + }, + { + "_id": "67c2379afe1831563c04ba5d", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2379afe1831563c04ba55" + }, + { + "_id": "67c2379afe1831563c04ba5e", + "_tpl": "5a9fc7e6a2750c0032157184", + "slotId": "mod_mount_000", + "parentId": "67c2379afe1831563c04ba55" + }, + { + "_id": "67c2379afe1831563c04ba5f", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2379afe1831563c04ba5b" + }, + { + "_id": "67c2379afe1831563c04ba60", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c2379afe1831563c04ba5e" + } + ] + }, + { + "Id": "67c238070100185b95637157", + "Name": "EKP val", + "Root": "67c2380dfe1831563c04dae7", + "Items": [ + { + "_id": "67c2380dfe1831563c04dae7", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2380dfe1831563c04dae8", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c2380dfe1831563c04dae7" + }, + { + "_id": "67c2380dfe1831563c04dae9", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c2380dfe1831563c04dae7" + }, + { + "_id": "67c2380dfe1831563c04daea", + "_tpl": "57838f9f2459774a150289a0", + "slotId": "mod_magazine", + "parentId": "67c2380dfe1831563c04dae7" + }, + { + "_id": "67c2380dfe1831563c04daeb", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67c2380dfe1831563c04dae7" + }, + { + "_id": "67c2380dfe1831563c04daec", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67c2380dfe1831563c04dae7" + }, + { + "_id": "67c2380dfe1831563c04daed", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67c2380dfe1831563c04dae7" + }, + { + "_id": "67c2380dfe1831563c04daee", + "_tpl": "5947db3f86f77447880cf76f", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2380dfe1831563c04dae7" + }, + { + "_id": "67c2380dfe1831563c04daef", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c2380dfe1831563c04dae7" + }, + { + "_id": "67c2380dfe1831563c04daf0", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2380dfe1831563c04dae8" + }, + { + "_id": "67c2380dfe1831563c04daf1", + "_tpl": "5a9fc7e6a2750c0032157184", + "slotId": "mod_mount_000", + "parentId": "67c2380dfe1831563c04dae8" + }, + { + "_id": "67c2380dfe1831563c04daf2", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c2380dfe1831563c04daf1" + } + ] + }, + { + "Id": "67c238250100185b95ffe9b5", + "Name": "OKP7 val", + "Root": "67c2382ffe1831563c04eaf1", + "Items": [ + { + "_id": "67c2382ffe1831563c04eaf1", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2382ffe1831563c04eaf2", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c2382ffe1831563c04eaf1" + }, + { + "_id": "67c2382ffe1831563c04eaf3", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c2382ffe1831563c04eaf1" + }, + { + "_id": "67c2382ffe1831563c04eaf4", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67c2382ffe1831563c04eaf1" + }, + { + "_id": "67c2382ffe1831563c04eaf5", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67c2382ffe1831563c04eaf1" + }, + { + "_id": "67c2382ffe1831563c04eaf6", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67c2382ffe1831563c04eaf1" + }, + { + "_id": "67c2382ffe1831563c04eaf7", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67c2382ffe1831563c04eaf1" + }, + { + "_id": "67c2382ffe1831563c04eaf8", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2382ffe1831563c04eaf1" + }, + { + "_id": "67c2382ffe1831563c04eaf9", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c2382ffe1831563c04eaf1" + }, + { + "_id": "67c2382ffe1831563c04eafa", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2382ffe1831563c04eaf2" + }, + { + "_id": "67c2382ffe1831563c04eafb", + "_tpl": "5a9fc7e6a2750c0032157184", + "slotId": "mod_mount_000", + "parentId": "67c2382ffe1831563c04eaf2" + }, + { + "_id": "67c2382ffe1831563c04eafc", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c2382ffe1831563c04eafb" + } + ] + }, + { + "Id": "67c2385a0100185b95848d08", + "Name": "OKP7 val v2", + "Root": "67c23868fe1831563c04fb4b", + "Items": [ + { + "_id": "67c23868fe1831563c04fb4b", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23868fe1831563c04fb4c", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c23868fe1831563c04fb4b" + }, + { + "_id": "67c23868fe1831563c04fb4d", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c23868fe1831563c04fb4b" + }, + { + "_id": "67c23868fe1831563c04fb4e", + "_tpl": "57838f9f2459774a150289a0", + "slotId": "mod_magazine", + "parentId": "67c23868fe1831563c04fb4b" + }, + { + "_id": "67c23868fe1831563c04fb4f", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67c23868fe1831563c04fb4b" + }, + { + "_id": "67c23868fe1831563c04fb50", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67c23868fe1831563c04fb4b" + }, + { + "_id": "67c23868fe1831563c04fb51", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67c23868fe1831563c04fb4b" + }, + { + "_id": "67c23868fe1831563c04fb52", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23868fe1831563c04fb4b" + }, + { + "_id": "67c23868fe1831563c04fb53", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c23868fe1831563c04fb4b" + }, + { + "_id": "67c23868fe1831563c04fb54", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23868fe1831563c04fb4c" + }, + { + "_id": "67c23868fe1831563c04fb55", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67c23868fe1831563c04fb4c" + }, + { + "_id": "67c23868fe1831563c04fb56", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c23868fe1831563c04fb55" + }, + { + "_id": "67c23868fe1831563c04fb57", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67c23868fe1831563c04fb55" + } + ] + }, + { + "Id": "67c2387c0100185b957d7c7f", + "Name": "OKP7 val v3", + "Root": "67c2387efe1831563c04fb5d", + "Items": [ + { + "_id": "67c2387efe1831563c04fb5d", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2387efe1831563c04fb5e", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c2387efe1831563c04fb5d" + }, + { + "_id": "67c2387efe1831563c04fb5f", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c2387efe1831563c04fb5d" + }, + { + "_id": "67c2387efe1831563c04fb60", + "_tpl": "57838f9f2459774a150289a0", + "slotId": "mod_magazine", + "parentId": "67c2387efe1831563c04fb5d" + }, + { + "_id": "67c2387efe1831563c04fb61", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67c2387efe1831563c04fb5d" + }, + { + "_id": "67c2387efe1831563c04fb62", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67c2387efe1831563c04fb5d" + }, + { + "_id": "67c2387efe1831563c04fb63", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67c2387efe1831563c04fb5d" + }, + { + "_id": "67c2387efe1831563c04fb64", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2387efe1831563c04fb5d" + }, + { + "_id": "67c2387efe1831563c04fb65", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c2387efe1831563c04fb5d" + }, + { + "_id": "67c2387efe1831563c04fb66", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2387efe1831563c04fb5e" + }, + { + "_id": "67c2387efe1831563c04fb67", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67c2387efe1831563c04fb5e" + }, + { + "_id": "67c2387efe1831563c04fb68", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c2387efe1831563c04fb67" + }, + { + "_id": "67c2387efe1831563c04fb69", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67c2387efe1831563c04fb67" + } + ] + }, + { + "Id": "67c238cf0100185b957d820e", + "Name": "SHIT val v3", + "Root": "67c238d3fe1831563c051b1f", + "Items": [ + { + "_id": "67c238d3fe1831563c051b1f", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c238d3fe1831563c051b20", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c238d3fe1831563c051b1f" + }, + { + "_id": "67c238d3fe1831563c051b21", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c238d3fe1831563c051b1f" + }, + { + "_id": "67c238d3fe1831563c051b22", + "_tpl": "57838f9f2459774a150289a0", + "slotId": "mod_magazine", + "parentId": "67c238d3fe1831563c051b1f" + }, + { + "_id": "67c238d3fe1831563c051b23", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67c238d3fe1831563c051b1f" + }, + { + "_id": "67c238d3fe1831563c051b24", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67c238d3fe1831563c051b1f" + }, + { + "_id": "67c238d3fe1831563c051b25", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67c238d3fe1831563c051b1f" + }, + { + "_id": "67c238d3fe1831563c051b26", + "_tpl": "618a75c9a3884f56c957ca1b", + "slotId": "mod_mount_004", + "parentId": "67c238d3fe1831563c051b1f" + }, + { + "_id": "67c238d3fe1831563c051b27", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c238d3fe1831563c051b1f" + }, + { + "_id": "67c238d3fe1831563c051b28", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c238d3fe1831563c051b20" + }, + { + "_id": "67c238d3fe1831563c051b29", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67c238d3fe1831563c051b20" + }, + { + "_id": "67c238d3fe1831563c051b2a", + "_tpl": "618a75f0bd321d49084cd399", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c238d3fe1831563c051b26" + }, + { + "_id": "67c238d3fe1831563c051b2b", + "_tpl": "591af28e86f77414a27a9e1d", + "slotId": "mod_foregrip", + "parentId": "67c238d3fe1831563c051b29" + } + ] + }, + { + "Id": "67c2390c0100185b95091131", + "Name": "dp val", + "Root": "67c23913fe1831563c0529d2", + "Items": [ + { + "_id": "67c23913fe1831563c0529d2", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23913fe1831563c0529d3", + "_tpl": "57c44dd02459772d2e0ae249", + "slotId": "mod_muzzle", + "parentId": "67c23913fe1831563c0529d2" + }, + { + "_id": "67c23913fe1831563c0529d4", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67c23913fe1831563c0529d2" + }, + { + "_id": "67c23913fe1831563c0529d5", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67c23913fe1831563c0529d2" + }, + { + "_id": "67c23913fe1831563c0529d6", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "slotId": "mod_pistol_grip", + "parentId": "67c23913fe1831563c0529d2" + }, + { + "_id": "67c23913fe1831563c0529d7", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67c23913fe1831563c0529d2" + }, + { + "_id": "67c23913fe1831563c0529d8", + "_tpl": "5dff8db859400025ea5150d4", + "slotId": "mod_mount_000", + "parentId": "67c23913fe1831563c0529d2" + }, + { + "_id": "67c23913fe1831563c0529d9", + "_tpl": "651178336cad06c37c049eb4", + "slotId": "mod_handguard", + "parentId": "67c23913fe1831563c0529d2" + }, + { + "_id": "67c23913fe1831563c0529da", + "_tpl": "57c44e7b2459772d28133248", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23913fe1831563c0529d3" + }, + { + "_id": "67c23913fe1831563c0529db", + "_tpl": "59eb7ebe86f7740b373438ce", + "slotId": "mod_mount_000", + "parentId": "67c23913fe1831563c0529d3" + }, + { + "_id": "67c23913fe1831563c0529dc", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67c23913fe1831563c0529d6" + }, + { + "_id": "67c23913fe1831563c0529dd", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67c23913fe1831563c0529d8" + }, + { + "_id": "67c23913fe1831563c0529de", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c23913fe1831563c0529db" + }, + { + "_id": "67c23913fe1831563c0529df", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c23913fe1831563c0529db" + }, + { + "_id": "67c23913fe1831563c0529e0", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c23913fe1831563c0529dc" + }, + { + "_id": "67c23913fe1831563c0529e1", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23913fe1831563c0529dd" + } + ] + }, + { + "Id": "67c239560100185b95c8a6ff", + "Name": "harm ash12", + "Root": "67c2395cfe1831563c0538ab", + "Items": [ + { + "_id": "67c2395cfe1831563c0538ab", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2395cfe1831563c0538ac", + "_tpl": "5caf17c9ae92150b30006be1", + "slotId": "mod_muzzle", + "parentId": "67c2395cfe1831563c0538ab" + }, + { + "_id": "67c2395cfe1831563c0538ad", + "_tpl": "5caf1109ae9215753c44119f", + "slotId": "mod_magazine", + "parentId": "67c2395cfe1831563c0538ab" + }, + { + "_id": "67c2395cfe1831563c0538ae", + "_tpl": "5caf16a2ae92152ac412efbc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2395cfe1831563c0538ab" + }, + { + "_id": "67c2395cfe1831563c0538af", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67c2395cfe1831563c0538ab" + }, + { + "_id": "67c2395cfe1831563c0538b0", + "_tpl": "5caf1691ae92152ac412efb9", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2395cfe1831563c0538ab" + }, + { + "_id": "67c2395cfe1831563c0538b1", + "_tpl": "560d657b4bdc2da74d8b4572", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c2395cfe1831563c0538ab" + }, + { + "_id": "67c2395cfe1831563c0538b2", + "_tpl": "5cda9bcfd7f00c0c0b53e900", + "slotId": "mod_foregrip", + "parentId": "67c2395cfe1831563c0538af" + }, + { + "_id": "67c2395cfe1831563c0538b3", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2395cfe1831563c0538b0" + }, + { + "_id": "67c2395cfe1831563c0538b4", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2395cfe1831563c0538b3" + } + ] + }, + { + "Id": "67c239830100185b9563a5b7", + "Name": "supr uh1 ash12", + "Root": "67c2398bfe1831563c0547a1", + "Items": [ + { + "_id": "67c2398bfe1831563c0547a1", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2398bfe1831563c0547a2", + "_tpl": "5caf187cae92157c28402e43", + "slotId": "mod_muzzle", + "parentId": "67c2398bfe1831563c0547a1" + }, + { + "_id": "67c2398bfe1831563c0547a3", + "_tpl": "5caf1109ae9215753c44119f", + "slotId": "mod_magazine", + "parentId": "67c2398bfe1831563c0547a1" + }, + { + "_id": "67c2398bfe1831563c0547a4", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67c2398bfe1831563c0547a1" + }, + { + "_id": "67c2398bfe1831563c0547a5", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2398bfe1831563c0547a1" + }, + { + "_id": "67c2398bfe1831563c0547a6", + "_tpl": "560d657b4bdc2da74d8b4572", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c2398bfe1831563c0547a1" + }, + { + "_id": "67c2398bfe1831563c0547a7", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c2398bfe1831563c0547a4" + } + ] + }, + { + "Id": "67c239b20100185b95f474b3", + "Name": "loud 2x ash12", + "Root": "67c239b8fe1831563c0555d3", + "Items": [ + { + "_id": "67c239b8fe1831563c0555d3", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c239b8fe1831563c0555d4", + "_tpl": "5caf17c9ae92150b30006be1", + "slotId": "mod_muzzle", + "parentId": "67c239b8fe1831563c0555d3" + }, + { + "_id": "67c239b8fe1831563c0555d5", + "_tpl": "5caf1041ae92157c28402e3f", + "slotId": "mod_magazine", + "parentId": "67c239b8fe1831563c0555d3" + }, + { + "_id": "67c239b8fe1831563c0555d6", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67c239b8fe1831563c0555d3" + }, + { + "_id": "67c239b8fe1831563c0555d7", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c239b8fe1831563c0555d3" + }, + { + "_id": "67c239b8fe1831563c0555d8", + "_tpl": "560d657b4bdc2da74d8b4572", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c239b8fe1831563c0555d3" + }, + { + "_id": "67c239b8fe1831563c0555d9", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c239b8fe1831563c0555d6" + } + ] + }, + { + "Id": "67c239de0100185b95a8ef2d", + "Name": "loud bravo ash12", + "Root": "67c239e3fe1831563c05638a", + "Items": [ + { + "_id": "67c239e3fe1831563c05638a", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c239e3fe1831563c05638b", + "_tpl": "5caf17c9ae92150b30006be1", + "slotId": "mod_muzzle", + "parentId": "67c239e3fe1831563c05638a" + }, + { + "_id": "67c239e3fe1831563c05638c", + "_tpl": "5caf1109ae9215753c44119f", + "slotId": "mod_magazine", + "parentId": "67c239e3fe1831563c05638a" + }, + { + "_id": "67c239e3fe1831563c05638d", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67c239e3fe1831563c05638a" + }, + { + "_id": "67c239e3fe1831563c05638e", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c239e3fe1831563c05638a" + }, + { + "_id": "67c239e3fe1831563c05638f", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c239e3fe1831563c05638a" + }, + { + "_id": "67c239e3fe1831563c056390", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67c239e3fe1831563c05638d" + }, + { + "_id": "67c239e3fe1831563c056391", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67c239e3fe1831563c05638e" + }, + { + "_id": "67c239e3fe1831563c056392", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c239e3fe1831563c056391" + } + ] + }, + { + "Id": "67c239fd0100185b954af68b", + "Name": "loud hhs ash12", + "Root": "67c23a02fe1831563c0572c1", + "Items": [ + { + "_id": "67c23a02fe1831563c0572c1", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23a02fe1831563c0572c2", + "_tpl": "5caf17c9ae92150b30006be1", + "slotId": "mod_muzzle", + "parentId": "67c23a02fe1831563c0572c1" + }, + { + "_id": "67c23a02fe1831563c0572c3", + "_tpl": "5caf1041ae92157c28402e3f", + "slotId": "mod_magazine", + "parentId": "67c23a02fe1831563c0572c1" + }, + { + "_id": "67c23a02fe1831563c0572c4", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67c23a02fe1831563c0572c1" + }, + { + "_id": "67c23a02fe1831563c0572c5", + "_tpl": "5c07dd120db834001c39092d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23a02fe1831563c0572c1" + }, + { + "_id": "67c23a02fe1831563c0572c6", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c23a02fe1831563c0572c1" + }, + { + "_id": "67c23a02fe1831563c0572c7", + "_tpl": "5c7fc87d2e221644f31c0298", + "slotId": "mod_foregrip", + "parentId": "67c23a02fe1831563c0572c4" + } + ] + }, + { + "Id": "67c23a200100185b95914387", + "Name": "supr holo ash12", + "Root": "67c23a24fe1831563c0572d2", + "Items": [ + { + "_id": "67c23a24fe1831563c0572d2", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c23a24fe1831563c0572d3", + "_tpl": "5caf187cae92157c28402e43", + "slotId": "mod_muzzle", + "parentId": "67c23a24fe1831563c0572d2" + }, + { + "_id": "67c23a24fe1831563c0572d4", + "_tpl": "5caf1109ae9215753c44119f", + "slotId": "mod_magazine", + "parentId": "67c23a24fe1831563c0572d2" + }, + { + "_id": "67c23a24fe1831563c0572d5", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "slotId": "mod_handguard", + "parentId": "67c23a24fe1831563c0572d2" + }, + { + "_id": "67c23a24fe1831563c0572d6", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c23a24fe1831563c0572d2" + }, + { + "_id": "67c23a24fe1831563c0572d7", + "_tpl": "560d657b4bdc2da74d8b4572", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c23a24fe1831563c0572d2" + }, + { + "_id": "67c23a24fe1831563c0572d8", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c23a24fe1831563c0572d5" + } + ] + }, + { + "Id": "67c29c6a0100185b95ef130e", + "Name": "loud HCO mutant", + "Root": "67c29c73b869516794037e37", + "Items": [ + { + "_id": "67c29c73b869516794037e37", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29c73b869516794037e38", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c29c73b869516794037e37" + }, + { + "_id": "67c29c73b869516794037e39", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67c29c73b869516794037e37" + }, + { + "_id": "67c29c73b869516794037e3a", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67c29c73b869516794037e37" + }, + { + "_id": "67c29c73b869516794037e3b", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67c29c73b869516794037e37" + }, + { + "_id": "67c29c73b869516794037e3c", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67c29c73b869516794037e37" + }, + { + "_id": "67c29c73b869516794037e3d", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29c73b869516794037e3a" + }, + { + "_id": "67c29c73b869516794037e3e", + "_tpl": "60658776f2cb2e02a42ace2b", + "slotId": "mod_barrel", + "parentId": "67c29c73b869516794037e3a" + }, + { + "_id": "67c29c73b869516794037e3f", + "_tpl": "6065880c132d4d12c81fd8da", + "slotId": "mod_handguard", + "parentId": "67c29c73b869516794037e3a" + }, + { + "_id": "67c29c73b869516794037e40", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29c73b869516794037e3a" + }, + { + "_id": "67c29c73b869516794037e41", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67c29c73b869516794037e3b" + }, + { + "_id": "67c29c73b869516794037e42", + "_tpl": "5cf78496d7f00c065703d6ca", + "slotId": "mod_muzzle", + "parentId": "67c29c73b869516794037e3e" + }, + { + "_id": "67c29c73b869516794037e43", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "slotId": "mod_gas_block", + "parentId": "67c29c73b869516794037e3e" + }, + { + "_id": "67c29c73b869516794037e44", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67c29c73b869516794037e3f" + }, + { + "_id": "67c29c73b869516794037e45", + "_tpl": "5bc09a30d4351e00367fb7c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29c73b869516794037e3f" + }, + { + "_id": "67c29c73b869516794037e46", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle_000", + "parentId": "67c29c73b869516794037e42" + }, + { + "_id": "67c29c73b869516794037e47", + "_tpl": "5cf78720d7f00c06595bc93e", + "slotId": "mod_muzzle_001", + "parentId": "67c29c73b869516794037e42" + }, + { + "_id": "67c29c73b869516794037e48", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c29c73b869516794037e41" + } + ] + }, + { + "Id": "67c29c9e0100185b95b434e6", + "Name": "supr holo mutant", + "Root": "67c29ca6b869516794037e52", + "Items": [ + { + "_id": "67c29ca6b869516794037e52", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29ca6b869516794037e53", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c29ca6b869516794037e52" + }, + { + "_id": "67c29ca6b869516794037e54", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67c29ca6b869516794037e52" + }, + { + "_id": "67c29ca6b869516794037e55", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67c29ca6b869516794037e52" + }, + { + "_id": "67c29ca6b869516794037e56", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67c29ca6b869516794037e52" + }, + { + "_id": "67c29ca6b869516794037e57", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67c29ca6b869516794037e52" + }, + { + "_id": "67c29ca6b869516794037e58", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29ca6b869516794037e55" + }, + { + "_id": "67c29ca6b869516794037e59", + "_tpl": "60658776f2cb2e02a42ace2b", + "slotId": "mod_barrel", + "parentId": "67c29ca6b869516794037e55" + }, + { + "_id": "67c29ca6b869516794037e5a", + "_tpl": "6065880c132d4d12c81fd8da", + "slotId": "mod_handguard", + "parentId": "67c29ca6b869516794037e55" + }, + { + "_id": "67c29ca6b869516794037e5b", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29ca6b869516794037e55" + }, + { + "_id": "67c29ca6b869516794037e5c", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67c29ca6b869516794037e56" + }, + { + "_id": "67c29ca6b869516794037e5d", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67c29ca6b869516794037e59" + }, + { + "_id": "67c29ca6b869516794037e5e", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "slotId": "mod_gas_block", + "parentId": "67c29ca6b869516794037e59" + }, + { + "_id": "67c29ca6b869516794037e5f", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c29ca6b869516794037e5a" + }, + { + "_id": "67c29ca6b869516794037e60", + "_tpl": "5bc09a30d4351e00367fb7c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29ca6b869516794037e5a" + }, + { + "_id": "67c29ca6b869516794037e61", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67c29ca6b869516794037e5d" + }, + { + "_id": "67c29ca6b869516794037e62", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c29ca6b869516794037e5f" + }, + { + "_id": "67c29ca6b869516794037e63", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c29ca6b869516794037e5c" + } + ] + }, + { + "Id": "67c29cd50100185b95cca9c2", + "Name": "supr HCO mutant", + "Root": "67c29cdab869516794037e6b", + "Items": [ + { + "_id": "67c29cdab869516794037e6b", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29cdab869516794037e6c", + "_tpl": "55802f5d4bdc2dac148b458f", + "slotId": "mod_pistol_grip", + "parentId": "67c29cdab869516794037e6b" + }, + { + "_id": "67c29cdab869516794037e6d", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67c29cdab869516794037e6b" + }, + { + "_id": "67c29cdab869516794037e6e", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67c29cdab869516794037e6b" + }, + { + "_id": "67c29cdab869516794037e6f", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67c29cdab869516794037e6b" + }, + { + "_id": "67c29cdab869516794037e70", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67c29cdab869516794037e6b" + }, + { + "_id": "67c29cdab869516794037e71", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29cdab869516794037e6e" + }, + { + "_id": "67c29cdab869516794037e72", + "_tpl": "60658776f2cb2e02a42ace2b", + "slotId": "mod_barrel", + "parentId": "67c29cdab869516794037e6e" + }, + { + "_id": "67c29cdab869516794037e73", + "_tpl": "6065880c132d4d12c81fd8da", + "slotId": "mod_handguard", + "parentId": "67c29cdab869516794037e6e" + }, + { + "_id": "67c29cdab869516794037e74", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29cdab869516794037e6e" + }, + { + "_id": "67c29cdab869516794037e75", + "_tpl": "6516e91f609aaf354b34b3e2", + "slotId": "mod_stock_000", + "parentId": "67c29cdab869516794037e6f" + }, + { + "_id": "67c29cdab869516794037e76", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67c29cdab869516794037e72" + }, + { + "_id": "67c29cdab869516794037e77", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "slotId": "mod_gas_block", + "parentId": "67c29cdab869516794037e72" + }, + { + "_id": "67c29cdab869516794037e78", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c29cdab869516794037e73" + }, + { + "_id": "67c29cdab869516794037e79", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c29cdab869516794037e73" + }, + { + "_id": "67c29cdab869516794037e7a", + "_tpl": "5bc09a30d4351e00367fb7c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29cdab869516794037e73" + }, + { + "_id": "67c29cdab869516794037e7b", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c29cdab869516794037e78" + }, + { + "_id": "67c29cdab869516794037e7c", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67c29cdab869516794037e79" + }, + { + "_id": "67c29cdab869516794037e7d", + "_tpl": "6516e9bc5901745209404287", + "slotId": "mod_stock_000", + "parentId": "67c29cdab869516794037e75" + } + ] + }, + { + "Id": "67c29d160100185b95fa4a25", + "Name": "loud hamr mutant", + "Root": "67c29d26b869516794038d9e", + "Items": [ + { + "_id": "67c29d26b869516794038d9e", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29d26b869516794038d9f", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c29d26b869516794038d9e" + }, + { + "_id": "67c29d26b869516794038da0", + "_tpl": "59d6272486f77466146386ff", + "slotId": "mod_magazine", + "parentId": "67c29d26b869516794038d9e" + }, + { + "_id": "67c29d26b869516794038da1", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67c29d26b869516794038d9e" + }, + { + "_id": "67c29d26b869516794038da2", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67c29d26b869516794038d9e" + }, + { + "_id": "67c29d26b869516794038da3", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67c29d26b869516794038d9e" + }, + { + "_id": "67c29d26b869516794038da4", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29d26b869516794038da1" + }, + { + "_id": "67c29d26b869516794038da5", + "_tpl": "6065878ac9cf8012264142fd", + "slotId": "mod_barrel", + "parentId": "67c29d26b869516794038da1" + }, + { + "_id": "67c29d26b869516794038da6", + "_tpl": "5f6336bbda967c74a42e9932", + "slotId": "mod_handguard", + "parentId": "67c29d26b869516794038da1" + }, + { + "_id": "67c29d26b869516794038da7", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29d26b869516794038da1" + }, + { + "_id": "67c29d26b869516794038da8", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c29d26b869516794038da2" + }, + { + "_id": "67c29d26b869516794038da9", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29d26b869516794038da4" + }, + { + "_id": "67c29d26b869516794038daa", + "_tpl": "5d026791d7ad1a04a067ea63", + "slotId": "mod_muzzle", + "parentId": "67c29d26b869516794038da5" + }, + { + "_id": "67c29d26b869516794038dab", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67c29d26b869516794038da5" + }, + { + "_id": "67c29d26b869516794038dac", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67c29d26b869516794038da6" + }, + { + "_id": "67c29d26b869516794038dad", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c29d26b869516794038da8" + } + ] + }, + { + "Id": "67c29d730100185b9519b401", + "Name": "loud dp mutant", + "Root": "67c29d7ab869516794039c68", + "Items": [ + { + "_id": "67c29d7ab869516794039c68", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29d7ab869516794039c69", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c29d7ab869516794039c68" + }, + { + "_id": "67c29d7ab869516794039c6a", + "_tpl": "59d6272486f77466146386ff", + "slotId": "mod_magazine", + "parentId": "67c29d7ab869516794039c68" + }, + { + "_id": "67c29d7ab869516794039c6b", + "_tpl": "606587a88900dc2d9a55b659", + "slotId": "mod_reciever", + "parentId": "67c29d7ab869516794039c68" + }, + { + "_id": "67c29d7ab869516794039c6c", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67c29d7ab869516794039c68" + }, + { + "_id": "67c29d7ab869516794039c6d", + "_tpl": "606587bd6d0bd7580617bacc", + "slotId": "mod_charge", + "parentId": "67c29d7ab869516794039c68" + }, + { + "_id": "67c29d7ab869516794039c6e", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67c29d7ab869516794039c6b" + }, + { + "_id": "67c29d7ab869516794039c6f", + "_tpl": "6065878ac9cf8012264142fd", + "slotId": "mod_barrel", + "parentId": "67c29d7ab869516794039c6b" + }, + { + "_id": "67c29d7ab869516794039c70", + "_tpl": "5f6336bbda967c74a42e9932", + "slotId": "mod_handguard", + "parentId": "67c29d7ab869516794039c6b" + }, + { + "_id": "67c29d7ab869516794039c71", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29d7ab869516794039c6b" + }, + { + "_id": "67c29d7ab869516794039c72", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67c29d7ab869516794039c6c" + }, + { + "_id": "67c29d7ab869516794039c73", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29d7ab869516794039c6e" + }, + { + "_id": "67c29d7ab869516794039c74", + "_tpl": "6642f63667f5cb56a00662eb", + "slotId": "mod_muzzle", + "parentId": "67c29d7ab869516794039c6f" + }, + { + "_id": "67c29d7ab869516794039c75", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67c29d7ab869516794039c6f" + }, + { + "_id": "67c29d7ab869516794039c76", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c29d7ab869516794039c70" + }, + { + "_id": "67c29d7ab869516794039c77", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67c29d7ab869516794039c70" + }, + { + "_id": "67c29d7ab869516794039c78", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c29d7ab869516794039c76" + }, + { + "_id": "67c29d7ab869516794039c79", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67c29d7ab869516794039c77" + }, + { + "_id": "67c29d7ab869516794039c7a", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67c29d7ab869516794039c72" + } + ] + }, + { + "Id": "67c29de20100185b95a7b661", + "Name": "loud holo fal", + "Root": "67c29de8b86951679403ac2c", + "Items": [ + { + "_id": "67c29de8b86951679403ac2c", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29de8b86951679403ac2d", + "_tpl": "5b099b965acfc400186331e6", + "slotId": "mod_pistol_grip", + "parentId": "67c29de8b86951679403ac2c" + }, + { + "_id": "67c29de8b86951679403ac2e", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "slotId": "mod_magazine", + "parentId": "67c29de8b86951679403ac2c" + }, + { + "_id": "67c29de8b86951679403ac2f", + "_tpl": "5b099a9d5acfc47a8607efe7", + "slotId": "mod_handguard", + "parentId": "67c29de8b86951679403ac2c" + }, + { + "_id": "67c29de8b86951679403ac30", + "_tpl": "5b099a765acfc47a8607efe3", + "slotId": "mod_barrel", + "parentId": "67c29de8b86951679403ac2c" + }, + { + "_id": "67c29de8b86951679403ac31", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29de8b86951679403ac2c" + }, + { + "_id": "67c29de8b86951679403ac32", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67c29de8b86951679403ac2c" + }, + { + "_id": "67c29de8b86951679403ac33", + "_tpl": "5b7d63b75acfc400170e2f8a", + "slotId": "mod_stock", + "parentId": "67c29de8b86951679403ac2c" + }, + { + "_id": "67c29de8b86951679403ac34", + "_tpl": "5c1bc5fb2e221602b1779b32", + "slotId": "mod_foregrip", + "parentId": "67c29de8b86951679403ac2f" + }, + { + "_id": "67c29de8b86951679403ac35", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c29de8b86951679403ac2f" + }, + { + "_id": "67c29de8b86951679403ac36", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67c29de8b86951679403ac30" + }, + { + "_id": "67c29de8b86951679403ac37", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29de8b86951679403ac32" + } + ] + }, + { + "Id": "67c29e300100185b95fd9e3e", + "Name": "loud uh1 fal", + "Root": "67c29e37b86951679403baab", + "Items": [ + { + "_id": "67c29e37b86951679403baab", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29e37b86951679403baac", + "_tpl": "5b099b965acfc400186331e6", + "slotId": "mod_pistol_grip", + "parentId": "67c29e37b86951679403baab" + }, + { + "_id": "67c29e37b86951679403baad", + "_tpl": "5b7bef5d5acfc43bca7067a3", + "slotId": "mod_magazine", + "parentId": "67c29e37b86951679403baab" + }, + { + "_id": "67c29e37b86951679403baae", + "_tpl": "5b7bee755acfc400196d5383", + "slotId": "mod_handguard", + "parentId": "67c29e37b86951679403baab" + }, + { + "_id": "67c29e37b86951679403baaf", + "_tpl": "5b7be1125acfc4001876c0e5", + "slotId": "mod_barrel", + "parentId": "67c29e37b86951679403baab" + }, + { + "_id": "67c29e37b86951679403bab0", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29e37b86951679403baab" + }, + { + "_id": "67c29e37b86951679403bab1", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67c29e37b86951679403baab" + }, + { + "_id": "67c29e37b86951679403bab2", + "_tpl": "5b7d64555acfc4001876c8e2", + "slotId": "mod_stock", + "parentId": "67c29e37b86951679403baab" + }, + { + "_id": "67c29e37b86951679403bab3", + "_tpl": "5b7be46e5acfc400170e2dcf", + "slotId": "mod_mount_000", + "parentId": "67c29e37b86951679403baae" + }, + { + "_id": "67c29e37b86951679403bab4", + "_tpl": "5b7be4575acfc400161d0832", + "slotId": "mod_mount_001", + "parentId": "67c29e37b86951679403baae" + }, + { + "_id": "67c29e37b86951679403bab5", + "_tpl": "5cdd7693d7f00c0010373aa5", + "slotId": "mod_muzzle", + "parentId": "67c29e37b86951679403baaf" + }, + { + "_id": "67c29e37b86951679403bab6", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29e37b86951679403bab1" + }, + { + "_id": "67c29e37b86951679403bab7", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c29e37b86951679403bab3" + }, + { + "_id": "67c29e37b86951679403bab8", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c29e37b86951679403bab4" + } + ] + }, + { + "Id": "67c29e670100185b9550ea67", + "Name": "supr uh1 fal", + "Root": "67c29e6bb86951679403ca82", + "Items": [ + { + "_id": "67c29e6bb86951679403ca82", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29e6bb86951679403ca83", + "_tpl": "5b099b965acfc400186331e6", + "slotId": "mod_pistol_grip", + "parentId": "67c29e6bb86951679403ca82" + }, + { + "_id": "67c29e6bb86951679403ca84", + "_tpl": "5b7d37845acfc400170e2f87", + "slotId": "mod_magazine", + "parentId": "67c29e6bb86951679403ca82" + }, + { + "_id": "67c29e6bb86951679403ca85", + "_tpl": "5b7bee755acfc400196d5383", + "slotId": "mod_handguard", + "parentId": "67c29e6bb86951679403ca82" + }, + { + "_id": "67c29e6bb86951679403ca86", + "_tpl": "5b7be1125acfc4001876c0e5", + "slotId": "mod_barrel", + "parentId": "67c29e6bb86951679403ca82" + }, + { + "_id": "67c29e6bb86951679403ca87", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29e6bb86951679403ca82" + }, + { + "_id": "67c29e6bb86951679403ca88", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67c29e6bb86951679403ca82" + }, + { + "_id": "67c29e6bb86951679403ca89", + "_tpl": "5b7d64555acfc4001876c8e2", + "slotId": "mod_stock", + "parentId": "67c29e6bb86951679403ca82" + }, + { + "_id": "67c29e6bb86951679403ca8a", + "_tpl": "5b7be46e5acfc400170e2dcf", + "slotId": "mod_mount_000", + "parentId": "67c29e6bb86951679403ca85" + }, + { + "_id": "67c29e6bb86951679403ca8b", + "_tpl": "5b7be4575acfc400161d0832", + "slotId": "mod_mount_001", + "parentId": "67c29e6bb86951679403ca85" + }, + { + "_id": "67c29e6bb86951679403ca8c", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67c29e6bb86951679403ca86" + }, + { + "_id": "67c29e6bb86951679403ca8d", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29e6bb86951679403ca88" + }, + { + "_id": "67c29e6bb86951679403ca8e", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c29e6bb86951679403ca8a" + }, + { + "_id": "67c29e6bb86951679403ca8f", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c29e6bb86951679403ca8b" + }, + { + "_id": "67c29e6bb86951679403ca90", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67c29e6bb86951679403ca8c" + } + ] + }, + { + "Id": "67c29e8b0100185b9578e41a", + "Name": "supr hamr fal", + "Root": "67c29e90b86951679403ca9d", + "Items": [ + { + "_id": "67c29e90b86951679403ca9d", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29e90b86951679403ca9e", + "_tpl": "5b099b965acfc400186331e6", + "slotId": "mod_pistol_grip", + "parentId": "67c29e90b86951679403ca9d" + }, + { + "_id": "67c29e90b86951679403ca9f", + "_tpl": "5b7d37845acfc400170e2f87", + "slotId": "mod_magazine", + "parentId": "67c29e90b86951679403ca9d" + }, + { + "_id": "67c29e90b86951679403caa0", + "_tpl": "5b7bee755acfc400196d5383", + "slotId": "mod_handguard", + "parentId": "67c29e90b86951679403ca9d" + }, + { + "_id": "67c29e90b86951679403caa1", + "_tpl": "5b7be1125acfc4001876c0e5", + "slotId": "mod_barrel", + "parentId": "67c29e90b86951679403ca9d" + }, + { + "_id": "67c29e90b86951679403caa2", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29e90b86951679403ca9d" + }, + { + "_id": "67c29e90b86951679403caa3", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67c29e90b86951679403ca9d" + }, + { + "_id": "67c29e90b86951679403caa4", + "_tpl": "5b7d64555acfc4001876c8e2", + "slotId": "mod_stock", + "parentId": "67c29e90b86951679403ca9d" + }, + { + "_id": "67c29e90b86951679403caa5", + "_tpl": "5b7be46e5acfc400170e2dcf", + "slotId": "mod_mount_000", + "parentId": "67c29e90b86951679403caa0" + }, + { + "_id": "67c29e90b86951679403caa6", + "_tpl": "5b7be4575acfc400161d0832", + "slotId": "mod_mount_001", + "parentId": "67c29e90b86951679403caa0" + }, + { + "_id": "67c29e90b86951679403caa7", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67c29e90b86951679403caa1" + }, + { + "_id": "67c29e90b86951679403caa8", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29e90b86951679403caa3" + }, + { + "_id": "67c29e90b86951679403caa9", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67c29e90b86951679403caa5" + }, + { + "_id": "67c29e90b86951679403caaa", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c29e90b86951679403caa6" + }, + { + "_id": "67c29e90b86951679403caab", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67c29e90b86951679403caa7" + }, + { + "_id": "67c29e90b86951679403caac", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29e90b86951679403caa8" + } + ] + }, + { + "Id": "67c29ed70100185b959a7adb", + "Name": "supr 2x fal", + "Root": "67c29edeb86951679403d96c", + "Items": [ + { + "_id": "67c29edeb86951679403d96c", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29edeb86951679403d96d", + "_tpl": "5b099b965acfc400186331e6", + "slotId": "mod_pistol_grip", + "parentId": "67c29edeb86951679403d96c" + }, + { + "_id": "67c29edeb86951679403d96e", + "_tpl": "5b7d37845acfc400170e2f87", + "slotId": "mod_magazine", + "parentId": "67c29edeb86951679403d96c" + }, + { + "_id": "67c29edeb86951679403d96f", + "_tpl": "5b7bee755acfc400196d5383", + "slotId": "mod_handguard", + "parentId": "67c29edeb86951679403d96c" + }, + { + "_id": "67c29edeb86951679403d970", + "_tpl": "5b7be1125acfc4001876c0e5", + "slotId": "mod_barrel", + "parentId": "67c29edeb86951679403d96c" + }, + { + "_id": "67c29edeb86951679403d971", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29edeb86951679403d96c" + }, + { + "_id": "67c29edeb86951679403d972", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67c29edeb86951679403d96c" + }, + { + "_id": "67c29edeb86951679403d973", + "_tpl": "5b7d64555acfc4001876c8e2", + "slotId": "mod_stock", + "parentId": "67c29edeb86951679403d96c" + }, + { + "_id": "67c29edeb86951679403d974", + "_tpl": "5b7be46e5acfc400170e2dcf", + "slotId": "mod_mount_000", + "parentId": "67c29edeb86951679403d96f" + }, + { + "_id": "67c29edeb86951679403d975", + "_tpl": "5b7be4575acfc400161d0832", + "slotId": "mod_mount_001", + "parentId": "67c29edeb86951679403d96f" + }, + { + "_id": "67c29edeb86951679403d976", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "slotId": "mod_muzzle", + "parentId": "67c29edeb86951679403d970" + }, + { + "_id": "67c29edeb86951679403d977", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29edeb86951679403d972" + }, + { + "_id": "67c29edeb86951679403d978", + "_tpl": "5c1bc7752e221602b1779b34", + "slotId": "mod_foregrip", + "parentId": "67c29edeb86951679403d974" + }, + { + "_id": "67c29edeb86951679403d979", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c29edeb86951679403d975" + }, + { + "_id": "67c29edeb86951679403d97a", + "_tpl": "5a34fe59c4a282000b1521a2", + "slotId": "mod_muzzle", + "parentId": "67c29edeb86951679403d976" + } + ] + }, + { + "Id": "67c29f330100185b951497c2", + "Name": "loud specer fal", + "Root": "67c29f3cb86951679403e76b", + "Items": [ + { + "_id": "67c29f3cb86951679403e76b", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c29f3cb86951679403e76c", + "_tpl": "5b099b965acfc400186331e6", + "slotId": "mod_pistol_grip", + "parentId": "67c29f3cb86951679403e76b" + }, + { + "_id": "67c29f3cb86951679403e76d", + "_tpl": "5b7c2d1d5acfc43d1028532a", + "slotId": "mod_magazine", + "parentId": "67c29f3cb86951679403e76b" + }, + { + "_id": "67c29f3cb86951679403e76e", + "_tpl": "5b099a9d5acfc47a8607efe7", + "slotId": "mod_handguard", + "parentId": "67c29f3cb86951679403e76b" + }, + { + "_id": "67c29f3cb86951679403e76f", + "_tpl": "5b099a765acfc47a8607efe3", + "slotId": "mod_barrel", + "parentId": "67c29f3cb86951679403e76b" + }, + { + "_id": "67c29f3cb86951679403e770", + "_tpl": "5b0bc22d5acfc47a8607f085", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29f3cb86951679403e76b" + }, + { + "_id": "67c29f3cb86951679403e771", + "_tpl": "5b099bb25acfc400186331e8", + "slotId": "mod_reciever", + "parentId": "67c29f3cb86951679403e76b" + }, + { + "_id": "67c29f3cb86951679403e772", + "_tpl": "5b7d63de5acfc400170e2f8d", + "slotId": "mod_stock", + "parentId": "67c29f3cb86951679403e76b" + }, + { + "_id": "67c29f3cb86951679403e773", + "_tpl": "5c1bc5fb2e221602b1779b32", + "slotId": "mod_foregrip", + "parentId": "67c29f3cb86951679403e76e" + }, + { + "_id": "67c29f3cb86951679403e774", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c29f3cb86951679403e76e" + }, + { + "_id": "67c29f3cb86951679403e775", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67c29f3cb86951679403e76f" + }, + { + "_id": "67c29f3cb86951679403e776", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c29f3cb86951679403e771" + } + ] + }, + { + "Id": "67c2cf5b0100185b9579d31e", + "Name": "supr holo mdr556", + "Root": "67c2cfa6d4e7b522b8044947", + "Items": [ + { + "_id": "67c2cfa6d4e7b522b8044947", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2cfa6d4e7b522b8044948", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67c2cfa6d4e7b522b8044947" + }, + { + "_id": "67c2cfa6d4e7b522b8044949", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c2cfa6d4e7b522b8044947" + }, + { + "_id": "67c2cfa6d4e7b522b804494a", + "_tpl": "5c48a14f2e2216152006edd7", + "slotId": "mod_handguard", + "parentId": "67c2cfa6d4e7b522b8044947" + }, + { + "_id": "67c2cfa6d4e7b522b804494b", + "_tpl": "5c48a2852e221602b21d5923", + "slotId": "mod_barrel", + "parentId": "67c2cfa6d4e7b522b8044947" + }, + { + "_id": "67c2cfa6d4e7b522b804494c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2cfa6d4e7b522b8044947" + }, + { + "_id": "67c2cfa6d4e7b522b804494d", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2cfa6d4e7b522b8044947" + }, + { + "_id": "67c2cfa6d4e7b522b804494e", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_mount_000", + "parentId": "67c2cfa6d4e7b522b804494a" + }, + { + "_id": "67c2cfa6d4e7b522b804494f", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67c2cfa6d4e7b522b804494b" + }, + { + "_id": "67c2cfa6d4e7b522b8044950", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67c2cfa6d4e7b522b804494f" + } + ] + }, + { + "Id": "67c2cf800100185b95149be9", + "Name": "supr holo mdr556 tan", + "Root": "67c2cfb3d4e7b522b8044955", + "Items": [ + { + "_id": "67c2cfb3d4e7b522b8044955", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2cfb3d4e7b522b8044956", + "_tpl": "5c48a2c22e221602b313fb6c", + "slotId": "mod_pistol_grip", + "parentId": "67c2cfb3d4e7b522b8044955" + }, + { + "_id": "67c2cfb3d4e7b522b8044957", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c2cfb3d4e7b522b8044955" + }, + { + "_id": "67c2cfb3d4e7b522b8044958", + "_tpl": "5c48a14f2e2216152006edd7", + "slotId": "mod_handguard", + "parentId": "67c2cfb3d4e7b522b8044955" + }, + { + "_id": "67c2cfb3d4e7b522b8044959", + "_tpl": "5c48a2852e221602b21d5923", + "slotId": "mod_barrel", + "parentId": "67c2cfb3d4e7b522b8044955" + }, + { + "_id": "67c2cfb3d4e7b522b804495a", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2cfb3d4e7b522b8044955" + }, + { + "_id": "67c2cfb3d4e7b522b804495b", + "_tpl": "5c18b9192e2216398b5a8104", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2cfb3d4e7b522b8044955" + }, + { + "_id": "67c2cfb3d4e7b522b804495c", + "_tpl": "57cffcd624597763133760c5", + "slotId": "mod_mount_000", + "parentId": "67c2cfb3d4e7b522b8044958" + }, + { + "_id": "67c2cfb3d4e7b522b804495d", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_002", + "parentId": "67c2cfb3d4e7b522b8044958" + }, + { + "_id": "67c2cfb3d4e7b522b804495e", + "_tpl": "5c18b90d2e2216152142466b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2cfb3d4e7b522b8044958" + }, + { + "_id": "67c2cfb3d4e7b522b804495f", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67c2cfb3d4e7b522b8044959" + }, + { + "_id": "67c2cfb3d4e7b522b8044960", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c2cfb3d4e7b522b804495d" + }, + { + "_id": "67c2cfb3d4e7b522b8044961", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67c2cfb3d4e7b522b804495f" + } + ] + }, + { + "Id": "67c2cfc70100185b95dcc30b", + "Name": "loud hamr mdr556", + "Root": "67c2cfd0d4e7b522b8044962", + "Items": [ + { + "_id": "67c2cfd0d4e7b522b8044962", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2cfd0d4e7b522b8044963", + "_tpl": "5c48a2c22e221602b313fb6c", + "slotId": "mod_pistol_grip", + "parentId": "67c2cfd0d4e7b522b8044962" + }, + { + "_id": "67c2cfd0d4e7b522b8044964", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c2cfd0d4e7b522b8044962" + }, + { + "_id": "67c2cfd0d4e7b522b8044965", + "_tpl": "5c48a14f2e2216152006edd7", + "slotId": "mod_handguard", + "parentId": "67c2cfd0d4e7b522b8044962" + }, + { + "_id": "67c2cfd0d4e7b522b8044966", + "_tpl": "5c48a2852e221602b21d5923", + "slotId": "mod_barrel", + "parentId": "67c2cfd0d4e7b522b8044962" + }, + { + "_id": "67c2cfd0d4e7b522b8044967", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2cfd0d4e7b522b8044962" + }, + { + "_id": "67c2cfd0d4e7b522b8044968", + "_tpl": "651a8bf3a8520e48047bf708", + "slotId": "mod_mount_000", + "parentId": "67c2cfd0d4e7b522b8044965" + }, + { + "_id": "67c2cfd0d4e7b522b8044969", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67c2cfd0d4e7b522b8044966" + }, + { + "_id": "67c2cfd0d4e7b522b804496a", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2cfd0d4e7b522b8044967" + } + ] + }, + { + "Id": "67c2cfe40100185b95584cb3", + "Name": "loud HHS mdr556", + "Root": "67c2cfebd4e7b522b804579f", + "Items": [ + { + "_id": "67c2cfebd4e7b522b804579f", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2cfebd4e7b522b80457a0", + "_tpl": "5c48a2c22e221602b313fb6c", + "slotId": "mod_pistol_grip", + "parentId": "67c2cfebd4e7b522b804579f" + }, + { + "_id": "67c2cfebd4e7b522b80457a1", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c2cfebd4e7b522b804579f" + }, + { + "_id": "67c2cfebd4e7b522b80457a2", + "_tpl": "5c48a14f2e2216152006edd7", + "slotId": "mod_handguard", + "parentId": "67c2cfebd4e7b522b804579f" + }, + { + "_id": "67c2cfebd4e7b522b80457a3", + "_tpl": "5c48a2852e221602b21d5923", + "slotId": "mod_barrel", + "parentId": "67c2cfebd4e7b522b804579f" + }, + { + "_id": "67c2cfebd4e7b522b80457a4", + "_tpl": "5c0a2cec0db834001b7ce47d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2cfebd4e7b522b804579f" + }, + { + "_id": "67c2cfebd4e7b522b80457a5", + "_tpl": "57cffcd624597763133760c5", + "slotId": "mod_mount_000", + "parentId": "67c2cfebd4e7b522b80457a2" + }, + { + "_id": "67c2cfebd4e7b522b80457a6", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67c2cfebd4e7b522b80457a3" + } + ] + }, + { + "Id": "67c2d01b0100185b95d8630e", + "Name": "loud bravo mdr556", + "Root": "67c2d021d4e7b522b8046611", + "Items": [ + { + "_id": "67c2d021d4e7b522b8046611", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c2d021d4e7b522b8046612", + "_tpl": "5c48a2c22e221602b313fb6c", + "slotId": "mod_pistol_grip", + "parentId": "67c2d021d4e7b522b8046611" + }, + { + "_id": "67c2d021d4e7b522b8046613", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67c2d021d4e7b522b8046611" + }, + { + "_id": "67c2d021d4e7b522b8046614", + "_tpl": "5c48a14f2e2216152006edd7", + "slotId": "mod_handguard", + "parentId": "67c2d021d4e7b522b8046611" + }, + { + "_id": "67c2d021d4e7b522b8046615", + "_tpl": "5c48a2852e221602b21d5923", + "slotId": "mod_barrel", + "parentId": "67c2d021d4e7b522b8046611" + }, + { + "_id": "67c2d021d4e7b522b8046616", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2d021d4e7b522b8046611" + }, + { + "_id": "67c2d021d4e7b522b8046617", + "_tpl": "57cffcd624597763133760c5", + "slotId": "mod_mount_000", + "parentId": "67c2d021d4e7b522b8046614" + }, + { + "_id": "67c2d021d4e7b522b8046618", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_002", + "parentId": "67c2d021d4e7b522b8046614" + }, + { + "_id": "67c2d021d4e7b522b8046619", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67c2d021d4e7b522b8046615" + }, + { + "_id": "67c2d021d4e7b522b804661a", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67c2d021d4e7b522b8046616" + }, + { + "_id": "67c2d021d4e7b522b804661b", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c2d021d4e7b522b8046618" + }, + { + "_id": "67c2d021d4e7b522b804661c", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c2d021d4e7b522b804661a" + } + ] + }, + { + "Id": "67c3e4120100185b95a03d01", + "Name": "loud holo mdr762", + "Root": "67c3e41b5fa11523b40388c0", + "Items": [ + { + "_id": "67c3e41b5fa11523b40388c0", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c3e41b5fa11523b40388c1", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67c3e41b5fa11523b40388c0" + }, + { + "_id": "67c3e41b5fa11523b40388c2", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67c3e41b5fa11523b40388c0" + }, + { + "_id": "67c3e41b5fa11523b40388c3", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67c3e41b5fa11523b40388c0" + }, + { + "_id": "67c3e41b5fa11523b40388c4", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67c3e41b5fa11523b40388c0" + }, + { + "_id": "67c3e41b5fa11523b40388c5", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e41b5fa11523b40388c0" + }, + { + "_id": "67c3e41b5fa11523b40388c6", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_mount_000", + "parentId": "67c3e41b5fa11523b40388c3" + }, + { + "_id": "67c3e41b5fa11523b40388c7", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c3e41b5fa11523b40388c3" + }, + { + "_id": "67c3e41b5fa11523b40388c8", + "_tpl": "5cdd7685d7f00c000f260ed2", + "slotId": "mod_muzzle", + "parentId": "67c3e41b5fa11523b40388c4" + }, + { + "_id": "67c3e41b5fa11523b40388c9", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c3e41b5fa11523b40388c7" + } + ] + }, + { + "Id": "67c3e4370100185b9583d164", + "Name": "loud romeo mdr762", + "Root": "67c3e43e5fa11523b40388ce", + "Items": [ + { + "_id": "67c3e43e5fa11523b40388ce", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c3e43e5fa11523b40388cf", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67c3e43e5fa11523b40388ce" + }, + { + "_id": "67c3e43e5fa11523b40388d0", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67c3e43e5fa11523b40388ce" + }, + { + "_id": "67c3e43e5fa11523b40388d1", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67c3e43e5fa11523b40388ce" + }, + { + "_id": "67c3e43e5fa11523b40388d2", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67c3e43e5fa11523b40388ce" + }, + { + "_id": "67c3e43e5fa11523b40388d3", + "_tpl": "60a23797a37c940de7062d02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e43e5fa11523b40388ce" + }, + { + "_id": "67c3e43e5fa11523b40388d4", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_mount_000", + "parentId": "67c3e43e5fa11523b40388d1" + }, + { + "_id": "67c3e43e5fa11523b40388d5", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c3e43e5fa11523b40388d1" + }, + { + "_id": "67c3e43e5fa11523b40388d6", + "_tpl": "5bbdb8bdd4351e4502011460", + "slotId": "mod_muzzle", + "parentId": "67c3e43e5fa11523b40388d2" + }, + { + "_id": "67c3e43e5fa11523b40388d7", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c3e43e5fa11523b40388d5" + } + ] + }, + { + "Id": "67c3e4990100185b95ff9cc4", + "Name": "supr holo mdr762", + "Root": "67c3e4a05fa11523b4038913", + "Items": [ + { + "_id": "67c3e4a05fa11523b4038913", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c3e4a05fa11523b4038914", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67c3e4a05fa11523b4038913" + }, + { + "_id": "67c3e4a05fa11523b4038915", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67c3e4a05fa11523b4038913" + }, + { + "_id": "67c3e4a05fa11523b4038916", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67c3e4a05fa11523b4038913" + }, + { + "_id": "67c3e4a05fa11523b4038917", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67c3e4a05fa11523b4038913" + }, + { + "_id": "67c3e4a05fa11523b4038918", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e4a05fa11523b4038913" + }, + { + "_id": "67c3e4a05fa11523b4038919", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e4a05fa11523b4038913" + }, + { + "_id": "67c3e4a05fa11523b403891a", + "_tpl": "651a8bf3a8520e48047bf708", + "slotId": "mod_mount_000", + "parentId": "67c3e4a05fa11523b4038916" + }, + { + "_id": "67c3e4a05fa11523b403891b", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c3e4a05fa11523b4038916" + }, + { + "_id": "67c3e4a05fa11523b403891c", + "_tpl": "5bc09a30d4351e00367fb7c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e4a05fa11523b4038916" + }, + { + "_id": "67c3e4a05fa11523b403891d", + "_tpl": "5dfa3cd1b33c0951220c079b", + "slotId": "mod_muzzle", + "parentId": "67c3e4a05fa11523b4038917" + }, + { + "_id": "67c3e4a05fa11523b403891e", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c3e4a05fa11523b403891b" + }, + { + "_id": "67c3e4a05fa11523b403891f", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67c3e4a05fa11523b403891d" + } + ] + }, + { + "Id": "67c3e4ba0100185b9579615a", + "Name": "loud uh1 mdr762", + "Root": "67c3e4c25fa11523b4038927", + "Items": [ + { + "_id": "67c3e4c25fa11523b4038927", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c3e4c25fa11523b4038928", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67c3e4c25fa11523b4038927" + }, + { + "_id": "67c3e4c25fa11523b4038929", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67c3e4c25fa11523b4038927" + }, + { + "_id": "67c3e4c25fa11523b403892a", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67c3e4c25fa11523b4038927" + }, + { + "_id": "67c3e4c25fa11523b403892b", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67c3e4c25fa11523b4038927" + }, + { + "_id": "67c3e4c25fa11523b403892c", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e4c25fa11523b4038927" + }, + { + "_id": "67c3e4c25fa11523b403892d", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_mount_000", + "parentId": "67c3e4c25fa11523b403892a" + }, + { + "_id": "67c3e4c25fa11523b403892e", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67c3e4c25fa11523b403892a" + }, + { + "_id": "67c3e4c25fa11523b403892f", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67c3e4c25fa11523b403892b" + }, + { + "_id": "67c3e4c25fa11523b4038930", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67c3e4c25fa11523b403892d" + }, + { + "_id": "67c3e4c25fa11523b4038931", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c3e4c25fa11523b403892e" + } + ] + }, + { + "Id": "67c3e4d30100185b95171ab7", + "Name": "loud tac30 mdr 762", + "Root": "67c3e4dc5fa11523b4038936", + "Items": [ + { + "_id": "67c3e4dc5fa11523b4038936", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c3e4dc5fa11523b4038937", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "slotId": "mod_pistol_grip", + "parentId": "67c3e4dc5fa11523b4038936" + }, + { + "_id": "67c3e4dc5fa11523b4038938", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67c3e4dc5fa11523b4038936" + }, + { + "_id": "67c3e4dc5fa11523b4038939", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "slotId": "mod_handguard", + "parentId": "67c3e4dc5fa11523b4038936" + }, + { + "_id": "67c3e4dc5fa11523b403893a", + "_tpl": "5dcbe9431e1f4616d354987e", + "slotId": "mod_barrel", + "parentId": "67c3e4dc5fa11523b4038936" + }, + { + "_id": "67c3e4dc5fa11523b403893b", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67c3e4dc5fa11523b4038936" + }, + { + "_id": "67c3e4dc5fa11523b403893c", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_mount_000", + "parentId": "67c3e4dc5fa11523b4038939" + }, + { + "_id": "67c3e4dc5fa11523b403893d", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67c3e4dc5fa11523b403893a" + }, + { + "_id": "67c3e4dc5fa11523b403893e", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e4dc5fa11523b403893b" + } + ] + }, + { + "Id": "67c3e53b0100185b95177641", + "Name": "dupr uh1 scar762", + "Root": "67c3e55b5fa11523b40398fc", + "Items": [ + { + "_id": "67c3e55b5fa11523b40398fc", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c3e55b5fa11523b40398fd", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67c3e55b5fa11523b40398fc" + }, + { + "_id": "67c3e55b5fa11523b40398fe", + "_tpl": "618168dc8004cc50514c34fc", + "slotId": "mod_magazine", + "parentId": "67c3e55b5fa11523b40398fc" + }, + { + "_id": "67c3e55b5fa11523b40398ff", + "_tpl": "6165adcdd3a39d50044c120f", + "slotId": "mod_reciever", + "parentId": "67c3e55b5fa11523b40398fc" + }, + { + "_id": "67c3e55b5fa11523b4039900", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67c3e55b5fa11523b40398fc" + }, + { + "_id": "67c3e55b5fa11523b4039901", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67c3e55b5fa11523b40398fc" + }, + { + "_id": "67c3e55b5fa11523b4039902", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e55b5fa11523b40398ff" + }, + { + "_id": "67c3e55b5fa11523b4039903", + "_tpl": "6183b084a112697a4b3a6e6c", + "slotId": "mod_barrel", + "parentId": "67c3e55b5fa11523b40398ff" + }, + { + "_id": "67c3e55b5fa11523b4039904", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e55b5fa11523b40398ff" + }, + { + "_id": "67c3e55b5fa11523b4039905", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67c3e55b5fa11523b40398ff" + }, + { + "_id": "67c3e55b5fa11523b4039906", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67c3e55b5fa11523b40398ff" + }, + { + "_id": "67c3e55b5fa11523b4039907", + "_tpl": "618167528004cc50514c34f9", + "slotId": "mod_stock_001", + "parentId": "67c3e55b5fa11523b4039900" + }, + { + "_id": "67c3e55b5fa11523b4039908", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67c3e55b5fa11523b4039900" + }, + { + "_id": "67c3e55b5fa11523b4039909", + "_tpl": "618178aa1cb55961fa0fdc80", + "slotId": "mod_muzzle", + "parentId": "67c3e55b5fa11523b4039903" + }, + { + "_id": "67c3e55b5fa11523b403990a", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e55b5fa11523b4039903" + }, + { + "_id": "67c3e55b5fa11523b403990b", + "_tpl": "5cda9bcfd7f00c0c0b53e900", + "slotId": "mod_foregrip", + "parentId": "67c3e55b5fa11523b4039905" + }, + { + "_id": "67c3e55b5fa11523b403990c", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c3e55b5fa11523b4039906" + }, + { + "_id": "67c3e55b5fa11523b403990d", + "_tpl": "5a34fe59c4a282000b1521a2", + "slotId": "mod_muzzle", + "parentId": "67c3e55b5fa11523b4039909" + }, + { + "_id": "67c3e55b5fa11523b403990e", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67c3e55b5fa11523b4039907" + } + ] + }, + { + "Id": "67c3e56f0100185b958ed94c", + "Name": "loud hamr scar762", + "Root": "67c3e78c5fa11523b40402e4", + "Items": [ + { + "_id": "67c3e78c5fa11523b40402e4", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c3e78c5fa11523b40402e5", + "_tpl": "5cc9bcaed7f00c011c04e179", + "slotId": "mod_pistol_grip", + "parentId": "67c3e78c5fa11523b40402e4" + }, + { + "_id": "67c3e78c5fa11523b40402e6", + "_tpl": "618168dc8004cc50514c34fc", + "slotId": "mod_magazine", + "parentId": "67c3e78c5fa11523b40402e4" + }, + { + "_id": "67c3e78c5fa11523b40402e7", + "_tpl": "6165adcdd3a39d50044c120f", + "slotId": "mod_reciever", + "parentId": "67c3e78c5fa11523b40402e4" + }, + { + "_id": "67c3e78c5fa11523b40402e8", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67c3e78c5fa11523b40402e4" + }, + { + "_id": "67c3e78c5fa11523b40402e9", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67c3e78c5fa11523b40402e4" + }, + { + "_id": "67c3e78c5fa11523b40402ea", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e78c5fa11523b40402e7" + }, + { + "_id": "67c3e78c5fa11523b40402eb", + "_tpl": "6183b084a112697a4b3a6e6c", + "slotId": "mod_barrel", + "parentId": "67c3e78c5fa11523b40402e7" + }, + { + "_id": "67c3e78c5fa11523b40402ec", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e78c5fa11523b40402e7" + }, + { + "_id": "67c3e78c5fa11523b40402ed", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67c3e78c5fa11523b40402e7" + }, + { + "_id": "67c3e78c5fa11523b40402ee", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67c3e78c5fa11523b40402e7" + }, + { + "_id": "67c3e78c5fa11523b40402ef", + "_tpl": "618167528004cc50514c34f9", + "slotId": "mod_stock_001", + "parentId": "67c3e78c5fa11523b40402e8" + }, + { + "_id": "67c3e78c5fa11523b40402f0", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67c3e78c5fa11523b40402e8" + }, + { + "_id": "67c3e78c5fa11523b40402f1", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e78c5fa11523b40402ea" + }, + { + "_id": "67c3e78c5fa11523b40402f2", + "_tpl": "618178aa1cb55961fa0fdc80", + "slotId": "mod_muzzle", + "parentId": "67c3e78c5fa11523b40402eb" + }, + { + "_id": "67c3e78c5fa11523b40402f3", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e78c5fa11523b40402eb" + }, + { + "_id": "67c3e78c5fa11523b40402f4", + "_tpl": "5c1bc5fb2e221602b1779b32", + "slotId": "mod_foregrip", + "parentId": "67c3e78c5fa11523b40402ed" + }, + { + "_id": "67c3e78c5fa11523b40402f5", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67c3e78c5fa11523b40402ef" + } + ] + }, + { + "Id": "67c3e5d10100185b95daa849", + "Name": "loud 2x scar762", + "Root": "67c3e5d75fa11523b403a83d", + "Items": [ + { + "_id": "67c3e5d75fa11523b403a83d", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67c3e5d75fa11523b403a83e", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67c3e5d75fa11523b403a83d" + }, + { + "_id": "67c3e5d75fa11523b403a83f", + "_tpl": "618168dc8004cc50514c34fc", + "slotId": "mod_magazine", + "parentId": "67c3e5d75fa11523b403a83d" + }, + { + "_id": "67c3e5d75fa11523b403a840", + "_tpl": "6165adcdd3a39d50044c120f", + "slotId": "mod_reciever", + "parentId": "67c3e5d75fa11523b403a83d" + }, + { + "_id": "67c3e5d75fa11523b403a841", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67c3e5d75fa11523b403a83d" + }, + { + "_id": "67c3e5d75fa11523b403a842", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67c3e5d75fa11523b403a83d" + }, + { + "_id": "67c3e5d75fa11523b403a843", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e5d75fa11523b403a840" + }, + { + "_id": "67c3e5d75fa11523b403a844", + "_tpl": "6183b084a112697a4b3a6e6c", + "slotId": "mod_barrel", + "parentId": "67c3e5d75fa11523b403a840" + }, + { + "_id": "67c3e5d75fa11523b403a845", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e5d75fa11523b403a840" + }, + { + "_id": "67c3e5d75fa11523b403a846", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67c3e5d75fa11523b403a840" + }, + { + "_id": "67c3e5d75fa11523b403a847", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67c3e5d75fa11523b403a840" + }, + { + "_id": "67c3e5d75fa11523b403a848", + "_tpl": "66ffc2bd132225f0fe0611d8", + "slotId": "mod_stock_001", + "parentId": "67c3e5d75fa11523b403a841" + }, + { + "_id": "67c3e5d75fa11523b403a849", + "_tpl": "5cdd7693d7f00c0010373aa5", + "slotId": "mod_muzzle", + "parentId": "67c3e5d75fa11523b403a844" + }, + { + "_id": "67c3e5d75fa11523b403a84a", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67c3e5d75fa11523b403a844" + }, + { + "_id": "67c3e5d75fa11523b403a84b", + "_tpl": "5c7fc87d2e221644f31c0298", + "slotId": "mod_foregrip", + "parentId": "67c3e5d75fa11523b403a846" + }, + { + "_id": "67c3e5d75fa11523b403a84c", + "_tpl": "5b07dd285acfc4001754240d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67c3e5d75fa11523b403a847" + } + ] + }, + { + "Id": "67cf7c1d0100185b95c03834", + "Name": "supr vudu scar762", + "Root": "67cf7c351fce8c114c037dcc", + "Items": [ + { + "_id": "67cf7c351fce8c114c037dcc", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7c351fce8c114c037dcd", + "_tpl": "59db3a1d86f77429e05b4e92", + "slotId": "mod_pistol_grip", + "parentId": "67cf7c351fce8c114c037dcc" + }, + { + "_id": "67cf7c351fce8c114c037dce", + "_tpl": "618168dc8004cc50514c34fc", + "slotId": "mod_magazine", + "parentId": "67cf7c351fce8c114c037dcc" + }, + { + "_id": "67cf7c351fce8c114c037dcf", + "_tpl": "6165adcdd3a39d50044c120f", + "slotId": "mod_reciever", + "parentId": "67cf7c351fce8c114c037dcc" + }, + { + "_id": "67cf7c351fce8c114c037dd0", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67cf7c351fce8c114c037dcc" + }, + { + "_id": "67cf7c351fce8c114c037dd1", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67cf7c351fce8c114c037dcc" + }, + { + "_id": "67cf7c351fce8c114c037dd2", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67cf7c351fce8c114c037dcf" + }, + { + "_id": "67cf7c351fce8c114c037dd3", + "_tpl": "6183b084a112697a4b3a6e6c", + "slotId": "mod_barrel", + "parentId": "67cf7c351fce8c114c037dcf" + }, + { + "_id": "67cf7c351fce8c114c037dd4", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7c351fce8c114c037dcf" + }, + { + "_id": "67cf7c351fce8c114c037dd5", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67cf7c351fce8c114c037dcf" + }, + { + "_id": "67cf7c351fce8c114c037dd6", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67cf7c351fce8c114c037dcf" + }, + { + "_id": "67cf7c351fce8c114c037dd7", + "_tpl": "618167528004cc50514c34f9", + "slotId": "mod_stock_001", + "parentId": "67cf7c351fce8c114c037dd0" + }, + { + "_id": "67cf7c351fce8c114c037dd8", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67cf7c351fce8c114c037dd0" + }, + { + "_id": "67cf7c351fce8c114c037dd9", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7c351fce8c114c037dd2" + }, + { + "_id": "67cf7c351fce8c114c037dda", + "_tpl": "618178aa1cb55961fa0fdc80", + "slotId": "mod_muzzle", + "parentId": "67cf7c351fce8c114c037dd3" + }, + { + "_id": "67cf7c351fce8c114c037ddb", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7c351fce8c114c037dd3" + }, + { + "_id": "67cf7c351fce8c114c037ddc", + "_tpl": "5c791e872e2216001219c40a", + "slotId": "mod_foregrip", + "parentId": "67cf7c351fce8c114c037dd5" + }, + { + "_id": "67cf7c351fce8c114c037ddd", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7c351fce8c114c037dd6" + }, + { + "_id": "67cf7c351fce8c114c037dde", + "_tpl": "5a34fe59c4a282000b1521a2", + "slotId": "mod_muzzle", + "parentId": "67cf7c351fce8c114c037dda" + }, + { + "_id": "67cf7c351fce8c114c037ddf", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67cf7c351fce8c114c037dd7" + } + ] + }, + { + "Id": "67cf7c6c0100185b952b728d", + "Name": "loud holo tan scar762", + "Root": "67cf7c801fce8c114c037de5", + "Items": [ + { + "_id": "67cf7c801fce8c114c037de5", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7c801fce8c114c037de6", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "slotId": "mod_pistol_grip", + "parentId": "67cf7c801fce8c114c037de5" + }, + { + "_id": "67cf7c801fce8c114c037de7", + "_tpl": "6183d53f1cb55961fa0fdcda", + "slotId": "mod_magazine", + "parentId": "67cf7c801fce8c114c037de5" + }, + { + "_id": "67cf7c801fce8c114c037de8", + "_tpl": "6165aeedfaa1272e431521e3", + "slotId": "mod_reciever", + "parentId": "67cf7c801fce8c114c037de5" + }, + { + "_id": "67cf7c801fce8c114c037de9", + "_tpl": "61825d06d92c473c770215de", + "slotId": "mod_stock", + "parentId": "67cf7c801fce8c114c037de5" + }, + { + "_id": "67cf7c801fce8c114c037dea", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67cf7c801fce8c114c037de5" + }, + { + "_id": "67cf7c801fce8c114c037deb", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7c801fce8c114c037de8" + }, + { + "_id": "67cf7c801fce8c114c037dec", + "_tpl": "6183b0711cb55961fa0fdcad", + "slotId": "mod_barrel", + "parentId": "67cf7c801fce8c114c037de8" + }, + { + "_id": "67cf7c801fce8c114c037ded", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7c801fce8c114c037de8" + }, + { + "_id": "67cf7c801fce8c114c037dee", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67cf7c801fce8c114c037de8" + }, + { + "_id": "67cf7c801fce8c114c037def", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67cf7c801fce8c114c037de8" + }, + { + "_id": "67cf7c801fce8c114c037df0", + "_tpl": "61825d136ef05c2ce828f1cc", + "slotId": "mod_stock_001", + "parentId": "67cf7c801fce8c114c037de9" + }, + { + "_id": "67cf7c801fce8c114c037df1", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67cf7c801fce8c114c037de9" + }, + { + "_id": "67cf7c801fce8c114c037df2", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67cf7c801fce8c114c037dec" + }, + { + "_id": "67cf7c801fce8c114c037df3", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7c801fce8c114c037dec" + }, + { + "_id": "67cf7c801fce8c114c037df4", + "_tpl": "5fce0cf655375d18a253eff0", + "slotId": "mod_foregrip", + "parentId": "67cf7c801fce8c114c037dee" + }, + { + "_id": "67cf7c801fce8c114c037df5", + "_tpl": "626becf9582c3e319310b837", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7c801fce8c114c037def" + }, + { + "_id": "67cf7c801fce8c114c037df6", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67cf7c801fce8c114c037df0" + } + ] + }, + { + "Id": "67cf7cad0100185b9596dea6", + "Name": "supr HHS tan scar762", + "Root": "67cf7cb81fce8c114c037e40", + "Items": [ + { + "_id": "67cf7cb81fce8c114c037e40", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7cb81fce8c114c037e41", + "_tpl": "571659bb2459771fb2755a12", + "slotId": "mod_pistol_grip", + "parentId": "67cf7cb81fce8c114c037e40" + }, + { + "_id": "67cf7cb81fce8c114c037e42", + "_tpl": "6183d53f1cb55961fa0fdcda", + "slotId": "mod_magazine", + "parentId": "67cf7cb81fce8c114c037e40" + }, + { + "_id": "67cf7cb81fce8c114c037e43", + "_tpl": "6165aeedfaa1272e431521e3", + "slotId": "mod_reciever", + "parentId": "67cf7cb81fce8c114c037e40" + }, + { + "_id": "67cf7cb81fce8c114c037e44", + "_tpl": "61825d06d92c473c770215de", + "slotId": "mod_stock", + "parentId": "67cf7cb81fce8c114c037e40" + }, + { + "_id": "67cf7cb81fce8c114c037e45", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67cf7cb81fce8c114c037e40" + }, + { + "_id": "67cf7cb81fce8c114c037e46", + "_tpl": "5c0a2cec0db834001b7ce47d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7cb81fce8c114c037e43" + }, + { + "_id": "67cf7cb81fce8c114c037e47", + "_tpl": "6183b0711cb55961fa0fdcad", + "slotId": "mod_barrel", + "parentId": "67cf7cb81fce8c114c037e43" + }, + { + "_id": "67cf7cb81fce8c114c037e48", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7cb81fce8c114c037e43" + }, + { + "_id": "67cf7cb81fce8c114c037e49", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67cf7cb81fce8c114c037e43" + }, + { + "_id": "67cf7cb81fce8c114c037e4a", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67cf7cb81fce8c114c037e43" + }, + { + "_id": "67cf7cb81fce8c114c037e4b", + "_tpl": "61825d136ef05c2ce828f1cc", + "slotId": "mod_stock_001", + "parentId": "67cf7cb81fce8c114c037e44" + }, + { + "_id": "67cf7cb81fce8c114c037e4c", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67cf7cb81fce8c114c037e44" + }, + { + "_id": "67cf7cb81fce8c114c037e4d", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67cf7cb81fce8c114c037e47" + }, + { + "_id": "67cf7cb81fce8c114c037e4e", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7cb81fce8c114c037e47" + }, + { + "_id": "67cf7cb81fce8c114c037e4f", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67cf7cb81fce8c114c037e49" + }, + { + "_id": "67cf7cb81fce8c114c037e50", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67cf7cb81fce8c114c037e4d" + }, + { + "_id": "67cf7cb81fce8c114c037e51", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67cf7cb81fce8c114c037e4b" + } + ] + }, + { + "Id": "67cf7ccb0100185b9551cbe8", + "Name": "loud HHS tan scar762", + "Root": "67cf7cd11fce8c114c037e56", + "Items": [ + { + "_id": "67cf7cd11fce8c114c037e56", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7cd11fce8c114c037e57", + "_tpl": "571659bb2459771fb2755a12", + "slotId": "mod_pistol_grip", + "parentId": "67cf7cd11fce8c114c037e56" + }, + { + "_id": "67cf7cd11fce8c114c037e58", + "_tpl": "6183d53f1cb55961fa0fdcda", + "slotId": "mod_magazine", + "parentId": "67cf7cd11fce8c114c037e56" + }, + { + "_id": "67cf7cd11fce8c114c037e59", + "_tpl": "6165aeedfaa1272e431521e3", + "slotId": "mod_reciever", + "parentId": "67cf7cd11fce8c114c037e56" + }, + { + "_id": "67cf7cd11fce8c114c037e5a", + "_tpl": "61825d06d92c473c770215de", + "slotId": "mod_stock", + "parentId": "67cf7cd11fce8c114c037e56" + }, + { + "_id": "67cf7cd11fce8c114c037e5b", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67cf7cd11fce8c114c037e56" + }, + { + "_id": "67cf7cd11fce8c114c037e5c", + "_tpl": "5c0a2cec0db834001b7ce47d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7cd11fce8c114c037e59" + }, + { + "_id": "67cf7cd11fce8c114c037e5d", + "_tpl": "6183b0711cb55961fa0fdcad", + "slotId": "mod_barrel", + "parentId": "67cf7cd11fce8c114c037e59" + }, + { + "_id": "67cf7cd11fce8c114c037e5e", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7cd11fce8c114c037e59" + }, + { + "_id": "67cf7cd11fce8c114c037e5f", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67cf7cd11fce8c114c037e59" + }, + { + "_id": "67cf7cd11fce8c114c037e60", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67cf7cd11fce8c114c037e59" + }, + { + "_id": "67cf7cd11fce8c114c037e61", + "_tpl": "61825d136ef05c2ce828f1cc", + "slotId": "mod_stock_001", + "parentId": "67cf7cd11fce8c114c037e5a" + }, + { + "_id": "67cf7cd11fce8c114c037e62", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67cf7cd11fce8c114c037e5a" + }, + { + "_id": "67cf7cd11fce8c114c037e63", + "_tpl": "5bbdb8bdd4351e4502011460", + "slotId": "mod_muzzle", + "parentId": "67cf7cd11fce8c114c037e5d" + }, + { + "_id": "67cf7cd11fce8c114c037e64", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7cd11fce8c114c037e5d" + }, + { + "_id": "67cf7cd11fce8c114c037e65", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67cf7cd11fce8c114c037e5f" + }, + { + "_id": "67cf7cd11fce8c114c037e66", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67cf7cd11fce8c114c037e61" + } + ] + }, + { + "Id": "67cf7d0d0100185b953829bc", + "Name": "loud hamr tan scar762", + "Root": "67cf7d151fce8c114c037e6a", + "Items": [ + { + "_id": "67cf7d151fce8c114c037e6a", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7d151fce8c114c037e6b", + "_tpl": "571659bb2459771fb2755a12", + "slotId": "mod_pistol_grip", + "parentId": "67cf7d151fce8c114c037e6a" + }, + { + "_id": "67cf7d151fce8c114c037e6c", + "_tpl": "6183d53f1cb55961fa0fdcda", + "slotId": "mod_magazine", + "parentId": "67cf7d151fce8c114c037e6a" + }, + { + "_id": "67cf7d151fce8c114c037e6d", + "_tpl": "6165aeedfaa1272e431521e3", + "slotId": "mod_reciever", + "parentId": "67cf7d151fce8c114c037e6a" + }, + { + "_id": "67cf7d151fce8c114c037e6e", + "_tpl": "61825d06d92c473c770215de", + "slotId": "mod_stock", + "parentId": "67cf7d151fce8c114c037e6a" + }, + { + "_id": "67cf7d151fce8c114c037e6f", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67cf7d151fce8c114c037e6a" + }, + { + "_id": "67cf7d151fce8c114c037e70", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7d151fce8c114c037e6d" + }, + { + "_id": "67cf7d151fce8c114c037e71", + "_tpl": "6183b0711cb55961fa0fdcad", + "slotId": "mod_barrel", + "parentId": "67cf7d151fce8c114c037e6d" + }, + { + "_id": "67cf7d151fce8c114c037e72", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7d151fce8c114c037e6d" + }, + { + "_id": "67cf7d151fce8c114c037e73", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67cf7d151fce8c114c037e6d" + }, + { + "_id": "67cf7d151fce8c114c037e74", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67cf7d151fce8c114c037e6d" + }, + { + "_id": "67cf7d151fce8c114c037e75", + "_tpl": "61825d136ef05c2ce828f1cc", + "slotId": "mod_stock_001", + "parentId": "67cf7d151fce8c114c037e6e" + }, + { + "_id": "67cf7d151fce8c114c037e76", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67cf7d151fce8c114c037e6e" + }, + { + "_id": "67cf7d151fce8c114c037e77", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7d151fce8c114c037e70" + }, + { + "_id": "67cf7d151fce8c114c037e78", + "_tpl": "5cdd7693d7f00c0010373aa5", + "slotId": "mod_muzzle", + "parentId": "67cf7d151fce8c114c037e71" + }, + { + "_id": "67cf7d151fce8c114c037e79", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7d151fce8c114c037e71" + }, + { + "_id": "67cf7d151fce8c114c037e7a", + "_tpl": "5c1bc5612e221602b5429350", + "slotId": "mod_foregrip", + "parentId": "67cf7d151fce8c114c037e73" + }, + { + "_id": "67cf7d151fce8c114c037e7b", + "_tpl": "61965d9058ef8c428c287e0d", + "slotId": "mod_mount", + "parentId": "67cf7d151fce8c114c037e73" + }, + { + "_id": "67cf7d151fce8c114c037e7c", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7d151fce8c114c037e7b" + }, + { + "_id": "67cf7d151fce8c114c037e7d", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67cf7d151fce8c114c037e75" + } + ] + }, + { + "Id": "67cf7d660100185b956fb80e", + "Name": "supr holo scar556", + "Root": "67cf7d6d1fce8c114c038e97", + "Items": [ + { + "_id": "67cf7d6d1fce8c114c038e97", + "_tpl": "6184055050224f204c1da540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7d6d1fce8c114c038e98", + "_tpl": "59db3a1d86f77429e05b4e92", + "slotId": "mod_pistol_grip", + "parentId": "67cf7d6d1fce8c114c038e97" + }, + { + "_id": "67cf7d6d1fce8c114c038e99", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cf7d6d1fce8c114c038e97" + }, + { + "_id": "67cf7d6d1fce8c114c038e9a", + "_tpl": "618405198004cc50514c3594", + "slotId": "mod_reciever", + "parentId": "67cf7d6d1fce8c114c038e97" + }, + { + "_id": "67cf7d6d1fce8c114c038e9b", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67cf7d6d1fce8c114c038e97" + }, + { + "_id": "67cf7d6d1fce8c114c038e9c", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67cf7d6d1fce8c114c038e97" + }, + { + "_id": "67cf7d6d1fce8c114c038e9d", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7d6d1fce8c114c038e9a" + }, + { + "_id": "67cf7d6d1fce8c114c038e9e", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67cf7d6d1fce8c114c038e9a" + }, + { + "_id": "67cf7d6d1fce8c114c038e9f", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7d6d1fce8c114c038e9a" + }, + { + "_id": "67cf7d6d1fce8c114c038ea0", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67cf7d6d1fce8c114c038e9a" + }, + { + "_id": "67cf7d6d1fce8c114c038ea1", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67cf7d6d1fce8c114c038e9a" + }, + { + "_id": "67cf7d6d1fce8c114c038ea2", + "_tpl": "618167528004cc50514c34f9", + "slotId": "mod_stock_001", + "parentId": "67cf7d6d1fce8c114c038e9b" + }, + { + "_id": "67cf7d6d1fce8c114c038ea3", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67cf7d6d1fce8c114c038e9b" + }, + { + "_id": "67cf7d6d1fce8c114c038ea4", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67cf7d6d1fce8c114c038e9e" + }, + { + "_id": "67cf7d6d1fce8c114c038ea5", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7d6d1fce8c114c038e9e" + }, + { + "_id": "67cf7d6d1fce8c114c038ea6", + "_tpl": "5c1bc7752e221602b1779b34", + "slotId": "mod_foregrip", + "parentId": "67cf7d6d1fce8c114c038ea0" + }, + { + "_id": "67cf7d6d1fce8c114c038ea7", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7d6d1fce8c114c038ea1" + }, + { + "_id": "67cf7d6d1fce8c114c038ea8", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67cf7d6d1fce8c114c038ea4" + }, + { + "_id": "67cf7d6d1fce8c114c038ea9", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67cf7d6d1fce8c114c038ea2" + } + ] + }, + { + "Id": "67cf7d8b0100185b95c84631", + "Name": "loud holo scar556", + "Root": "67cf7d9f1fce8c114c038f04", + "Items": [ + { + "_id": "67cf7d9f1fce8c114c038f04", + "_tpl": "6184055050224f204c1da540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7d9f1fce8c114c038f05", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67cf7d9f1fce8c114c038f04" + }, + { + "_id": "67cf7d9f1fce8c114c038f06", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cf7d9f1fce8c114c038f04" + }, + { + "_id": "67cf7d9f1fce8c114c038f07", + "_tpl": "618405198004cc50514c3594", + "slotId": "mod_reciever", + "parentId": "67cf7d9f1fce8c114c038f04" + }, + { + "_id": "67cf7d9f1fce8c114c038f08", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67cf7d9f1fce8c114c038f04" + }, + { + "_id": "67cf7d9f1fce8c114c038f09", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67cf7d9f1fce8c114c038f04" + }, + { + "_id": "67cf7d9f1fce8c114c038f0a", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7d9f1fce8c114c038f07" + }, + { + "_id": "67cf7d9f1fce8c114c038f0b", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67cf7d9f1fce8c114c038f07" + }, + { + "_id": "67cf7d9f1fce8c114c038f0c", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7d9f1fce8c114c038f07" + }, + { + "_id": "67cf7d9f1fce8c114c038f0d", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67cf7d9f1fce8c114c038f07" + }, + { + "_id": "67cf7d9f1fce8c114c038f0e", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67cf7d9f1fce8c114c038f07" + }, + { + "_id": "67cf7d9f1fce8c114c038f0f", + "_tpl": "618167528004cc50514c34f9", + "slotId": "mod_stock_001", + "parentId": "67cf7d9f1fce8c114c038f08" + }, + { + "_id": "67cf7d9f1fce8c114c038f10", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67cf7d9f1fce8c114c038f08" + }, + { + "_id": "67cf7d9f1fce8c114c038f11", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cf7d9f1fce8c114c038f0b" + }, + { + "_id": "67cf7d9f1fce8c114c038f12", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7d9f1fce8c114c038f0b" + }, + { + "_id": "67cf7d9f1fce8c114c038f13", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cf7d9f1fce8c114c038f0d" + }, + { + "_id": "67cf7d9f1fce8c114c038f14", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7d9f1fce8c114c038f0e" + }, + { + "_id": "67cf7d9f1fce8c114c038f15", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67cf7d9f1fce8c114c038f0f" + } + ] + }, + { + "Id": "67cf7dbb0100185b9506119c", + "Name": "loud bravo scar556", + "Root": "67cf7dbf1fce8c114c039e5a", + "Items": [ + { + "_id": "67cf7dbf1fce8c114c039e5a", + "_tpl": "6184055050224f204c1da540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7dbf1fce8c114c039e5b", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67cf7dbf1fce8c114c039e5a" + }, + { + "_id": "67cf7dbf1fce8c114c039e5c", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cf7dbf1fce8c114c039e5a" + }, + { + "_id": "67cf7dbf1fce8c114c039e5d", + "_tpl": "618405198004cc50514c3594", + "slotId": "mod_reciever", + "parentId": "67cf7dbf1fce8c114c039e5a" + }, + { + "_id": "67cf7dbf1fce8c114c039e5e", + "_tpl": "61816734d8e3106d9806c1f3", + "slotId": "mod_stock", + "parentId": "67cf7dbf1fce8c114c039e5a" + }, + { + "_id": "67cf7dbf1fce8c114c039e5f", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67cf7dbf1fce8c114c039e5a" + }, + { + "_id": "67cf7dbf1fce8c114c039e60", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7dbf1fce8c114c039e5d" + }, + { + "_id": "67cf7dbf1fce8c114c039e61", + "_tpl": "6183fd9e8004cc50514c358f", + "slotId": "mod_barrel", + "parentId": "67cf7dbf1fce8c114c039e5d" + }, + { + "_id": "67cf7dbf1fce8c114c039e62", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7dbf1fce8c114c039e5d" + }, + { + "_id": "67cf7dbf1fce8c114c039e63", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67cf7dbf1fce8c114c039e5d" + }, + { + "_id": "67cf7dbf1fce8c114c039e64", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67cf7dbf1fce8c114c039e5d" + }, + { + "_id": "67cf7dbf1fce8c114c039e65", + "_tpl": "618167528004cc50514c34f9", + "slotId": "mod_stock_001", + "parentId": "67cf7dbf1fce8c114c039e5e" + }, + { + "_id": "67cf7dbf1fce8c114c039e66", + "_tpl": "618167441cb55961fa0fdc71", + "slotId": "mod_stock_002", + "parentId": "67cf7dbf1fce8c114c039e5e" + }, + { + "_id": "67cf7dbf1fce8c114c039e67", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67cf7dbf1fce8c114c039e60" + }, + { + "_id": "67cf7dbf1fce8c114c039e68", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cf7dbf1fce8c114c039e61" + }, + { + "_id": "67cf7dbf1fce8c114c039e69", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7dbf1fce8c114c039e61" + }, + { + "_id": "67cf7dbf1fce8c114c039e6a", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cf7dbf1fce8c114c039e63" + }, + { + "_id": "67cf7dbf1fce8c114c039e6b", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7dbf1fce8c114c039e64" + }, + { + "_id": "67cf7dbf1fce8c114c039e6c", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7dbf1fce8c114c039e67" + }, + { + "_id": "67cf7dbf1fce8c114c039e6d", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67cf7dbf1fce8c114c039e65" + } + ] + }, + { + "Id": "67cf7dd60100185b952fb97a", + "Name": "loud holo tan scar556", + "Root": "67cf7ddd1fce8c114c039e75", + "Items": [ + { + "_id": "67cf7ddd1fce8c114c039e75", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7ddd1fce8c114c039e76", + "_tpl": "571659bb2459771fb2755a12", + "slotId": "mod_pistol_grip", + "parentId": "67cf7ddd1fce8c114c039e75" + }, + { + "_id": "67cf7ddd1fce8c114c039e77", + "_tpl": "61840d85568c120fdd2962a5", + "slotId": "mod_magazine", + "parentId": "67cf7ddd1fce8c114c039e75" + }, + { + "_id": "67cf7ddd1fce8c114c039e78", + "_tpl": "618426d96c780c1e710c9b9f", + "slotId": "mod_reciever", + "parentId": "67cf7ddd1fce8c114c039e75" + }, + { + "_id": "67cf7ddd1fce8c114c039e79", + "_tpl": "61825d06d92c473c770215de", + "slotId": "mod_stock", + "parentId": "67cf7ddd1fce8c114c039e75" + }, + { + "_id": "67cf7ddd1fce8c114c039e7a", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67cf7ddd1fce8c114c039e75" + }, + { + "_id": "67cf7ddd1fce8c114c039e7b", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7ddd1fce8c114c039e78" + }, + { + "_id": "67cf7ddd1fce8c114c039e7c", + "_tpl": "6183fd911cb55961fa0fdce9", + "slotId": "mod_barrel", + "parentId": "67cf7ddd1fce8c114c039e78" + }, + { + "_id": "67cf7ddd1fce8c114c039e7d", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7ddd1fce8c114c039e78" + }, + { + "_id": "67cf7ddd1fce8c114c039e7e", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67cf7ddd1fce8c114c039e78" + }, + { + "_id": "67cf7ddd1fce8c114c039e7f", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67cf7ddd1fce8c114c039e78" + }, + { + "_id": "67cf7ddd1fce8c114c039e80", + "_tpl": "61825d136ef05c2ce828f1cc", + "slotId": "mod_stock_001", + "parentId": "67cf7ddd1fce8c114c039e79" + }, + { + "_id": "67cf7ddd1fce8c114c039e81", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67cf7ddd1fce8c114c039e79" + }, + { + "_id": "67cf7ddd1fce8c114c039e82", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cf7ddd1fce8c114c039e7c" + }, + { + "_id": "67cf7ddd1fce8c114c039e83", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7ddd1fce8c114c039e7c" + }, + { + "_id": "67cf7ddd1fce8c114c039e84", + "_tpl": "588226dd24597767ad33f789", + "slotId": "mod_foregrip", + "parentId": "67cf7ddd1fce8c114c039e7e" + }, + { + "_id": "67cf7ddd1fce8c114c039e85", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7ddd1fce8c114c039e7f" + }, + { + "_id": "67cf7ddd1fce8c114c039e86", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67cf7ddd1fce8c114c039e80" + } + ] + }, + { + "Id": "67cf7dfa0100185b95433671", + "Name": "loud HHS tan scar556", + "Root": "67cf7e031fce8c114c03ae1b", + "Items": [ + { + "_id": "67cf7e031fce8c114c03ae1b", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7e031fce8c114c03ae1c", + "_tpl": "57c55f092459772d291a8463", + "slotId": "mod_pistol_grip", + "parentId": "67cf7e031fce8c114c03ae1b" + }, + { + "_id": "67cf7e031fce8c114c03ae1d", + "_tpl": "61840d85568c120fdd2962a5", + "slotId": "mod_magazine", + "parentId": "67cf7e031fce8c114c03ae1b" + }, + { + "_id": "67cf7e031fce8c114c03ae1e", + "_tpl": "618426d96c780c1e710c9b9f", + "slotId": "mod_reciever", + "parentId": "67cf7e031fce8c114c03ae1b" + }, + { + "_id": "67cf7e031fce8c114c03ae1f", + "_tpl": "61825d06d92c473c770215de", + "slotId": "mod_stock", + "parentId": "67cf7e031fce8c114c03ae1b" + }, + { + "_id": "67cf7e031fce8c114c03ae20", + "_tpl": "6181688c6c780c1e710c9b04", + "slotId": "mod_charge", + "parentId": "67cf7e031fce8c114c03ae1b" + }, + { + "_id": "67cf7e031fce8c114c03ae21", + "_tpl": "5c0a2cec0db834001b7ce47d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7e031fce8c114c03ae1e" + }, + { + "_id": "67cf7e031fce8c114c03ae22", + "_tpl": "6183fd911cb55961fa0fdce9", + "slotId": "mod_barrel", + "parentId": "67cf7e031fce8c114c03ae1e" + }, + { + "_id": "67cf7e031fce8c114c03ae23", + "_tpl": "61817865d3a39d50044c13a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7e031fce8c114c03ae1e" + }, + { + "_id": "67cf7e031fce8c114c03ae24", + "_tpl": "61816df1d3a39d50044c139e", + "slotId": "mod_mount_000", + "parentId": "67cf7e031fce8c114c03ae1e" + }, + { + "_id": "67cf7e031fce8c114c03ae25", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "slotId": "mod_mount_001", + "parentId": "67cf7e031fce8c114c03ae1e" + }, + { + "_id": "67cf7e031fce8c114c03ae26", + "_tpl": "61825d136ef05c2ce828f1cc", + "slotId": "mod_stock_001", + "parentId": "67cf7e031fce8c114c03ae1f" + }, + { + "_id": "67cf7e031fce8c114c03ae27", + "_tpl": "61825d24d3a39d50044c13af", + "slotId": "mod_stock_002", + "parentId": "67cf7e031fce8c114c03ae1f" + }, + { + "_id": "67cf7e031fce8c114c03ae28", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cf7e031fce8c114c03ae22" + }, + { + "_id": "67cf7e031fce8c114c03ae29", + "_tpl": "61816fcad92c473c770215cc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7e031fce8c114c03ae22" + }, + { + "_id": "67cf7e031fce8c114c03ae2a", + "_tpl": "5fce0cf655375d18a253eff0", + "slotId": "mod_foregrip", + "parentId": "67cf7e031fce8c114c03ae24" + }, + { + "_id": "67cf7e031fce8c114c03ae2b", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7e031fce8c114c03ae25" + }, + { + "_id": "67cf7e031fce8c114c03ae2c", + "_tpl": "618167616ef05c2ce828f1a8", + "slotId": "mod_stock", + "parentId": "67cf7e031fce8c114c03ae26" + } + ] + }, + { + "Id": "67cf7e790100185b95361cd6", + "Name": "supr pk06 hk", + "Root": "67cf7eca1fce8c114c03ccb3", + "Items": [ + { + "_id": "67cf7eca1fce8c114c03ccb3", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7eca1fce8c114c03ccb4", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "slotId": "mod_pistol_grip", + "parentId": "67cf7eca1fce8c114c03ccb3" + }, + { + "_id": "67cf7eca1fce8c114c03ccb5", + "_tpl": "5c05413a0db834001c390617", + "slotId": "mod_magazine", + "parentId": "67cf7eca1fce8c114c03ccb3" + }, + { + "_id": "67cf7eca1fce8c114c03ccb6", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67cf7eca1fce8c114c03ccb3" + }, + { + "_id": "67cf7eca1fce8c114c03ccb7", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67cf7eca1fce8c114c03ccb3" + }, + { + "_id": "67cf7eca1fce8c114c03ccb8", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67cf7eca1fce8c114c03ccb3" + }, + { + "_id": "67cf7eca1fce8c114c03ccb9", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7eca1fce8c114c03ccb6" + }, + { + "_id": "67cf7eca1fce8c114c03ccba", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "slotId": "mod_barrel", + "parentId": "67cf7eca1fce8c114c03ccb6" + }, + { + "_id": "67cf7eca1fce8c114c03ccbb", + "_tpl": "5bb20de5d4351e0035629e59", + "slotId": "mod_handguard", + "parentId": "67cf7eca1fce8c114c03ccb6" + }, + { + "_id": "67cf7eca1fce8c114c03ccbc", + "_tpl": "5bb20e49d4351e3bac1212de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7eca1fce8c114c03ccb6" + }, + { + "_id": "67cf7eca1fce8c114c03ccbd", + "_tpl": "5bb20e70d4351e0035629f8f", + "slotId": "mod_stock_000", + "parentId": "67cf7eca1fce8c114c03ccb7" + }, + { + "_id": "67cf7eca1fce8c114c03ccbe", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cf7eca1fce8c114c03ccba" + }, + { + "_id": "67cf7eca1fce8c114c03ccbf", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67cf7eca1fce8c114c03ccba" + }, + { + "_id": "67cf7eca1fce8c114c03ccc0", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cf7eca1fce8c114c03ccbb" + }, + { + "_id": "67cf7eca1fce8c114c03ccc1", + "_tpl": "560d657b4bdc2da74d8b4572", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7eca1fce8c114c03ccbb" + }, + { + "_id": "67cf7eca1fce8c114c03ccc2", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cf7eca1fce8c114c03ccbe" + } + ] + }, + { + "Id": "67cf7ef70100185b95747036", + "Name": "loud holo hk", + "Root": "67cf7eff1fce8c114c03dc63", + "Items": [ + { + "_id": "67cf7eff1fce8c114c03dc63", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7eff1fce8c114c03dc64", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "slotId": "mod_pistol_grip", + "parentId": "67cf7eff1fce8c114c03dc63" + }, + { + "_id": "67cf7eff1fce8c114c03dc65", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cf7eff1fce8c114c03dc63" + }, + { + "_id": "67cf7eff1fce8c114c03dc66", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67cf7eff1fce8c114c03dc63" + }, + { + "_id": "67cf7eff1fce8c114c03dc67", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67cf7eff1fce8c114c03dc63" + }, + { + "_id": "67cf7eff1fce8c114c03dc68", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67cf7eff1fce8c114c03dc63" + }, + { + "_id": "67cf7eff1fce8c114c03dc69", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7eff1fce8c114c03dc66" + }, + { + "_id": "67cf7eff1fce8c114c03dc6a", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "slotId": "mod_barrel", + "parentId": "67cf7eff1fce8c114c03dc66" + }, + { + "_id": "67cf7eff1fce8c114c03dc6b", + "_tpl": "5bb20de5d4351e0035629e59", + "slotId": "mod_handguard", + "parentId": "67cf7eff1fce8c114c03dc66" + }, + { + "_id": "67cf7eff1fce8c114c03dc6c", + "_tpl": "5bb20e49d4351e3bac1212de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7eff1fce8c114c03dc66" + }, + { + "_id": "67cf7eff1fce8c114c03dc6d", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67cf7eff1fce8c114c03dc67" + }, + { + "_id": "67cf7eff1fce8c114c03dc6e", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cf7eff1fce8c114c03dc6a" + }, + { + "_id": "67cf7eff1fce8c114c03dc6f", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67cf7eff1fce8c114c03dc6a" + }, + { + "_id": "67cf7eff1fce8c114c03dc70", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67cf7eff1fce8c114c03dc6b" + }, + { + "_id": "67cf7eff1fce8c114c03dc71", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7eff1fce8c114c03dc6b" + }, + { + "_id": "67cf7eff1fce8c114c03dc72", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cf7eff1fce8c114c03dc6d" + } + ] + }, + { + "Id": "67cf7f190100185b95e43bfb", + "Name": "supr holo hk", + "Root": "67cf7f201fce8c114c03dc77", + "Items": [ + { + "_id": "67cf7f201fce8c114c03dc77", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7f201fce8c114c03dc78", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67cf7f201fce8c114c03dc77" + }, + { + "_id": "67cf7f201fce8c114c03dc79", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cf7f201fce8c114c03dc77" + }, + { + "_id": "67cf7f201fce8c114c03dc7a", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67cf7f201fce8c114c03dc77" + }, + { + "_id": "67cf7f201fce8c114c03dc7b", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67cf7f201fce8c114c03dc77" + }, + { + "_id": "67cf7f201fce8c114c03dc7c", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67cf7f201fce8c114c03dc77" + }, + { + "_id": "67cf7f201fce8c114c03dc7d", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7f201fce8c114c03dc7a" + }, + { + "_id": "67cf7f201fce8c114c03dc7e", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "slotId": "mod_barrel", + "parentId": "67cf7f201fce8c114c03dc7a" + }, + { + "_id": "67cf7f201fce8c114c03dc7f", + "_tpl": "5bb20de5d4351e0035629e59", + "slotId": "mod_handguard", + "parentId": "67cf7f201fce8c114c03dc7a" + }, + { + "_id": "67cf7f201fce8c114c03dc80", + "_tpl": "5bb20e49d4351e3bac1212de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7f201fce8c114c03dc7a" + }, + { + "_id": "67cf7f201fce8c114c03dc81", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67cf7f201fce8c114c03dc7b" + }, + { + "_id": "67cf7f201fce8c114c03dc82", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67cf7f201fce8c114c03dc7e" + }, + { + "_id": "67cf7f201fce8c114c03dc83", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67cf7f201fce8c114c03dc7e" + }, + { + "_id": "67cf7f201fce8c114c03dc84", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67cf7f201fce8c114c03dc7f" + }, + { + "_id": "67cf7f201fce8c114c03dc85", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf7f201fce8c114c03dc7f" + }, + { + "_id": "67cf7f201fce8c114c03dc86", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67cf7f201fce8c114c03dc82" + }, + { + "_id": "67cf7f201fce8c114c03dc87", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cf7f201fce8c114c03dc81" + } + ] + }, + { + "Id": "67cf7f720100185b95d02326", + "Name": "supr hamr long hk", + "Root": "67cf7fa71fce8c114c03f97e", + "Items": [ + { + "_id": "67cf7fa71fce8c114c03f97e", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf7fa71fce8c114c03f97f", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67cf7fa71fce8c114c03f97e" + }, + { + "_id": "67cf7fa71fce8c114c03f980", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cf7fa71fce8c114c03f97e" + }, + { + "_id": "67cf7fa71fce8c114c03f981", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67cf7fa71fce8c114c03f97e" + }, + { + "_id": "67cf7fa71fce8c114c03f982", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67cf7fa71fce8c114c03f97e" + }, + { + "_id": "67cf7fa71fce8c114c03f983", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67cf7fa71fce8c114c03f97e" + }, + { + "_id": "67cf7fa71fce8c114c03f984", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7fa71fce8c114c03f981" + }, + { + "_id": "67cf7fa71fce8c114c03f985", + "_tpl": "5bb20dadd4351e00367faeff", + "slotId": "mod_barrel", + "parentId": "67cf7fa71fce8c114c03f981" + }, + { + "_id": "67cf7fa71fce8c114c03f986", + "_tpl": "5c6d11072e2216000e69d2e4", + "slotId": "mod_handguard", + "parentId": "67cf7fa71fce8c114c03f981" + }, + { + "_id": "67cf7fa71fce8c114c03f987", + "_tpl": "5bb20e49d4351e3bac1212de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7fa71fce8c114c03f981" + }, + { + "_id": "67cf7fa71fce8c114c03f988", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67cf7fa71fce8c114c03f982" + }, + { + "_id": "67cf7fa71fce8c114c03f989", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf7fa71fce8c114c03f984" + }, + { + "_id": "67cf7fa71fce8c114c03f98a", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cf7fa71fce8c114c03f985" + }, + { + "_id": "67cf7fa71fce8c114c03f98b", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67cf7fa71fce8c114c03f985" + }, + { + "_id": "67cf7fa71fce8c114c03f98c", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cf7fa71fce8c114c03f986" + }, + { + "_id": "67cf7fa71fce8c114c03f98d", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cf7fa71fce8c114c03f98a" + }, + { + "_id": "67cf7fa71fce8c114c03f98e", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67cf7fa71fce8c114c03f98c" + }, + { + "_id": "67cf7fa71fce8c114c03f98f", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cf7fa71fce8c114c03f988" + } + ] + }, + { + "Id": "67cf7fc20100185b95fdba92", + "Name": "loud hhs long hk", + "Root": "67cf80141fce8c114c04159f", + "Items": [ + { + "_id": "67cf80141fce8c114c04159f", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf80141fce8c114c0415a0", + "_tpl": "63f5feead259b42f0b4d6d0f", + "slotId": "mod_pistol_grip", + "parentId": "67cf80141fce8c114c04159f" + }, + { + "_id": "67cf80141fce8c114c0415a1", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cf80141fce8c114c04159f" + }, + { + "_id": "67cf80141fce8c114c0415a2", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67cf80141fce8c114c04159f" + }, + { + "_id": "67cf80141fce8c114c0415a3", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67cf80141fce8c114c04159f" + }, + { + "_id": "67cf80141fce8c114c0415a4", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67cf80141fce8c114c04159f" + }, + { + "_id": "67cf80141fce8c114c0415a5", + "_tpl": "5c07dd120db834001c39092d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf80141fce8c114c0415a2" + }, + { + "_id": "67cf80141fce8c114c0415a6", + "_tpl": "5bb20dadd4351e00367faeff", + "slotId": "mod_barrel", + "parentId": "67cf80141fce8c114c0415a2" + }, + { + "_id": "67cf80141fce8c114c0415a7", + "_tpl": "5c6d11072e2216000e69d2e4", + "slotId": "mod_handguard", + "parentId": "67cf80141fce8c114c0415a2" + }, + { + "_id": "67cf80141fce8c114c0415a8", + "_tpl": "5bb20e49d4351e3bac1212de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf80141fce8c114c0415a2" + }, + { + "_id": "67cf80141fce8c114c0415a9", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67cf80141fce8c114c0415a3" + }, + { + "_id": "67cf80141fce8c114c0415aa", + "_tpl": "5d02676dd7ad1a049e54f6dc", + "slotId": "mod_muzzle", + "parentId": "67cf80141fce8c114c0415a6" + }, + { + "_id": "67cf80141fce8c114c0415ab", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67cf80141fce8c114c0415a6" + }, + { + "_id": "67cf80141fce8c114c0415ac", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cf80141fce8c114c0415a7" + }, + { + "_id": "67cf80141fce8c114c0415ad", + "_tpl": "5c1bc5fb2e221602b1779b32", + "slotId": "mod_foregrip", + "parentId": "67cf80141fce8c114c0415ac" + }, + { + "_id": "67cf80141fce8c114c0415ae", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cf80141fce8c114c0415a9" + } + ] + }, + { + "Id": "67cf805c0100185b954aa386", + "Name": "supr UH1 hk", + "Root": "67cf80611fce8c114c0423ef", + "Items": [ + { + "_id": "67cf80611fce8c114c0423ef", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cf80611fce8c114c0423f0", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67cf80611fce8c114c0423ef" + }, + { + "_id": "67cf80611fce8c114c0423f1", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cf80611fce8c114c0423ef" + }, + { + "_id": "67cf80611fce8c114c0423f2", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67cf80611fce8c114c0423ef" + }, + { + "_id": "67cf80611fce8c114c0423f3", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67cf80611fce8c114c0423ef" + }, + { + "_id": "67cf80611fce8c114c0423f4", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67cf80611fce8c114c0423ef" + }, + { + "_id": "67cf80611fce8c114c0423f5", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf80611fce8c114c0423f2" + }, + { + "_id": "67cf80611fce8c114c0423f6", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "slotId": "mod_barrel", + "parentId": "67cf80611fce8c114c0423f2" + }, + { + "_id": "67cf80611fce8c114c0423f7", + "_tpl": "5bb20de5d4351e0035629e59", + "slotId": "mod_handguard", + "parentId": "67cf80611fce8c114c0423f2" + }, + { + "_id": "67cf80611fce8c114c0423f8", + "_tpl": "5bb20e49d4351e3bac1212de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cf80611fce8c114c0423f2" + }, + { + "_id": "67cf80611fce8c114c0423f9", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67cf80611fce8c114c0423f3" + }, + { + "_id": "67cf80611fce8c114c0423fa", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cf80611fce8c114c0423f6" + }, + { + "_id": "67cf80611fce8c114c0423fb", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67cf80611fce8c114c0423f6" + }, + { + "_id": "67cf80611fce8c114c0423fc", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67cf80611fce8c114c0423f7" + }, + { + "_id": "67cf80611fce8c114c0423fd", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cf80611fce8c114c0423f7" + }, + { + "_id": "67cf80611fce8c114c0423fe", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cf80611fce8c114c0423fa" + }, + { + "_id": "67cf80611fce8c114c0423ff", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cf80611fce8c114c0423f9" + } + ] + }, + { + "Id": "67cfa38f0100185b95532f43", + "Name": "supr mrs hk", + "Root": "67cfa3987297384e7c0391d4", + "Items": [ + { + "_id": "67cfa3987297384e7c0391d4", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa3987297384e7c0391d5", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "slotId": "mod_pistol_grip", + "parentId": "67cfa3987297384e7c0391d4" + }, + { + "_id": "67cfa3987297384e7c0391d6", + "_tpl": "5c05413a0db834001c390617", + "slotId": "mod_magazine", + "parentId": "67cfa3987297384e7c0391d4" + }, + { + "_id": "67cfa3987297384e7c0391d7", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67cfa3987297384e7c0391d4" + }, + { + "_id": "67cfa3987297384e7c0391d8", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67cfa3987297384e7c0391d4" + }, + { + "_id": "67cfa3987297384e7c0391d9", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67cfa3987297384e7c0391d4" + }, + { + "_id": "67cfa3987297384e7c0391da", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa3987297384e7c0391d7" + }, + { + "_id": "67cfa3987297384e7c0391db", + "_tpl": "5bb20d92d4351e00853263eb", + "slotId": "mod_barrel", + "parentId": "67cfa3987297384e7c0391d7" + }, + { + "_id": "67cfa3987297384e7c0391dc", + "_tpl": "5bb20df1d4351e00347787d5", + "slotId": "mod_handguard", + "parentId": "67cfa3987297384e7c0391d7" + }, + { + "_id": "67cfa3987297384e7c0391dd", + "_tpl": "5bb20e49d4351e3bac1212de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa3987297384e7c0391d7" + }, + { + "_id": "67cfa3987297384e7c0391de", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67cfa3987297384e7c0391d8" + }, + { + "_id": "67cfa3987297384e7c0391df", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cfa3987297384e7c0391db" + }, + { + "_id": "67cfa3987297384e7c0391e0", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67cfa3987297384e7c0391db" + }, + { + "_id": "67cfa3987297384e7c0391e1", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfa3987297384e7c0391dc" + }, + { + "_id": "67cfa3987297384e7c0391e2", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa3987297384e7c0391dc" + }, + { + "_id": "67cfa3987297384e7c0391e3", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cfa3987297384e7c0391df" + }, + { + "_id": "67cfa3987297384e7c0391e4", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cfa3987297384e7c0391de" + } + ] + }, + { + "Id": "67cfa3db0100185b95e74600", + "Name": "loud mrs hk", + "Root": "67cfa3e27297384e7c03afe3", + "Items": [ + { + "_id": "67cfa3e27297384e7c03afe3", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa3e27297384e7c03afe4", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "slotId": "mod_pistol_grip", + "parentId": "67cfa3e27297384e7c03afe3" + }, + { + "_id": "67cfa3e27297384e7c03afe5", + "_tpl": "5c05413a0db834001c390617", + "slotId": "mod_magazine", + "parentId": "67cfa3e27297384e7c03afe3" + }, + { + "_id": "67cfa3e27297384e7c03afe6", + "_tpl": "5bb20d53d4351e4502010a69", + "slotId": "mod_reciever", + "parentId": "67cfa3e27297384e7c03afe3" + }, + { + "_id": "67cfa3e27297384e7c03afe7", + "_tpl": "5bb20e58d4351e00320205d7", + "slotId": "mod_stock", + "parentId": "67cfa3e27297384e7c03afe3" + }, + { + "_id": "67cfa3e27297384e7c03afe8", + "_tpl": "5bb20dbcd4351e44f824c04e", + "slotId": "mod_charge", + "parentId": "67cfa3e27297384e7c03afe3" + }, + { + "_id": "67cfa3e27297384e7c03afe9", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa3e27297384e7c03afe6" + }, + { + "_id": "67cfa3e27297384e7c03afea", + "_tpl": "5bb20d92d4351e00853263eb", + "slotId": "mod_barrel", + "parentId": "67cfa3e27297384e7c03afe6" + }, + { + "_id": "67cfa3e27297384e7c03afeb", + "_tpl": "5bb20df1d4351e00347787d5", + "slotId": "mod_handguard", + "parentId": "67cfa3e27297384e7c03afe6" + }, + { + "_id": "67cfa3e27297384e7c03afec", + "_tpl": "5bb20e49d4351e3bac1212de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa3e27297384e7c03afe6" + }, + { + "_id": "67cfa3e27297384e7c03afed", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67cfa3e27297384e7c03afe7" + }, + { + "_id": "67cfa3e27297384e7c03afee", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cfa3e27297384e7c03afea" + }, + { + "_id": "67cfa3e27297384e7c03afef", + "_tpl": "5bb20dcad4351e3bac1212da", + "slotId": "mod_gas_block", + "parentId": "67cfa3e27297384e7c03afea" + }, + { + "_id": "67cfa3e27297384e7c03aff0", + "_tpl": "5c1bc7432e221602b412949d", + "slotId": "mod_foregrip", + "parentId": "67cfa3e27297384e7c03afeb" + }, + { + "_id": "67cfa3e27297384e7c03aff1", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa3e27297384e7c03afeb" + }, + { + "_id": "67cfa3e27297384e7c03aff2", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cfa3e27297384e7c03afed" + } + ] + }, + { + "Id": "67cfa4650100185b953b534d", + "Name": "supr holo g36", + "Root": "67cfa47d7297384e7c03c011", + "Items": [ + { + "_id": "67cfa47d7297384e7c03c011", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa47d7297384e7c03c012", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cfa47d7297384e7c03c011" + }, + { + "_id": "67cfa47d7297384e7c03c013", + "_tpl": "622f14e899892a7f9e08f6c5", + "slotId": "mod_stock", + "parentId": "67cfa47d7297384e7c03c011" + }, + { + "_id": "67cfa47d7297384e7c03c014", + "_tpl": "622b3858034a3e17ad0b81f5", + "slotId": "mod_barrel", + "parentId": "67cfa47d7297384e7c03c011" + }, + { + "_id": "67cfa47d7297384e7c03c015", + "_tpl": "62386b7153757417e93a4e9f", + "slotId": "mod_handguard", + "parentId": "67cfa47d7297384e7c03c011" + }, + { + "_id": "67cfa47d7297384e7c03c016", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67cfa47d7297384e7c03c011" + }, + { + "_id": "67cfa47d7297384e7c03c017", + "_tpl": "622b3d5cf9cfc87d675d2de9", + "slotId": "mod_scope", + "parentId": "67cfa47d7297384e7c03c011" + }, + { + "_id": "67cfa47d7297384e7c03c018", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cfa47d7297384e7c03c014" + }, + { + "_id": "67cfa47d7297384e7c03c019", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67cfa47d7297384e7c03c014" + }, + { + "_id": "67cfa47d7297384e7c03c01a", + "_tpl": "62444cb99f47004c781903eb", + "slotId": "mod_mount_000", + "parentId": "67cfa47d7297384e7c03c015" + }, + { + "_id": "67cfa47d7297384e7c03c01b", + "_tpl": "62444cd3674028188b052799", + "slotId": "mod_mount_002", + "parentId": "67cfa47d7297384e7c03c015" + }, + { + "_id": "67cfa47d7297384e7c03c01c", + "_tpl": "622f16a1a5958f63c67f1737", + "slotId": "mod_tactical", + "parentId": "67cfa47d7297384e7c03c015" + }, + { + "_id": "67cfa47d7297384e7c03c01d", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa47d7297384e7c03c017" + }, + { + "_id": "67cfa47d7297384e7c03c01e", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cfa47d7297384e7c03c018" + }, + { + "_id": "67cfa47d7297384e7c03c01f", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfa47d7297384e7c03c01a" + }, + { + "_id": "67cfa47d7297384e7c03c020", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa47d7297384e7c03c01b" + } + ] + }, + { + "Id": "67cfa4990100185b954bf5f6", + "Name": "supr specter g36", + "Root": "67cfa49f7297384e7c03cfca", + "Items": [ + { + "_id": "67cfa49f7297384e7c03cfca", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa49f7297384e7c03cfcb", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cfa49f7297384e7c03cfca" + }, + { + "_id": "67cfa49f7297384e7c03cfcc", + "_tpl": "622f14e899892a7f9e08f6c5", + "slotId": "mod_stock", + "parentId": "67cfa49f7297384e7c03cfca" + }, + { + "_id": "67cfa49f7297384e7c03cfcd", + "_tpl": "622b3858034a3e17ad0b81f5", + "slotId": "mod_barrel", + "parentId": "67cfa49f7297384e7c03cfca" + }, + { + "_id": "67cfa49f7297384e7c03cfce", + "_tpl": "62386b7153757417e93a4e9f", + "slotId": "mod_handguard", + "parentId": "67cfa49f7297384e7c03cfca" + }, + { + "_id": "67cfa49f7297384e7c03cfcf", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67cfa49f7297384e7c03cfca" + }, + { + "_id": "67cfa49f7297384e7c03cfd0", + "_tpl": "622b3d5cf9cfc87d675d2de9", + "slotId": "mod_scope", + "parentId": "67cfa49f7297384e7c03cfca" + }, + { + "_id": "67cfa49f7297384e7c03cfd1", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cfa49f7297384e7c03cfcd" + }, + { + "_id": "67cfa49f7297384e7c03cfd2", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67cfa49f7297384e7c03cfcd" + }, + { + "_id": "67cfa49f7297384e7c03cfd3", + "_tpl": "62444cb99f47004c781903eb", + "slotId": "mod_mount_000", + "parentId": "67cfa49f7297384e7c03cfce" + }, + { + "_id": "67cfa49f7297384e7c03cfd4", + "_tpl": "62444cd3674028188b052799", + "slotId": "mod_mount_002", + "parentId": "67cfa49f7297384e7c03cfce" + }, + { + "_id": "67cfa49f7297384e7c03cfd5", + "_tpl": "622f16a1a5958f63c67f1737", + "slotId": "mod_tactical", + "parentId": "67cfa49f7297384e7c03cfce" + }, + { + "_id": "67cfa49f7297384e7c03cfd6", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa49f7297384e7c03cfd0" + }, + { + "_id": "67cfa49f7297384e7c03cfd7", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cfa49f7297384e7c03cfd1" + }, + { + "_id": "67cfa49f7297384e7c03cfd8", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67cfa49f7297384e7c03cfd3" + }, + { + "_id": "67cfa49f7297384e7c03cfd9", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa49f7297384e7c03cfd4" + } + ] + }, + { + "Id": "67cfa4c60100185b954bbc23", + "Name": "loud hamr g36", + "Root": "67cfa4ce7297384e7c03de83", + "Items": [ + { + "_id": "67cfa4ce7297384e7c03de83", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa4ce7297384e7c03de84", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cfa4ce7297384e7c03de83" + }, + { + "_id": "67cfa4ce7297384e7c03de85", + "_tpl": "622f14e899892a7f9e08f6c5", + "slotId": "mod_stock", + "parentId": "67cfa4ce7297384e7c03de83" + }, + { + "_id": "67cfa4ce7297384e7c03de86", + "_tpl": "622b3858034a3e17ad0b81f5", + "slotId": "mod_barrel", + "parentId": "67cfa4ce7297384e7c03de83" + }, + { + "_id": "67cfa4ce7297384e7c03de87", + "_tpl": "62386b7153757417e93a4e9f", + "slotId": "mod_handguard", + "parentId": "67cfa4ce7297384e7c03de83" + }, + { + "_id": "67cfa4ce7297384e7c03de88", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67cfa4ce7297384e7c03de83" + }, + { + "_id": "67cfa4ce7297384e7c03de89", + "_tpl": "622b3c081b89c677a33bcda6", + "slotId": "mod_scope", + "parentId": "67cfa4ce7297384e7c03de83" + }, + { + "_id": "67cfa4ce7297384e7c03de8a", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cfa4ce7297384e7c03de86" + }, + { + "_id": "67cfa4ce7297384e7c03de8b", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67cfa4ce7297384e7c03de86" + }, + { + "_id": "67cfa4ce7297384e7c03de8c", + "_tpl": "62444cb99f47004c781903eb", + "slotId": "mod_mount_000", + "parentId": "67cfa4ce7297384e7c03de87" + }, + { + "_id": "67cfa4ce7297384e7c03de8d", + "_tpl": "62444cd3674028188b052799", + "slotId": "mod_mount_002", + "parentId": "67cfa4ce7297384e7c03de87" + }, + { + "_id": "67cfa4ce7297384e7c03de8e", + "_tpl": "622f16a1a5958f63c67f1737", + "slotId": "mod_tactical", + "parentId": "67cfa4ce7297384e7c03de87" + }, + { + "_id": "67cfa4ce7297384e7c03de8f", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa4ce7297384e7c03de89" + }, + { + "_id": "67cfa4ce7297384e7c03de90", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfa4ce7297384e7c03de8c" + }, + { + "_id": "67cfa4ce7297384e7c03de91", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa4ce7297384e7c03de8d" + }, + { + "_id": "67cfa4ce7297384e7c03de92", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa4ce7297384e7c03de8f" + } + ] + }, + { + "Id": "67cfa4f10100185b9529ece8", + "Name": "supr 2x g36", + "Root": "67cfa4f77297384e7c03de9a", + "Items": [ + { + "_id": "67cfa4f77297384e7c03de9a", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa4f77297384e7c03de9b", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cfa4f77297384e7c03de9a" + }, + { + "_id": "67cfa4f77297384e7c03de9c", + "_tpl": "622f14e899892a7f9e08f6c5", + "slotId": "mod_stock", + "parentId": "67cfa4f77297384e7c03de9a" + }, + { + "_id": "67cfa4f77297384e7c03de9d", + "_tpl": "622b3858034a3e17ad0b81f5", + "slotId": "mod_barrel", + "parentId": "67cfa4f77297384e7c03de9a" + }, + { + "_id": "67cfa4f77297384e7c03de9e", + "_tpl": "62386b7153757417e93a4e9f", + "slotId": "mod_handguard", + "parentId": "67cfa4f77297384e7c03de9a" + }, + { + "_id": "67cfa4f77297384e7c03de9f", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67cfa4f77297384e7c03de9a" + }, + { + "_id": "67cfa4f77297384e7c03dea0", + "_tpl": "622b3c081b89c677a33bcda6", + "slotId": "mod_scope", + "parentId": "67cfa4f77297384e7c03de9a" + }, + { + "_id": "67cfa4f77297384e7c03dea1", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cfa4f77297384e7c03de9d" + }, + { + "_id": "67cfa4f77297384e7c03dea2", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67cfa4f77297384e7c03de9d" + }, + { + "_id": "67cfa4f77297384e7c03dea3", + "_tpl": "62444cb99f47004c781903eb", + "slotId": "mod_mount_000", + "parentId": "67cfa4f77297384e7c03de9e" + }, + { + "_id": "67cfa4f77297384e7c03dea4", + "_tpl": "62444cd3674028188b052799", + "slotId": "mod_mount_001", + "parentId": "67cfa4f77297384e7c03de9e" + }, + { + "_id": "67cfa4f77297384e7c03dea5", + "_tpl": "62444cd3674028188b052799", + "slotId": "mod_mount_002", + "parentId": "67cfa4f77297384e7c03de9e" + }, + { + "_id": "67cfa4f77297384e7c03dea6", + "_tpl": "622f16a1a5958f63c67f1737", + "slotId": "mod_tactical", + "parentId": "67cfa4f77297384e7c03de9e" + }, + { + "_id": "67cfa4f77297384e7c03dea7", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa4f77297384e7c03dea0" + }, + { + "_id": "67cfa4f77297384e7c03dea8", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cfa4f77297384e7c03dea1" + }, + { + "_id": "67cfa4f77297384e7c03dea9", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfa4f77297384e7c03dea3" + }, + { + "_id": "67cfa4f77297384e7c03deaa", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa4f77297384e7c03dea4" + }, + { + "_id": "67cfa4f77297384e7c03deab", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa4f77297384e7c03dea5" + } + ] + }, + { + "Id": "67cfa5190100185b959a770d", + "Name": "loud holo g36", + "Root": "67cfa51f7297384e7c03eed4", + "Items": [ + { + "_id": "67cfa51f7297384e7c03eed4", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa51f7297384e7c03eed5", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cfa51f7297384e7c03eed4" + }, + { + "_id": "67cfa51f7297384e7c03eed6", + "_tpl": "67110d06723c2733410161e8", + "slotId": "mod_stock", + "parentId": "67cfa51f7297384e7c03eed4" + }, + { + "_id": "67cfa51f7297384e7c03eed7", + "_tpl": "622b3858034a3e17ad0b81f5", + "slotId": "mod_barrel", + "parentId": "67cfa51f7297384e7c03eed4" + }, + { + "_id": "67cfa51f7297384e7c03eed8", + "_tpl": "62386b7153757417e93a4e9f", + "slotId": "mod_handguard", + "parentId": "67cfa51f7297384e7c03eed4" + }, + { + "_id": "67cfa51f7297384e7c03eed9", + "_tpl": "622f039199f4ea1a4d6c9a17", + "slotId": "mod_mount", + "parentId": "67cfa51f7297384e7c03eed4" + }, + { + "_id": "67cfa51f7297384e7c03eeda", + "_tpl": "622b3c081b89c677a33bcda6", + "slotId": "mod_scope", + "parentId": "67cfa51f7297384e7c03eed4" + }, + { + "_id": "67cfa51f7297384e7c03eedb", + "_tpl": "67110d5ed1758189fc0bd221", + "slotId": "mod_stock", + "parentId": "67cfa51f7297384e7c03eed6" + }, + { + "_id": "67cfa51f7297384e7c03eedc", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cfa51f7297384e7c03eed7" + }, + { + "_id": "67cfa51f7297384e7c03eedd", + "_tpl": "622b327b267a1b13a44abea3", + "slotId": "mod_gas_block", + "parentId": "67cfa51f7297384e7c03eed7" + }, + { + "_id": "67cfa51f7297384e7c03eede", + "_tpl": "62444cb99f47004c781903eb", + "slotId": "mod_mount_000", + "parentId": "67cfa51f7297384e7c03eed8" + }, + { + "_id": "67cfa51f7297384e7c03eedf", + "_tpl": "62444cd3674028188b052799", + "slotId": "mod_mount_002", + "parentId": "67cfa51f7297384e7c03eed8" + }, + { + "_id": "67cfa51f7297384e7c03eee0", + "_tpl": "622f16a1a5958f63c67f1737", + "slotId": "mod_tactical", + "parentId": "67cfa51f7297384e7c03eed8" + }, + { + "_id": "67cfa51f7297384e7c03eee1", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa51f7297384e7c03eeda" + }, + { + "_id": "67cfa51f7297384e7c03eee2", + "_tpl": "5c1bc7432e221602b412949d", + "slotId": "mod_foregrip", + "parentId": "67cfa51f7297384e7c03eede" + }, + { + "_id": "67cfa51f7297384e7c03eee3", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa51f7297384e7c03eedf" + } + ] + }, + { + "Id": "67cfa5930100185b95cd0a00", + "Name": "loud holo ak101", + "Root": "67cfa59b7297384e7c03fd78", + "Items": [ + { + "_id": "67cfa59b7297384e7c03fd78", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa59b7297384e7c03fd79", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfa59b7297384e7c03fd78" + }, + { + "_id": "67cfa59b7297384e7c03fd7a", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "slotId": "mod_muzzle", + "parentId": "67cfa59b7297384e7c03fd78" + }, + { + "_id": "67cfa59b7297384e7c03fd7b", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfa59b7297384e7c03fd78" + }, + { + "_id": "67cfa59b7297384e7c03fd7c", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa59b7297384e7c03fd78" + }, + { + "_id": "67cfa59b7297384e7c03fd7d", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa59b7297384e7c03fd78" + }, + { + "_id": "67cfa59b7297384e7c03fd7e", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfa59b7297384e7c03fd78" + }, + { + "_id": "67cfa59b7297384e7c03fd7f", + "_tpl": "5ac66c5d5acfc4001718d314", + "slotId": "mod_magazine", + "parentId": "67cfa59b7297384e7c03fd78" + }, + { + "_id": "67cfa59b7297384e7c03fd80", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfa59b7297384e7c03fd78" + }, + { + "_id": "67cfa59b7297384e7c03fd81", + "_tpl": "5a9d56c8a2750c0032157146", + "slotId": "mod_handguard", + "parentId": "67cfa59b7297384e7c03fd79" + }, + { + "_id": "67cfa59b7297384e7c03fd82", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa59b7297384e7c03fd7c" + }, + { + "_id": "67cfa59b7297384e7c03fd83", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfa59b7297384e7c03fd7e" + }, + { + "_id": "67cfa59b7297384e7c03fd84", + "_tpl": "5fc0f9cbd6fa9c00c571bb90", + "slotId": "mod_mount_000", + "parentId": "67cfa59b7297384e7c03fd81" + }, + { + "_id": "67cfa59b7297384e7c03fd85", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_002", + "parentId": "67cfa59b7297384e7c03fd81" + }, + { + "_id": "67cfa59b7297384e7c03fd86", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa59b7297384e7c03fd85" + } + ] + }, + { + "Id": "67cfa5bc0100185b95d4cc7a", + "Name": "loud holo ak101 v2", + "Root": "67cfa5c17297384e7c040b94", + "Items": [ + { + "_id": "67cfa5c17297384e7c040b94", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa5c17297384e7c040b95", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfa5c17297384e7c040b94" + }, + { + "_id": "67cfa5c17297384e7c040b96", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "slotId": "mod_muzzle", + "parentId": "67cfa5c17297384e7c040b94" + }, + { + "_id": "67cfa5c17297384e7c040b97", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfa5c17297384e7c040b94" + }, + { + "_id": "67cfa5c17297384e7c040b98", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa5c17297384e7c040b94" + }, + { + "_id": "67cfa5c17297384e7c040b99", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa5c17297384e7c040b94" + }, + { + "_id": "67cfa5c17297384e7c040b9a", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67cfa5c17297384e7c040b94" + }, + { + "_id": "67cfa5c17297384e7c040b9b", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67cfa5c17297384e7c040b94" + }, + { + "_id": "67cfa5c17297384e7c040b9c", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfa5c17297384e7c040b94" + }, + { + "_id": "67cfa5c17297384e7c040b9d", + "_tpl": "5a9d56c8a2750c0032157146", + "slotId": "mod_handguard", + "parentId": "67cfa5c17297384e7c040b95" + }, + { + "_id": "67cfa5c17297384e7c040b9e", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa5c17297384e7c040b98" + }, + { + "_id": "67cfa5c17297384e7c040b9f", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67cfa5c17297384e7c040b9a" + }, + { + "_id": "67cfa5c17297384e7c040ba0", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_000", + "parentId": "67cfa5c17297384e7c040b9d" + }, + { + "_id": "67cfa5c17297384e7c040ba1", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_002", + "parentId": "67cfa5c17297384e7c040b9d" + }, + { + "_id": "67cfa5c17297384e7c040ba2", + "_tpl": "5c1bc7432e221602b412949d", + "slotId": "mod_foregrip", + "parentId": "67cfa5c17297384e7c040ba0" + }, + { + "_id": "67cfa5c17297384e7c040ba3", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa5c17297384e7c040ba1" + }, + { + "_id": "67cfa5c17297384e7c040ba4", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cfa5c17297384e7c040b9f" + } + ] + }, + { + "Id": "67cfa5e50100185b9568a5ca", + "Name": "loud holo ak101 v3", + "Root": "67cfa5e97297384e7c040bb2", + "Items": [ + { + "_id": "67cfa5e97297384e7c040bb2", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa5e97297384e7c040bb3", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfa5e97297384e7c040bb2" + }, + { + "_id": "67cfa5e97297384e7c040bb4", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "slotId": "mod_muzzle", + "parentId": "67cfa5e97297384e7c040bb2" + }, + { + "_id": "67cfa5e97297384e7c040bb5", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfa5e97297384e7c040bb2" + }, + { + "_id": "67cfa5e97297384e7c040bb6", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa5e97297384e7c040bb2" + }, + { + "_id": "67cfa5e97297384e7c040bb7", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa5e97297384e7c040bb2" + }, + { + "_id": "67cfa5e97297384e7c040bb8", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfa5e97297384e7c040bb2" + }, + { + "_id": "67cfa5e97297384e7c040bb9", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67cfa5e97297384e7c040bb2" + }, + { + "_id": "67cfa5e97297384e7c040bba", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfa5e97297384e7c040bb2" + }, + { + "_id": "67cfa5e97297384e7c040bbb", + "_tpl": "5cf4e3f3d7f00c06595bc7f0", + "slotId": "mod_handguard", + "parentId": "67cfa5e97297384e7c040bb3" + }, + { + "_id": "67cfa5e97297384e7c040bbc", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa5e97297384e7c040bb6" + }, + { + "_id": "67cfa5e97297384e7c040bbd", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfa5e97297384e7c040bb8" + }, + { + "_id": "67cfa5e97297384e7c040bbe", + "_tpl": "5c1bc5af2e221602b412949b", + "slotId": "mod_foregrip", + "parentId": "67cfa5e97297384e7c040bbb" + }, + { + "_id": "67cfa5e97297384e7c040bbf", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa5e97297384e7c040bbb" + } + ] + }, + { + "Id": "67cfa6100100185b95d90a16", + "Name": "supr bravo ak101", + "Root": "67cfa6177297384e7c041ae8", + "Items": [ + { + "_id": "67cfa6177297384e7c041ae8", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa6177297384e7c041ae9", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfa6177297384e7c041ae8" + }, + { + "_id": "67cfa6177297384e7c041aea", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67cfa6177297384e7c041ae8" + }, + { + "_id": "67cfa6177297384e7c041aeb", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfa6177297384e7c041ae8" + }, + { + "_id": "67cfa6177297384e7c041aec", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa6177297384e7c041ae8" + }, + { + "_id": "67cfa6177297384e7c041aed", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa6177297384e7c041ae8" + }, + { + "_id": "67cfa6177297384e7c041aee", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfa6177297384e7c041ae8" + }, + { + "_id": "67cfa6177297384e7c041aef", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67cfa6177297384e7c041ae8" + }, + { + "_id": "67cfa6177297384e7c041af0", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfa6177297384e7c041ae8" + }, + { + "_id": "67cfa6177297384e7c041af1", + "_tpl": "5cf4e3f3d7f00c06595bc7f0", + "slotId": "mod_handguard", + "parentId": "67cfa6177297384e7c041ae9" + }, + { + "_id": "67cfa6177297384e7c041af2", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cfa6177297384e7c041aea" + }, + { + "_id": "67cfa6177297384e7c041af3", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa6177297384e7c041aec" + }, + { + "_id": "67cfa6177297384e7c041af4", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfa6177297384e7c041aee" + }, + { + "_id": "67cfa6177297384e7c041af5", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67cfa6177297384e7c041af1" + }, + { + "_id": "67cfa6177297384e7c041af6", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa6177297384e7c041af1" + }, + { + "_id": "67cfa6177297384e7c041af7", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cfa6177297384e7c041af2" + }, + { + "_id": "67cfa6177297384e7c041af8", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67cfa6177297384e7c041af3" + }, + { + "_id": "67cfa6177297384e7c041af9", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa6177297384e7c041af8" + } + ] + }, + { + "Id": "67cfa6520100185b95ed7baa", + "Name": "supr holo ak101", + "Root": "67cfa6567297384e7c04295d", + "Items": [ + { + "_id": "67cfa6567297384e7c04295d", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa6567297384e7c04295e", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfa6567297384e7c04295d" + }, + { + "_id": "67cfa6567297384e7c04295f", + "_tpl": "5a9fbb84a2750c00137fa685", + "slotId": "mod_muzzle", + "parentId": "67cfa6567297384e7c04295d" + }, + { + "_id": "67cfa6567297384e7c042960", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfa6567297384e7c04295d" + }, + { + "_id": "67cfa6567297384e7c042961", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa6567297384e7c04295d" + }, + { + "_id": "67cfa6567297384e7c042962", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa6567297384e7c04295d" + }, + { + "_id": "67cfa6567297384e7c042963", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfa6567297384e7c04295d" + }, + { + "_id": "67cfa6567297384e7c042964", + "_tpl": "5ac66c5d5acfc4001718d314", + "slotId": "mod_magazine", + "parentId": "67cfa6567297384e7c04295d" + }, + { + "_id": "67cfa6567297384e7c042965", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfa6567297384e7c04295d" + }, + { + "_id": "67cfa6567297384e7c042966", + "_tpl": "5648ae314bdc2d3d1c8b457f", + "slotId": "mod_handguard", + "parentId": "67cfa6567297384e7c04295e" + }, + { + "_id": "67cfa6567297384e7c042967", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa6567297384e7c042961" + }, + { + "_id": "67cfa6567297384e7c042968", + "_tpl": "5b222d405acfc400153af4fe", + "slotId": "mod_stock", + "parentId": "67cfa6567297384e7c042963" + }, + { + "_id": "67cfa6567297384e7c042969", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfa6567297384e7c042966" + }, + { + "_id": "67cfa6567297384e7c04296a", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa6567297384e7c042966" + } + ] + }, + { + "Id": "67cfa6e90100185b95a260f8", + "Name": "loud 553 102", + "Root": "67cfa6f37297384e7c045498", + "Items": [ + { + "_id": "67cfa6f37297384e7c045498", + "_tpl": "5ac66d015acfc400180ae6e4", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa6f37297384e7c045499", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfa6f37297384e7c045498" + }, + { + "_id": "67cfa6f37297384e7c04549a", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cfa6f37297384e7c045498" + }, + { + "_id": "67cfa6f37297384e7c04549b", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67cfa6f37297384e7c045498" + }, + { + "_id": "67cfa6f37297384e7c04549c", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa6f37297384e7c045498" + }, + { + "_id": "67cfa6f37297384e7c04549d", + "_tpl": "5ac733a45acfc400192630e2", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa6f37297384e7c045498" + }, + { + "_id": "67cfa6f37297384e7c04549e", + "_tpl": "5ac50c185acfc400163398d4", + "slotId": "mod_stock", + "parentId": "67cfa6f37297384e7c045498" + }, + { + "_id": "67cfa6f37297384e7c04549f", + "_tpl": "5ac66c5d5acfc4001718d314", + "slotId": "mod_magazine", + "parentId": "67cfa6f37297384e7c045498" + }, + { + "_id": "67cfa6f37297384e7c0454a0", + "_tpl": "5648ae314bdc2d3d1c8b457f", + "slotId": "mod_handguard", + "parentId": "67cfa6f37297384e7c045499" + }, + { + "_id": "67cfa6f37297384e7c0454a1", + "_tpl": "570fd6c2d2720bc6458b457f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa6f37297384e7c04549c" + }, + { + "_id": "67cfa6f37297384e7c0454a2", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cfa6f37297384e7c04549e" + }, + { + "_id": "67cfa6f37297384e7c0454a3", + "_tpl": "5c1bc5612e221602b5429350", + "slotId": "mod_foregrip", + "parentId": "67cfa6f37297384e7c0454a0" + } + ] + }, + { + "Id": "67cfa7120100185b950c80b3", + "Name": "loud PDC 102", + "Root": "67cfa7187297384e7c0454a9", + "Items": [ + { + "_id": "67cfa7187297384e7c0454a9", + "_tpl": "5ac66d015acfc400180ae6e4", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa7187297384e7c0454aa", + "_tpl": "59ccfdba86f7747f2109a587", + "slotId": "mod_gas_block", + "parentId": "67cfa7187297384e7c0454a9" + }, + { + "_id": "67cfa7187297384e7c0454ab", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cfa7187297384e7c0454a9" + }, + { + "_id": "67cfa7187297384e7c0454ac", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67cfa7187297384e7c0454a9" + }, + { + "_id": "67cfa7187297384e7c0454ad", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa7187297384e7c0454a9" + }, + { + "_id": "67cfa7187297384e7c0454ae", + "_tpl": "5ac733a45acfc400192630e2", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa7187297384e7c0454a9" + }, + { + "_id": "67cfa7187297384e7c0454af", + "_tpl": "5ac50c185acfc400163398d4", + "slotId": "mod_stock", + "parentId": "67cfa7187297384e7c0454a9" + }, + { + "_id": "67cfa7187297384e7c0454b0", + "_tpl": "5ac66c5d5acfc4001718d314", + "slotId": "mod_magazine", + "parentId": "67cfa7187297384e7c0454a9" + }, + { + "_id": "67cfa7187297384e7c0454b1", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa7187297384e7c0454aa" + }, + { + "_id": "67cfa7187297384e7c0454b2", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa7187297384e7c0454ad" + }, + { + "_id": "67cfa7187297384e7c0454b3", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cfa7187297384e7c0454af" + } + ] + }, + { + "Id": "67cfa7540100185b951b9317", + "Name": "loud UH1 ak102", + "Root": "67cfa75c7297384e7c0463be", + "Items": [ + { + "_id": "67cfa75c7297384e7c0463be", + "_tpl": "5ac66d015acfc400180ae6e4", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa75c7297384e7c0463bf", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfa75c7297384e7c0463be" + }, + { + "_id": "67cfa75c7297384e7c0463c0", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "slotId": "mod_muzzle", + "parentId": "67cfa75c7297384e7c0463be" + }, + { + "_id": "67cfa75c7297384e7c0463c1", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "slotId": "mod_pistol_grip", + "parentId": "67cfa75c7297384e7c0463be" + }, + { + "_id": "67cfa75c7297384e7c0463c2", + "_tpl": "5ac50da15acfc4001718d287", + "slotId": "mod_reciever", + "parentId": "67cfa75c7297384e7c0463be" + }, + { + "_id": "67cfa75c7297384e7c0463c3", + "_tpl": "5ac733a45acfc400192630e2", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa75c7297384e7c0463be" + }, + { + "_id": "67cfa75c7297384e7c0463c4", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67cfa75c7297384e7c0463be" + }, + { + "_id": "67cfa75c7297384e7c0463c5", + "_tpl": "5c0548ae0db834001966a3c2", + "slotId": "mod_magazine", + "parentId": "67cfa75c7297384e7c0463be" + }, + { + "_id": "67cfa75c7297384e7c0463c6", + "_tpl": "63d114019e35b334d82302f7", + "slotId": "mod_mount_000", + "parentId": "67cfa75c7297384e7c0463be" + }, + { + "_id": "67cfa75c7297384e7c0463c7", + "_tpl": "5efaf417aeb21837e749c7f2", + "slotId": "mod_handguard", + "parentId": "67cfa75c7297384e7c0463bf" + }, + { + "_id": "67cfa75c7297384e7c0463c8", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67cfa75c7297384e7c0463c4" + }, + { + "_id": "67cfa75c7297384e7c0463c9", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa75c7297384e7c0463c6" + }, + { + "_id": "67cfa75c7297384e7c0463ca", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67cfa75c7297384e7c0463c7" + }, + { + "_id": "67cfa75c7297384e7c0463cb", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa75c7297384e7c0463c7" + }, + { + "_id": "67cfa75c7297384e7c0463cc", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cfa75c7297384e7c0463c8" + } + ] + }, + { + "Id": "67cfa7c40100185b95fd5b89", + "Name": "loud holo ak103", + "Root": "67cfa7cd7297384e7c048207", + "Items": [ + { + "_id": "67cfa7cd7297384e7c048207", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa7cd7297384e7c048208", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfa7cd7297384e7c048207" + }, + { + "_id": "67cfa7cd7297384e7c048209", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67cfa7cd7297384e7c048207" + }, + { + "_id": "67cfa7cd7297384e7c04820a", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67cfa7cd7297384e7c048207" + }, + { + "_id": "67cfa7cd7297384e7c04820b", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa7cd7297384e7c048207" + }, + { + "_id": "67cfa7cd7297384e7c04820c", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa7cd7297384e7c048207" + }, + { + "_id": "67cfa7cd7297384e7c04820d", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfa7cd7297384e7c048207" + }, + { + "_id": "67cfa7cd7297384e7c04820e", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cfa7cd7297384e7c048207" + }, + { + "_id": "67cfa7cd7297384e7c04820f", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfa7cd7297384e7c048207" + }, + { + "_id": "67cfa7cd7297384e7c048210", + "_tpl": "5cf4e3f3d7f00c06595bc7f0", + "slotId": "mod_handguard", + "parentId": "67cfa7cd7297384e7c048208" + }, + { + "_id": "67cfa7cd7297384e7c048211", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa7cd7297384e7c04820b" + }, + { + "_id": "67cfa7cd7297384e7c048212", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfa7cd7297384e7c04820d" + }, + { + "_id": "67cfa7cd7297384e7c048213", + "_tpl": "5c1bc5fb2e221602b1779b32", + "slotId": "mod_foregrip", + "parentId": "67cfa7cd7297384e7c048210" + }, + { + "_id": "67cfa7cd7297384e7c048214", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa7cd7297384e7c048210" + } + ] + }, + { + "Id": "67cfa7f50100185b9515da24", + "Name": "supr holo ak103", + "Root": "67cfa7fa7297384e7c049021", + "Items": [ + { + "_id": "67cfa7fa7297384e7c049021", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa7fa7297384e7c049022", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfa7fa7297384e7c049021" + }, + { + "_id": "67cfa7fa7297384e7c049023", + "_tpl": "5e208b9842457a4a7a33d074", + "slotId": "mod_muzzle", + "parentId": "67cfa7fa7297384e7c049021" + }, + { + "_id": "67cfa7fa7297384e7c049024", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67cfa7fa7297384e7c049021" + }, + { + "_id": "67cfa7fa7297384e7c049025", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa7fa7297384e7c049021" + }, + { + "_id": "67cfa7fa7297384e7c049026", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa7fa7297384e7c049021" + }, + { + "_id": "67cfa7fa7297384e7c049027", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfa7fa7297384e7c049021" + }, + { + "_id": "67cfa7fa7297384e7c049028", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cfa7fa7297384e7c049021" + }, + { + "_id": "67cfa7fa7297384e7c049029", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfa7fa7297384e7c049021" + }, + { + "_id": "67cfa7fa7297384e7c04902a", + "_tpl": "5cf4e3f3d7f00c06595bc7f0", + "slotId": "mod_handguard", + "parentId": "67cfa7fa7297384e7c049022" + }, + { + "_id": "67cfa7fa7297384e7c04902b", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa7fa7297384e7c049025" + }, + { + "_id": "67cfa7fa7297384e7c04902c", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfa7fa7297384e7c049027" + }, + { + "_id": "67cfa7fa7297384e7c04902d", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfa7fa7297384e7c04902a" + }, + { + "_id": "67cfa7fa7297384e7c04902e", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfa7fa7297384e7c04902a" + } + ] + }, + { + "Id": "67cfa8570100185b95df6c6f", + "Name": "supr holo brown ak103", + "Root": "67cfa8607297384e7c049ed1", + "Items": [ + { + "_id": "67cfa8607297384e7c049ed1", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa8607297384e7c049ed2", + "_tpl": "59d64ec286f774171d1e0a42", + "slotId": "mod_gas_block", + "parentId": "67cfa8607297384e7c049ed1" + }, + { + "_id": "67cfa8607297384e7c049ed3", + "_tpl": "59fb257e86f7742981561852", + "slotId": "mod_muzzle", + "parentId": "67cfa8607297384e7c049ed1" + }, + { + "_id": "67cfa8607297384e7c049ed4", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67cfa8607297384e7c049ed1" + }, + { + "_id": "67cfa8607297384e7c049ed5", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa8607297384e7c049ed1" + }, + { + "_id": "67cfa8607297384e7c049ed6", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa8607297384e7c049ed1" + }, + { + "_id": "67cfa8607297384e7c049ed7", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfa8607297384e7c049ed1" + }, + { + "_id": "67cfa8607297384e7c049ed8", + "_tpl": "5b1fb3e15acfc4001637f068", + "slotId": "mod_magazine", + "parentId": "67cfa8607297384e7c049ed1" + }, + { + "_id": "67cfa8607297384e7c049ed9", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfa8607297384e7c049ed1" + }, + { + "_id": "67cfa8607297384e7c049eda", + "_tpl": "5d4aaa73a4b9365392071175", + "slotId": "mod_handguard", + "parentId": "67cfa8607297384e7c049ed2" + }, + { + "_id": "67cfa8607297384e7c049edb", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa8607297384e7c049ed5" + }, + { + "_id": "67cfa8607297384e7c049edc", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfa8607297384e7c049ed7" + }, + { + "_id": "67cfa8607297384e7c049edd", + "_tpl": "57cffcd624597763133760c5", + "slotId": "mod_foregrip", + "parentId": "67cfa8607297384e7c049eda" + } + ] + }, + { + "Id": "67cfa8a20100185b95f72fb9", + "Name": "loud dp ak103", + "Root": "67cfa8a97297384e7c04bd53", + "Items": [ + { + "_id": "67cfa8a97297384e7c04bd53", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfa8a97297384e7c04bd54", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfa8a97297384e7c04bd53" + }, + { + "_id": "67cfa8a97297384e7c04bd55", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67cfa8a97297384e7c04bd53" + }, + { + "_id": "67cfa8a97297384e7c04bd56", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67cfa8a97297384e7c04bd53" + }, + { + "_id": "67cfa8a97297384e7c04bd57", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfa8a97297384e7c04bd53" + }, + { + "_id": "67cfa8a97297384e7c04bd58", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa8a97297384e7c04bd53" + }, + { + "_id": "67cfa8a97297384e7c04bd59", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfa8a97297384e7c04bd53" + }, + { + "_id": "67cfa8a97297384e7c04bd5a", + "_tpl": "5ac66bea5acfc43b321d4aec", + "slotId": "mod_magazine", + "parentId": "67cfa8a97297384e7c04bd53" + }, + { + "_id": "67cfa8a97297384e7c04bd5b", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfa8a97297384e7c04bd53" + }, + { + "_id": "67cfa8a97297384e7c04bd5c", + "_tpl": "5c17664f2e2216398b5a7e3c", + "slotId": "mod_handguard", + "parentId": "67cfa8a97297384e7c04bd54" + }, + { + "_id": "67cfa8a97297384e7c04bd5d", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67cfa8a97297384e7c04bd57" + }, + { + "_id": "67cfa8a97297384e7c04bd5e", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfa8a97297384e7c04bd59" + }, + { + "_id": "67cfa8a97297384e7c04bd5f", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_000", + "parentId": "67cfa8a97297384e7c04bd5c" + }, + { + "_id": "67cfa8a97297384e7c04bd60", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67cfa8a97297384e7c04bd5f" + }, + { + "_id": "67cfa8a97297384e7c04bd61", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfa8a97297384e7c04bd5d" + } + ] + }, + { + "Id": "67cfaa020100185b95e81ce1", + "Name": "loud okp ak105", + "Root": "67cfaa0f7297384e7c05187c", + "Items": [ + { + "_id": "67cfaa0f7297384e7c05187c", + "_tpl": "5ac66d9b5acfc4001633997a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfaa0f7297384e7c05187d", + "_tpl": "59ccfdba86f7747f2109a587", + "slotId": "mod_gas_block", + "parentId": "67cfaa0f7297384e7c05187c" + }, + { + "_id": "67cfaa0f7297384e7c05187e", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67cfaa0f7297384e7c05187c" + }, + { + "_id": "67cfaa0f7297384e7c05187f", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "slotId": "mod_pistol_grip", + "parentId": "67cfaa0f7297384e7c05187c" + }, + { + "_id": "67cfaa0f7297384e7c051880", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfaa0f7297384e7c05187c" + }, + { + "_id": "67cfaa0f7297384e7c051881", + "_tpl": "5ac733a45acfc400192630e2", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaa0f7297384e7c05187c" + }, + { + "_id": "67cfaa0f7297384e7c051882", + "_tpl": "5ac50c185acfc400163398d4", + "slotId": "mod_stock", + "parentId": "67cfaa0f7297384e7c05187c" + }, + { + "_id": "67cfaa0f7297384e7c051883", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfaa0f7297384e7c05187c" + }, + { + "_id": "67cfaa0f7297384e7c051884", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfaa0f7297384e7c05187c" + }, + { + "_id": "67cfaa0f7297384e7c051885", + "_tpl": "570fd79bd2720bc7458b4583", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaa0f7297384e7c051880" + }, + { + "_id": "67cfaa0f7297384e7c051886", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cfaa0f7297384e7c051882" + } + ] + }, + { + "Id": "67cfaa2c0100185b95f44db2", + "Name": "supr 553 ak105", + "Root": "67cfaa337297384e7c05270b", + "Items": [ + { + "_id": "67cfaa337297384e7c05270b", + "_tpl": "5ac66d9b5acfc4001633997a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfaa337297384e7c05270c", + "_tpl": "59ccfdba86f7747f2109a587", + "slotId": "mod_gas_block", + "parentId": "67cfaa337297384e7c05270b" + }, + { + "_id": "67cfaa337297384e7c05270d", + "_tpl": "593d493f86f7745e6b2ceb22", + "slotId": "mod_muzzle", + "parentId": "67cfaa337297384e7c05270b" + }, + { + "_id": "67cfaa337297384e7c05270e", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "slotId": "mod_pistol_grip", + "parentId": "67cfaa337297384e7c05270b" + }, + { + "_id": "67cfaa337297384e7c05270f", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfaa337297384e7c05270b" + }, + { + "_id": "67cfaa337297384e7c052710", + "_tpl": "5ac733a45acfc400192630e2", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaa337297384e7c05270b" + }, + { + "_id": "67cfaa337297384e7c052711", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfaa337297384e7c05270b" + }, + { + "_id": "67cfaa337297384e7c052712", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfaa337297384e7c05270b" + }, + { + "_id": "67cfaa337297384e7c052713", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfaa337297384e7c05270b" + }, + { + "_id": "67cfaa337297384e7c052714", + "_tpl": "570fd6c2d2720bc6458b457f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaa337297384e7c05270f" + }, + { + "_id": "67cfaa337297384e7c052715", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfaa337297384e7c052711" + } + ] + }, + { + "Id": "67cfaa550100185b95321021", + "Name": "loud holo ak105", + "Root": "67cfaa5c7297384e7c0537ac", + "Items": [ + { + "_id": "67cfaa5c7297384e7c0537ac", + "_tpl": "5ac66d9b5acfc4001633997a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfaa5c7297384e7c0537ad", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfaa5c7297384e7c0537ac" + }, + { + "_id": "67cfaa5c7297384e7c0537ae", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "slotId": "mod_muzzle", + "parentId": "67cfaa5c7297384e7c0537ac" + }, + { + "_id": "67cfaa5c7297384e7c0537af", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "slotId": "mod_pistol_grip", + "parentId": "67cfaa5c7297384e7c0537ac" + }, + { + "_id": "67cfaa5c7297384e7c0537b0", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfaa5c7297384e7c0537ac" + }, + { + "_id": "67cfaa5c7297384e7c0537b1", + "_tpl": "5ac733a45acfc400192630e2", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaa5c7297384e7c0537ac" + }, + { + "_id": "67cfaa5c7297384e7c0537b2", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfaa5c7297384e7c0537ac" + }, + { + "_id": "67cfaa5c7297384e7c0537b3", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfaa5c7297384e7c0537ac" + }, + { + "_id": "67cfaa5c7297384e7c0537b4", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfaa5c7297384e7c0537ac" + }, + { + "_id": "67cfaa5c7297384e7c0537b5", + "_tpl": "5a9d56c8a2750c0032157146", + "slotId": "mod_handguard", + "parentId": "67cfaa5c7297384e7c0537ad" + }, + { + "_id": "67cfaa5c7297384e7c0537b6", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaa5c7297384e7c0537b0" + }, + { + "_id": "67cfaa5c7297384e7c0537b7", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfaa5c7297384e7c0537b2" + }, + { + "_id": "67cfaa5c7297384e7c0537b8", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_000", + "parentId": "67cfaa5c7297384e7c0537b5" + }, + { + "_id": "67cfaa5c7297384e7c0537b9", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cfaa5c7297384e7c0537b8" + } + ] + }, + { + "Id": "67cfaabd0100185b959f153f", + "Name": "loud hamr ak12", + "Root": "67cfaac37297384e7c055488", + "Items": [ + { + "_id": "67cfaac37297384e7c055488", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfaac37297384e7c055489", + "_tpl": "649ec107961514b22506b10c", + "slotId": "mod_gas_block", + "parentId": "67cfaac37297384e7c055488" + }, + { + "_id": "67cfaac37297384e7c05548a", + "_tpl": "649ec2af961514b22506b10f", + "slotId": "mod_muzzle", + "parentId": "67cfaac37297384e7c055488" + }, + { + "_id": "67cfaac37297384e7c05548b", + "_tpl": "5beec8ea0db834001a6f9dbf", + "slotId": "mod_pistol_grip", + "parentId": "67cfaac37297384e7c055488" + }, + { + "_id": "67cfaac37297384e7c05548c", + "_tpl": "649ec2f3961514b22506b111", + "slotId": "mod_reciever", + "parentId": "67cfaac37297384e7c055488" + }, + { + "_id": "67cfaac37297384e7c05548d", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67cfaac37297384e7c055488" + }, + { + "_id": "67cfaac37297384e7c05548e", + "_tpl": "649ec30cb013f04a700e60fb", + "slotId": "mod_magazine", + "parentId": "67cfaac37297384e7c055488" + }, + { + "_id": "67cfaac37297384e7c05548f", + "_tpl": "649ec127c93611967b034957", + "slotId": "mod_handguard", + "parentId": "67cfaac37297384e7c055488" + }, + { + "_id": "67cfaac37297384e7c055490", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaac37297384e7c05548c" + }, + { + "_id": "67cfaac37297384e7c055491", + "_tpl": "649ec2da59cbb3c813042dca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaac37297384e7c05548c" + }, + { + "_id": "67cfaac37297384e7c055492", + "_tpl": "5beec8c20db834001d2c465c", + "slotId": "mod_stock", + "parentId": "67cfaac37297384e7c05548d" + }, + { + "_id": "67cfaac37297384e7c055493", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67cfaac37297384e7c05548f" + }, + { + "_id": "67cfaac37297384e7c055494", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cfaac37297384e7c05548f" + }, + { + "_id": "67cfaac37297384e7c055495", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaac37297384e7c055490" + }, + { + "_id": "67cfaac37297384e7c055496", + "_tpl": "649ec2cec93611967b03495e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaac37297384e7c055491" + } + ] + }, + { + "Id": "67cfaad90100185b9515fa53", + "Name": "loud holo ak12", + "Root": "67cfaadd7297384e7c055499", + "Items": [ + { + "_id": "67cfaadd7297384e7c055499", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfaadd7297384e7c05549a", + "_tpl": "649ec107961514b22506b10c", + "slotId": "mod_gas_block", + "parentId": "67cfaadd7297384e7c055499" + }, + { + "_id": "67cfaadd7297384e7c05549b", + "_tpl": "649ec2af961514b22506b10f", + "slotId": "mod_muzzle", + "parentId": "67cfaadd7297384e7c055499" + }, + { + "_id": "67cfaadd7297384e7c05549c", + "_tpl": "5beec8ea0db834001a6f9dbf", + "slotId": "mod_pistol_grip", + "parentId": "67cfaadd7297384e7c055499" + }, + { + "_id": "67cfaadd7297384e7c05549d", + "_tpl": "649ec2f3961514b22506b111", + "slotId": "mod_reciever", + "parentId": "67cfaadd7297384e7c055499" + }, + { + "_id": "67cfaadd7297384e7c05549e", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67cfaadd7297384e7c055499" + }, + { + "_id": "67cfaadd7297384e7c05549f", + "_tpl": "649ec30cb013f04a700e60fb", + "slotId": "mod_magazine", + "parentId": "67cfaadd7297384e7c055499" + }, + { + "_id": "67cfaadd7297384e7c0554a0", + "_tpl": "649ec127c93611967b034957", + "slotId": "mod_handguard", + "parentId": "67cfaadd7297384e7c055499" + }, + { + "_id": "67cfaadd7297384e7c0554a1", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaadd7297384e7c05549d" + }, + { + "_id": "67cfaadd7297384e7c0554a2", + "_tpl": "649ec2da59cbb3c813042dca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaadd7297384e7c05549d" + }, + { + "_id": "67cfaadd7297384e7c0554a3", + "_tpl": "5beec8c20db834001d2c465c", + "slotId": "mod_stock", + "parentId": "67cfaadd7297384e7c05549e" + }, + { + "_id": "67cfaadd7297384e7c0554a4", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67cfaadd7297384e7c0554a0" + }, + { + "_id": "67cfaadd7297384e7c0554a5", + "_tpl": "5c791e872e2216001219c40a", + "slotId": "mod_foregrip", + "parentId": "67cfaadd7297384e7c0554a0" + }, + { + "_id": "67cfaadd7297384e7c0554a6", + "_tpl": "649ec2cec93611967b03495e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaadd7297384e7c0554a2" + }, + { + "_id": "67cfaadd7297384e7c0554a7", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfaadd7297384e7c0554a4" + } + ] + }, + { + "Id": "67cfaaed0100185b952c8eb0", + "Name": "supr holo ak12", + "Root": "67cfaaf17297384e7c0563fd", + "Items": [ + { + "_id": "67cfaaf17297384e7c0563fd", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfaaf17297384e7c0563fe", + "_tpl": "649ec107961514b22506b10c", + "slotId": "mod_gas_block", + "parentId": "67cfaaf17297384e7c0563fd" + }, + { + "_id": "67cfaaf17297384e7c0563ff", + "_tpl": "64c196ad26a15b84aa07132f", + "slotId": "mod_muzzle", + "parentId": "67cfaaf17297384e7c0563fd" + }, + { + "_id": "67cfaaf17297384e7c056400", + "_tpl": "5beec8ea0db834001a6f9dbf", + "slotId": "mod_pistol_grip", + "parentId": "67cfaaf17297384e7c0563fd" + }, + { + "_id": "67cfaaf17297384e7c056401", + "_tpl": "649ec2f3961514b22506b111", + "slotId": "mod_reciever", + "parentId": "67cfaaf17297384e7c0563fd" + }, + { + "_id": "67cfaaf17297384e7c056402", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67cfaaf17297384e7c0563fd" + }, + { + "_id": "67cfaaf17297384e7c056403", + "_tpl": "649ec30cb013f04a700e60fb", + "slotId": "mod_magazine", + "parentId": "67cfaaf17297384e7c0563fd" + }, + { + "_id": "67cfaaf17297384e7c056404", + "_tpl": "649ec127c93611967b034957", + "slotId": "mod_handguard", + "parentId": "67cfaaf17297384e7c0563fd" + }, + { + "_id": "67cfaaf17297384e7c056405", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaaf17297384e7c056401" + }, + { + "_id": "67cfaaf17297384e7c056406", + "_tpl": "649ec2da59cbb3c813042dca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaaf17297384e7c056401" + }, + { + "_id": "67cfaaf17297384e7c056407", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67cfaaf17297384e7c056402" + }, + { + "_id": "67cfaaf17297384e7c056408", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67cfaaf17297384e7c056404" + }, + { + "_id": "67cfaaf17297384e7c056409", + "_tpl": "5c791e872e2216001219c40a", + "slotId": "mod_foregrip", + "parentId": "67cfaaf17297384e7c056404" + }, + { + "_id": "67cfaaf17297384e7c05640a", + "_tpl": "649ec2cec93611967b03495e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaaf17297384e7c056406" + }, + { + "_id": "67cfaaf17297384e7c05640b", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cfaaf17297384e7c056407" + }, + { + "_id": "67cfaaf17297384e7c05640c", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfaaf17297384e7c056408" + } + ] + }, + { + "Id": "67cfab000100185b952539e3", + "Name": "loud valday ak12", + "Root": "67cfab067297384e7c056412", + "Items": [ + { + "_id": "67cfab067297384e7c056412", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfab067297384e7c056413", + "_tpl": "649ec107961514b22506b10c", + "slotId": "mod_gas_block", + "parentId": "67cfab067297384e7c056412" + }, + { + "_id": "67cfab067297384e7c056414", + "_tpl": "649ec2af961514b22506b10f", + "slotId": "mod_muzzle", + "parentId": "67cfab067297384e7c056412" + }, + { + "_id": "67cfab067297384e7c056415", + "_tpl": "5beec8ea0db834001a6f9dbf", + "slotId": "mod_pistol_grip", + "parentId": "67cfab067297384e7c056412" + }, + { + "_id": "67cfab067297384e7c056416", + "_tpl": "649ec2f3961514b22506b111", + "slotId": "mod_reciever", + "parentId": "67cfab067297384e7c056412" + }, + { + "_id": "67cfab067297384e7c056417", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67cfab067297384e7c056412" + }, + { + "_id": "67cfab067297384e7c056418", + "_tpl": "649ec30cb013f04a700e60fb", + "slotId": "mod_magazine", + "parentId": "67cfab067297384e7c056412" + }, + { + "_id": "67cfab067297384e7c056419", + "_tpl": "649ec127c93611967b034957", + "slotId": "mod_handguard", + "parentId": "67cfab067297384e7c056412" + }, + { + "_id": "67cfab067297384e7c05641a", + "_tpl": "5c0517910db83400232ffee5", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfab067297384e7c056416" + }, + { + "_id": "67cfab067297384e7c05641b", + "_tpl": "649ec2da59cbb3c813042dca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfab067297384e7c056416" + }, + { + "_id": "67cfab067297384e7c05641c", + "_tpl": "5beec8c20db834001d2c465c", + "slotId": "mod_stock", + "parentId": "67cfab067297384e7c056417" + }, + { + "_id": "67cfab067297384e7c05641d", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67cfab067297384e7c056419" + }, + { + "_id": "67cfab067297384e7c05641e", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cfab067297384e7c056419" + }, + { + "_id": "67cfab067297384e7c05641f", + "_tpl": "649ec2cec93611967b03495e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfab067297384e7c05641b" + } + ] + }, + { + "Id": "67cfab280100185b95e7579e", + "Name": "loud specter ak12", + "Root": "67cfab2d7297384e7c0573a1", + "Items": [ + { + "_id": "67cfab2d7297384e7c0573a1", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfab2d7297384e7c0573a2", + "_tpl": "649ec107961514b22506b10c", + "slotId": "mod_gas_block", + "parentId": "67cfab2d7297384e7c0573a1" + }, + { + "_id": "67cfab2d7297384e7c0573a3", + "_tpl": "649ec2af961514b22506b10f", + "slotId": "mod_muzzle", + "parentId": "67cfab2d7297384e7c0573a1" + }, + { + "_id": "67cfab2d7297384e7c0573a4", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfab2d7297384e7c0573a1" + }, + { + "_id": "67cfab2d7297384e7c0573a5", + "_tpl": "649ec2f3961514b22506b111", + "slotId": "mod_reciever", + "parentId": "67cfab2d7297384e7c0573a1" + }, + { + "_id": "67cfab2d7297384e7c0573a6", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67cfab2d7297384e7c0573a1" + }, + { + "_id": "67cfab2d7297384e7c0573a7", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfab2d7297384e7c0573a1" + }, + { + "_id": "67cfab2d7297384e7c0573a8", + "_tpl": "649ec127c93611967b034957", + "slotId": "mod_handguard", + "parentId": "67cfab2d7297384e7c0573a1" + }, + { + "_id": "67cfab2d7297384e7c0573a9", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfab2d7297384e7c0573a5" + }, + { + "_id": "67cfab2d7297384e7c0573aa", + "_tpl": "649ec2da59cbb3c813042dca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfab2d7297384e7c0573a5" + }, + { + "_id": "67cfab2d7297384e7c0573ab", + "_tpl": "5beec8c20db834001d2c465c", + "slotId": "mod_stock", + "parentId": "67cfab2d7297384e7c0573a6" + }, + { + "_id": "67cfab2d7297384e7c0573ac", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67cfab2d7297384e7c0573a8" + }, + { + "_id": "67cfab2d7297384e7c0573ad", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfab2d7297384e7c0573a8" + }, + { + "_id": "67cfab2d7297384e7c0573ae", + "_tpl": "649ec2cec93611967b03495e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfab2d7297384e7c0573aa" + } + ] + }, + { + "Id": "67cfac7e0100185b9589f0ce", + "Name": "loud holo tan ak74", + "Root": "67cfac867297384e7c05e114", + "Items": [ + { + "_id": "67cfac867297384e7c05e114", + "_tpl": "5bf3e03b0db834001d2c4a9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfac867297384e7c05e115", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfac867297384e7c05e114" + }, + { + "_id": "67cfac867297384e7c05e116", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67cfac867297384e7c05e114" + }, + { + "_id": "67cfac867297384e7c05e117", + "_tpl": "5cf54404d7f00c108840b2ef", + "slotId": "mod_pistol_grip", + "parentId": "67cfac867297384e7c05e114" + }, + { + "_id": "67cfac867297384e7c05e118", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfac867297384e7c05e114" + }, + { + "_id": "67cfac867297384e7c05e119", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfac867297384e7c05e114" + }, + { + "_id": "67cfac867297384e7c05e11a", + "_tpl": "5649b1c04bdc2d16268b457c", + "slotId": "mod_stock", + "parentId": "67cfac867297384e7c05e114" + }, + { + "_id": "67cfac867297384e7c05e11b", + "_tpl": "564ca99c4bdc2d16268b4589", + "slotId": "mod_magazine", + "parentId": "67cfac867297384e7c05e114" + }, + { + "_id": "67cfac867297384e7c05e11c", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfac867297384e7c05e114" + }, + { + "_id": "67cfac867297384e7c05e11d", + "_tpl": "5d4aaa73a4b9365392071175", + "slotId": "mod_handguard", + "parentId": "67cfac867297384e7c05e115" + }, + { + "_id": "67cfac867297384e7c05e11e", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfac867297384e7c05e118" + }, + { + "_id": "67cfac867297384e7c05e11f", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cfac867297384e7c05e11a" + }, + { + "_id": "67cfac867297384e7c05e120", + "_tpl": "57cffcd624597763133760c5", + "slotId": "mod_foregrip", + "parentId": "67cfac867297384e7c05e11d" + } + ] + }, + { + "Id": "67cfacb80100185b95af2f39", + "Name": "loud holo ak74", + "Root": "67cfacbc7297384e7c05f12f", + "Items": [ + { + "_id": "67cfacbc7297384e7c05f12f", + "_tpl": "5bf3e03b0db834001d2c4a9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfacbc7297384e7c05f130", + "_tpl": "5b237e425acfc4771e1be0b6", + "slotId": "mod_gas_block", + "parentId": "67cfacbc7297384e7c05f12f" + }, + { + "_id": "67cfacbc7297384e7c05f131", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "slotId": "mod_muzzle", + "parentId": "67cfacbc7297384e7c05f12f" + }, + { + "_id": "67cfacbc7297384e7c05f132", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfacbc7297384e7c05f12f" + }, + { + "_id": "67cfacbc7297384e7c05f133", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfacbc7297384e7c05f12f" + }, + { + "_id": "67cfacbc7297384e7c05f134", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfacbc7297384e7c05f12f" + }, + { + "_id": "67cfacbc7297384e7c05f135", + "_tpl": "5b04473a5acfc40018632f70", + "slotId": "mod_stock", + "parentId": "67cfacbc7297384e7c05f12f" + }, + { + "_id": "67cfacbc7297384e7c05f136", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfacbc7297384e7c05f12f" + }, + { + "_id": "67cfacbc7297384e7c05f137", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfacbc7297384e7c05f12f" + }, + { + "_id": "67cfacbc7297384e7c05f138", + "_tpl": "5b4736b986f77405cb415c10", + "slotId": "mod_mount_002", + "parentId": "67cfacbc7297384e7c05f130" + }, + { + "_id": "67cfacbc7297384e7c05f139", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfacbc7297384e7c05f133" + }, + { + "_id": "67cfacbc7297384e7c05f13a", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfacbc7297384e7c05f138" + } + ] + }, + { + "Id": "67cfad090100185b95ab7cf9", + "Name": "loud UH1 ak74", + "Root": "67cfad0f7297384e7c0610f6", + "Items": [ + { + "_id": "67cfad0f7297384e7c0610f6", + "_tpl": "5bf3e03b0db834001d2c4a9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfad0f7297384e7c0610f7", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfad0f7297384e7c0610f6" + }, + { + "_id": "67cfad0f7297384e7c0610f8", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67cfad0f7297384e7c0610f6" + }, + { + "_id": "67cfad0f7297384e7c0610f9", + "_tpl": "5e2192a498a36665e8337386", + "slotId": "mod_pistol_grip", + "parentId": "67cfad0f7297384e7c0610f6" + }, + { + "_id": "67cfad0f7297384e7c0610fa", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfad0f7297384e7c0610f6" + }, + { + "_id": "67cfad0f7297384e7c0610fb", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfad0f7297384e7c0610f6" + }, + { + "_id": "67cfad0f7297384e7c0610fc", + "_tpl": "5e217ba4c1434648c13568cd", + "slotId": "mod_stock", + "parentId": "67cfad0f7297384e7c0610f6" + }, + { + "_id": "67cfad0f7297384e7c0610fd", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfad0f7297384e7c0610f6" + }, + { + "_id": "67cfad0f7297384e7c0610fe", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfad0f7297384e7c0610f6" + }, + { + "_id": "67cfad0f7297384e7c0610ff", + "_tpl": "5d4aaa54a4b9365392071170", + "slotId": "mod_handguard", + "parentId": "67cfad0f7297384e7c0610f7" + }, + { + "_id": "67cfad0f7297384e7c061100", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfad0f7297384e7c0610fa" + }, + { + "_id": "67cfad0f7297384e7c061101", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cfad0f7297384e7c0610ff" + }, + { + "_id": "67cfad0f7297384e7c061102", + "_tpl": "65169d5b30425317755f8e25", + "slotId": "mod_foregrip", + "parentId": "67cfad0f7297384e7c061101" + } + ] + }, + { + "Id": "67cfad400100185b95a9d09d", + "Name": "loud hamr ak74", + "Root": "67cfad457297384e7c061ef1", + "Items": [ + { + "_id": "67cfad457297384e7c061ef1", + "_tpl": "5bf3e03b0db834001d2c4a9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfad457297384e7c061ef2", + "_tpl": "5cf656f2d7f00c06585fb6eb", + "slotId": "mod_gas_block", + "parentId": "67cfad457297384e7c061ef1" + }, + { + "_id": "67cfad457297384e7c061ef3", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "slotId": "mod_muzzle", + "parentId": "67cfad457297384e7c061ef1" + }, + { + "_id": "67cfad457297384e7c061ef4", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfad457297384e7c061ef1" + }, + { + "_id": "67cfad457297384e7c061ef5", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfad457297384e7c061ef1" + }, + { + "_id": "67cfad457297384e7c061ef6", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfad457297384e7c061ef1" + }, + { + "_id": "67cfad457297384e7c061ef7", + "_tpl": "5b04473a5acfc40018632f70", + "slotId": "mod_stock", + "parentId": "67cfad457297384e7c061ef1" + }, + { + "_id": "67cfad457297384e7c061ef8", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfad457297384e7c061ef1" + }, + { + "_id": "67cfad457297384e7c061ef9", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfad457297384e7c061ef1" + }, + { + "_id": "67cfad457297384e7c061efa", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67cfad457297384e7c061ef2" + }, + { + "_id": "67cfad457297384e7c061efb", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfad457297384e7c061ef5" + }, + { + "_id": "67cfad457297384e7c061efc", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67cfad457297384e7c061efa" + }, + { + "_id": "67cfad457297384e7c061efd", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfad457297384e7c061efb" + } + ] + }, + { + "Id": "67cfada90100185b95134d19", + "Name": "supr ak74n", + "Root": "67cfadb67297384e7c064d06", + "Items": [ + { + "_id": "67cfadb67297384e7c064d06", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfadb67297384e7c064d07", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfadb67297384e7c064d06" + }, + { + "_id": "67cfadb67297384e7c064d08", + "_tpl": "593d493f86f7745e6b2ceb22", + "slotId": "mod_muzzle", + "parentId": "67cfadb67297384e7c064d06" + }, + { + "_id": "67cfadb67297384e7c064d09", + "_tpl": "5649ad3f4bdc2df8348b4585", + "slotId": "mod_pistol_grip", + "parentId": "67cfadb67297384e7c064d06" + }, + { + "_id": "67cfadb67297384e7c064d0a", + "_tpl": "5649af094bdc2df8348b4586", + "slotId": "mod_reciever", + "parentId": "67cfadb67297384e7c064d06" + }, + { + "_id": "67cfadb67297384e7c064d0b", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfadb67297384e7c064d06" + }, + { + "_id": "67cfadb67297384e7c064d0c", + "_tpl": "5649b1c04bdc2d16268b457c", + "slotId": "mod_stock", + "parentId": "67cfadb67297384e7c064d06" + }, + { + "_id": "67cfadb67297384e7c064d0d", + "_tpl": "5bed625c0db834001c062946", + "slotId": "mod_magazine", + "parentId": "67cfadb67297384e7c064d06" + }, + { + "_id": "67cfadb67297384e7c064d0e", + "_tpl": "5d2c829448f0353a5c7d6674", + "slotId": "mod_handguard", + "parentId": "67cfadb67297384e7c064d07" + }, + { + "_id": "67cfadb67297384e7c064d0f", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cfadb67297384e7c064d0c" + } + ] + }, + { + "Id": "67cfae0b0100185b95bd96f9", + "Name": "loud holo 74n", + "Root": "67cfae137297384e7c066adc", + "Items": [ + { + "_id": "67cfae137297384e7c066adc", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfae137297384e7c066add", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfae137297384e7c066adc" + }, + { + "_id": "67cfae137297384e7c066ade", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67cfae137297384e7c066adc" + }, + { + "_id": "67cfae137297384e7c066adf", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfae137297384e7c066adc" + }, + { + "_id": "67cfae137297384e7c066ae0", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfae137297384e7c066adc" + }, + { + "_id": "67cfae137297384e7c066ae1", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfae137297384e7c066adc" + }, + { + "_id": "67cfae137297384e7c066ae2", + "_tpl": "5b04473a5acfc40018632f70", + "slotId": "mod_stock", + "parentId": "67cfae137297384e7c066adc" + }, + { + "_id": "67cfae137297384e7c066ae3", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfae137297384e7c066adc" + }, + { + "_id": "67cfae137297384e7c066ae4", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfae137297384e7c066adc" + }, + { + "_id": "67cfae137297384e7c066ae5", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "slotId": "mod_handguard", + "parentId": "67cfae137297384e7c066add" + }, + { + "_id": "67cfae137297384e7c066ae6", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfae137297384e7c066ae0" + }, + { + "_id": "67cfae137297384e7c066ae7", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfae137297384e7c066ae5" + } + ] + }, + { + "Id": "67cfae3d0100185b95f3ec01", + "Name": "supr spectr 74n", + "Root": "67cfae447297384e7c067a4c", + "Items": [ + { + "_id": "67cfae447297384e7c067a4c", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfae447297384e7c067a4d", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfae447297384e7c067a4c" + }, + { + "_id": "67cfae447297384e7c067a4e", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67cfae447297384e7c067a4c" + }, + { + "_id": "67cfae447297384e7c067a4f", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfae447297384e7c067a4c" + }, + { + "_id": "67cfae447297384e7c067a50", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfae447297384e7c067a4c" + }, + { + "_id": "67cfae447297384e7c067a51", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfae447297384e7c067a4c" + }, + { + "_id": "67cfae447297384e7c067a52", + "_tpl": "5b04473a5acfc40018632f70", + "slotId": "mod_stock", + "parentId": "67cfae447297384e7c067a4c" + }, + { + "_id": "67cfae447297384e7c067a53", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfae447297384e7c067a4c" + }, + { + "_id": "67cfae447297384e7c067a54", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfae447297384e7c067a4c" + }, + { + "_id": "67cfae447297384e7c067a55", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "slotId": "mod_handguard", + "parentId": "67cfae447297384e7c067a4d" + }, + { + "_id": "67cfae447297384e7c067a56", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cfae447297384e7c067a4e" + }, + { + "_id": "67cfae447297384e7c067a57", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfae447297384e7c067a50" + }, + { + "_id": "67cfae447297384e7c067a58", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67cfae447297384e7c067a55" + }, + { + "_id": "67cfae447297384e7c067a59", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cfae447297384e7c067a56" + } + ] + }, + { + "Id": "67cfae790100185b9541d11f", + "Name": "loud holo 74n v2", + "Root": "67cfae837297384e7c069873", + "Items": [ + { + "_id": "67cfae837297384e7c069873", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfae837297384e7c069874", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfae837297384e7c069873" + }, + { + "_id": "67cfae837297384e7c069875", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67cfae837297384e7c069873" + }, + { + "_id": "67cfae837297384e7c069876", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfae837297384e7c069873" + }, + { + "_id": "67cfae837297384e7c069877", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfae837297384e7c069873" + }, + { + "_id": "67cfae837297384e7c069878", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfae837297384e7c069873" + }, + { + "_id": "67cfae837297384e7c069879", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67cfae837297384e7c069873" + }, + { + "_id": "67cfae837297384e7c06987a", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67cfae837297384e7c069873" + }, + { + "_id": "67cfae837297384e7c06987b", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfae837297384e7c069873" + }, + { + "_id": "67cfae837297384e7c06987c", + "_tpl": "5c17664f2e2216398b5a7e3c", + "slotId": "mod_handguard", + "parentId": "67cfae837297384e7c069874" + }, + { + "_id": "67cfae837297384e7c06987d", + "_tpl": "5943ee5a86f77413872d25ec", + "slotId": "mod_muzzle", + "parentId": "67cfae837297384e7c069875" + }, + { + "_id": "67cfae837297384e7c06987e", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfae837297384e7c069877" + }, + { + "_id": "67cfae837297384e7c06987f", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_mount_000", + "parentId": "67cfae837297384e7c06987c" + }, + { + "_id": "67cfae837297384e7c069880", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67cfae837297384e7c06987f" + } + ] + }, + { + "Id": "67cfaf070100185b95f4bb6d", + "Name": "loud HCO ak74m", + "Root": "67cfaf0d7297384e7c06c858", + "Items": [ + { + "_id": "67cfaf0d7297384e7c06c858", + "_tpl": "5ac4cd105acfc40016339859", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfaf0d7297384e7c06c859", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfaf0d7297384e7c06c858" + }, + { + "_id": "67cfaf0d7297384e7c06c85a", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67cfaf0d7297384e7c06c858" + }, + { + "_id": "67cfaf0d7297384e7c06c85b", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfaf0d7297384e7c06c858" + }, + { + "_id": "67cfaf0d7297384e7c06c85c", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfaf0d7297384e7c06c858" + }, + { + "_id": "67cfaf0d7297384e7c06c85d", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaf0d7297384e7c06c858" + }, + { + "_id": "67cfaf0d7297384e7c06c85e", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67cfaf0d7297384e7c06c858" + }, + { + "_id": "67cfaf0d7297384e7c06c85f", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "slotId": "mod_magazine", + "parentId": "67cfaf0d7297384e7c06c858" + }, + { + "_id": "67cfaf0d7297384e7c06c860", + "_tpl": "647dba3142c479dde701b654", + "slotId": "mod_handguard", + "parentId": "67cfaf0d7297384e7c06c859" + }, + { + "_id": "67cfaf0d7297384e7c06c861", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaf0d7297384e7c06c85c" + }, + { + "_id": "67cfaf0d7297384e7c06c862", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfaf0d7297384e7c06c85e" + }, + { + "_id": "67cfaf0d7297384e7c06c863", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cfaf0d7297384e7c06c860" + } + ] + }, + { + "Id": "67cfaf440100185b95aed1e0", + "Name": "loud UH1 ak74m", + "Root": "67cfaf487297384e7c06e8fa", + "Items": [ + { + "_id": "67cfaf487297384e7c06e8fa", + "_tpl": "5ac4cd105acfc40016339859", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfaf487297384e7c06e8fb", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfaf487297384e7c06e8fa" + }, + { + "_id": "67cfaf487297384e7c06e8fc", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "slotId": "mod_muzzle", + "parentId": "67cfaf487297384e7c06e8fa" + }, + { + "_id": "67cfaf487297384e7c06e8fd", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfaf487297384e7c06e8fa" + }, + { + "_id": "67cfaf487297384e7c06e8fe", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfaf487297384e7c06e8fa" + }, + { + "_id": "67cfaf487297384e7c06e8ff", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaf487297384e7c06e8fa" + }, + { + "_id": "67cfaf487297384e7c06e900", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67cfaf487297384e7c06e8fa" + }, + { + "_id": "67cfaf487297384e7c06e901", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfaf487297384e7c06e8fa" + }, + { + "_id": "67cfaf487297384e7c06e902", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfaf487297384e7c06e8fa" + }, + { + "_id": "67cfaf487297384e7c06e903", + "_tpl": "5efaf417aeb21837e749c7f2", + "slotId": "mod_handguard", + "parentId": "67cfaf487297384e7c06e8fb" + }, + { + "_id": "67cfaf487297384e7c06e904", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaf487297384e7c06e8fe" + }, + { + "_id": "67cfaf487297384e7c06e905", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67cfaf487297384e7c06e900" + }, + { + "_id": "67cfaf487297384e7c06e906", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67cfaf487297384e7c06e903" + }, + { + "_id": "67cfaf487297384e7c06e907", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cfaf487297384e7c06e905" + } + ] + }, + { + "Id": "67cfaf6f0100185b9527cc0f", + "Name": "supr valday ak74m", + "Root": "67cfaf797297384e7c06f9a4", + "Items": [ + { + "_id": "67cfaf797297384e7c06f9a4", + "_tpl": "5ac4cd105acfc40016339859", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfaf797297384e7c06f9a5", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfaf797297384e7c06f9a4" + }, + { + "_id": "67cfaf797297384e7c06f9a6", + "_tpl": "593d493f86f7745e6b2ceb22", + "slotId": "mod_muzzle", + "parentId": "67cfaf797297384e7c06f9a4" + }, + { + "_id": "67cfaf797297384e7c06f9a7", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfaf797297384e7c06f9a4" + }, + { + "_id": "67cfaf797297384e7c06f9a8", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfaf797297384e7c06f9a4" + }, + { + "_id": "67cfaf797297384e7c06f9a9", + "_tpl": "5ac72e475acfc400180ae6fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaf797297384e7c06f9a4" + }, + { + "_id": "67cfaf797297384e7c06f9aa", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock", + "parentId": "67cfaf797297384e7c06f9a4" + }, + { + "_id": "67cfaf797297384e7c06f9ab", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfaf797297384e7c06f9a4" + }, + { + "_id": "67cfaf797297384e7c06f9ac", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfaf797297384e7c06f9a4" + }, + { + "_id": "67cfaf797297384e7c06f9ad", + "_tpl": "5efaf417aeb21837e749c7f2", + "slotId": "mod_handguard", + "parentId": "67cfaf797297384e7c06f9a5" + }, + { + "_id": "67cfaf797297384e7c06f9ae", + "_tpl": "5c0517910db83400232ffee5", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfaf797297384e7c06f9a8" + }, + { + "_id": "67cfaf797297384e7c06f9af", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67cfaf797297384e7c06f9aa" + }, + { + "_id": "67cfaf797297384e7c06f9b0", + "_tpl": "5c791e872e2216001219c40a", + "slotId": "mod_foregrip", + "parentId": "67cfaf797297384e7c06f9ad" + }, + { + "_id": "67cfaf797297384e7c06f9b1", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cfaf797297384e7c06f9af" + } + ] + }, + { + "Id": "67cfaff50100185b9509ebbb", + "Name": "loud UH1 ak74n", + "Root": "67cfb0007297384e7c072837", + "Items": [ + { + "_id": "67cfb0007297384e7c072837", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb0007297384e7c072838", + "_tpl": "59c6633186f7740cf0493bb9", + "slotId": "mod_gas_block", + "parentId": "67cfb0007297384e7c072837" + }, + { + "_id": "67cfb0007297384e7c072839", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67cfb0007297384e7c072837" + }, + { + "_id": "67cfb0007297384e7c07283a", + "_tpl": "5e2192a498a36665e8337386", + "slotId": "mod_pistol_grip", + "parentId": "67cfb0007297384e7c072837" + }, + { + "_id": "67cfb0007297384e7c07283b", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb0007297384e7c072837" + }, + { + "_id": "67cfb0007297384e7c07283c", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb0007297384e7c072837" + }, + { + "_id": "67cfb0007297384e7c07283d", + "_tpl": "5e217ba4c1434648c13568cd", + "slotId": "mod_stock", + "parentId": "67cfb0007297384e7c072837" + }, + { + "_id": "67cfb0007297384e7c07283e", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67cfb0007297384e7c072837" + }, + { + "_id": "67cfb0007297384e7c07283f", + "_tpl": "5d4aaa54a4b9365392071170", + "slotId": "mod_handguard", + "parentId": "67cfb0007297384e7c072838" + }, + { + "_id": "67cfb0007297384e7c072840", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb0007297384e7c07283b" + }, + { + "_id": "67cfb0007297384e7c072841", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cfb0007297384e7c07283f" + }, + { + "_id": "67cfb0007297384e7c072842", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67cfb0007297384e7c072841" + } + ] + }, + { + "Id": "67cfb1490100185b95832485", + "Name": "supr holo akm", + "Root": "67cfb14f7297384e7c0783b9", + "Items": [ + { + "_id": "67cfb14f7297384e7c0783b9", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb14f7297384e7c0783ba", + "_tpl": "59d64ec286f774171d1e0a42", + "slotId": "mod_gas_block", + "parentId": "67cfb14f7297384e7c0783b9" + }, + { + "_id": "67cfb14f7297384e7c0783bb", + "_tpl": "593d489686f7745c6255d58a", + "slotId": "mod_muzzle", + "parentId": "67cfb14f7297384e7c0783b9" + }, + { + "_id": "67cfb14f7297384e7c0783bc", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb14f7297384e7c0783b9" + }, + { + "_id": "67cfb14f7297384e7c0783bd", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb14f7297384e7c0783b9" + }, + { + "_id": "67cfb14f7297384e7c0783be", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb14f7297384e7c0783b9" + }, + { + "_id": "67cfb14f7297384e7c0783bf", + "_tpl": "5649b0fc4bdc2d17108b4588", + "slotId": "mod_stock", + "parentId": "67cfb14f7297384e7c0783b9" + }, + { + "_id": "67cfb14f7297384e7c0783c0", + "_tpl": "59d6272486f77466146386ff", + "slotId": "mod_magazine", + "parentId": "67cfb14f7297384e7c0783b9" + }, + { + "_id": "67cfb14f7297384e7c0783c1", + "_tpl": "5648ae314bdc2d3d1c8b457f", + "slotId": "mod_handguard", + "parentId": "67cfb14f7297384e7c0783ba" + }, + { + "_id": "67cfb14f7297384e7c0783c2", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb14f7297384e7c0783bd" + }, + { + "_id": "67cfb14f7297384e7c0783c3", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cfb14f7297384e7c0783bf" + }, + { + "_id": "67cfb14f7297384e7c0783c4", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67cfb14f7297384e7c0783c1" + }, + { + "_id": "67cfb14f7297384e7c0783c5", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb14f7297384e7c0783c1" + } + ] + }, + { + "Id": "67cfb1830100185b959546dc", + "Name": "loud dp akm", + "Root": "67cfb18a7297384e7c07921c", + "Items": [ + { + "_id": "67cfb18a7297384e7c07921c", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb18a7297384e7c07921d", + "_tpl": "59d64ec286f774171d1e0a42", + "slotId": "mod_gas_block", + "parentId": "67cfb18a7297384e7c07921c" + }, + { + "_id": "67cfb18a7297384e7c07921e", + "_tpl": "5cc9ad73d7f00c000e2579d4", + "slotId": "mod_muzzle", + "parentId": "67cfb18a7297384e7c07921c" + }, + { + "_id": "67cfb18a7297384e7c07921f", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb18a7297384e7c07921c" + }, + { + "_id": "67cfb18a7297384e7c079220", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb18a7297384e7c07921c" + }, + { + "_id": "67cfb18a7297384e7c079221", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb18a7297384e7c07921c" + }, + { + "_id": "67cfb18a7297384e7c079222", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67cfb18a7297384e7c07921c" + }, + { + "_id": "67cfb18a7297384e7c079223", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cfb18a7297384e7c07921c" + }, + { + "_id": "67cfb18a7297384e7c079224", + "_tpl": "647dba3142c479dde701b654", + "slotId": "mod_handguard", + "parentId": "67cfb18a7297384e7c07921d" + }, + { + "_id": "67cfb18a7297384e7c079225", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67cfb18a7297384e7c079220" + }, + { + "_id": "67cfb18a7297384e7c079226", + "_tpl": "5c1bc7752e221602b1779b34", + "slotId": "mod_foregrip", + "parentId": "67cfb18a7297384e7c079224" + }, + { + "_id": "67cfb18a7297384e7c079227", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb18a7297384e7c079225" + } + ] + }, + { + "Id": "67cfb19d0100185b953179f8", + "Name": "loud holo akm", + "Root": "67cfb1a17297384e7c07922e", + "Items": [ + { + "_id": "67cfb1a17297384e7c07922e", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb1a17297384e7c07922f", + "_tpl": "59d64ec286f774171d1e0a42", + "slotId": "mod_gas_block", + "parentId": "67cfb1a17297384e7c07922e" + }, + { + "_id": "67cfb1a17297384e7c079230", + "_tpl": "5cc9ad73d7f00c000e2579d4", + "slotId": "mod_muzzle", + "parentId": "67cfb1a17297384e7c07922e" + }, + { + "_id": "67cfb1a17297384e7c079231", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb1a17297384e7c07922e" + }, + { + "_id": "67cfb1a17297384e7c079232", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb1a17297384e7c07922e" + }, + { + "_id": "67cfb1a17297384e7c079233", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb1a17297384e7c07922e" + }, + { + "_id": "67cfb1a17297384e7c079234", + "_tpl": "5b04473a5acfc40018632f70", + "slotId": "mod_stock", + "parentId": "67cfb1a17297384e7c07922e" + }, + { + "_id": "67cfb1a17297384e7c079235", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cfb1a17297384e7c07922e" + }, + { + "_id": "67cfb1a17297384e7c079236", + "_tpl": "647dba3142c479dde701b654", + "slotId": "mod_handguard", + "parentId": "67cfb1a17297384e7c07922f" + }, + { + "_id": "67cfb1a17297384e7c079237", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb1a17297384e7c079232" + }, + { + "_id": "67cfb1a17297384e7c079238", + "_tpl": "5c1bc7752e221602b1779b34", + "slotId": "mod_foregrip", + "parentId": "67cfb1a17297384e7c079236" + } + ] + }, + { + "Id": "67cfb1c90100185b956e5b68", + "Name": "supr specter akm", + "Root": "67cfb1d17297384e7c07a07f", + "Items": [ + { + "_id": "67cfb1d17297384e7c07a07f", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb1d17297384e7c07a080", + "_tpl": "59d64ec286f774171d1e0a42", + "slotId": "mod_gas_block", + "parentId": "67cfb1d17297384e7c07a07f" + }, + { + "_id": "67cfb1d17297384e7c07a081", + "_tpl": "5a9fbacda2750c00141e080f", + "slotId": "mod_muzzle", + "parentId": "67cfb1d17297384e7c07a07f" + }, + { + "_id": "67cfb1d17297384e7c07a082", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb1d17297384e7c07a07f" + }, + { + "_id": "67cfb1d17297384e7c07a083", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb1d17297384e7c07a07f" + }, + { + "_id": "67cfb1d17297384e7c07a084", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb1d17297384e7c07a07f" + }, + { + "_id": "67cfb1d17297384e7c07a085", + "_tpl": "5b04473a5acfc40018632f70", + "slotId": "mod_stock", + "parentId": "67cfb1d17297384e7c07a07f" + }, + { + "_id": "67cfb1d17297384e7c07a086", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cfb1d17297384e7c07a07f" + }, + { + "_id": "67cfb1d17297384e7c07a087", + "_tpl": "647dba3142c479dde701b654", + "slotId": "mod_handguard", + "parentId": "67cfb1d17297384e7c07a080" + }, + { + "_id": "67cfb1d17297384e7c07a088", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb1d17297384e7c07a083" + }, + { + "_id": "67cfb1d17297384e7c07a089", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfb1d17297384e7c07a087" + } + ] + }, + { + "Id": "67cfb22d0100185b958368de", + "Name": "supr pk120 akm", + "Root": "67cfb2337297384e7c07bd04", + "Items": [ + { + "_id": "67cfb2337297384e7c07bd04", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb2337297384e7c07bd05", + "_tpl": "59d64ec286f774171d1e0a42", + "slotId": "mod_gas_block", + "parentId": "67cfb2337297384e7c07bd04" + }, + { + "_id": "67cfb2337297384e7c07bd06", + "_tpl": "5a0d63621526d8dba31fe3bf", + "slotId": "mod_muzzle", + "parentId": "67cfb2337297384e7c07bd04" + }, + { + "_id": "67cfb2337297384e7c07bd07", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb2337297384e7c07bd04" + }, + { + "_id": "67cfb2337297384e7c07bd08", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb2337297384e7c07bd04" + }, + { + "_id": "67cfb2337297384e7c07bd09", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb2337297384e7c07bd04" + }, + { + "_id": "67cfb2337297384e7c07bd0a", + "_tpl": "5649b1c04bdc2d16268b457c", + "slotId": "mod_stock", + "parentId": "67cfb2337297384e7c07bd04" + }, + { + "_id": "67cfb2337297384e7c07bd0b", + "_tpl": "59d625f086f774661516605d", + "slotId": "mod_magazine", + "parentId": "67cfb2337297384e7c07bd04" + }, + { + "_id": "67cfb2337297384e7c07bd0c", + "_tpl": "5d2c829448f0353a5c7d6674", + "slotId": "mod_handguard", + "parentId": "67cfb2337297384e7c07bd05" + }, + { + "_id": "67cfb2337297384e7c07bd0d", + "_tpl": "5c0505e00db834001b735073", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb2337297384e7c07bd08" + }, + { + "_id": "67cfb2337297384e7c07bd0e", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cfb2337297384e7c07bd0a" + } + ] + }, + { + "Id": "67cfb2a20100185b95a05dcf", + "Name": "loud ekp akms", + "Root": "67cfb2aa7297384e7c07d8b8", + "Items": [ + { + "_id": "67cfb2aa7297384e7c07d8b8", + "_tpl": "59ff346386f77477562ff5e2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb2aa7297384e7c07d8b9", + "_tpl": "59d64ec286f774171d1e0a42", + "slotId": "mod_gas_block", + "parentId": "67cfb2aa7297384e7c07d8b8" + }, + { + "_id": "67cfb2aa7297384e7c07d8ba", + "_tpl": "5c7951452e221644f31bfd5c", + "slotId": "mod_muzzle", + "parentId": "67cfb2aa7297384e7c07d8b8" + }, + { + "_id": "67cfb2aa7297384e7c07d8bb", + "_tpl": "5947fa2486f77425b47c1a9b", + "slotId": "mod_pistol_grip_akms", + "parentId": "67cfb2aa7297384e7c07d8b8" + }, + { + "_id": "67cfb2aa7297384e7c07d8bc", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb2aa7297384e7c07d8b8" + }, + { + "_id": "67cfb2aa7297384e7c07d8bd", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb2aa7297384e7c07d8b8" + }, + { + "_id": "67cfb2aa7297384e7c07d8be", + "_tpl": "59ff3b6a86f77477562ff5ed", + "slotId": "mod_stock_akms", + "parentId": "67cfb2aa7297384e7c07d8b8" + }, + { + "_id": "67cfb2aa7297384e7c07d8bf", + "_tpl": "59fafc9386f774067d462453", + "slotId": "mod_magazine", + "parentId": "67cfb2aa7297384e7c07d8b8" + }, + { + "_id": "67cfb2aa7297384e7c07d8c0", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb2aa7297384e7c07d8b8" + }, + { + "_id": "67cfb2aa7297384e7c07d8c1", + "_tpl": "57cffddc24597763133760c6", + "slotId": "mod_handguard", + "parentId": "67cfb2aa7297384e7c07d8b9" + }, + { + "_id": "67cfb2aa7297384e7c07d8c2", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb2aa7297384e7c07d8bc" + }, + { + "_id": "67cfb2aa7297384e7c07d8c3", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cfb2aa7297384e7c07d8be" + } + ] + }, + { + "Id": "67cfb30f0100185b95bdf7bc", + "Name": "loud ass akms", + "Root": "67cfb3177297384e7c0804de", + "Items": [ + { + "_id": "67cfb3177297384e7c0804de", + "_tpl": "59ff346386f77477562ff5e2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb3177297384e7c0804df", + "_tpl": "59d64ec286f774171d1e0a42", + "slotId": "mod_gas_block", + "parentId": "67cfb3177297384e7c0804de" + }, + { + "_id": "67cfb3177297384e7c0804e0", + "_tpl": "59e6318286f77444dd62c4cc", + "slotId": "mod_pistol_grip_akms", + "parentId": "67cfb3177297384e7c0804de" + }, + { + "_id": "67cfb3177297384e7c0804e1", + "_tpl": "59d6507c86f7741b846413a2", + "slotId": "mod_reciever", + "parentId": "67cfb3177297384e7c0804de" + }, + { + "_id": "67cfb3177297384e7c0804e2", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb3177297384e7c0804de" + }, + { + "_id": "67cfb3177297384e7c0804e3", + "_tpl": "59ff3b6a86f77477562ff5ed", + "slotId": "mod_stock_akms", + "parentId": "67cfb3177297384e7c0804de" + }, + { + "_id": "67cfb3177297384e7c0804e4", + "_tpl": "59e5f5a486f7746c530b3ce2", + "slotId": "mod_magazine", + "parentId": "67cfb3177297384e7c0804de" + }, + { + "_id": "67cfb3177297384e7c0804e5", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb3177297384e7c0804de" + }, + { + "_id": "67cfb3177297384e7c0804e6", + "_tpl": "5d2c829448f0353a5c7d6674", + "slotId": "mod_handguard", + "parentId": "67cfb3177297384e7c0804df" + }, + { + "_id": "67cfb3177297384e7c0804e7", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cfb3177297384e7c0804e3" + } + ] + }, + { + "Id": "67cfb5b70100185b951b740e", + "Name": "loud pixi aks74u", + "Root": "67cfb5c47297384e7c08c5fa", + "Items": [ + { + "_id": "67cfb5c47297384e7c08c5fa", + "_tpl": "57dc2fa62459775949412633", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb5c47297384e7c08c5fb", + "_tpl": "57e3dba62459770f0c32322b", + "slotId": "mod_pistol_grip", + "parentId": "67cfb5c47297384e7c08c5fa" + }, + { + "_id": "67cfb5c47297384e7c08c5fc", + "_tpl": "57dc347d245977596754e7a1", + "slotId": "mod_stock", + "parentId": "67cfb5c47297384e7c08c5fa" + }, + { + "_id": "67cfb5c47297384e7c08c5fd", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfb5c47297384e7c08c5fa" + }, + { + "_id": "67cfb5c47297384e7c08c5fe", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67cfb5c47297384e7c08c5fa" + }, + { + "_id": "67cfb5c47297384e7c08c5ff", + "_tpl": "57dc334d245977597164366f", + "slotId": "mod_reciever", + "parentId": "67cfb5c47297384e7c08c5fa" + }, + { + "_id": "67cfb5c47297384e7c08c600", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67cfb5c47297384e7c08c5fa" + }, + { + "_id": "67cfb5c47297384e7c08c601", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cfb5c47297384e7c08c5fc" + }, + { + "_id": "67cfb5c47297384e7c08c602", + "_tpl": "57ffb0062459777a045af529", + "slotId": "mod_mount_000", + "parentId": "67cfb5c47297384e7c08c5ff" + }, + { + "_id": "67cfb5c47297384e7c08c603", + "_tpl": "57ffa9f4245977728561e844", + "slotId": "mod_handguard", + "parentId": "67cfb5c47297384e7c08c600" + }, + { + "_id": "67cfb5c47297384e7c08c604", + "_tpl": "584984812459776a704a82a6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb5c47297384e7c08c602" + }, + { + "_id": "67cfb5c47297384e7c08c605", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cfb5c47297384e7c08c603" + }, + { + "_id": "67cfb5c47297384e7c08c606", + "_tpl": "560d657b4bdc2da74d8b4572", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb5c47297384e7c08c603" + } + ] + }, + { + "Id": "67cfb5eb0100185b95564ab7", + "Name": "loud holo aks74u", + "Root": "67cfb5ef7297384e7c08d555", + "Items": [ + { + "_id": "67cfb5ef7297384e7c08d555", + "_tpl": "57dc2fa62459775949412633", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb5ef7297384e7c08d556", + "_tpl": "57e3dba62459770f0c32322b", + "slotId": "mod_pistol_grip", + "parentId": "67cfb5ef7297384e7c08d555" + }, + { + "_id": "67cfb5ef7297384e7c08d557", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67cfb5ef7297384e7c08d555" + }, + { + "_id": "67cfb5ef7297384e7c08d558", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfb5ef7297384e7c08d555" + }, + { + "_id": "67cfb5ef7297384e7c08d559", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67cfb5ef7297384e7c08d555" + }, + { + "_id": "67cfb5ef7297384e7c08d55a", + "_tpl": "57dc334d245977597164366f", + "slotId": "mod_reciever", + "parentId": "67cfb5ef7297384e7c08d555" + }, + { + "_id": "67cfb5ef7297384e7c08d55b", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67cfb5ef7297384e7c08d555" + }, + { + "_id": "67cfb5ef7297384e7c08d55c", + "_tpl": "5b222d405acfc400153af4fe", + "slotId": "mod_stock", + "parentId": "67cfb5ef7297384e7c08d557" + }, + { + "_id": "67cfb5ef7297384e7c08d55d", + "_tpl": "57ffb0062459777a045af529", + "slotId": "mod_mount_000", + "parentId": "67cfb5ef7297384e7c08d55a" + }, + { + "_id": "67cfb5ef7297384e7c08d55e", + "_tpl": "57ffa9f4245977728561e844", + "slotId": "mod_handguard", + "parentId": "67cfb5ef7297384e7c08d55b" + }, + { + "_id": "67cfb5ef7297384e7c08d55f", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb5ef7297384e7c08d55d" + }, + { + "_id": "67cfb5ef7297384e7c08d560", + "_tpl": "5c1bc5fb2e221602b1779b32", + "slotId": "mod_foregrip", + "parentId": "67cfb5ef7297384e7c08d55e" + }, + { + "_id": "67cfb5ef7297384e7c08d561", + "_tpl": "560d657b4bdc2da74d8b4572", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb5ef7297384e7c08d55e" + } + ] + }, + { + "Id": "67cfb6180100185b95f2bf0c", + "Name": "loud holo aks74u v2", + "Root": "67cfb6357297384e7c08f44f", + "Items": [ + { + "_id": "67cfb6357297384e7c08f44f", + "_tpl": "57dc2fa62459775949412633", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb6357297384e7c08f450", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb6357297384e7c08f44f" + }, + { + "_id": "67cfb6357297384e7c08f451", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67cfb6357297384e7c08f44f" + }, + { + "_id": "67cfb6357297384e7c08f452", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb6357297384e7c08f44f" + }, + { + "_id": "67cfb6357297384e7c08f453", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67cfb6357297384e7c08f44f" + }, + { + "_id": "67cfb6357297384e7c08f454", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67cfb6357297384e7c08f44f" + }, + { + "_id": "67cfb6357297384e7c08f455", + "_tpl": "655cb6b5d680a544f30607fa", + "slotId": "mod_reciever", + "parentId": "67cfb6357297384e7c08f44f" + }, + { + "_id": "67cfb6357297384e7c08f456", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67cfb6357297384e7c08f44f" + }, + { + "_id": "67cfb6357297384e7c08f457", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfb6357297384e7c08f451" + }, + { + "_id": "67cfb6357297384e7c08f458", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb6357297384e7c08f455" + }, + { + "_id": "67cfb6357297384e7c08f459", + "_tpl": "57ffa9f4245977728561e844", + "slotId": "mod_handguard", + "parentId": "67cfb6357297384e7c08f456" + }, + { + "_id": "67cfb6357297384e7c08f45a", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfb6357297384e7c08f459" + }, + { + "_id": "67cfb6357297384e7c08f45b", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb6357297384e7c08f459" + } + ] + }, + { + "Id": "67cfb67c0100185b9549f860", + "Name": "supr holo aks74u", + "Root": "67cfb6847297384e7c090320", + "Items": [ + { + "_id": "67cfb6847297384e7c090320", + "_tpl": "57dc2fa62459775949412633", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb6847297384e7c090321", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb6847297384e7c090320" + }, + { + "_id": "67cfb6847297384e7c090322", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67cfb6847297384e7c090320" + }, + { + "_id": "67cfb6847297384e7c090323", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb6847297384e7c090320" + }, + { + "_id": "67cfb6847297384e7c090324", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67cfb6847297384e7c090320" + }, + { + "_id": "67cfb6847297384e7c090325", + "_tpl": "5e21ca18e4d47f0da15e77dd", + "slotId": "mod_muzzle", + "parentId": "67cfb6847297384e7c090320" + }, + { + "_id": "67cfb6847297384e7c090326", + "_tpl": "57dc334d245977597164366f", + "slotId": "mod_reciever", + "parentId": "67cfb6847297384e7c090320" + }, + { + "_id": "67cfb6847297384e7c090327", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67cfb6847297384e7c090320" + }, + { + "_id": "67cfb6847297384e7c090328", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfb6847297384e7c090322" + }, + { + "_id": "67cfb6847297384e7c090329", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67cfb6847297384e7c090325" + }, + { + "_id": "67cfb6847297384e7c09032a", + "_tpl": "5a957c3fa2750c00137fa5f7", + "slotId": "mod_handguard", + "parentId": "67cfb6847297384e7c090327" + }, + { + "_id": "67cfb6847297384e7c09032b", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67cfb6847297384e7c090329" + }, + { + "_id": "67cfb6847297384e7c09032c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb6847297384e7c09032a" + }, + { + "_id": "67cfb6847297384e7c09032d", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb6847297384e7c09032a" + } + ] + }, + { + "Id": "67cfb6e40100185b956873b2", + "Name": "supr kobra 74ub", + "Root": "67cfb6ec7297384e7c092191", + "Items": [ + { + "_id": "67cfb6ec7297384e7c092191", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb6ec7297384e7c092192", + "_tpl": "5649ad3f4bdc2df8348b4585", + "slotId": "mod_pistol_grip", + "parentId": "67cfb6ec7297384e7c092191" + }, + { + "_id": "67cfb6ec7297384e7c092193", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67cfb6ec7297384e7c092191" + }, + { + "_id": "67cfb6ec7297384e7c092194", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb6ec7297384e7c092191" + }, + { + "_id": "67cfb6ec7297384e7c092195", + "_tpl": "564ca99c4bdc2d16268b4589", + "slotId": "mod_magazine", + "parentId": "67cfb6ec7297384e7c092191" + }, + { + "_id": "67cfb6ec7297384e7c092196", + "_tpl": "57ffb0e42459777d047111c5", + "slotId": "mod_muzzle", + "parentId": "67cfb6ec7297384e7c092191" + }, + { + "_id": "67cfb6ec7297384e7c092197", + "_tpl": "5839a7742459773cf9693481", + "slotId": "mod_reciever", + "parentId": "67cfb6ec7297384e7c092191" + }, + { + "_id": "67cfb6ec7297384e7c092198", + "_tpl": "5947db3f86f77447880cf76f", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb6ec7297384e7c092191" + }, + { + "_id": "67cfb6ec7297384e7c092199", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67cfb6ec7297384e7c092191" + }, + { + "_id": "67cfb6ec7297384e7c09219a", + "_tpl": "5b222d405acfc400153af4fe", + "slotId": "mod_stock", + "parentId": "67cfb6ec7297384e7c092193" + }, + { + "_id": "67cfb6ec7297384e7c09219b", + "_tpl": "57ffa9f4245977728561e844", + "slotId": "mod_handguard", + "parentId": "67cfb6ec7297384e7c092199" + }, + { + "_id": "67cfb6ec7297384e7c09219c", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfb6ec7297384e7c09219b" + }, + { + "_id": "67cfb6ec7297384e7c09219d", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb6ec7297384e7c09219b" + } + ] + }, + { + "Id": "67cfb7200100185b954621df", + "Name": "loud okp 74ub", + "Root": "67cfb7287297384e7c09319a", + "Items": [ + { + "_id": "67cfb7287297384e7c09319a", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb7287297384e7c09319b", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb7287297384e7c09319a" + }, + { + "_id": "67cfb7287297384e7c09319c", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67cfb7287297384e7c09319a" + }, + { + "_id": "67cfb7287297384e7c09319d", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb7287297384e7c09319a" + }, + { + "_id": "67cfb7287297384e7c09319e", + "_tpl": "564ca99c4bdc2d16268b4589", + "slotId": "mod_magazine", + "parentId": "67cfb7287297384e7c09319a" + }, + { + "_id": "67cfb7287297384e7c09319f", + "_tpl": "5cc9a96cd7f00c011c04e04a", + "slotId": "mod_muzzle", + "parentId": "67cfb7287297384e7c09319a" + }, + { + "_id": "67cfb7287297384e7c0931a0", + "_tpl": "5839a7742459773cf9693481", + "slotId": "mod_reciever", + "parentId": "67cfb7287297384e7c09319a" + }, + { + "_id": "67cfb7287297384e7c0931a1", + "_tpl": "63d114019e35b334d82302f7", + "slotId": "mod_mount_000", + "parentId": "67cfb7287297384e7c09319a" + }, + { + "_id": "67cfb7287297384e7c0931a2", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67cfb7287297384e7c09319a" + }, + { + "_id": "67cfb7287297384e7c0931a3", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfb7287297384e7c09319c" + }, + { + "_id": "67cfb7287297384e7c0931a4", + "_tpl": "570fd79bd2720bc7458b4583", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb7287297384e7c0931a1" + }, + { + "_id": "67cfb7287297384e7c0931a5", + "_tpl": "57ffa9f4245977728561e844", + "slotId": "mod_handguard", + "parentId": "67cfb7287297384e7c0931a2" + }, + { + "_id": "67cfb7287297384e7c0931a6", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67cfb7287297384e7c0931a5" + }, + { + "_id": "67cfb7287297384e7c0931a7", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb7287297384e7c0931a5" + } + ] + }, + { + "Id": "67cfb7850100185b95e3ffc6", + "Name": "supr UH1 74ub", + "Root": "67cfb78e7297384e7c095077", + "Items": [ + { + "_id": "67cfb78e7297384e7c095077", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb78e7297384e7c095078", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb78e7297384e7c095077" + }, + { + "_id": "67cfb78e7297384e7c095079", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67cfb78e7297384e7c095077" + }, + { + "_id": "67cfb78e7297384e7c09507a", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb78e7297384e7c095077" + }, + { + "_id": "67cfb78e7297384e7c09507b", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67cfb78e7297384e7c095077" + }, + { + "_id": "67cfb78e7297384e7c09507c", + "_tpl": "593d493f86f7745e6b2ceb22", + "slotId": "mod_muzzle", + "parentId": "67cfb78e7297384e7c095077" + }, + { + "_id": "67cfb78e7297384e7c09507d", + "_tpl": "5839a7742459773cf9693481", + "slotId": "mod_reciever", + "parentId": "67cfb78e7297384e7c095077" + }, + { + "_id": "67cfb78e7297384e7c09507e", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67cfb78e7297384e7c095077" + }, + { + "_id": "67cfb78e7297384e7c09507f", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfb78e7297384e7c095079" + }, + { + "_id": "67cfb78e7297384e7c095080", + "_tpl": "5a957c3fa2750c00137fa5f7", + "slotId": "mod_handguard", + "parentId": "67cfb78e7297384e7c09507e" + }, + { + "_id": "67cfb78e7297384e7c095081", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb78e7297384e7c095080" + }, + { + "_id": "67cfb78e7297384e7c095082", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb78e7297384e7c095080" + } + ] + }, + { + "Id": "67cfb7a40100185b95628e0a", + "Name": "supr holo 74ub", + "Root": "67cfb7aa7297384e7c096089", + "Items": [ + { + "_id": "67cfb7aa7297384e7c096089", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb7aa7297384e7c09608a", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb7aa7297384e7c096089" + }, + { + "_id": "67cfb7aa7297384e7c09608b", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67cfb7aa7297384e7c096089" + }, + { + "_id": "67cfb7aa7297384e7c09608c", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb7aa7297384e7c096089" + }, + { + "_id": "67cfb7aa7297384e7c09608d", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67cfb7aa7297384e7c096089" + }, + { + "_id": "67cfb7aa7297384e7c09608e", + "_tpl": "615d8f5dd92c473c770212ef", + "slotId": "mod_muzzle", + "parentId": "67cfb7aa7297384e7c096089" + }, + { + "_id": "67cfb7aa7297384e7c09608f", + "_tpl": "5839a7742459773cf9693481", + "slotId": "mod_reciever", + "parentId": "67cfb7aa7297384e7c096089" + }, + { + "_id": "67cfb7aa7297384e7c096090", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67cfb7aa7297384e7c096089" + }, + { + "_id": "67cfb7aa7297384e7c096091", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfb7aa7297384e7c09608b" + }, + { + "_id": "67cfb7aa7297384e7c096092", + "_tpl": "615d8f8567085e45ef1409ca", + "slotId": "mod_muzzle", + "parentId": "67cfb7aa7297384e7c09608e" + }, + { + "_id": "67cfb7aa7297384e7c096093", + "_tpl": "5a957c3fa2750c00137fa5f7", + "slotId": "mod_handguard", + "parentId": "67cfb7aa7297384e7c096090" + }, + { + "_id": "67cfb7aa7297384e7c096094", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb7aa7297384e7c096093" + }, + { + "_id": "67cfb7aa7297384e7c096095", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb7aa7297384e7c096093" + } + ] + }, + { + "Id": "67cfb7ec0100185b950a16c6", + "Name": "supr BigAhhScope 74ub", + "Root": "67cfb7f87297384e7c097f3f", + "Items": [ + { + "_id": "67cfb7f87297384e7c097f3f", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb7f87297384e7c097f40", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb7f87297384e7c097f3f" + }, + { + "_id": "67cfb7f87297384e7c097f41", + "_tpl": "59ecc28286f7746d7a68aa8c", + "slotId": "mod_stock", + "parentId": "67cfb7f87297384e7c097f3f" + }, + { + "_id": "67cfb7f87297384e7c097f42", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb7f87297384e7c097f3f" + }, + { + "_id": "67cfb7f87297384e7c097f43", + "_tpl": "5cbdaf89ae9215000e5b9c94", + "slotId": "mod_magazine", + "parentId": "67cfb7f87297384e7c097f3f" + }, + { + "_id": "67cfb7f87297384e7c097f44", + "_tpl": "57ffb0e42459777d047111c5", + "slotId": "mod_muzzle", + "parentId": "67cfb7f87297384e7c097f3f" + }, + { + "_id": "67cfb7f87297384e7c097f45", + "_tpl": "57dc334d245977597164366f", + "slotId": "mod_reciever", + "parentId": "67cfb7f87297384e7c097f3f" + }, + { + "_id": "67cfb7f87297384e7c097f46", + "_tpl": "5a7c74b3e899ef0014332c29", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb7f87297384e7c097f3f" + }, + { + "_id": "67cfb7f87297384e7c097f47", + "_tpl": "59d36a0086f7747e673f3946", + "slotId": "mod_gas_block", + "parentId": "67cfb7f87297384e7c097f3f" + }, + { + "_id": "67cfb7f87297384e7c097f48", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67cfb7f87297384e7c097f41" + }, + { + "_id": "67cfb7f87297384e7c097f49", + "_tpl": "57ffa9f4245977728561e844", + "slotId": "mod_handguard", + "parentId": "67cfb7f87297384e7c097f47" + }, + { + "_id": "67cfb7f87297384e7c097f4a", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67cfb7f87297384e7c097f49" + }, + { + "_id": "67cfb7f87297384e7c097f4b", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb7f87297384e7c097f49" + } + ] + }, + { + "Id": "67cfb9240100185b953d30e8", + "Name": "loud okp rd704", + "Root": "67cfb9487297384e7c09dfe4", + "Items": [ + { + "_id": "67cfb9487297384e7c09dfe4", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb9487297384e7c09dfe5", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67cfb9487297384e7c09dfe4" + }, + { + "_id": "67cfb9487297384e7c09dfe6", + "_tpl": "5cdd7693d7f00c0010373aa5", + "slotId": "mod_muzzle", + "parentId": "67cfb9487297384e7c09dfe4" + }, + { + "_id": "67cfb9487297384e7c09dfe7", + "_tpl": "628a664bccaab13006640e47", + "slotId": "mod_pistol_grip", + "parentId": "67cfb9487297384e7c09dfe4" + }, + { + "_id": "67cfb9487297384e7c09dfe8", + "_tpl": "628a665a86cbd9750d2ff5e5", + "slotId": "mod_reciever", + "parentId": "67cfb9487297384e7c09dfe4" + }, + { + "_id": "67cfb9487297384e7c09dfe9", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9487297384e7c09dfe4" + }, + { + "_id": "67cfb9487297384e7c09dfea", + "_tpl": "628a6678ccaab13006640e49", + "slotId": "mod_stock_000", + "parentId": "67cfb9487297384e7c09dfe4" + }, + { + "_id": "67cfb9487297384e7c09dfeb", + "_tpl": "59d6272486f77466146386ff", + "slotId": "mod_magazine", + "parentId": "67cfb9487297384e7c09dfe4" + }, + { + "_id": "67cfb9487297384e7c09dfec", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9487297384e7c09dfe4" + }, + { + "_id": "67cfb9487297384e7c09dfed", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67cfb9487297384e7c09dfe5" + }, + { + "_id": "67cfb9487297384e7c09dfee", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67cfb9487297384e7c09dfe5" + }, + { + "_id": "67cfb9487297384e7c09dfef", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67cfb9487297384e7c09dfea" + }, + { + "_id": "67cfb9487297384e7c09dff0", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb9487297384e7c09dfed" + }, + { + "_id": "67cfb9487297384e7c09dff1", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67cfb9487297384e7c09dfef" + }, + { + "_id": "67cfb9487297384e7c09dff2", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cfb9487297384e7c09dff1" + } + ] + }, + { + "Id": "67cfb9710100185b95fb54ed", + "Name": "supr hamr rd704", + "Root": "67cfb9777297384e7c09ef40", + "Items": [ + { + "_id": "67cfb9777297384e7c09ef40", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb9777297384e7c09ef41", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67cfb9777297384e7c09ef40" + }, + { + "_id": "67cfb9777297384e7c09ef42", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67cfb9777297384e7c09ef40" + }, + { + "_id": "67cfb9777297384e7c09ef43", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb9777297384e7c09ef40" + }, + { + "_id": "67cfb9777297384e7c09ef44", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb9777297384e7c09ef40" + }, + { + "_id": "67cfb9777297384e7c09ef45", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9777297384e7c09ef40" + }, + { + "_id": "67cfb9777297384e7c09ef46", + "_tpl": "628a6678ccaab13006640e49", + "slotId": "mod_stock_000", + "parentId": "67cfb9777297384e7c09ef40" + }, + { + "_id": "67cfb9777297384e7c09ef47", + "_tpl": "59d6272486f77466146386ff", + "slotId": "mod_magazine", + "parentId": "67cfb9777297384e7c09ef40" + }, + { + "_id": "67cfb9777297384e7c09ef48", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb9777297384e7c09ef40" + }, + { + "_id": "67cfb9777297384e7c09ef49", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67cfb9777297384e7c09ef41" + }, + { + "_id": "67cfb9777297384e7c09ef4a", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67cfb9777297384e7c09ef41" + }, + { + "_id": "67cfb9777297384e7c09ef4b", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9777297384e7c09ef44" + }, + { + "_id": "67cfb9777297384e7c09ef4c", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67cfb9777297384e7c09ef46" + }, + { + "_id": "67cfb9777297384e7c09ef4d", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb9777297384e7c09ef49" + }, + { + "_id": "67cfb9777297384e7c09ef4e", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9777297384e7c09ef4b" + }, + { + "_id": "67cfb9777297384e7c09ef4f", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67cfb9777297384e7c09ef4c" + }, + { + "_id": "67cfb9777297384e7c09ef50", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cfb9777297384e7c09ef4f" + } + ] + }, + { + "Id": "67cfb9a30100185b95e37be6", + "Name": "supr holo rd704", + "Root": "67cfb9a97297384e7c09feb8", + "Items": [ + { + "_id": "67cfb9a97297384e7c09feb8", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb9a97297384e7c09feb9", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67cfb9a97297384e7c09feb8" + }, + { + "_id": "67cfb9a97297384e7c09feba", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67cfb9a97297384e7c09feb8" + }, + { + "_id": "67cfb9a97297384e7c09febb", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb9a97297384e7c09feb8" + }, + { + "_id": "67cfb9a97297384e7c09febc", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb9a97297384e7c09feb8" + }, + { + "_id": "67cfb9a97297384e7c09febd", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9a97297384e7c09feb8" + }, + { + "_id": "67cfb9a97297384e7c09febe", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock_000", + "parentId": "67cfb9a97297384e7c09feb8" + }, + { + "_id": "67cfb9a97297384e7c09febf", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cfb9a97297384e7c09feb8" + }, + { + "_id": "67cfb9a97297384e7c09fec0", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb9a97297384e7c09feb8" + }, + { + "_id": "67cfb9a97297384e7c09fec1", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67cfb9a97297384e7c09feb9" + }, + { + "_id": "67cfb9a97297384e7c09fec2", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cfb9a97297384e7c09feb9" + }, + { + "_id": "67cfb9a97297384e7c09fec3", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9a97297384e7c09febc" + }, + { + "_id": "67cfb9a97297384e7c09fec4", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb9a97297384e7c09fec1" + }, + { + "_id": "67cfb9a97297384e7c09fec5", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfb9a97297384e7c09fec2" + } + ] + }, + { + "Id": "67cfb9ba0100185b95160350", + "Name": "supr holo rd704 v2", + "Root": "67cfb9bd7297384e7c0a0dd0", + "Items": [ + { + "_id": "67cfb9bd7297384e7c0a0dd0", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb9bd7297384e7c0a0dd1", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67cfb9bd7297384e7c0a0dd0" + }, + { + "_id": "67cfb9bd7297384e7c0a0dd2", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67cfb9bd7297384e7c0a0dd0" + }, + { + "_id": "67cfb9bd7297384e7c0a0dd3", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb9bd7297384e7c0a0dd0" + }, + { + "_id": "67cfb9bd7297384e7c0a0dd4", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb9bd7297384e7c0a0dd0" + }, + { + "_id": "67cfb9bd7297384e7c0a0dd5", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9bd7297384e7c0a0dd0" + }, + { + "_id": "67cfb9bd7297384e7c0a0dd6", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock_000", + "parentId": "67cfb9bd7297384e7c0a0dd0" + }, + { + "_id": "67cfb9bd7297384e7c0a0dd7", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cfb9bd7297384e7c0a0dd0" + }, + { + "_id": "67cfb9bd7297384e7c0a0dd8", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb9bd7297384e7c0a0dd0" + }, + { + "_id": "67cfb9bd7297384e7c0a0dd9", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67cfb9bd7297384e7c0a0dd1" + }, + { + "_id": "67cfb9bd7297384e7c0a0dda", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cfb9bd7297384e7c0a0dd1" + }, + { + "_id": "67cfb9bd7297384e7c0a0ddb", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67cfb9bd7297384e7c0a0dd2" + }, + { + "_id": "67cfb9bd7297384e7c0a0ddc", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9bd7297384e7c0a0dd4" + }, + { + "_id": "67cfb9bd7297384e7c0a0ddd", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb9bd7297384e7c0a0dd9" + }, + { + "_id": "67cfb9bd7297384e7c0a0dde", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfb9bd7297384e7c0a0dda" + } + ] + }, + { + "Id": "67cfb9de0100185b95b75ef4", + "Name": "loud 2x rd704", + "Root": "67cfb9e57297384e7c0a0ded", + "Items": [ + { + "_id": "67cfb9e57297384e7c0a0ded", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfb9e57297384e7c0a0dee", + "_tpl": "628a83c29179c324ed269508", + "slotId": "mod_gas_block", + "parentId": "67cfb9e57297384e7c0a0ded" + }, + { + "_id": "67cfb9e57297384e7c0a0def", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67cfb9e57297384e7c0a0ded" + }, + { + "_id": "67cfb9e57297384e7c0a0df0", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67cfb9e57297384e7c0a0ded" + }, + { + "_id": "67cfb9e57297384e7c0a0df1", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cfb9e57297384e7c0a0ded" + }, + { + "_id": "67cfb9e57297384e7c0a0df2", + "_tpl": "628a7b23b0f75035732dd565", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9e57297384e7c0a0ded" + }, + { + "_id": "67cfb9e57297384e7c0a0df3", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock_000", + "parentId": "67cfb9e57297384e7c0a0ded" + }, + { + "_id": "67cfb9e57297384e7c0a0df4", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cfb9e57297384e7c0a0ded" + }, + { + "_id": "67cfb9e57297384e7c0a0df5", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cfb9e57297384e7c0a0ded" + }, + { + "_id": "67cfb9e57297384e7c0a0df6", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67cfb9e57297384e7c0a0dee" + }, + { + "_id": "67cfb9e57297384e7c0a0df7", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cfb9e57297384e7c0a0dee" + }, + { + "_id": "67cfb9e57297384e7c0a0df8", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfb9e57297384e7c0a0df1" + }, + { + "_id": "67cfb9e57297384e7c0a0df9", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfb9e57297384e7c0a0df6" + }, + { + "_id": "67cfb9e57297384e7c0a0dfa", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfb9e57297384e7c0a0df7" + } + ] + }, + { + "Id": "67cfbb1e0100185b954c7d89", + "Name": "supr holo mcx", + "Root": "67cfbb267297384e7c0a7c3b", + "Items": [ + { + "_id": "67cfbb267297384e7c0a7c3b", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbb267297384e7c0a7c3c", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67cfbb267297384e7c0a7c3b" + }, + { + "_id": "67cfbb267297384e7c0a7c3d", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cfbb267297384e7c0a7c3b" + }, + { + "_id": "67cfbb267297384e7c0a7c3e", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67cfbb267297384e7c0a7c3b" + }, + { + "_id": "67cfbb267297384e7c0a7c3f", + "_tpl": "5fbcc437d724d907e2077d5c", + "slotId": "mod_stock", + "parentId": "67cfbb267297384e7c0a7c3b" + }, + { + "_id": "67cfbb267297384e7c0a7c40", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67cfbb267297384e7c0a7c3b" + }, + { + "_id": "67cfbb267297384e7c0a7c41", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbb267297384e7c0a7c3e" + }, + { + "_id": "67cfbb267297384e7c0a7c42", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67cfbb267297384e7c0a7c3e" + }, + { + "_id": "67cfbb267297384e7c0a7c43", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67cfbb267297384e7c0a7c3e" + }, + { + "_id": "67cfbb267297384e7c0a7c44", + "_tpl": "5fc0fa957283c4046c58147e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbb267297384e7c0a7c3e" + }, + { + "_id": "67cfbb267297384e7c0a7c45", + "_tpl": "5fbc22ccf24b94483f726483", + "slotId": "mod_muzzle", + "parentId": "67cfbb267297384e7c0a7c42" + }, + { + "_id": "67cfbb267297384e7c0a7c46", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67cfbb267297384e7c0a7c42" + }, + { + "_id": "67cfbb267297384e7c0a7c47", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_000", + "parentId": "67cfbb267297384e7c0a7c43" + }, + { + "_id": "67cfbb267297384e7c0a7c48", + "_tpl": "5fc0fa362770a0045c59c677", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbb267297384e7c0a7c43" + }, + { + "_id": "67cfbb267297384e7c0a7c49", + "_tpl": "5fc0f9b5d724d907e2077d82", + "slotId": "mod_foregrip", + "parentId": "67cfbb267297384e7c0a7c43" + }, + { + "_id": "67cfbb267297384e7c0a7c4a", + "_tpl": "5fbcbd10ab884124df0cd563", + "slotId": "mod_muzzle_000", + "parentId": "67cfbb267297384e7c0a7c45" + }, + { + "_id": "67cfbb267297384e7c0a7c4b", + "_tpl": "5fbe760793164a5b6278efc8", + "slotId": "mod_muzzle_001", + "parentId": "67cfbb267297384e7c0a7c45" + }, + { + "_id": "67cfbb267297384e7c0a7c4c", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfbb267297384e7c0a7c47" + } + ] + }, + { + "Id": "67cfbb400100185b9526d4ff", + "Name": "loud holo mcx", + "Root": "67cfbb447297384e7c0a7c95", + "Items": [ + { + "_id": "67cfbb447297384e7c0a7c95", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbb447297384e7c0a7c96", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67cfbb447297384e7c0a7c95" + }, + { + "_id": "67cfbb447297384e7c0a7c97", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cfbb447297384e7c0a7c95" + }, + { + "_id": "67cfbb447297384e7c0a7c98", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67cfbb447297384e7c0a7c95" + }, + { + "_id": "67cfbb447297384e7c0a7c99", + "_tpl": "5fbcc437d724d907e2077d5c", + "slotId": "mod_stock", + "parentId": "67cfbb447297384e7c0a7c95" + }, + { + "_id": "67cfbb447297384e7c0a7c9a", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67cfbb447297384e7c0a7c95" + }, + { + "_id": "67cfbb447297384e7c0a7c9b", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbb447297384e7c0a7c98" + }, + { + "_id": "67cfbb447297384e7c0a7c9c", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67cfbb447297384e7c0a7c98" + }, + { + "_id": "67cfbb447297384e7c0a7c9d", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67cfbb447297384e7c0a7c98" + }, + { + "_id": "67cfbb447297384e7c0a7c9e", + "_tpl": "5fc0fa957283c4046c58147e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbb447297384e7c0a7c98" + }, + { + "_id": "67cfbb447297384e7c0a7c9f", + "_tpl": "5dfa3cd1b33c0951220c079b", + "slotId": "mod_muzzle", + "parentId": "67cfbb447297384e7c0a7c9c" + }, + { + "_id": "67cfbb447297384e7c0a7ca0", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67cfbb447297384e7c0a7c9c" + }, + { + "_id": "67cfbb447297384e7c0a7ca1", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_000", + "parentId": "67cfbb447297384e7c0a7c9d" + }, + { + "_id": "67cfbb447297384e7c0a7ca2", + "_tpl": "5fc0fa362770a0045c59c677", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbb447297384e7c0a7c9d" + }, + { + "_id": "67cfbb447297384e7c0a7ca3", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67cfbb447297384e7c0a7c9d" + }, + { + "_id": "67cfbb447297384e7c0a7ca4", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfbb447297384e7c0a7ca1" + }, + { + "_id": "67cfbb447297384e7c0a7ca5", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfbb447297384e7c0a7ca3" + } + ] + }, + { + "Id": "67cfbbb10100185b95c299e7", + "Name": "supr bravo mcx", + "Root": "67cfbbb77297384e7c0aaae8", + "Items": [ + { + "_id": "67cfbbb77297384e7c0aaae8", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbbb77297384e7c0aaae9", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67cfbbb77297384e7c0aaae8" + }, + { + "_id": "67cfbbb77297384e7c0aaaea", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cfbbb77297384e7c0aaae8" + }, + { + "_id": "67cfbbb77297384e7c0aaaeb", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67cfbbb77297384e7c0aaae8" + }, + { + "_id": "67cfbbb77297384e7c0aaaec", + "_tpl": "58ac1bf086f77420ed183f9f", + "slotId": "mod_stock", + "parentId": "67cfbbb77297384e7c0aaae8" + }, + { + "_id": "67cfbbb77297384e7c0aaaed", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67cfbbb77297384e7c0aaae8" + }, + { + "_id": "67cfbbb77297384e7c0aaaee", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbbb77297384e7c0aaaeb" + }, + { + "_id": "67cfbbb77297384e7c0aaaef", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67cfbbb77297384e7c0aaaeb" + }, + { + "_id": "67cfbbb77297384e7c0aaaf0", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67cfbbb77297384e7c0aaaeb" + }, + { + "_id": "67cfbbb77297384e7c0aaaf1", + "_tpl": "5fc0fa957283c4046c58147e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbbb77297384e7c0aaaeb" + }, + { + "_id": "67cfbbb77297384e7c0aaaf2", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67cfbbb77297384e7c0aaaec" + }, + { + "_id": "67cfbbb77297384e7c0aaaf3", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67cfbbb77297384e7c0aaaee" + }, + { + "_id": "67cfbbb77297384e7c0aaaf4", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67cfbbb77297384e7c0aaaef" + }, + { + "_id": "67cfbbb77297384e7c0aaaf5", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67cfbbb77297384e7c0aaaef" + }, + { + "_id": "67cfbbb77297384e7c0aaaf6", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_000", + "parentId": "67cfbbb77297384e7c0aaaf0" + }, + { + "_id": "67cfbbb77297384e7c0aaaf7", + "_tpl": "5fc0fa362770a0045c59c677", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbbb77297384e7c0aaaf0" + }, + { + "_id": "67cfbbb77297384e7c0aaaf8", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67cfbbb77297384e7c0aaaf0" + }, + { + "_id": "67cfbbb77297384e7c0aaaf9", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbbb77297384e7c0aaaf3" + }, + { + "_id": "67cfbbb77297384e7c0aaafa", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfbbb77297384e7c0aaaf6" + }, + { + "_id": "67cfbbb77297384e7c0aaafb", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cfbbb77297384e7c0aaaf8" + }, + { + "_id": "67cfbbb77297384e7c0aaafc", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67cfbbb77297384e7c0aaaf2" + }, + { + "_id": "67cfbbb77297384e7c0aaafd", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cfbbb77297384e7c0aaafc" + } + ] + }, + { + "Id": "67cfbbf20100185b952ab864", + "Name": "supr dp mcx", + "Root": "67cfbbf67297384e7c0aba1e", + "Items": [ + { + "_id": "67cfbbf67297384e7c0aba1e", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbbf67297384e7c0aba1f", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67cfbbf67297384e7c0aba1e" + }, + { + "_id": "67cfbbf67297384e7c0aba20", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cfbbf67297384e7c0aba1e" + }, + { + "_id": "67cfbbf67297384e7c0aba21", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67cfbbf67297384e7c0aba1e" + }, + { + "_id": "67cfbbf67297384e7c0aba22", + "_tpl": "5fbcc437d724d907e2077d5c", + "slotId": "mod_stock", + "parentId": "67cfbbf67297384e7c0aba1e" + }, + { + "_id": "67cfbbf67297384e7c0aba23", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67cfbbf67297384e7c0aba1e" + }, + { + "_id": "67cfbbf67297384e7c0aba24", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67cfbbf67297384e7c0aba21" + }, + { + "_id": "67cfbbf67297384e7c0aba25", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67cfbbf67297384e7c0aba21" + }, + { + "_id": "67cfbbf67297384e7c0aba26", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67cfbbf67297384e7c0aba21" + }, + { + "_id": "67cfbbf67297384e7c0aba27", + "_tpl": "5fc0fa957283c4046c58147e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbbf67297384e7c0aba21" + }, + { + "_id": "67cfbbf67297384e7c0aba28", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbbf67297384e7c0aba24" + }, + { + "_id": "67cfbbf67297384e7c0aba29", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67cfbbf67297384e7c0aba25" + }, + { + "_id": "67cfbbf67297384e7c0aba2a", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67cfbbf67297384e7c0aba25" + }, + { + "_id": "67cfbbf67297384e7c0aba2b", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_000", + "parentId": "67cfbbf67297384e7c0aba26" + }, + { + "_id": "67cfbbf67297384e7c0aba2c", + "_tpl": "5fc0fa362770a0045c59c677", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbbf67297384e7c0aba26" + }, + { + "_id": "67cfbbf67297384e7c0aba2d", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67cfbbf67297384e7c0aba26" + }, + { + "_id": "67cfbbf67297384e7c0aba2e", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfbbf67297384e7c0aba2b" + }, + { + "_id": "67cfbbf67297384e7c0aba2f", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cfbbf67297384e7c0aba2d" + } + ] + }, + { + "Id": "67cfbc100100185b955663ed", + "Name": "loud mrs mcx", + "Root": "67cfbc177297384e7c0aca09", + "Items": [ + { + "_id": "67cfbc177297384e7c0aca09", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbc177297384e7c0aca0a", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67cfbc177297384e7c0aca09" + }, + { + "_id": "67cfbc177297384e7c0aca0b", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cfbc177297384e7c0aca09" + }, + { + "_id": "67cfbc177297384e7c0aca0c", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "slotId": "mod_reciever", + "parentId": "67cfbc177297384e7c0aca09" + }, + { + "_id": "67cfbc177297384e7c0aca0d", + "_tpl": "5fbcc437d724d907e2077d5c", + "slotId": "mod_stock", + "parentId": "67cfbc177297384e7c0aca09" + }, + { + "_id": "67cfbc177297384e7c0aca0e", + "_tpl": "5fbcc640016cce60e8341acc", + "slotId": "mod_charge", + "parentId": "67cfbc177297384e7c0aca09" + }, + { + "_id": "67cfbc177297384e7c0aca0f", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbc177297384e7c0aca0c" + }, + { + "_id": "67cfbc177297384e7c0aca10", + "_tpl": "5fbbfacda56d053a3543f799", + "slotId": "mod_barrel", + "parentId": "67cfbc177297384e7c0aca0c" + }, + { + "_id": "67cfbc177297384e7c0aca11", + "_tpl": "5fbc226eca32ed67276c155d", + "slotId": "mod_handguard", + "parentId": "67cfbc177297384e7c0aca0c" + }, + { + "_id": "67cfbc177297384e7c0aca12", + "_tpl": "5fc0fa957283c4046c58147e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbc177297384e7c0aca0c" + }, + { + "_id": "67cfbc177297384e7c0aca13", + "_tpl": "5dfa3cd1b33c0951220c079b", + "slotId": "mod_muzzle", + "parentId": "67cfbc177297384e7c0aca10" + }, + { + "_id": "67cfbc177297384e7c0aca14", + "_tpl": "5fbc210bf24b94483f726481", + "slotId": "mod_gas_block", + "parentId": "67cfbc177297384e7c0aca10" + }, + { + "_id": "67cfbc177297384e7c0aca15", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_000", + "parentId": "67cfbc177297384e7c0aca11" + }, + { + "_id": "67cfbc177297384e7c0aca16", + "_tpl": "5fc0fa362770a0045c59c677", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbc177297384e7c0aca11" + }, + { + "_id": "67cfbc177297384e7c0aca17", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_foregrip", + "parentId": "67cfbc177297384e7c0aca11" + }, + { + "_id": "67cfbc177297384e7c0aca18", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfbc177297384e7c0aca15" + }, + { + "_id": "67cfbc177297384e7c0aca19", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cfbc177297384e7c0aca17" + } + ] + }, + { + "Id": "67cfbc7d0100185b95e94168", + "Name": "loud hamr auga1", + "Root": "67cfbc837297384e7c0ae7e9", + "Items": [ + { + "_id": "67cfbc837297384e7c0ae7e9", + "_tpl": "62e7c4fba689e8c9c50dfc38", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbc837297384e7c0ae7ea", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67cfbc837297384e7c0ae7e9" + }, + { + "_id": "67cfbc837297384e7c0ae7eb", + "_tpl": "62e7c880f68e7a0676050c7c", + "slotId": "mod_charge", + "parentId": "67cfbc837297384e7c0ae7e9" + }, + { + "_id": "67cfbc837297384e7c0ae7ec", + "_tpl": "62e7c72df68e7a0676050c77", + "slotId": "mod_reciever", + "parentId": "67cfbc837297384e7c0ae7e9" + }, + { + "_id": "67cfbc837297384e7c0ae7ed", + "_tpl": "630e39c3bd357927e4007c15", + "slotId": "mod_barrel", + "parentId": "67cfbc837297384e7c0ae7ec" + }, + { + "_id": "67cfbc837297384e7c0ae7ee", + "_tpl": "62e7c8f91cd3fde4d503d690", + "slotId": "mod_mount", + "parentId": "67cfbc837297384e7c0ae7ec" + }, + { + "_id": "67cfbc837297384e7c0ae7ef", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfbc837297384e7c0ae7ec" + }, + { + "_id": "67cfbc837297384e7c0ae7f0", + "_tpl": "630f291b9f66a28b37094bb8", + "slotId": "mod_muzzle", + "parentId": "67cfbc837297384e7c0ae7ed" + }, + { + "_id": "67cfbc837297384e7c0ae7f1", + "_tpl": "671883292e2eeb98d406f3b8", + "slotId": "mod_foregrip", + "parentId": "67cfbc837297384e7c0ae7ed" + }, + { + "_id": "67cfbc837297384e7c0ae7f2", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbc837297384e7c0ae7ee" + }, + { + "_id": "67cfbc837297384e7c0ae7f3", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbc837297384e7c0ae7f2" + } + ] + }, + { + "Id": "67cfbc9b0100185b95c31d55", + "Name": "supr stock auga1", + "Root": "67cfbca67297384e7c0ae7fa", + "Items": [ + { + "_id": "67cfbca67297384e7c0ae7fa", + "_tpl": "62e7c4fba689e8c9c50dfc38", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbca67297384e7c0ae7fb", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67cfbca67297384e7c0ae7fa" + }, + { + "_id": "67cfbca67297384e7c0ae7fc", + "_tpl": "62e7c880f68e7a0676050c7c", + "slotId": "mod_charge", + "parentId": "67cfbca67297384e7c0ae7fa" + }, + { + "_id": "67cfbca67297384e7c0ae7fd", + "_tpl": "62ea7c793043d74a0306e19f", + "slotId": "mod_reciever", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbca67297384e7c0ae7fa" + }, + { + "_id": "67cfbca67297384e7c0ae7fe", + "_tpl": "62e7c7f3c34ea971710c32fc", + "slotId": "mod_barrel", + "parentId": "67cfbca67297384e7c0ae7fd" + }, + { + "_id": "67cfbca67297384e7c0ae7ff", + "_tpl": "634eba08f69c710e0108d386", + "slotId": "mod_muzzle_000", + "parentId": "67cfbca67297384e7c0ae7fe" + }, + { + "_id": "67cfbca67297384e7c0ae800", + "_tpl": "634e61b0767cb15c4601a877", + "slotId": "mod_foregrip", + "parentId": "67cfbca67297384e7c0ae7fe" + } + ] + }, + { + "Id": "67cfbd100100185b95a57e3d", + "Name": "loud holo auga3", + "Root": "67cfbd177297384e7c0b1663", + "Items": [ + { + "_id": "67cfbd177297384e7c0b1663", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbd177297384e7c0b1664", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67cfbd177297384e7c0b1663" + }, + { + "_id": "67cfbd177297384e7c0b1665", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67cfbd177297384e7c0b1663" + }, + { + "_id": "67cfbd177297384e7c0b1666", + "_tpl": "67110d8d388bded67304ceb4", + "slotId": "mod_reciever", + "parentId": "67cfbd177297384e7c0b1663" + }, + { + "_id": "67cfbd177297384e7c0b1667", + "_tpl": "6333f05d1bc0e6217a0e9d34", + "slotId": "mod_barrel", + "parentId": "67cfbd177297384e7c0b1666" + }, + { + "_id": "67cfbd177297384e7c0b1668", + "_tpl": "67110dd41ad01bb88705347b", + "slotId": "mod_mount", + "parentId": "67cfbd177297384e7c0b1666" + }, + { + "_id": "67cfbd177297384e7c0b1669", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfbd177297384e7c0b1666" + }, + { + "_id": "67cfbd177297384e7c0b166a", + "_tpl": "630f291b9f66a28b37094bb8", + "slotId": "mod_muzzle", + "parentId": "67cfbd177297384e7c0b1667" + }, + { + "_id": "67cfbd177297384e7c0b166b", + "_tpl": "634e61b0767cb15c4601a877", + "slotId": "mod_foregrip", + "parentId": "67cfbd177297384e7c0b1667" + }, + { + "_id": "67cfbd177297384e7c0b166c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbd177297384e7c0b1668" + } + ] + }, + { + "Id": "67cfbd2e0100185b958dee93", + "Name": "loud bravo auga3", + "Root": "67cfbd327297384e7c0b16ad", + "Items": [ + { + "_id": "67cfbd327297384e7c0b16ad", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbd327297384e7c0b16ae", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67cfbd327297384e7c0b16ad" + }, + { + "_id": "67cfbd327297384e7c0b16af", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67cfbd327297384e7c0b16ad" + }, + { + "_id": "67cfbd327297384e7c0b16b0", + "_tpl": "67110d8d388bded67304ceb4", + "slotId": "mod_reciever", + "parentId": "67cfbd327297384e7c0b16ad" + }, + { + "_id": "67cfbd327297384e7c0b16b1", + "_tpl": "6333f05d1bc0e6217a0e9d34", + "slotId": "mod_barrel", + "parentId": "67cfbd327297384e7c0b16b0" + }, + { + "_id": "67cfbd327297384e7c0b16b2", + "_tpl": "67110dd41ad01bb88705347b", + "slotId": "mod_mount", + "parentId": "67cfbd327297384e7c0b16b0" + }, + { + "_id": "67cfbd327297384e7c0b16b3", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfbd327297384e7c0b16b0" + }, + { + "_id": "67cfbd327297384e7c0b16b4", + "_tpl": "630f291b9f66a28b37094bb8", + "slotId": "mod_muzzle", + "parentId": "67cfbd327297384e7c0b16b1" + }, + { + "_id": "67cfbd327297384e7c0b16b5", + "_tpl": "634e61b0767cb15c4601a877", + "slotId": "mod_foregrip", + "parentId": "67cfbd327297384e7c0b16b1" + }, + { + "_id": "67cfbd327297384e7c0b16b6", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbd327297384e7c0b16b2" + }, + { + "_id": "67cfbd327297384e7c0b16b7", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67cfbd327297384e7c0b16b6" + }, + { + "_id": "67cfbd327297384e7c0b16b8", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbd327297384e7c0b16b7" + } + ] + }, + { + "Id": "67cfbd410100185b956b44cd", + "Name": "supr bravo auga3", + "Root": "67cfbd457297384e7c0b25f7", + "Items": [ + { + "_id": "67cfbd457297384e7c0b25f7", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbd457297384e7c0b25f8", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67cfbd457297384e7c0b25f7" + }, + { + "_id": "67cfbd457297384e7c0b25f9", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67cfbd457297384e7c0b25f7" + }, + { + "_id": "67cfbd457297384e7c0b25fa", + "_tpl": "67110d8d388bded67304ceb4", + "slotId": "mod_reciever", + "parentId": "67cfbd457297384e7c0b25f7" + }, + { + "_id": "67cfbd457297384e7c0b25fb", + "_tpl": "6333f05d1bc0e6217a0e9d34", + "slotId": "mod_barrel", + "parentId": "67cfbd457297384e7c0b25fa" + }, + { + "_id": "67cfbd457297384e7c0b25fc", + "_tpl": "67110dd41ad01bb88705347b", + "slotId": "mod_mount", + "parentId": "67cfbd457297384e7c0b25fa" + }, + { + "_id": "67cfbd457297384e7c0b25fd", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfbd457297384e7c0b25fa" + }, + { + "_id": "67cfbd457297384e7c0b25fe", + "_tpl": "634eba08f69c710e0108d386", + "slotId": "mod_muzzle", + "parentId": "67cfbd457297384e7c0b25fb" + }, + { + "_id": "67cfbd457297384e7c0b25ff", + "_tpl": "634e61b0767cb15c4601a877", + "slotId": "mod_foregrip", + "parentId": "67cfbd457297384e7c0b25fb" + }, + { + "_id": "67cfbd457297384e7c0b2600", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbd457297384e7c0b25fc" + }, + { + "_id": "67cfbd457297384e7c0b2601", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67cfbd457297384e7c0b2600" + }, + { + "_id": "67cfbd457297384e7c0b2602", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbd457297384e7c0b2601" + } + ] + }, + { + "Id": "67cfbd8b0100185b959acb86", + "Name": "supr 2x auga3", + "Root": "67cfbd907297384e7c0b3576", + "Items": [ + { + "_id": "67cfbd907297384e7c0b3576", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbd907297384e7c0b3577", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67cfbd907297384e7c0b3576" + }, + { + "_id": "67cfbd907297384e7c0b3578", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67cfbd907297384e7c0b3576" + }, + { + "_id": "67cfbd907297384e7c0b3579", + "_tpl": "67110d8d388bded67304ceb4", + "slotId": "mod_reciever", + "parentId": "67cfbd907297384e7c0b3576" + }, + { + "_id": "67cfbd907297384e7c0b357a", + "_tpl": "6333f05d1bc0e6217a0e9d34", + "slotId": "mod_barrel", + "parentId": "67cfbd907297384e7c0b3579" + }, + { + "_id": "67cfbd907297384e7c0b357b", + "_tpl": "67110dd41ad01bb88705347b", + "slotId": "mod_mount", + "parentId": "67cfbd907297384e7c0b3579" + }, + { + "_id": "67cfbd907297384e7c0b357c", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cfbd907297384e7c0b3579" + }, + { + "_id": "67cfbd907297384e7c0b357d", + "_tpl": "630f27f04f3f6281050b94d7", + "slotId": "mod_muzzle", + "parentId": "67cfbd907297384e7c0b357a" + }, + { + "_id": "67cfbd907297384e7c0b357e", + "_tpl": "634e61b0767cb15c4601a877", + "slotId": "mod_foregrip", + "parentId": "67cfbd907297384e7c0b357a" + }, + { + "_id": "67cfbd907297384e7c0b357f", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbd907297384e7c0b357b" + }, + { + "_id": "67cfbd907297384e7c0b3580", + "_tpl": "5a9fbb84a2750c00137fa685", + "slotId": "mod_muzzle", + "parentId": "67cfbd907297384e7c0b357d" + } + ] + }, + { + "Id": "67cfbdec0100185b95960be6", + "Name": "supr HHS auga3", + "Root": "67cfbdf47297384e7c0b5395", + "Items": [ + { + "_id": "67cfbdf47297384e7c0b5395", + "_tpl": "6718817435e3cfd9550d2c27", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbdf47297384e7c0b5396", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67cfbdf47297384e7c0b5395" + }, + { + "_id": "67cfbdf47297384e7c0b5397", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67cfbdf47297384e7c0b5395" + }, + { + "_id": "67cfbdf47297384e7c0b5398", + "_tpl": "62e7c72df68e7a0676050c77", + "slotId": "mod_reciever", + "parentId": "67cfbdf47297384e7c0b5395" + }, + { + "_id": "67cfbdf47297384e7c0b5399", + "_tpl": "630e39c3bd357927e4007c15", + "slotId": "mod_barrel", + "parentId": "67cfbdf47297384e7c0b5398" + }, + { + "_id": "67cfbdf47297384e7c0b539a", + "_tpl": "62e7c8f91cd3fde4d503d690", + "slotId": "mod_mount", + "parentId": "67cfbdf47297384e7c0b5398" + }, + { + "_id": "67cfbdf47297384e7c0b539b", + "_tpl": "630f27f04f3f6281050b94d7", + "slotId": "mod_muzzle", + "parentId": "67cfbdf47297384e7c0b5399" + }, + { + "_id": "67cfbdf47297384e7c0b539c", + "_tpl": "671883292e2eeb98d406f3b8", + "slotId": "mod_foregrip", + "parentId": "67cfbdf47297384e7c0b5399" + }, + { + "_id": "67cfbdf47297384e7c0b539d", + "_tpl": "5c07dd120db834001c39092d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbdf47297384e7c0b539a" + }, + { + "_id": "67cfbdf47297384e7c0b539e", + "_tpl": "609269c3b0e443224b421cc1", + "slotId": "mod_muzzle", + "parentId": "67cfbdf47297384e7c0b539b" + }, + { + "_id": "67cfbdf47297384e7c0b539f", + "_tpl": "60926df0132d4d12c81fd9df", + "slotId": "mod_muzzle", + "parentId": "67cfbdf47297384e7c0b539e" + } + ] + }, + { + "Id": "67cfbe110100185b95d5c37d", + "Name": "supr vudu auga3", + "Root": "67cfbe167297384e7c0b621c", + "Items": [ + { + "_id": "67cfbe167297384e7c0b621c", + "_tpl": "6718817435e3cfd9550d2c27", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfbe167297384e7c0b621d", + "_tpl": "62e7c98b550c8218d602cbb4", + "slotId": "mod_magazine", + "parentId": "67cfbe167297384e7c0b621c" + }, + { + "_id": "67cfbe167297384e7c0b621e", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "slotId": "mod_charge", + "parentId": "67cfbe167297384e7c0b621c" + }, + { + "_id": "67cfbe167297384e7c0b621f", + "_tpl": "62e7c72df68e7a0676050c77", + "slotId": "mod_reciever", + "parentId": "67cfbe167297384e7c0b621c" + }, + { + "_id": "67cfbe167297384e7c0b6220", + "_tpl": "630e39c3bd357927e4007c15", + "slotId": "mod_barrel", + "parentId": "67cfbe167297384e7c0b621f" + }, + { + "_id": "67cfbe167297384e7c0b6221", + "_tpl": "62e7c8f91cd3fde4d503d690", + "slotId": "mod_mount", + "parentId": "67cfbe167297384e7c0b621f" + }, + { + "_id": "67cfbe167297384e7c0b6222", + "_tpl": "630f27f04f3f6281050b94d7", + "slotId": "mod_muzzle", + "parentId": "67cfbe167297384e7c0b6220" + }, + { + "_id": "67cfbe167297384e7c0b6223", + "_tpl": "671883292e2eeb98d406f3b8", + "slotId": "mod_foregrip", + "parentId": "67cfbe167297384e7c0b6220" + }, + { + "_id": "67cfbe167297384e7c0b6224", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67cfbe167297384e7c0b6221" + }, + { + "_id": "67cfbe167297384e7c0b6225", + "_tpl": "544a38634bdc2d58388b4568", + "slotId": "mod_muzzle", + "parentId": "67cfbe167297384e7c0b6222" + }, + { + "_id": "67cfbe167297384e7c0b6226", + "_tpl": "638612b607dfed1ccb7206ba", + "slotId": "mod_muzzle", + "parentId": "67cfbe167297384e7c0b6225" + }, + { + "_id": "67cfbe167297384e7c0b6227", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfbe167297384e7c0b6224" + } + ] + }, + { + "Id": "67cff2810100185b95f8e3c7", + "Name": "supr hamr adar", + "Root": "67cff294afd15d674c03925c", + "Items": [ + { + "_id": "67cff294afd15d674c03925c", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff294afd15d674c03925d", + "_tpl": "5a33e75ac4a2826c6e06d759", + "slotId": "mod_pistol_grip", + "parentId": "67cff294afd15d674c03925c" + }, + { + "_id": "67cff294afd15d674c03925e", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cff294afd15d674c03925c" + }, + { + "_id": "67cff294afd15d674c03925f", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67cff294afd15d674c03925c" + }, + { + "_id": "67cff294afd15d674c039260", + "_tpl": "5c0faeddd174af02a962601f", + "slotId": "mod_stock", + "parentId": "67cff294afd15d674c03925c" + }, + { + "_id": "67cff294afd15d674c039261", + "_tpl": "5c0faf68d174af02a96260b8", + "slotId": "mod_charge", + "parentId": "67cff294afd15d674c03925c" + }, + { + "_id": "67cff294afd15d674c039262", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff294afd15d674c03925f" + }, + { + "_id": "67cff294afd15d674c039263", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67cff294afd15d674c03925f" + }, + { + "_id": "67cff294afd15d674c039264", + "_tpl": "5b2cfa535acfc432ff4db7a0", + "slotId": "mod_handguard", + "parentId": "67cff294afd15d674c03925f" + }, + { + "_id": "67cff294afd15d674c039265", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff294afd15d674c039262" + }, + { + "_id": "67cff294afd15d674c039266", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cff294afd15d674c039263" + }, + { + "_id": "67cff294afd15d674c039267", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff294afd15d674c039263" + }, + { + "_id": "67cff294afd15d674c039268", + "_tpl": "5b30bc285acfc47a8608615d", + "slotId": "mod_mount_000", + "parentId": "67cff294afd15d674c039264" + }, + { + "_id": "67cff294afd15d674c039269", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67cff294afd15d674c039266" + }, + { + "_id": "67cff294afd15d674c03926a", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cff294afd15d674c039268" + }, + { + "_id": "67cff294afd15d674c03926b", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff294afd15d674c039268" + } + ] + }, + { + "Id": "67cff2b90100185b954f2a7e", + "Name": "supr holo tan adar", + "Root": "67cff2d0afd15d674c03a1ad", + "Items": [ + { + "_id": "67cff2d0afd15d674c03a1ad", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff2d0afd15d674c03a1ae", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "slotId": "mod_pistol_grip", + "parentId": "67cff2d0afd15d674c03a1ad" + }, + { + "_id": "67cff2d0afd15d674c03a1af", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67cff2d0afd15d674c03a1ad" + }, + { + "_id": "67cff2d0afd15d674c03a1b0", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67cff2d0afd15d674c03a1ad" + }, + { + "_id": "67cff2d0afd15d674c03a1b1", + "_tpl": "5c0faeddd174af02a962601f", + "slotId": "mod_stock", + "parentId": "67cff2d0afd15d674c03a1ad" + }, + { + "_id": "67cff2d0afd15d674c03a1b2", + "_tpl": "55d44fd14bdc2d962f8b456e", + "slotId": "mod_charge", + "parentId": "67cff2d0afd15d674c03a1ad" + }, + { + "_id": "67cff2d0afd15d674c03a1b3", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff2d0afd15d674c03a1b0" + }, + { + "_id": "67cff2d0afd15d674c03a1b4", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67cff2d0afd15d674c03a1b0" + }, + { + "_id": "67cff2d0afd15d674c03a1b5", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "slotId": "mod_handguard", + "parentId": "67cff2d0afd15d674c03a1b0" + }, + { + "_id": "67cff2d0afd15d674c03a1b6", + "_tpl": "5c18b9192e2216398b5a8104", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff2d0afd15d674c03a1b0" + }, + { + "_id": "67cff2d0afd15d674c03a1b7", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cff2d0afd15d674c03a1b4" + }, + { + "_id": "67cff2d0afd15d674c03a1b8", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff2d0afd15d674c03a1b4" + }, + { + "_id": "67cff2d0afd15d674c03a1b9", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67cff2d0afd15d674c03a1b7" + } + ] + }, + { + "Id": "67cff2e80100185b95b725fa", + "Name": "supr specter tan adar", + "Root": "67cff2edafd15d674c03a1c0", + "Items": [ + { + "_id": "67cff2edafd15d674c03a1c0", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff2edafd15d674c03a1c1", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "slotId": "mod_pistol_grip", + "parentId": "67cff2edafd15d674c03a1c0" + }, + { + "_id": "67cff2edafd15d674c03a1c2", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67cff2edafd15d674c03a1c0" + }, + { + "_id": "67cff2edafd15d674c03a1c3", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67cff2edafd15d674c03a1c0" + }, + { + "_id": "67cff2edafd15d674c03a1c4", + "_tpl": "5c0faeddd174af02a962601f", + "slotId": "mod_stock", + "parentId": "67cff2edafd15d674c03a1c0" + }, + { + "_id": "67cff2edafd15d674c03a1c5", + "_tpl": "55d44fd14bdc2d962f8b456e", + "slotId": "mod_charge", + "parentId": "67cff2edafd15d674c03a1c0" + }, + { + "_id": "67cff2edafd15d674c03a1c6", + "_tpl": "57aca93d2459771f2c7e26db", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff2edafd15d674c03a1c3" + }, + { + "_id": "67cff2edafd15d674c03a1c7", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67cff2edafd15d674c03a1c3" + }, + { + "_id": "67cff2edafd15d674c03a1c8", + "_tpl": "5ea16acdfadf1d18c87b0784", + "slotId": "mod_handguard", + "parentId": "67cff2edafd15d674c03a1c3" + }, + { + "_id": "67cff2edafd15d674c03a1c9", + "_tpl": "5c18b9192e2216398b5a8104", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff2edafd15d674c03a1c3" + }, + { + "_id": "67cff2edafd15d674c03a1ca", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67cff2edafd15d674c03a1c4" + }, + { + "_id": "67cff2edafd15d674c03a1cb", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cff2edafd15d674c03a1c7" + }, + { + "_id": "67cff2edafd15d674c03a1cc", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff2edafd15d674c03a1c7" + }, + { + "_id": "67cff2edafd15d674c03a1cd", + "_tpl": "57cffcd624597763133760c5", + "slotId": "mod_foregrip", + "parentId": "67cff2edafd15d674c03a1c8" + }, + { + "_id": "67cff2edafd15d674c03a1ce", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67cff2edafd15d674c03a1cb" + }, + { + "_id": "67cff2edafd15d674c03a1cf", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cff2edafd15d674c03a1ca" + } + ] + }, + { + "Id": "67cff3070100185b958b4a93", + "Name": "loud mrs adar", + "Root": "67cff30dafd15d674c03a1d6", + "Items": [ + { + "_id": "67cff30dafd15d674c03a1d6", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff30dafd15d674c03a1d7", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "slotId": "mod_pistol_grip", + "parentId": "67cff30dafd15d674c03a1d6" + }, + { + "_id": "67cff30dafd15d674c03a1d8", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cff30dafd15d674c03a1d6" + }, + { + "_id": "67cff30dafd15d674c03a1d9", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67cff30dafd15d674c03a1d6" + }, + { + "_id": "67cff30dafd15d674c03a1da", + "_tpl": "5c0faeddd174af02a962601f", + "slotId": "mod_stock", + "parentId": "67cff30dafd15d674c03a1d6" + }, + { + "_id": "67cff30dafd15d674c03a1db", + "_tpl": "5c0faf68d174af02a96260b8", + "slotId": "mod_charge", + "parentId": "67cff30dafd15d674c03a1d6" + }, + { + "_id": "67cff30dafd15d674c03a1dc", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff30dafd15d674c03a1d9" + }, + { + "_id": "67cff30dafd15d674c03a1dd", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67cff30dafd15d674c03a1d9" + }, + { + "_id": "67cff30dafd15d674c03a1de", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "slotId": "mod_handguard", + "parentId": "67cff30dafd15d674c03a1d9" + }, + { + "_id": "67cff30dafd15d674c03a1df", + "_tpl": "5c0fafb6d174af02a96260ba", + "slotId": "mod_muzzle", + "parentId": "67cff30dafd15d674c03a1dd" + }, + { + "_id": "67cff30dafd15d674c03a1e0", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff30dafd15d674c03a1dd" + } + ] + }, + { + "Id": "67cff31c0100185b9502cd52", + "Name": "loud ekp adar", + "Root": "67cff321afd15d674c03b0a2", + "Items": [ + { + "_id": "67cff321afd15d674c03b0a2", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff321afd15d674c03b0a3", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "slotId": "mod_pistol_grip", + "parentId": "67cff321afd15d674c03b0a2" + }, + { + "_id": "67cff321afd15d674c03b0a4", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cff321afd15d674c03b0a2" + }, + { + "_id": "67cff321afd15d674c03b0a5", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67cff321afd15d674c03b0a2" + }, + { + "_id": "67cff321afd15d674c03b0a6", + "_tpl": "5c0faeddd174af02a962601f", + "slotId": "mod_stock", + "parentId": "67cff321afd15d674c03b0a2" + }, + { + "_id": "67cff321afd15d674c03b0a7", + "_tpl": "5c0faf68d174af02a96260b8", + "slotId": "mod_charge", + "parentId": "67cff321afd15d674c03b0a2" + }, + { + "_id": "67cff321afd15d674c03b0a8", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff321afd15d674c03b0a5" + }, + { + "_id": "67cff321afd15d674c03b0a9", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67cff321afd15d674c03b0a5" + }, + { + "_id": "67cff321afd15d674c03b0aa", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "slotId": "mod_handguard", + "parentId": "67cff321afd15d674c03b0a5" + }, + { + "_id": "67cff321afd15d674c03b0ab", + "_tpl": "5c0fafb6d174af02a96260ba", + "slotId": "mod_muzzle", + "parentId": "67cff321afd15d674c03b0a9" + }, + { + "_id": "67cff321afd15d674c03b0ac", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff321afd15d674c03b0a9" + } + ] + }, + { + "Id": "67cff3480100185b9586a734", + "Name": "supr valday adar", + "Root": "67cff34fafd15d674c03b0af", + "Items": [ + { + "_id": "67cff34fafd15d674c03b0af", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff34fafd15d674c03b0b0", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "slotId": "mod_pistol_grip", + "parentId": "67cff34fafd15d674c03b0af" + }, + { + "_id": "67cff34fafd15d674c03b0b1", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cff34fafd15d674c03b0af" + }, + { + "_id": "67cff34fafd15d674c03b0b2", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67cff34fafd15d674c03b0af" + }, + { + "_id": "67cff34fafd15d674c03b0b3", + "_tpl": "5c0faeddd174af02a962601f", + "slotId": "mod_stock", + "parentId": "67cff34fafd15d674c03b0af" + }, + { + "_id": "67cff34fafd15d674c03b0b4", + "_tpl": "5c0faf68d174af02a96260b8", + "slotId": "mod_charge", + "parentId": "67cff34fafd15d674c03b0af" + }, + { + "_id": "67cff34fafd15d674c03b0b5", + "_tpl": "5c0517910db83400232ffee5", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff34fafd15d674c03b0b2" + }, + { + "_id": "67cff34fafd15d674c03b0b6", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67cff34fafd15d674c03b0b2" + }, + { + "_id": "67cff34fafd15d674c03b0b7", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "slotId": "mod_handguard", + "parentId": "67cff34fafd15d674c03b0b2" + }, + { + "_id": "67cff34fafd15d674c03b0b8", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cff34fafd15d674c03b0b6" + }, + { + "_id": "67cff34fafd15d674c03b0b9", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff34fafd15d674c03b0b6" + }, + { + "_id": "67cff34fafd15d674c03b0ba", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67cff34fafd15d674c03b0b8" + } + ] + }, + { + "Id": "67cff3910100185b958e5785", + "Name": "loud 2x adar", + "Root": "67cff39cafd15d674c03be95", + "Items": [ + { + "_id": "67cff39cafd15d674c03be95", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff39cafd15d674c03be96", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "slotId": "mod_pistol_grip", + "parentId": "67cff39cafd15d674c03be95" + }, + { + "_id": "67cff39cafd15d674c03be97", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67cff39cafd15d674c03be95" + }, + { + "_id": "67cff39cafd15d674c03be98", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67cff39cafd15d674c03be95" + }, + { + "_id": "67cff39cafd15d674c03be99", + "_tpl": "5c0faeddd174af02a962601f", + "slotId": "mod_stock", + "parentId": "67cff39cafd15d674c03be95" + }, + { + "_id": "67cff39cafd15d674c03be9a", + "_tpl": "5c0faf68d174af02a96260b8", + "slotId": "mod_charge", + "parentId": "67cff39cafd15d674c03be95" + }, + { + "_id": "67cff39cafd15d674c03be9b", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff39cafd15d674c03be98" + }, + { + "_id": "67cff39cafd15d674c03be9c", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67cff39cafd15d674c03be98" + }, + { + "_id": "67cff39cafd15d674c03be9d", + "_tpl": "5ea16acdfadf1d18c87b0784", + "slotId": "mod_handguard", + "parentId": "67cff39cafd15d674c03be98" + }, + { + "_id": "67cff39cafd15d674c03be9e", + "_tpl": "5fce16961f152d4312622bc9", + "slotId": "mod_stock_000", + "parentId": "67cff39cafd15d674c03be99" + }, + { + "_id": "67cff39cafd15d674c03be9f", + "_tpl": "5c0fafb6d174af02a96260ba", + "slotId": "mod_muzzle", + "parentId": "67cff39cafd15d674c03be9c" + }, + { + "_id": "67cff39cafd15d674c03bea0", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff39cafd15d674c03be9c" + }, + { + "_id": "67cff39cafd15d674c03bea1", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67cff39cafd15d674c03be9d" + }, + { + "_id": "67cff39cafd15d674c03bea2", + "_tpl": "665edce564fb556f940ab32a", + "slotId": "mod_foregrip", + "parentId": "67cff39cafd15d674c03be9d" + }, + { + "_id": "67cff39cafd15d674c03bea3", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff39cafd15d674c03bea1" + } + ] + }, + { + "Id": "67cff3fb0100185b95de4712", + "Name": "supr 2x tan adar", + "Root": "67cff400afd15d674c03ddcc", + "Items": [ + { + "_id": "67cff400afd15d674c03ddcc", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff400afd15d674c03ddcd", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "slotId": "mod_pistol_grip", + "parentId": "67cff400afd15d674c03ddcc" + }, + { + "_id": "67cff400afd15d674c03ddce", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67cff400afd15d674c03ddcc" + }, + { + "_id": "67cff400afd15d674c03ddcf", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67cff400afd15d674c03ddcc" + }, + { + "_id": "67cff400afd15d674c03ddd0", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67cff400afd15d674c03ddcc" + }, + { + "_id": "67cff400afd15d674c03ddd1", + "_tpl": "5c0faf68d174af02a96260b8", + "slotId": "mod_charge", + "parentId": "67cff400afd15d674c03ddcc" + }, + { + "_id": "67cff400afd15d674c03ddd2", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff400afd15d674c03ddcf" + }, + { + "_id": "67cff400afd15d674c03ddd3", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67cff400afd15d674c03ddcf" + }, + { + "_id": "67cff400afd15d674c03ddd4", + "_tpl": "63888bbd28e5cc32cc09d2b6", + "slotId": "mod_handguard", + "parentId": "67cff400afd15d674c03ddcf" + }, + { + "_id": "67cff400afd15d674c03ddd5", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67cff400afd15d674c03ddd0" + }, + { + "_id": "67cff400afd15d674c03ddd6", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cff400afd15d674c03ddd3" + }, + { + "_id": "67cff400afd15d674c03ddd7", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff400afd15d674c03ddd3" + }, + { + "_id": "67cff400afd15d674c03ddd8", + "_tpl": "6388c4478d895f557a0c6512", + "slotId": "mod_mount_001", + "parentId": "67cff400afd15d674c03ddd4" + }, + { + "_id": "67cff400afd15d674c03ddd9", + "_tpl": "6388c4ac8d895f557a0c6515", + "slotId": "mod_mount_003", + "parentId": "67cff400afd15d674c03ddd4" + }, + { + "_id": "67cff400afd15d674c03ddda", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67cff400afd15d674c03ddd6" + }, + { + "_id": "67cff400afd15d674c03dddb", + "_tpl": "626becf9582c3e319310b837", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff400afd15d674c03ddd8" + }, + { + "_id": "67cff400afd15d674c03dddc", + "_tpl": "5fce0cf655375d18a253eff0", + "slotId": "mod_foregrip", + "parentId": "67cff400afd15d674c03ddd9" + }, + { + "_id": "67cff400afd15d674c03dddd", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cff400afd15d674c03ddd5" + } + ] + }, + { + "Id": "67cff4440100185b959b1772", + "Name": "supr hhs tan adar", + "Root": "67cff448afd15d674c03ebfc", + "Items": [ + { + "_id": "67cff448afd15d674c03ebfc", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff448afd15d674c03ebfd", + "_tpl": "5d15cf3bd7ad1a67e71518b2", + "slotId": "mod_pistol_grip", + "parentId": "67cff448afd15d674c03ebfc" + }, + { + "_id": "67cff448afd15d674c03ebfe", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67cff448afd15d674c03ebfc" + }, + { + "_id": "67cff448afd15d674c03ebff", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67cff448afd15d674c03ebfc" + }, + { + "_id": "67cff448afd15d674c03ec00", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67cff448afd15d674c03ebfc" + }, + { + "_id": "67cff448afd15d674c03ec01", + "_tpl": "5c0faf68d174af02a96260b8", + "slotId": "mod_charge", + "parentId": "67cff448afd15d674c03ebfc" + }, + { + "_id": "67cff448afd15d674c03ec02", + "_tpl": "5c0a2cec0db834001b7ce47d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff448afd15d674c03ebff" + }, + { + "_id": "67cff448afd15d674c03ec03", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67cff448afd15d674c03ebff" + }, + { + "_id": "67cff448afd15d674c03ec04", + "_tpl": "63888bbd28e5cc32cc09d2b6", + "slotId": "mod_handguard", + "parentId": "67cff448afd15d674c03ebff" + }, + { + "_id": "67cff448afd15d674c03ec05", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67cff448afd15d674c03ec00" + }, + { + "_id": "67cff448afd15d674c03ec06", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cff448afd15d674c03ec03" + }, + { + "_id": "67cff448afd15d674c03ec07", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff448afd15d674c03ec03" + }, + { + "_id": "67cff448afd15d674c03ec08", + "_tpl": "6388c4478d895f557a0c6512", + "slotId": "mod_mount_001", + "parentId": "67cff448afd15d674c03ec04" + }, + { + "_id": "67cff448afd15d674c03ec09", + "_tpl": "6388c4ac8d895f557a0c6515", + "slotId": "mod_mount_003", + "parentId": "67cff448afd15d674c03ec04" + }, + { + "_id": "67cff448afd15d674c03ec0a", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67cff448afd15d674c03ec06" + }, + { + "_id": "67cff448afd15d674c03ec0b", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff448afd15d674c03ec08" + }, + { + "_id": "67cff448afd15d674c03ec0c", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67cff448afd15d674c03ec09" + }, + { + "_id": "67cff448afd15d674c03ec0d", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cff448afd15d674c03ec05" + } + ] + }, + { + "Id": "67cff4930100185b95f98a46", + "Name": "supr holo tan adar v2", + "Root": "67cff49bafd15d674c03fa44", + "Items": [ + { + "_id": "67cff49bafd15d674c03fa44", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff49bafd15d674c03fa45", + "_tpl": "57c55f092459772d291a8463", + "slotId": "mod_pistol_grip", + "parentId": "67cff49bafd15d674c03fa44" + }, + { + "_id": "67cff49bafd15d674c03fa46", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "slotId": "mod_magazine", + "parentId": "67cff49bafd15d674c03fa44" + }, + { + "_id": "67cff49bafd15d674c03fa47", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67cff49bafd15d674c03fa44" + }, + { + "_id": "67cff49bafd15d674c03fa48", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67cff49bafd15d674c03fa44" + }, + { + "_id": "67cff49bafd15d674c03fa49", + "_tpl": "5c0faf68d174af02a96260b8", + "slotId": "mod_charge", + "parentId": "67cff49bafd15d674c03fa44" + }, + { + "_id": "67cff49bafd15d674c03fa4a", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff49bafd15d674c03fa47" + }, + { + "_id": "67cff49bafd15d674c03fa4b", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67cff49bafd15d674c03fa47" + }, + { + "_id": "67cff49bafd15d674c03fa4c", + "_tpl": "63888bbd28e5cc32cc09d2b6", + "slotId": "mod_handguard", + "parentId": "67cff49bafd15d674c03fa47" + }, + { + "_id": "67cff49bafd15d674c03fa4d", + "_tpl": "58d2946386f774496974c37e", + "slotId": "mod_stock_000", + "parentId": "67cff49bafd15d674c03fa48" + }, + { + "_id": "67cff49bafd15d674c03fa4e", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67cff49bafd15d674c03fa4b" + }, + { + "_id": "67cff49bafd15d674c03fa4f", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff49bafd15d674c03fa4b" + }, + { + "_id": "67cff49bafd15d674c03fa50", + "_tpl": "6388c4478d895f557a0c6512", + "slotId": "mod_mount_001", + "parentId": "67cff49bafd15d674c03fa4c" + }, + { + "_id": "67cff49bafd15d674c03fa51", + "_tpl": "6388c4ac8d895f557a0c6515", + "slotId": "mod_mount_003", + "parentId": "67cff49bafd15d674c03fa4c" + }, + { + "_id": "67cff49bafd15d674c03fa52", + "_tpl": "57dbb57e2459774673234890", + "slotId": "mod_muzzle", + "parentId": "67cff49bafd15d674c03fa4e" + }, + { + "_id": "67cff49bafd15d674c03fa53", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff49bafd15d674c03fa50" + }, + { + "_id": "67cff49bafd15d674c03fa54", + "_tpl": "655df24fdf80b12750626d0a", + "slotId": "mod_foregrip", + "parentId": "67cff49bafd15d674c03fa51" + }, + { + "_id": "67cff49bafd15d674c03fa55", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67cff49bafd15d674c03fa4d" + } + ] + }, + { + "Id": "67cff5520100185b95e1e410", + "Name": "supr okp kbp", + "Root": "67cff55dafd15d674c042774", + "Items": [ + { + "_id": "67cff55dafd15d674c042774", + "_tpl": "644674a13d52156624001fbc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff55dafd15d674c042775", + "_tpl": "6450ec2e7da7133e5a09ca96", + "slotId": "mod_magazine", + "parentId": "67cff55dafd15d674c042774" + }, + { + "_id": "67cff55dafd15d674c042776", + "_tpl": "6450f21a3d52156624001fcf", + "slotId": "mod_pistol_grip", + "parentId": "67cff55dafd15d674c042774" + }, + { + "_id": "67cff55dafd15d674c042777", + "_tpl": "6451167ad4928d46d30be3fd", + "slotId": "mod_stock_000", + "parentId": "67cff55dafd15d674c042774" + }, + { + "_id": "67cff55dafd15d674c042778", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff55dafd15d674c042774" + }, + { + "_id": "67cff55dafd15d674c042779", + "_tpl": "645122f6d4928d46d30be3ff", + "slotId": "mod_barrel", + "parentId": "67cff55dafd15d674c042774" + }, + { + "_id": "67cff55dafd15d674c04277a", + "_tpl": "64527a3a7da7133e5a09ca99", + "slotId": "mod_muzzle", + "parentId": "67cff55dafd15d674c042779" + }, + { + "_id": "67cff55dafd15d674c04277b", + "_tpl": "644675573d52156624001fc9", + "slotId": "mod_handguard", + "parentId": "67cff55dafd15d674c042779" + } + ] + }, + { + "Id": "67cff56e0100185b95d73d0c", + "Name": "loud shit kbp", + "Root": "67cff576afd15d674c04277e", + "Items": [ + { + "_id": "67cff576afd15d674c04277e", + "_tpl": "644674a13d52156624001fbc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff576afd15d674c04277f", + "_tpl": "6450ec2e7da7133e5a09ca96", + "slotId": "mod_magazine", + "parentId": "67cff576afd15d674c04277e" + }, + { + "_id": "67cff576afd15d674c042780", + "_tpl": "6450f21a3d52156624001fcf", + "slotId": "mod_pistol_grip", + "parentId": "67cff576afd15d674c04277e" + }, + { + "_id": "67cff576afd15d674c042781", + "_tpl": "6451167ad4928d46d30be3fd", + "slotId": "mod_stock_000", + "parentId": "67cff576afd15d674c04277e" + }, + { + "_id": "67cff576afd15d674c042782", + "_tpl": "6544d4187c5457729210d277", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff576afd15d674c04277e" + }, + { + "_id": "67cff576afd15d674c042783", + "_tpl": "645122f6d4928d46d30be3ff", + "slotId": "mod_barrel", + "parentId": "67cff576afd15d674c04277e" + }, + { + "_id": "67cff576afd15d674c042784", + "_tpl": "64527a263d52156624001fd7", + "slotId": "mod_muzzle", + "parentId": "67cff576afd15d674c042783" + }, + { + "_id": "67cff576afd15d674c042785", + "_tpl": "644675573d52156624001fc9", + "slotId": "mod_handguard", + "parentId": "67cff576afd15d674c042783" + } + ] + }, + { + "Id": "67cff5830100185b95417fcd", + "Name": "supr pso kbp", + "Root": "67cff588afd15d674c0427bb", + "Items": [ + { + "_id": "67cff588afd15d674c0427bb", + "_tpl": "644674a13d52156624001fbc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff588afd15d674c0427bc", + "_tpl": "6450ec2e7da7133e5a09ca96", + "slotId": "mod_magazine", + "parentId": "67cff588afd15d674c0427bb" + }, + { + "_id": "67cff588afd15d674c0427bd", + "_tpl": "6450f21a3d52156624001fcf", + "slotId": "mod_pistol_grip", + "parentId": "67cff588afd15d674c0427bb" + }, + { + "_id": "67cff588afd15d674c0427be", + "_tpl": "6451167ad4928d46d30be3fd", + "slotId": "mod_stock_000", + "parentId": "67cff588afd15d674c0427bb" + }, + { + "_id": "67cff588afd15d674c0427bf", + "_tpl": "5c82342f2e221644f31c060e", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff588afd15d674c0427bb" + }, + { + "_id": "67cff588afd15d674c0427c0", + "_tpl": "645122f6d4928d46d30be3ff", + "slotId": "mod_barrel", + "parentId": "67cff588afd15d674c0427bb" + }, + { + "_id": "67cff588afd15d674c0427c1", + "_tpl": "64527a3a7da7133e5a09ca99", + "slotId": "mod_muzzle", + "parentId": "67cff588afd15d674c0427c0" + }, + { + "_id": "67cff588afd15d674c0427c2", + "_tpl": "644675573d52156624001fc9", + "slotId": "mod_handguard", + "parentId": "67cff588afd15d674c0427c0" + } + ] + }, + { + "Id": "67cff59f0100185b959ea8db", + "Name": "supr ekp kbp", + "Root": "67cff5a4afd15d674c043666", + "Items": [ + { + "_id": "67cff5a4afd15d674c043666", + "_tpl": "644674a13d52156624001fbc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff5a4afd15d674c043667", + "_tpl": "6450ec2e7da7133e5a09ca96", + "slotId": "mod_magazine", + "parentId": "67cff5a4afd15d674c043666" + }, + { + "_id": "67cff5a4afd15d674c043668", + "_tpl": "6450f21a3d52156624001fcf", + "slotId": "mod_pistol_grip", + "parentId": "67cff5a4afd15d674c043666" + }, + { + "_id": "67cff5a4afd15d674c043669", + "_tpl": "6451167ad4928d46d30be3fd", + "slotId": "mod_stock_000", + "parentId": "67cff5a4afd15d674c043666" + }, + { + "_id": "67cff5a4afd15d674c04366a", + "_tpl": "5947db3f86f77447880cf76f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff5a4afd15d674c043666" + }, + { + "_id": "67cff5a4afd15d674c04366b", + "_tpl": "645122f6d4928d46d30be3ff", + "slotId": "mod_barrel", + "parentId": "67cff5a4afd15d674c043666" + }, + { + "_id": "67cff5a4afd15d674c04366c", + "_tpl": "64527a3a7da7133e5a09ca99", + "slotId": "mod_muzzle", + "parentId": "67cff5a4afd15d674c04366b" + }, + { + "_id": "67cff5a4afd15d674c04366d", + "_tpl": "644675573d52156624001fc9", + "slotId": "mod_handguard", + "parentId": "67cff5a4afd15d674c04366b" + } + ] + }, + { + "Id": "67cff5be0100185b95d1bf3d", + "Name": "supr okp vsk", + "Root": "67cff5caafd15d674c043670", + "Items": [ + { + "_id": "67cff5caafd15d674c043670", + "_tpl": "645e0c6b3b381ede770e1cc9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff5caafd15d674c043671", + "_tpl": "6450ec2e7da7133e5a09ca96", + "slotId": "mod_magazine", + "parentId": "67cff5caafd15d674c043670" + }, + { + "_id": "67cff5caafd15d674c043672", + "_tpl": "6452519e3d52156624001fd5", + "slotId": "mod_stock", + "parentId": "67cff5caafd15d674c043670" + }, + { + "_id": "67cff5caafd15d674c043673", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff5caafd15d674c043670" + }, + { + "_id": "67cff5caafd15d674c043674", + "_tpl": "645123013d52156624001fd1", + "slotId": "mod_barrel", + "parentId": "67cff5caafd15d674c043670" + }, + { + "_id": "67cff5caafd15d674c043675", + "_tpl": "64527a3a7da7133e5a09ca99", + "slotId": "mod_muzzle", + "parentId": "67cff5caafd15d674c043674" + }, + { + "_id": "67cff5caafd15d674c043676", + "_tpl": "6448f2f6d4928d46d30be3f6", + "slotId": "mod_handguard", + "parentId": "67cff5caafd15d674c043674" + }, + { + "_id": "67cff5caafd15d674c043677", + "_tpl": "57a3459f245977764a01f703", + "slotId": "mod_mount", + "parentId": "67cff5caafd15d674c043675" + }, + { + "_id": "67cff5caafd15d674c043678", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff5caafd15d674c043677" + } + ] + }, + { + "Id": "67cff5d80100185b9516afa8", + "Name": "supr okp vsk v2", + "Root": "67cff5dcafd15d674c04367b", + "Items": [ + { + "_id": "67cff5dcafd15d674c04367b", + "_tpl": "645e0c6b3b381ede770e1cc9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff5dcafd15d674c04367c", + "_tpl": "6450ec2e7da7133e5a09ca96", + "slotId": "mod_magazine", + "parentId": "67cff5dcafd15d674c04367b" + }, + { + "_id": "67cff5dcafd15d674c04367d", + "_tpl": "6452519e3d52156624001fd5", + "slotId": "mod_stock", + "parentId": "67cff5dcafd15d674c04367b" + }, + { + "_id": "67cff5dcafd15d674c04367e", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff5dcafd15d674c04367b" + }, + { + "_id": "67cff5dcafd15d674c04367f", + "_tpl": "645123013d52156624001fd1", + "slotId": "mod_barrel", + "parentId": "67cff5dcafd15d674c04367b" + }, + { + "_id": "67cff5dcafd15d674c043680", + "_tpl": "64527a3a7da7133e5a09ca99", + "slotId": "mod_muzzle", + "parentId": "67cff5dcafd15d674c04367f" + }, + { + "_id": "67cff5dcafd15d674c043681", + "_tpl": "6448f2f6d4928d46d30be3f6", + "slotId": "mod_handguard", + "parentId": "67cff5dcafd15d674c04367f" + }, + { + "_id": "67cff5dcafd15d674c043682", + "_tpl": "57a3459f245977764a01f703", + "slotId": "mod_mount", + "parentId": "67cff5dcafd15d674c043680" + }, + { + "_id": "67cff5dcafd15d674c043683", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff5dcafd15d674c043682" + } + ] + }, + { + "Id": "67cff5e80100185b95100343", + "Name": "supr ekp vsk", + "Root": "67cff5edafd15d674c0445ee", + "Items": [ + { + "_id": "67cff5edafd15d674c0445ee", + "_tpl": "645e0c6b3b381ede770e1cc9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff5edafd15d674c0445ef", + "_tpl": "6450ec2e7da7133e5a09ca96", + "slotId": "mod_magazine", + "parentId": "67cff5edafd15d674c0445ee" + }, + { + "_id": "67cff5edafd15d674c0445f0", + "_tpl": "6452519e3d52156624001fd5", + "slotId": "mod_stock", + "parentId": "67cff5edafd15d674c0445ee" + }, + { + "_id": "67cff5edafd15d674c0445f1", + "_tpl": "5947db3f86f77447880cf76f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff5edafd15d674c0445ee" + }, + { + "_id": "67cff5edafd15d674c0445f2", + "_tpl": "645123013d52156624001fd1", + "slotId": "mod_barrel", + "parentId": "67cff5edafd15d674c0445ee" + }, + { + "_id": "67cff5edafd15d674c0445f3", + "_tpl": "64527a3a7da7133e5a09ca99", + "slotId": "mod_muzzle", + "parentId": "67cff5edafd15d674c0445f2" + }, + { + "_id": "67cff5edafd15d674c0445f4", + "_tpl": "6448f2f6d4928d46d30be3f6", + "slotId": "mod_handguard", + "parentId": "67cff5edafd15d674c0445f2" + }, + { + "_id": "67cff5edafd15d674c0445f5", + "_tpl": "57a3459f245977764a01f703", + "slotId": "mod_mount", + "parentId": "67cff5edafd15d674c0445f3" + }, + { + "_id": "67cff5edafd15d674c0445f6", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff5edafd15d674c0445f5" + } + ] + }, + { + "Id": "67cff6010100185b95060325", + "Name": "supr ekp2 vsk", + "Root": "67cff608afd15d674c0445f9", + "Items": [ + { + "_id": "67cff608afd15d674c0445f9", + "_tpl": "645e0c6b3b381ede770e1cc9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff608afd15d674c0445fa", + "_tpl": "6450ec2e7da7133e5a09ca96", + "slotId": "mod_magazine", + "parentId": "67cff608afd15d674c0445f9" + }, + { + "_id": "67cff608afd15d674c0445fb", + "_tpl": "6452519e3d52156624001fd5", + "slotId": "mod_stock", + "parentId": "67cff608afd15d674c0445f9" + }, + { + "_id": "67cff608afd15d674c0445fc", + "_tpl": "6544d4187c5457729210d277", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff608afd15d674c0445f9" + }, + { + "_id": "67cff608afd15d674c0445fd", + "_tpl": "645123013d52156624001fd1", + "slotId": "mod_barrel", + "parentId": "67cff608afd15d674c0445f9" + }, + { + "_id": "67cff608afd15d674c0445fe", + "_tpl": "64527a3a7da7133e5a09ca99", + "slotId": "mod_muzzle", + "parentId": "67cff608afd15d674c0445fd" + }, + { + "_id": "67cff608afd15d674c0445ff", + "_tpl": "6448f2f6d4928d46d30be3f6", + "slotId": "mod_handguard", + "parentId": "67cff608afd15d674c0445fd" + }, + { + "_id": "67cff608afd15d674c044600", + "_tpl": "57a3459f245977764a01f703", + "slotId": "mod_mount", + "parentId": "67cff608afd15d674c0445fe" + }, + { + "_id": "67cff608afd15d674c044601", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff608afd15d674c044600" + } + ] + }, + { + "Id": "67cff6780100185b953c7a5b", + "Name": "supr valday rfb", + "Root": "67cff67fafd15d674c046461", + "Items": [ + { + "_id": "67cff67fafd15d674c046461", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff67fafd15d674c046462", + "_tpl": "5b099ac65acfc400186331e1", + "slotId": "mod_magazine", + "parentId": "67cff67fafd15d674c046461" + }, + { + "_id": "67cff67fafd15d674c046463", + "_tpl": "5f2aa46b878ef416f538b567", + "slotId": "mod_barrel", + "parentId": "67cff67fafd15d674c046461" + }, + { + "_id": "67cff67fafd15d674c046464", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "slotId": "mod_handguard", + "parentId": "67cff67fafd15d674c046461" + }, + { + "_id": "67cff67fafd15d674c046465", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "slotId": "mod_mount", + "parentId": "67cff67fafd15d674c046461" + }, + { + "_id": "67cff67fafd15d674c046466", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "slotId": "mod_muzzle", + "parentId": "67cff67fafd15d674c046463" + }, + { + "_id": "67cff67fafd15d674c046467", + "_tpl": "5f2aa493cd375f14e15eea72", + "slotId": "mod_mount_000", + "parentId": "67cff67fafd15d674c046464" + }, + { + "_id": "67cff67fafd15d674c046468", + "_tpl": "5c0517910db83400232ffee5", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff67fafd15d674c046465" + }, + { + "_id": "67cff67fafd15d674c046469", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67cff67fafd15d674c046466" + }, + { + "_id": "67cff67fafd15d674c04646a", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cff67fafd15d674c046467" + } + ] + }, + { + "Id": "67cff6890100185b95c3d2c4", + "Name": "supr holo rfb", + "Root": "67cff68eafd15d674c04646e", + "Items": [ + { + "_id": "67cff68eafd15d674c04646e", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff68eafd15d674c04646f", + "_tpl": "5b099ac65acfc400186331e1", + "slotId": "mod_magazine", + "parentId": "67cff68eafd15d674c04646e" + }, + { + "_id": "67cff68eafd15d674c046470", + "_tpl": "5f2aa46b878ef416f538b567", + "slotId": "mod_barrel", + "parentId": "67cff68eafd15d674c04646e" + }, + { + "_id": "67cff68eafd15d674c046471", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "slotId": "mod_handguard", + "parentId": "67cff68eafd15d674c04646e" + }, + { + "_id": "67cff68eafd15d674c046472", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "slotId": "mod_mount", + "parentId": "67cff68eafd15d674c04646e" + }, + { + "_id": "67cff68eafd15d674c046473", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "slotId": "mod_muzzle", + "parentId": "67cff68eafd15d674c046470" + }, + { + "_id": "67cff68eafd15d674c046474", + "_tpl": "5f2aa493cd375f14e15eea72", + "slotId": "mod_mount_000", + "parentId": "67cff68eafd15d674c046471" + }, + { + "_id": "67cff68eafd15d674c046475", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff68eafd15d674c046472" + }, + { + "_id": "67cff68eafd15d674c046476", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67cff68eafd15d674c046473" + }, + { + "_id": "67cff68eafd15d674c046477", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cff68eafd15d674c046474" + } + ] + }, + { + "Id": "67cff6ac0100185b952f0464", + "Name": "loud specter rfb", + "Root": "67cff6b4afd15d674c0471e3", + "Items": [ + { + "_id": "67cff6b4afd15d674c0471e3", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff6b4afd15d674c0471e4", + "_tpl": "5b099ac65acfc400186331e1", + "slotId": "mod_magazine", + "parentId": "67cff6b4afd15d674c0471e3" + }, + { + "_id": "67cff6b4afd15d674c0471e5", + "_tpl": "5f2aa46b878ef416f538b567", + "slotId": "mod_barrel", + "parentId": "67cff6b4afd15d674c0471e3" + }, + { + "_id": "67cff6b4afd15d674c0471e6", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "slotId": "mod_handguard", + "parentId": "67cff6b4afd15d674c0471e3" + }, + { + "_id": "67cff6b4afd15d674c0471e7", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "slotId": "mod_mount", + "parentId": "67cff6b4afd15d674c0471e3" + }, + { + "_id": "67cff6b4afd15d674c0471e8", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "slotId": "mod_muzzle", + "parentId": "67cff6b4afd15d674c0471e5" + }, + { + "_id": "67cff6b4afd15d674c0471e9", + "_tpl": "5f2aa493cd375f14e15eea72", + "slotId": "mod_mount_000", + "parentId": "67cff6b4afd15d674c0471e6" + }, + { + "_id": "67cff6b4afd15d674c0471ea", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff6b4afd15d674c0471e7" + }, + { + "_id": "67cff6b4afd15d674c0471eb", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67cff6b4afd15d674c0471e8" + }, + { + "_id": "67cff6b4afd15d674c0471ec", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cff6b4afd15d674c0471e9" + } + ] + }, + { + "Id": "67cff6c80100185b955f0c3b", + "Name": "supr specter rfb", + "Root": "67cff6cbafd15d674c0471f0", + "Items": [ + { + "_id": "67cff6cbafd15d674c0471f0", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff6cbafd15d674c0471f1", + "_tpl": "5b099ac65acfc400186331e1", + "slotId": "mod_magazine", + "parentId": "67cff6cbafd15d674c0471f0" + }, + { + "_id": "67cff6cbafd15d674c0471f2", + "_tpl": "5f2aa46b878ef416f538b567", + "slotId": "mod_barrel", + "parentId": "67cff6cbafd15d674c0471f0" + }, + { + "_id": "67cff6cbafd15d674c0471f3", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "slotId": "mod_handguard", + "parentId": "67cff6cbafd15d674c0471f0" + }, + { + "_id": "67cff6cbafd15d674c0471f4", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "slotId": "mod_mount", + "parentId": "67cff6cbafd15d674c0471f0" + }, + { + "_id": "67cff6cbafd15d674c0471f5", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "slotId": "mod_muzzle", + "parentId": "67cff6cbafd15d674c0471f2" + }, + { + "_id": "67cff6cbafd15d674c0471f6", + "_tpl": "5f2aa493cd375f14e15eea72", + "slotId": "mod_mount_000", + "parentId": "67cff6cbafd15d674c0471f3" + }, + { + "_id": "67cff6cbafd15d674c0471f7", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff6cbafd15d674c0471f4" + }, + { + "_id": "67cff6cbafd15d674c0471f8", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67cff6cbafd15d674c0471f5" + }, + { + "_id": "67cff6cbafd15d674c0471f9", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cff6cbafd15d674c0471f6" + } + ] + }, + { + "Id": "67cff6e00100185b957a6303", + "Name": "supr tac30 rfb", + "Root": "67cff6e6afd15d674c04802e", + "Items": [ + { + "_id": "67cff6e6afd15d674c04802e", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff6e6afd15d674c04802f", + "_tpl": "5b099ac65acfc400186331e1", + "slotId": "mod_magazine", + "parentId": "67cff6e6afd15d674c04802e" + }, + { + "_id": "67cff6e6afd15d674c048030", + "_tpl": "5f2aa46b878ef416f538b567", + "slotId": "mod_barrel", + "parentId": "67cff6e6afd15d674c04802e" + }, + { + "_id": "67cff6e6afd15d674c048031", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "slotId": "mod_handguard", + "parentId": "67cff6e6afd15d674c04802e" + }, + { + "_id": "67cff6e6afd15d674c048032", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "slotId": "mod_mount", + "parentId": "67cff6e6afd15d674c04802e" + }, + { + "_id": "67cff6e6afd15d674c048033", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "slotId": "mod_muzzle", + "parentId": "67cff6e6afd15d674c048030" + }, + { + "_id": "67cff6e6afd15d674c048034", + "_tpl": "5f2aa493cd375f14e15eea72", + "slotId": "mod_mount_000", + "parentId": "67cff6e6afd15d674c048031" + }, + { + "_id": "67cff6e6afd15d674c048035", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67cff6e6afd15d674c048032" + }, + { + "_id": "67cff6e6afd15d674c048036", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67cff6e6afd15d674c048033" + }, + { + "_id": "67cff6e6afd15d674c048037", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67cff6e6afd15d674c048034" + }, + { + "_id": "67cff6e6afd15d674c048038", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff6e6afd15d674c048035" + } + ] + }, + { + "Id": "67cff6fe0100185b954e6f56", + "Name": "loud tac30 rfb", + "Root": "67cff72cafd15d674c048e77", + "Items": [ + { + "_id": "67cff72cafd15d674c048e77", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff72cafd15d674c048e78", + "_tpl": "5b099ac65acfc400186331e1", + "slotId": "mod_magazine", + "parentId": "67cff72cafd15d674c048e77" + }, + { + "_id": "67cff72cafd15d674c048e79", + "_tpl": "5f2aa46b878ef416f538b567", + "slotId": "mod_barrel", + "parentId": "67cff72cafd15d674c048e77" + }, + { + "_id": "67cff72cafd15d674c048e7a", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "slotId": "mod_handguard", + "parentId": "67cff72cafd15d674c048e77" + }, + { + "_id": "67cff72cafd15d674c048e7b", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "slotId": "mod_mount", + "parentId": "67cff72cafd15d674c048e77" + }, + { + "_id": "67cff72cafd15d674c048e7c", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "slotId": "mod_muzzle", + "parentId": "67cff72cafd15d674c048e79" + }, + { + "_id": "67cff72cafd15d674c048e7d", + "_tpl": "5f2aa493cd375f14e15eea72", + "slotId": "mod_mount_000", + "parentId": "67cff72cafd15d674c048e7a" + }, + { + "_id": "67cff72cafd15d674c048e7e", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67cff72cafd15d674c048e7b" + }, + { + "_id": "67cff72cafd15d674c048e7f", + "_tpl": "5cdd7685d7f00c000f260ed2", + "slotId": "mod_muzzle", + "parentId": "67cff72cafd15d674c048e7c" + }, + { + "_id": "67cff72cafd15d674c048e80", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67cff72cafd15d674c048e7d" + }, + { + "_id": "67cff72cafd15d674c048e81", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff72cafd15d674c048e7e" + } + ] + }, + { + "Id": "67cff75d0100185b95903f12", + "Name": "supr hamr tx15", + "Root": "67cff767afd15d674c049d22", + "Items": [ + { + "_id": "67cff767afd15d674c049d22", + "_tpl": "5d43021ca4b9362eab4b5e25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff767afd15d674c049d23", + "_tpl": "55802f5d4bdc2dac148b458f", + "slotId": "mod_pistol_grip", + "parentId": "67cff767afd15d674c049d22" + }, + { + "_id": "67cff767afd15d674c049d24", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cff767afd15d674c049d22" + }, + { + "_id": "67cff767afd15d674c049d25", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "slotId": "mod_reciever", + "parentId": "67cff767afd15d674c049d22" + }, + { + "_id": "67cff767afd15d674c049d26", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67cff767afd15d674c049d22" + }, + { + "_id": "67cff767afd15d674c049d27", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67cff767afd15d674c049d22" + }, + { + "_id": "67cff767afd15d674c049d28", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff767afd15d674c049d25" + }, + { + "_id": "67cff767afd15d674c049d29", + "_tpl": "5d440b93a4b9364276578d4b", + "slotId": "mod_barrel", + "parentId": "67cff767afd15d674c049d25" + }, + { + "_id": "67cff767afd15d674c049d2a", + "_tpl": "5d4405f0a4b9361e6a4e6bd9", + "slotId": "mod_handguard", + "parentId": "67cff767afd15d674c049d25" + }, + { + "_id": "67cff767afd15d674c049d2b", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "slotId": "mod_stock_000", + "parentId": "67cff767afd15d674c049d26" + }, + { + "_id": "67cff767afd15d674c049d2c", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff767afd15d674c049d28" + }, + { + "_id": "67cff767afd15d674c049d2d", + "_tpl": "5d440625a4b9361eec4ae6c5", + "slotId": "mod_muzzle", + "parentId": "67cff767afd15d674c049d29" + }, + { + "_id": "67cff767afd15d674c049d2e", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff767afd15d674c049d29" + }, + { + "_id": "67cff767afd15d674c049d2f", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_004", + "parentId": "67cff767afd15d674c049d2a" + }, + { + "_id": "67cff767afd15d674c049d30", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cff767afd15d674c049d2a" + }, + { + "_id": "67cff767afd15d674c049d31", + "_tpl": "5d44064fa4b9361e4f6eb8b5", + "slotId": "mod_muzzle", + "parentId": "67cff767afd15d674c049d2d" + }, + { + "_id": "67cff767afd15d674c049d32", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff767afd15d674c049d2f" + }, + { + "_id": "67cff767afd15d674c049d33", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cff767afd15d674c049d30" + } + ] + }, + { + "Id": "67cff7740100185b9577cee8", + "Name": "supr holo tx15", + "Root": "67cff778afd15d674c049d36", + "Items": [ + { + "_id": "67cff778afd15d674c049d36", + "_tpl": "5d43021ca4b9362eab4b5e25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff778afd15d674c049d37", + "_tpl": "55802f5d4bdc2dac148b458f", + "slotId": "mod_pistol_grip", + "parentId": "67cff778afd15d674c049d36" + }, + { + "_id": "67cff778afd15d674c049d38", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cff778afd15d674c049d36" + }, + { + "_id": "67cff778afd15d674c049d39", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "slotId": "mod_reciever", + "parentId": "67cff778afd15d674c049d36" + }, + { + "_id": "67cff778afd15d674c049d3a", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67cff778afd15d674c049d36" + }, + { + "_id": "67cff778afd15d674c049d3b", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67cff778afd15d674c049d36" + }, + { + "_id": "67cff778afd15d674c049d3c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff778afd15d674c049d39" + }, + { + "_id": "67cff778afd15d674c049d3d", + "_tpl": "5d440b93a4b9364276578d4b", + "slotId": "mod_barrel", + "parentId": "67cff778afd15d674c049d39" + }, + { + "_id": "67cff778afd15d674c049d3e", + "_tpl": "5d4405f0a4b9361e6a4e6bd9", + "slotId": "mod_handguard", + "parentId": "67cff778afd15d674c049d39" + }, + { + "_id": "67cff778afd15d674c049d3f", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "slotId": "mod_stock_000", + "parentId": "67cff778afd15d674c049d3a" + }, + { + "_id": "67cff778afd15d674c049d40", + "_tpl": "5d440625a4b9361eec4ae6c5", + "slotId": "mod_muzzle", + "parentId": "67cff778afd15d674c049d3d" + }, + { + "_id": "67cff778afd15d674c049d41", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff778afd15d674c049d3d" + }, + { + "_id": "67cff778afd15d674c049d42", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_004", + "parentId": "67cff778afd15d674c049d3e" + }, + { + "_id": "67cff778afd15d674c049d43", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cff778afd15d674c049d3e" + }, + { + "_id": "67cff778afd15d674c049d44", + "_tpl": "5d44064fa4b9361e4f6eb8b5", + "slotId": "mod_muzzle", + "parentId": "67cff778afd15d674c049d40" + }, + { + "_id": "67cff778afd15d674c049d45", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff778afd15d674c049d42" + }, + { + "_id": "67cff778afd15d674c049d46", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67cff778afd15d674c049d43" + } + ] + }, + { + "Id": "67cff78a0100185b955e4883", + "Name": "supr 2x tx15", + "Root": "67cff793afd15d674c04ac04", + "Items": [ + { + "_id": "67cff793afd15d674c04ac04", + "_tpl": "5d43021ca4b9362eab4b5e25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff793afd15d674c04ac05", + "_tpl": "55802f5d4bdc2dac148b458f", + "slotId": "mod_pistol_grip", + "parentId": "67cff793afd15d674c04ac04" + }, + { + "_id": "67cff793afd15d674c04ac06", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cff793afd15d674c04ac04" + }, + { + "_id": "67cff793afd15d674c04ac07", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "slotId": "mod_reciever", + "parentId": "67cff793afd15d674c04ac04" + }, + { + "_id": "67cff793afd15d674c04ac08", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67cff793afd15d674c04ac04" + }, + { + "_id": "67cff793afd15d674c04ac09", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67cff793afd15d674c04ac04" + }, + { + "_id": "67cff793afd15d674c04ac0a", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff793afd15d674c04ac07" + }, + { + "_id": "67cff793afd15d674c04ac0b", + "_tpl": "5d440b93a4b9364276578d4b", + "slotId": "mod_barrel", + "parentId": "67cff793afd15d674c04ac07" + }, + { + "_id": "67cff793afd15d674c04ac0c", + "_tpl": "5d4405f0a4b9361e6a4e6bd9", + "slotId": "mod_handguard", + "parentId": "67cff793afd15d674c04ac07" + }, + { + "_id": "67cff793afd15d674c04ac0d", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "slotId": "mod_stock_000", + "parentId": "67cff793afd15d674c04ac08" + }, + { + "_id": "67cff793afd15d674c04ac0e", + "_tpl": "5d440625a4b9361eec4ae6c5", + "slotId": "mod_muzzle", + "parentId": "67cff793afd15d674c04ac0b" + }, + { + "_id": "67cff793afd15d674c04ac0f", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff793afd15d674c04ac0b" + }, + { + "_id": "67cff793afd15d674c04ac10", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_004", + "parentId": "67cff793afd15d674c04ac0c" + }, + { + "_id": "67cff793afd15d674c04ac11", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cff793afd15d674c04ac0c" + }, + { + "_id": "67cff793afd15d674c04ac12", + "_tpl": "5d44064fa4b9361e4f6eb8b5", + "slotId": "mod_muzzle", + "parentId": "67cff793afd15d674c04ac0e" + }, + { + "_id": "67cff793afd15d674c04ac13", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff793afd15d674c04ac10" + }, + { + "_id": "67cff793afd15d674c04ac14", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67cff793afd15d674c04ac11" + } + ] + }, + { + "Id": "67cff7a80100185b9537f16d", + "Name": "supr tac30 tx15", + "Root": "67cff7adafd15d674c04ac17", + "Items": [ + { + "_id": "67cff7adafd15d674c04ac17", + "_tpl": "5d43021ca4b9362eab4b5e25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff7adafd15d674c04ac18", + "_tpl": "55802f5d4bdc2dac148b458f", + "slotId": "mod_pistol_grip", + "parentId": "67cff7adafd15d674c04ac17" + }, + { + "_id": "67cff7adafd15d674c04ac19", + "_tpl": "5aaa5dfee5b5b000140293d3", + "slotId": "mod_magazine", + "parentId": "67cff7adafd15d674c04ac17" + }, + { + "_id": "67cff7adafd15d674c04ac1a", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "slotId": "mod_reciever", + "parentId": "67cff7adafd15d674c04ac17" + }, + { + "_id": "67cff7adafd15d674c04ac1b", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67cff7adafd15d674c04ac17" + }, + { + "_id": "67cff7adafd15d674c04ac1c", + "_tpl": "5d44334ba4b9362b346d1948", + "slotId": "mod_charge", + "parentId": "67cff7adafd15d674c04ac17" + }, + { + "_id": "67cff7adafd15d674c04ac1d", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67cff7adafd15d674c04ac1a" + }, + { + "_id": "67cff7adafd15d674c04ac1e", + "_tpl": "5d440b93a4b9364276578d4b", + "slotId": "mod_barrel", + "parentId": "67cff7adafd15d674c04ac1a" + }, + { + "_id": "67cff7adafd15d674c04ac1f", + "_tpl": "5d4405f0a4b9361e6a4e6bd9", + "slotId": "mod_handguard", + "parentId": "67cff7adafd15d674c04ac1a" + }, + { + "_id": "67cff7adafd15d674c04ac20", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "slotId": "mod_stock_000", + "parentId": "67cff7adafd15d674c04ac1b" + }, + { + "_id": "67cff7adafd15d674c04ac21", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff7adafd15d674c04ac1d" + }, + { + "_id": "67cff7adafd15d674c04ac22", + "_tpl": "5d440625a4b9361eec4ae6c5", + "slotId": "mod_muzzle", + "parentId": "67cff7adafd15d674c04ac1e" + }, + { + "_id": "67cff7adafd15d674c04ac23", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67cff7adafd15d674c04ac1e" + }, + { + "_id": "67cff7adafd15d674c04ac24", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_004", + "parentId": "67cff7adafd15d674c04ac1f" + }, + { + "_id": "67cff7adafd15d674c04ac25", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cff7adafd15d674c04ac1f" + }, + { + "_id": "67cff7adafd15d674c04ac26", + "_tpl": "5d44064fa4b9361e4f6eb8b5", + "slotId": "mod_muzzle", + "parentId": "67cff7adafd15d674c04ac22" + }, + { + "_id": "67cff7adafd15d674c04ac27", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cff7adafd15d674c04ac24" + }, + { + "_id": "67cff7adafd15d674c04ac28", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67cff7adafd15d674c04ac25" + } + ] + }, + { + "Id": "67cff8170100185b9571701e", + "Name": "supr ekp vpo", + "Root": "67cff81eafd15d674c04cb5f", + "Items": [ + { + "_id": "67cff81eafd15d674c04cb5f", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff81eafd15d674c04cb60", + "_tpl": "59e649f986f77411d949b246", + "slotId": "mod_gas_block", + "parentId": "67cff81eafd15d674c04cb5f" + }, + { + "_id": "67cff81eafd15d674c04cb61", + "_tpl": "5a9fbb74a2750c0032157181", + "slotId": "mod_muzzle", + "parentId": "67cff81eafd15d674c04cb5f" + }, + { + "_id": "67cff81eafd15d674c04cb62", + "_tpl": "5cf54404d7f00c108840b2ef", + "slotId": "mod_pistol_grip", + "parentId": "67cff81eafd15d674c04cb5f" + }, + { + "_id": "67cff81eafd15d674c04cb63", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cff81eafd15d674c04cb5f" + }, + { + "_id": "67cff81eafd15d674c04cb64", + "_tpl": "59e8977386f77415a553c453", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff81eafd15d674c04cb5f" + }, + { + "_id": "67cff81eafd15d674c04cb65", + "_tpl": "5649b1c04bdc2d16268b457c", + "slotId": "mod_stock", + "parentId": "67cff81eafd15d674c04cb5f" + }, + { + "_id": "67cff81eafd15d674c04cb66", + "_tpl": "5a01c29586f77474660c694c", + "slotId": "mod_magazine", + "parentId": "67cff81eafd15d674c04cb5f" + }, + { + "_id": "67cff81eafd15d674c04cb67", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cff81eafd15d674c04cb5f" + }, + { + "_id": "67cff81eafd15d674c04cb68", + "_tpl": "5648b0744bdc2d363b8b4578", + "slotId": "mod_handguard", + "parentId": "67cff81eafd15d674c04cb60" + }, + { + "_id": "67cff81eafd15d674c04cb69", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff81eafd15d674c04cb63" + }, + { + "_id": "67cff81eafd15d674c04cb6a", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cff81eafd15d674c04cb65" + } + ] + }, + { + "Id": "67cff8500100185b95bcf8b8", + "Name": "supr holo red vpo", + "Root": "67cff8c3afd15d674c04f975", + "Items": [ + { + "_id": "67cff8c3afd15d674c04f975", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff8c3afd15d674c04f976", + "_tpl": "59e649f986f77411d949b246", + "slotId": "mod_gas_block", + "parentId": "67cff8c3afd15d674c04f975" + }, + { + "_id": "67cff8c3afd15d674c04f977", + "_tpl": "5a9fbb74a2750c0032157181", + "slotId": "mod_muzzle", + "parentId": "67cff8c3afd15d674c04f975" + }, + { + "_id": "67cff8c3afd15d674c04f978", + "_tpl": "5e2192a498a36665e8337386", + "slotId": "mod_pistol_grip", + "parentId": "67cff8c3afd15d674c04f975" + }, + { + "_id": "67cff8c3afd15d674c04f979", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cff8c3afd15d674c04f975" + }, + { + "_id": "67cff8c3afd15d674c04f97a", + "_tpl": "59e8977386f77415a553c453", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff8c3afd15d674c04f975" + }, + { + "_id": "67cff8c3afd15d674c04f97b", + "_tpl": "5e217ba4c1434648c13568cd", + "slotId": "mod_stock", + "parentId": "67cff8c3afd15d674c04f975" + }, + { + "_id": "67cff8c3afd15d674c04f97c", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cff8c3afd15d674c04f975" + }, + { + "_id": "67cff8c3afd15d674c04f97d", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cff8c3afd15d674c04f975" + }, + { + "_id": "67cff8c3afd15d674c04f97e", + "_tpl": "5d4aaa54a4b9365392071170", + "slotId": "mod_handguard", + "parentId": "67cff8c3afd15d674c04f976" + }, + { + "_id": "67cff8c3afd15d674c04f97f", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff8c3afd15d674c04f979" + }, + { + "_id": "67cff8c3afd15d674c04f980", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67cff8c3afd15d674c04f97e" + }, + { + "_id": "67cff8c3afd15d674c04f981", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67cff8c3afd15d674c04f980" + } + ] + }, + { + "Id": "67cff8e40100185b9577b3fd", + "Name": "loud pk120 vpo", + "Root": "67cff900afd15d674c05070c", + "Items": [ + { + "_id": "67cff900afd15d674c05070c", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff900afd15d674c05070d", + "_tpl": "59e649f986f77411d949b246", + "slotId": "mod_gas_block", + "parentId": "67cff900afd15d674c05070c" + }, + { + "_id": "67cff900afd15d674c05070e", + "_tpl": "59e8a00d86f7742ad93b569c", + "slotId": "mod_muzzle", + "parentId": "67cff900afd15d674c05070c" + }, + { + "_id": "67cff900afd15d674c05070f", + "_tpl": "5a0071d486f77404e23a12b2", + "slotId": "mod_pistol_grip", + "parentId": "67cff900afd15d674c05070c" + }, + { + "_id": "67cff900afd15d674c050710", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cff900afd15d674c05070c" + }, + { + "_id": "67cff900afd15d674c050711", + "_tpl": "59e8977386f77415a553c453", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff900afd15d674c05070c" + }, + { + "_id": "67cff900afd15d674c050712", + "_tpl": "5649b1c04bdc2d16268b457c", + "slotId": "mod_stock", + "parentId": "67cff900afd15d674c05070c" + }, + { + "_id": "67cff900afd15d674c050713", + "_tpl": "5a01c29586f77474660c694c", + "slotId": "mod_magazine", + "parentId": "67cff900afd15d674c05070c" + }, + { + "_id": "67cff900afd15d674c050714", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cff900afd15d674c05070c" + }, + { + "_id": "67cff900afd15d674c050715", + "_tpl": "5648b0744bdc2d363b8b4578", + "slotId": "mod_handguard", + "parentId": "67cff900afd15d674c05070d" + }, + { + "_id": "67cff900afd15d674c050716", + "_tpl": "5c0505e00db834001b735073", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff900afd15d674c050710" + }, + { + "_id": "67cff900afd15d674c050717", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cff900afd15d674c050712" + } + ] + }, + { + "Id": "67cff92d0100185b95961834", + "Name": "loud krechet vpo", + "Root": "67cff958afd15d674c052453", + "Items": [ + { + "_id": "67cff958afd15d674c052453", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cff958afd15d674c052454", + "_tpl": "59e649f986f77411d949b246", + "slotId": "mod_gas_block", + "parentId": "67cff958afd15d674c052453" + }, + { + "_id": "67cff958afd15d674c052455", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "slotId": "mod_pistol_grip", + "parentId": "67cff958afd15d674c052453" + }, + { + "_id": "67cff958afd15d674c052456", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cff958afd15d674c052453" + }, + { + "_id": "67cff958afd15d674c052457", + "_tpl": "59e8977386f77415a553c453", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff958afd15d674c052453" + }, + { + "_id": "67cff958afd15d674c052458", + "_tpl": "5649b1c04bdc2d16268b457c", + "slotId": "mod_stock", + "parentId": "67cff958afd15d674c052453" + }, + { + "_id": "67cff958afd15d674c052459", + "_tpl": "5a01c29586f77474660c694c", + "slotId": "mod_magazine", + "parentId": "67cff958afd15d674c052453" + }, + { + "_id": "67cff958afd15d674c05245a", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cff958afd15d674c052453" + }, + { + "_id": "67cff958afd15d674c05245b", + "_tpl": "5648b0744bdc2d363b8b4578", + "slotId": "mod_handguard", + "parentId": "67cff958afd15d674c052454" + }, + { + "_id": "67cff958afd15d674c05245c", + "_tpl": "609a63b6e2ff132951242d09", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cff958afd15d674c052456" + }, + { + "_id": "67cff958afd15d674c05245d", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cff958afd15d674c052458" + } + ] + }, + { + "Id": "67cffd9c0100185b95585de5", + "Name": "supr dp veprkm", + "Root": "67cffda8afd15d674c068c3f", + "Items": [ + { + "_id": "67cffda8afd15d674c068c3f", + "_tpl": "59e6152586f77473dc057aa1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cffda8afd15d674c068c40", + "_tpl": "59e649f986f77411d949b246", + "slotId": "mod_gas_block", + "parentId": "67cffda8afd15d674c068c3f" + }, + { + "_id": "67cffda8afd15d674c068c41", + "_tpl": "593d489686f7745c6255d58a", + "slotId": "mod_muzzle", + "parentId": "67cffda8afd15d674c068c3f" + }, + { + "_id": "67cffda8afd15d674c068c42", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "slotId": "mod_pistol_grip", + "parentId": "67cffda8afd15d674c068c3f" + }, + { + "_id": "67cffda8afd15d674c068c43", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cffda8afd15d674c068c3f" + }, + { + "_id": "67cffda8afd15d674c068c44", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffda8afd15d674c068c3f" + }, + { + "_id": "67cffda8afd15d674c068c45", + "_tpl": "59e6227d86f77440d64f5dc2", + "slotId": "mod_stock", + "parentId": "67cffda8afd15d674c068c3f" + }, + { + "_id": "67cffda8afd15d674c068c46", + "_tpl": "5ac66bea5acfc43b321d4aec", + "slotId": "mod_magazine", + "parentId": "67cffda8afd15d674c068c3f" + }, + { + "_id": "67cffda8afd15d674c068c47", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cffda8afd15d674c068c3f" + }, + { + "_id": "67cffda8afd15d674c068c48", + "_tpl": "59e6284f86f77440d569536f", + "slotId": "mod_handguard", + "parentId": "67cffda8afd15d674c068c40" + }, + { + "_id": "67cffda8afd15d674c068c49", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67cffda8afd15d674c068c43" + }, + { + "_id": "67cffda8afd15d674c068c4a", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67cffda8afd15d674c068c45" + }, + { + "_id": "67cffda8afd15d674c068c4b", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffda8afd15d674c068c49" + } + ] + }, + { + "Id": "67cffdd90100185b95a74d43", + "Name": "supr dp veprkm v2", + "Root": "67cffddeafd15d674c06ab2c", + "Items": [ + { + "_id": "67cffddeafd15d674c06ab2c", + "_tpl": "59e6152586f77473dc057aa1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cffddeafd15d674c06ab2d", + "_tpl": "59e649f986f77411d949b246", + "slotId": "mod_gas_block", + "parentId": "67cffddeafd15d674c06ab2c" + }, + { + "_id": "67cffddeafd15d674c06ab2e", + "_tpl": "5a9fbacda2750c00141e080f", + "slotId": "mod_muzzle", + "parentId": "67cffddeafd15d674c06ab2c" + }, + { + "_id": "67cffddeafd15d674c06ab2f", + "_tpl": "5e2192a498a36665e8337386", + "slotId": "mod_pistol_grip", + "parentId": "67cffddeafd15d674c06ab2c" + }, + { + "_id": "67cffddeafd15d674c06ab30", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cffddeafd15d674c06ab2c" + }, + { + "_id": "67cffddeafd15d674c06ab31", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffddeafd15d674c06ab2c" + }, + { + "_id": "67cffddeafd15d674c06ab32", + "_tpl": "5b0e794b5acfc47a877359b2", + "slotId": "mod_stock", + "parentId": "67cffddeafd15d674c06ab2c" + }, + { + "_id": "67cffddeafd15d674c06ab33", + "_tpl": "5ac66bea5acfc43b321d4aec", + "slotId": "mod_magazine", + "parentId": "67cffddeafd15d674c06ab2c" + }, + { + "_id": "67cffddeafd15d674c06ab34", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cffddeafd15d674c06ab2c" + }, + { + "_id": "67cffddeafd15d674c06ab35", + "_tpl": "5d4aaa54a4b9365392071170", + "slotId": "mod_handguard", + "parentId": "67cffddeafd15d674c06ab2d" + }, + { + "_id": "67cffddeafd15d674c06ab36", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67cffddeafd15d674c06ab30" + }, + { + "_id": "67cffddeafd15d674c06ab37", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67cffddeafd15d674c06ab35" + }, + { + "_id": "67cffddeafd15d674c06ab38", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_001", + "parentId": "67cffddeafd15d674c06ab35" + }, + { + "_id": "67cffddeafd15d674c06ab39", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cffddeafd15d674c06ab38" + }, + { + "_id": "67cffddeafd15d674c06ab3a", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffddeafd15d674c06ab36" + } + ] + }, + { + "Id": "67cffe070100185b957252d5", + "Name": "loud holo veprkm", + "Root": "67cffe12afd15d674c06bb4a", + "Items": [ + { + "_id": "67cffe12afd15d674c06bb4a", + "_tpl": "59e6152586f77473dc057aa1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cffe12afd15d674c06bb4b", + "_tpl": "59e649f986f77411d949b246", + "slotId": "mod_gas_block", + "parentId": "67cffe12afd15d674c06bb4a" + }, + { + "_id": "67cffe12afd15d674c06bb4c", + "_tpl": "5c7951452e221644f31bfd5c", + "slotId": "mod_muzzle", + "parentId": "67cffe12afd15d674c06bb4a" + }, + { + "_id": "67cffe12afd15d674c06bb4d", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "slotId": "mod_pistol_grip", + "parentId": "67cffe12afd15d674c06bb4a" + }, + { + "_id": "67cffe12afd15d674c06bb4e", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cffe12afd15d674c06bb4a" + }, + { + "_id": "67cffe12afd15d674c06bb4f", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffe12afd15d674c06bb4a" + }, + { + "_id": "67cffe12afd15d674c06bb50", + "_tpl": "5b04473a5acfc40018632f70", + "slotId": "mod_stock", + "parentId": "67cffe12afd15d674c06bb4a" + }, + { + "_id": "67cffe12afd15d674c06bb51", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cffe12afd15d674c06bb4a" + }, + { + "_id": "67cffe12afd15d674c06bb52", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cffe12afd15d674c06bb4a" + }, + { + "_id": "67cffe12afd15d674c06bb53", + "_tpl": "5d1b198cd7ad1a604869ad72", + "slotId": "mod_handguard", + "parentId": "67cffe12afd15d674c06bb4b" + }, + { + "_id": "67cffe12afd15d674c06bb54", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffe12afd15d674c06bb4e" + }, + { + "_id": "67cffe12afd15d674c06bb55", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67cffe12afd15d674c06bb53" + }, + { + "_id": "67cffe12afd15d674c06bb56", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67cffe12afd15d674c06bb53" + }, + { + "_id": "67cffe12afd15d674c06bb57", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cffe12afd15d674c06bb56" + } + ] + }, + { + "Id": "67cffe400100185b953a76cc", + "Name": "loud ekp veprkm", + "Root": "67cffe49afd15d674c06ca6b", + "Items": [ + { + "_id": "67cffe49afd15d674c06ca6b", + "_tpl": "59e6152586f77473dc057aa1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cffe49afd15d674c06ca6c", + "_tpl": "59e649f986f77411d949b246", + "slotId": "mod_gas_block", + "parentId": "67cffe49afd15d674c06ca6b" + }, + { + "_id": "67cffe49afd15d674c06ca6d", + "_tpl": "5c7951452e221644f31bfd5c", + "slotId": "mod_muzzle", + "parentId": "67cffe49afd15d674c06ca6b" + }, + { + "_id": "67cffe49afd15d674c06ca6e", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "slotId": "mod_pistol_grip", + "parentId": "67cffe49afd15d674c06ca6b" + }, + { + "_id": "67cffe49afd15d674c06ca6f", + "_tpl": "5d2c770c48f0354b4a07c100", + "slotId": "mod_reciever", + "parentId": "67cffe49afd15d674c06ca6b" + }, + { + "_id": "67cffe49afd15d674c06ca70", + "_tpl": "59d650cf86f7741b846413a4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffe49afd15d674c06ca6b" + }, + { + "_id": "67cffe49afd15d674c06ca71", + "_tpl": "5b04473a5acfc40018632f70", + "slotId": "mod_stock", + "parentId": "67cffe49afd15d674c06ca6b" + }, + { + "_id": "67cffe49afd15d674c06ca72", + "_tpl": "59fafc5086f7740dbe19f6c3", + "slotId": "mod_magazine", + "parentId": "67cffe49afd15d674c06ca6b" + }, + { + "_id": "67cffe49afd15d674c06ca73", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67cffe49afd15d674c06ca6b" + }, + { + "_id": "67cffe49afd15d674c06ca74", + "_tpl": "5d1b198cd7ad1a604869ad72", + "slotId": "mod_handguard", + "parentId": "67cffe49afd15d674c06ca6c" + }, + { + "_id": "67cffe49afd15d674c06ca75", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffe49afd15d674c06ca6f" + }, + { + "_id": "67cffe49afd15d674c06ca76", + "_tpl": "651a8bf3a8520e48047bf708", + "slotId": "mod_foregrip", + "parentId": "67cffe49afd15d674c06ca74" + }, + { + "_id": "67cffe49afd15d674c06ca77", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67cffe49afd15d674c06ca74" + }, + { + "_id": "67cffe49afd15d674c06ca78", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67cffe49afd15d674c06ca77" + } + ] + }, + { + "Id": "67cffeb00100185b95c2bf06", + "Name": "supr okp vpo101", + "Root": "67cffec2afd15d674c06fb8b", + "Items": [ + { + "_id": "67cffec2afd15d674c06fb8b", + "_tpl": "5c501a4d2e221602b412b540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cffec2afd15d674c06fb8c", + "_tpl": "5c5039be2e221602b177c9ff", + "slotId": "mod_gas_block", + "parentId": "67cffec2afd15d674c06fb8b" + }, + { + "_id": "67cffec2afd15d674c06fb8d", + "_tpl": "5c503d0a2e221602b542b7ef", + "slotId": "mod_reciever", + "parentId": "67cffec2afd15d674c06fb8b" + }, + { + "_id": "67cffec2afd15d674c06fb8e", + "_tpl": "5c503b1c2e221602b21d6e9d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffec2afd15d674c06fb8b" + }, + { + "_id": "67cffec2afd15d674c06fb8f", + "_tpl": "5c503af12e221602b177ca02", + "slotId": "mod_stock", + "parentId": "67cffec2afd15d674c06fb8b" + }, + { + "_id": "67cffec2afd15d674c06fb90", + "_tpl": "5c503ad32e2216398b5aada2", + "slotId": "mod_magazine", + "parentId": "67cffec2afd15d674c06fb8b" + }, + { + "_id": "67cffec2afd15d674c06fb91", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffec2afd15d674c06fb8b" + }, + { + "_id": "67cffec2afd15d674c06fb92", + "_tpl": "5f63407e1b231926f2329f15", + "slotId": "mod_muzzle", + "parentId": "67cffec2afd15d674c06fb8b" + } + ] + }, + { + "Id": "67cffecd0100185b9572d77a", + "Name": "supr ekp vpo101", + "Root": "67cffed2afd15d674c070cb5", + "Items": [ + { + "_id": "67cffed2afd15d674c070cb5", + "_tpl": "5c501a4d2e221602b412b540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cffed2afd15d674c070cb6", + "_tpl": "5c5039be2e221602b177c9ff", + "slotId": "mod_gas_block", + "parentId": "67cffed2afd15d674c070cb5" + }, + { + "_id": "67cffed2afd15d674c070cb7", + "_tpl": "5c503d0a2e221602b542b7ef", + "slotId": "mod_reciever", + "parentId": "67cffed2afd15d674c070cb5" + }, + { + "_id": "67cffed2afd15d674c070cb8", + "_tpl": "5c503b1c2e221602b21d6e9d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffed2afd15d674c070cb5" + }, + { + "_id": "67cffed2afd15d674c070cb9", + "_tpl": "5c503af12e221602b177ca02", + "slotId": "mod_stock", + "parentId": "67cffed2afd15d674c070cb5" + }, + { + "_id": "67cffed2afd15d674c070cba", + "_tpl": "5c503ad32e2216398b5aada2", + "slotId": "mod_magazine", + "parentId": "67cffed2afd15d674c070cb5" + }, + { + "_id": "67cffed2afd15d674c070cbb", + "_tpl": "5947db3f86f77447880cf76f", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffed2afd15d674c070cb5" + }, + { + "_id": "67cffed2afd15d674c070cbc", + "_tpl": "5f63407e1b231926f2329f15", + "slotId": "mod_muzzle", + "parentId": "67cffed2afd15d674c070cb5" + } + ] + }, + { + "Id": "67cffee40100185b95559054", + "Name": "supr pso vpo101", + "Root": "67cffeeaafd15d674c070cc0", + "Items": [ + { + "_id": "67cffeeaafd15d674c070cc0", + "_tpl": "5c501a4d2e221602b412b540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cffeeaafd15d674c070cc1", + "_tpl": "5c5039be2e221602b177c9ff", + "slotId": "mod_gas_block", + "parentId": "67cffeeaafd15d674c070cc0" + }, + { + "_id": "67cffeeaafd15d674c070cc2", + "_tpl": "5c503d0a2e221602b542b7ef", + "slotId": "mod_reciever", + "parentId": "67cffeeaafd15d674c070cc0" + }, + { + "_id": "67cffeeaafd15d674c070cc3", + "_tpl": "5c503b1c2e221602b21d6e9d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffeeaafd15d674c070cc0" + }, + { + "_id": "67cffeeaafd15d674c070cc4", + "_tpl": "5c503af12e221602b177ca02", + "slotId": "mod_stock", + "parentId": "67cffeeaafd15d674c070cc0" + }, + { + "_id": "67cffeeaafd15d674c070cc5", + "_tpl": "5c503ac82e221602b21d6e9a", + "slotId": "mod_magazine", + "parentId": "67cffeeaafd15d674c070cc0" + }, + { + "_id": "67cffeeaafd15d674c070cc6", + "_tpl": "5c82342f2e221644f31c060e", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cffeeaafd15d674c070cc0" + }, + { + "_id": "67cffeeaafd15d674c070cc7", + "_tpl": "5f63407e1b231926f2329f15", + "slotId": "mod_muzzle", + "parentId": "67cffeeaafd15d674c070cc0" + } + ] + }, + { + "Id": "67cffefc0100185b95e183f9", + "Name": "loud ekp vpo101", + "Root": "67cfff01afd15d674c070d0d", + "Items": [ + { + "_id": "67cfff01afd15d674c070d0d", + "_tpl": "5c501a4d2e221602b412b540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfff01afd15d674c070d0e", + "_tpl": "5c5039be2e221602b177c9ff", + "slotId": "mod_gas_block", + "parentId": "67cfff01afd15d674c070d0d" + }, + { + "_id": "67cfff01afd15d674c070d0f", + "_tpl": "5c503d0a2e221602b542b7ef", + "slotId": "mod_reciever", + "parentId": "67cfff01afd15d674c070d0d" + }, + { + "_id": "67cfff01afd15d674c070d10", + "_tpl": "5c503b1c2e221602b21d6e9d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfff01afd15d674c070d0d" + }, + { + "_id": "67cfff01afd15d674c070d11", + "_tpl": "5c503af12e221602b177ca02", + "slotId": "mod_stock", + "parentId": "67cfff01afd15d674c070d0d" + }, + { + "_id": "67cfff01afd15d674c070d12", + "_tpl": "5c503ad32e2216398b5aada2", + "slotId": "mod_magazine", + "parentId": "67cfff01afd15d674c070d0d" + }, + { + "_id": "67cfff01afd15d674c070d13", + "_tpl": "5947db3f86f77447880cf76f", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfff01afd15d674c070d0d" + } + ] + }, + { + "Id": "67cfff0d0100185b95842158", + "Name": "loud pso vpo101", + "Root": "67cfff12afd15d674c071ae1", + "Items": [ + { + "_id": "67cfff12afd15d674c071ae1", + "_tpl": "5c501a4d2e221602b412b540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfff12afd15d674c071ae2", + "_tpl": "5c5039be2e221602b177c9ff", + "slotId": "mod_gas_block", + "parentId": "67cfff12afd15d674c071ae1" + }, + { + "_id": "67cfff12afd15d674c071ae3", + "_tpl": "5c503d0a2e221602b542b7ef", + "slotId": "mod_reciever", + "parentId": "67cfff12afd15d674c071ae1" + }, + { + "_id": "67cfff12afd15d674c071ae4", + "_tpl": "5c503b1c2e221602b21d6e9d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfff12afd15d674c071ae1" + }, + { + "_id": "67cfff12afd15d674c071ae5", + "_tpl": "5c503af12e221602b177ca02", + "slotId": "mod_stock", + "parentId": "67cfff12afd15d674c071ae1" + }, + { + "_id": "67cfff12afd15d674c071ae6", + "_tpl": "5c503ac82e221602b21d6e9a", + "slotId": "mod_magazine", + "parentId": "67cfff12afd15d674c071ae1" + }, + { + "_id": "67cfff12afd15d674c071ae7", + "_tpl": "5c82342f2e221644f31c060e", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfff12afd15d674c071ae1" + } + ] + }, + { + "Id": "67cfff1e0100185b95643de9", + "Name": "loud okp vpo101", + "Root": "67cfff22afd15d674c071ae9", + "Items": [ + { + "_id": "67cfff22afd15d674c071ae9", + "_tpl": "5c501a4d2e221602b412b540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67cfff22afd15d674c071aea", + "_tpl": "5c5039be2e221602b177c9ff", + "slotId": "mod_gas_block", + "parentId": "67cfff22afd15d674c071ae9" + }, + { + "_id": "67cfff22afd15d674c071aeb", + "_tpl": "5c503d0a2e221602b542b7ef", + "slotId": "mod_reciever", + "parentId": "67cfff22afd15d674c071ae9" + }, + { + "_id": "67cfff22afd15d674c071aec", + "_tpl": "5c503b1c2e221602b21d6e9d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfff22afd15d674c071ae9" + }, + { + "_id": "67cfff22afd15d674c071aed", + "_tpl": "5c503af12e221602b177ca02", + "slotId": "mod_stock", + "parentId": "67cfff22afd15d674c071ae9" + }, + { + "_id": "67cfff22afd15d674c071aee", + "_tpl": "5c503ad32e2216398b5aada2", + "slotId": "mod_magazine", + "parentId": "67cfff22afd15d674c071ae9" + }, + { + "_id": "67cfff22afd15d674c071aef", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67cfff22afd15d674c071ae9" + } + ] + }, + { + "Id": "67d003e80100185b95f5580c", + "Name": "loud okp opsks", + "Root": "67d003f45589e516440382a1", + "Items": [ + { + "_id": "67d003f45589e516440382a1", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d003f45589e516440382a2", + "_tpl": "587e0531245977466077a0f7", + "slotId": "mod_stock", + "parentId": "67d003f45589e516440382a1" + }, + { + "_id": "67d003f45589e516440382a3", + "_tpl": "634eff66517ccc8a960fc735", + "slotId": "mod_barrel", + "parentId": "67d003f45589e516440382a1" + }, + { + "_id": "67d003f45589e516440382a4", + "_tpl": "587df3a12459772c28142567", + "slotId": "mod_magazine", + "parentId": "67d003f45589e516440382a1" + }, + { + "_id": "67d003f45589e516440382a5", + "_tpl": "587e08ee245977446b4410cf", + "slotId": "mod_mount", + "parentId": "67d003f45589e516440382a1" + }, + { + "_id": "67d003f45589e516440382a6", + "_tpl": "634f06262e5def262d0b30ca", + "slotId": "mod_reciever", + "parentId": "67d003f45589e516440382a1" + }, + { + "_id": "67d003f45589e516440382a7", + "_tpl": "634f05a21f9f536910079b56", + "slotId": "mod_mount_000", + "parentId": "67d003f45589e516440382a3" + }, + { + "_id": "67d003f45589e516440382a8", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d003f45589e516440382a5" + }, + { + "_id": "67d003f45589e516440382a9", + "_tpl": "634f036a517ccc8a960fc746", + "slotId": "mod_gas_block", + "parentId": "67d003f45589e516440382a7" + }, + { + "_id": "67d003f45589e516440382aa", + "_tpl": "574db213245977459a2f3f5d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d003f45589e516440382a7" + }, + { + "_id": "67d003f45589e516440382ab", + "_tpl": "634f03d40384a3ba4f06f874", + "slotId": "mod_mount_000", + "parentId": "67d003f45589e516440382a9" + } + ] + }, + { + "Id": "67d003ff0100185b95be1f2b", + "Name": "supr okp opsks", + "Root": "67d004035589e516440382ad", + "Items": [ + { + "_id": "67d004035589e516440382ad", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d004035589e516440382ae", + "_tpl": "587e0531245977466077a0f7", + "slotId": "mod_stock", + "parentId": "67d004035589e516440382ad" + }, + { + "_id": "67d004035589e516440382af", + "_tpl": "634eff66517ccc8a960fc735", + "slotId": "mod_barrel", + "parentId": "67d004035589e516440382ad" + }, + { + "_id": "67d004035589e516440382b0", + "_tpl": "587df3a12459772c28142567", + "slotId": "mod_magazine", + "parentId": "67d004035589e516440382ad" + }, + { + "_id": "67d004035589e516440382b1", + "_tpl": "587e08ee245977446b4410cf", + "slotId": "mod_mount", + "parentId": "67d004035589e516440382ad" + }, + { + "_id": "67d004035589e516440382b2", + "_tpl": "634f06262e5def262d0b30ca", + "slotId": "mod_reciever", + "parentId": "67d004035589e516440382ad" + }, + { + "_id": "67d004035589e516440382b3", + "_tpl": "634f05a21f9f536910079b56", + "slotId": "mod_mount_000", + "parentId": "67d004035589e516440382af" + }, + { + "_id": "67d004035589e516440382b4", + "_tpl": "593d490386f7745ee97a1555", + "slotId": "mod_muzzle", + "parentId": "67d004035589e516440382af" + }, + { + "_id": "67d004035589e516440382b5", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d004035589e516440382b1" + }, + { + "_id": "67d004035589e516440382b6", + "_tpl": "634f036a517ccc8a960fc746", + "slotId": "mod_gas_block", + "parentId": "67d004035589e516440382b3" + }, + { + "_id": "67d004035589e516440382b7", + "_tpl": "574db213245977459a2f3f5d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d004035589e516440382b3" + }, + { + "_id": "67d004035589e516440382b8", + "_tpl": "634f03d40384a3ba4f06f874", + "slotId": "mod_mount_000", + "parentId": "67d004035589e516440382b6" + } + ] + }, + { + "Id": "67d004120100185b956c81c2", + "Name": "supr pso opsks", + "Root": "67d004175589e516440382bb", + "Items": [ + { + "_id": "67d004175589e516440382bb", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d004175589e516440382bc", + "_tpl": "587e0531245977466077a0f7", + "slotId": "mod_stock", + "parentId": "67d004175589e516440382bb" + }, + { + "_id": "67d004175589e516440382bd", + "_tpl": "634eff66517ccc8a960fc735", + "slotId": "mod_barrel", + "parentId": "67d004175589e516440382bb" + }, + { + "_id": "67d004175589e516440382be", + "_tpl": "587df3a12459772c28142567", + "slotId": "mod_magazine", + "parentId": "67d004175589e516440382bb" + }, + { + "_id": "67d004175589e516440382bf", + "_tpl": "587e08ee245977446b4410cf", + "slotId": "mod_mount", + "parentId": "67d004175589e516440382bb" + }, + { + "_id": "67d004175589e516440382c0", + "_tpl": "634f06262e5def262d0b30ca", + "slotId": "mod_reciever", + "parentId": "67d004175589e516440382bb" + }, + { + "_id": "67d004175589e516440382c1", + "_tpl": "634f05a21f9f536910079b56", + "slotId": "mod_mount_000", + "parentId": "67d004175589e516440382bd" + }, + { + "_id": "67d004175589e516440382c2", + "_tpl": "593d490386f7745ee97a1555", + "slotId": "mod_muzzle", + "parentId": "67d004175589e516440382bd" + }, + { + "_id": "67d004175589e516440382c3", + "_tpl": "576fd4ec2459777f0b518431", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d004175589e516440382bf" + }, + { + "_id": "67d004175589e516440382c4", + "_tpl": "634f036a517ccc8a960fc746", + "slotId": "mod_gas_block", + "parentId": "67d004175589e516440382c1" + }, + { + "_id": "67d004175589e516440382c5", + "_tpl": "574db213245977459a2f3f5d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d004175589e516440382c1" + }, + { + "_id": "67d004175589e516440382c6", + "_tpl": "634f03d40384a3ba4f06f874", + "slotId": "mod_mount_000", + "parentId": "67d004175589e516440382c4" + } + ] + }, + { + "Id": "67d004290100185b9522253e", + "Name": "loud pso opsks", + "Root": "67d0042d5589e516440382ca", + "Items": [ + { + "_id": "67d0042d5589e516440382ca", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0042d5589e516440382cb", + "_tpl": "587e0531245977466077a0f7", + "slotId": "mod_stock", + "parentId": "67d0042d5589e516440382ca" + }, + { + "_id": "67d0042d5589e516440382cc", + "_tpl": "634eff66517ccc8a960fc735", + "slotId": "mod_barrel", + "parentId": "67d0042d5589e516440382ca" + }, + { + "_id": "67d0042d5589e516440382cd", + "_tpl": "587df3a12459772c28142567", + "slotId": "mod_magazine", + "parentId": "67d0042d5589e516440382ca" + }, + { + "_id": "67d0042d5589e516440382ce", + "_tpl": "587e08ee245977446b4410cf", + "slotId": "mod_mount", + "parentId": "67d0042d5589e516440382ca" + }, + { + "_id": "67d0042d5589e516440382cf", + "_tpl": "634f06262e5def262d0b30ca", + "slotId": "mod_reciever", + "parentId": "67d0042d5589e516440382ca" + }, + { + "_id": "67d0042d5589e516440382d0", + "_tpl": "634f05a21f9f536910079b56", + "slotId": "mod_mount_000", + "parentId": "67d0042d5589e516440382cc" + }, + { + "_id": "67d0042d5589e516440382d1", + "_tpl": "5cf67cadd7f00c065a5abab7", + "slotId": "mod_muzzle", + "parentId": "67d0042d5589e516440382cc" + }, + { + "_id": "67d0042d5589e516440382d2", + "_tpl": "576fd4ec2459777f0b518431", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0042d5589e516440382ce" + }, + { + "_id": "67d0042d5589e516440382d3", + "_tpl": "634f036a517ccc8a960fc746", + "slotId": "mod_gas_block", + "parentId": "67d0042d5589e516440382d0" + }, + { + "_id": "67d0042d5589e516440382d4", + "_tpl": "574db213245977459a2f3f5d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0042d5589e516440382d0" + }, + { + "_id": "67d0042d5589e516440382d5", + "_tpl": "5ac72e7d5acfc40016339a02", + "slotId": "mod_muzzle", + "parentId": "67d0042d5589e516440382d1" + }, + { + "_id": "67d0042d5589e516440382d6", + "_tpl": "634f03d40384a3ba4f06f874", + "slotId": "mod_mount_000", + "parentId": "67d0042d5589e516440382d3" + } + ] + }, + { + "Id": "67d004530100185b95cfb5df", + "Name": "supr ekp opsks", + "Root": "67d0045a5589e516440382e5", + "Items": [ + { + "_id": "67d0045a5589e516440382e5", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0045a5589e516440382e6", + "_tpl": "653ecef836fae5a82f02b869", + "slotId": "mod_stock", + "parentId": "67d0045a5589e516440382e5" + }, + { + "_id": "67d0045a5589e516440382e7", + "_tpl": "634eff66517ccc8a960fc735", + "slotId": "mod_barrel", + "parentId": "67d0045a5589e516440382e5" + }, + { + "_id": "67d0045a5589e516440382e8", + "_tpl": "587df583245977373c4f1129", + "slotId": "mod_magazine", + "parentId": "67d0045a5589e516440382e5" + }, + { + "_id": "67d0045a5589e516440382e9", + "_tpl": "6415d33eda439c6a97048b5b", + "slotId": "mod_mount", + "parentId": "67d0045a5589e516440382e5" + }, + { + "_id": "67d0045a5589e516440382ea", + "_tpl": "634f06262e5def262d0b30ca", + "slotId": "mod_reciever", + "parentId": "67d0045a5589e516440382e5" + }, + { + "_id": "67d0045a5589e516440382eb", + "_tpl": "634f05a21f9f536910079b56", + "slotId": "mod_mount_000", + "parentId": "67d0045a5589e516440382e7" + }, + { + "_id": "67d0045a5589e516440382ec", + "_tpl": "593d490386f7745ee97a1555", + "slotId": "mod_muzzle", + "parentId": "67d0045a5589e516440382e7" + }, + { + "_id": "67d0045a5589e516440382ed", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0045a5589e516440382e9" + }, + { + "_id": "67d0045a5589e516440382ee", + "_tpl": "634f036a517ccc8a960fc746", + "slotId": "mod_gas_block", + "parentId": "67d0045a5589e516440382eb" + }, + { + "_id": "67d0045a5589e516440382ef", + "_tpl": "574db213245977459a2f3f5d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0045a5589e516440382eb" + }, + { + "_id": "67d0045a5589e516440382f0", + "_tpl": "653ecc425a1690d9d90491e4", + "slotId": "mod_mount_000", + "parentId": "67d0045a5589e516440382ee" + } + ] + }, + { + "Id": "67d0047b0100185b956a82f8", + "Name": "supr valday opsks", + "Root": "67d004805589e51644038328", + "Items": [ + { + "_id": "67d004805589e51644038328", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d004805589e51644038329", + "_tpl": "653ecef836fae5a82f02b869", + "slotId": "mod_stock", + "parentId": "67d004805589e51644038328" + }, + { + "_id": "67d004805589e5164403832a", + "_tpl": "634eff66517ccc8a960fc735", + "slotId": "mod_barrel", + "parentId": "67d004805589e51644038328" + }, + { + "_id": "67d004805589e5164403832b", + "_tpl": "587df583245977373c4f1129", + "slotId": "mod_magazine", + "parentId": "67d004805589e51644038328" + }, + { + "_id": "67d004805589e5164403832c", + "_tpl": "6415d33eda439c6a97048b5b", + "slotId": "mod_mount", + "parentId": "67d004805589e51644038328" + }, + { + "_id": "67d004805589e5164403832d", + "_tpl": "634f06262e5def262d0b30ca", + "slotId": "mod_reciever", + "parentId": "67d004805589e51644038328" + }, + { + "_id": "67d004805589e5164403832e", + "_tpl": "634f05a21f9f536910079b56", + "slotId": "mod_mount_000", + "parentId": "67d004805589e5164403832a" + }, + { + "_id": "67d004805589e5164403832f", + "_tpl": "593d490386f7745ee97a1555", + "slotId": "mod_muzzle", + "parentId": "67d004805589e5164403832a" + }, + { + "_id": "67d004805589e51644038330", + "_tpl": "5c0517910db83400232ffee5", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d004805589e5164403832c" + }, + { + "_id": "67d004805589e51644038331", + "_tpl": "634f036a517ccc8a960fc746", + "slotId": "mod_gas_block", + "parentId": "67d004805589e5164403832e" + }, + { + "_id": "67d004805589e51644038332", + "_tpl": "574db213245977459a2f3f5d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d004805589e5164403832e" + }, + { + "_id": "67d004805589e51644038333", + "_tpl": "653ecc425a1690d9d90491e4", + "slotId": "mod_mount_000", + "parentId": "67d004805589e51644038331" + } + ] + }, + { + "Id": "67d004bb0100185b95dc1ef3", + "Name": "loud valday tapco opsks", + "Root": "67d004ea5589e5164403837a", + "Items": [ + { + "_id": "67d004ea5589e5164403837a", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d004ea5589e5164403837b", + "_tpl": "5afd7ded5acfc40017541f5e", + "slotId": "mod_stock", + "parentId": "67d004ea5589e5164403837a" + }, + { + "_id": "67d004ea5589e5164403837c", + "_tpl": "634eff66517ccc8a960fc735", + "slotId": "mod_barrel", + "parentId": "67d004ea5589e5164403837a" + }, + { + "_id": "67d004ea5589e5164403837d", + "_tpl": "587df583245977373c4f1129", + "slotId": "mod_magazine", + "parentId": "67d004ea5589e5164403837a" + }, + { + "_id": "67d004ea5589e5164403837e", + "_tpl": "6415d33eda439c6a97048b5b", + "slotId": "mod_mount", + "parentId": "67d004ea5589e5164403837a" + }, + { + "_id": "67d004ea5589e5164403837f", + "_tpl": "634f06262e5def262d0b30ca", + "slotId": "mod_reciever", + "parentId": "67d004ea5589e5164403837a" + }, + { + "_id": "67d004ea5589e51644038380", + "_tpl": "5afd7e095acfc40017541f61", + "slotId": "mod_stock", + "parentId": "67d004ea5589e5164403837b" + }, + { + "_id": "67d004ea5589e51644038381", + "_tpl": "653ed19d22e1ef3d9002c328", + "slotId": "mod_mount", + "parentId": "67d004ea5589e5164403837b" + }, + { + "_id": "67d004ea5589e51644038382", + "_tpl": "5afd7e445acfc4001637e35a", + "slotId": "mod_pistol_grip", + "parentId": "67d004ea5589e5164403837b" + }, + { + "_id": "67d004ea5589e51644038383", + "_tpl": "634f05a21f9f536910079b56", + "slotId": "mod_mount_000", + "parentId": "67d004ea5589e5164403837c" + }, + { + "_id": "67d004ea5589e51644038384", + "_tpl": "5cf67cadd7f00c065a5abab7", + "slotId": "mod_muzzle", + "parentId": "67d004ea5589e5164403837c" + }, + { + "_id": "67d004ea5589e51644038385", + "_tpl": "5c0517910db83400232ffee5", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d004ea5589e5164403837e" + }, + { + "_id": "67d004ea5589e51644038386", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock", + "parentId": "67d004ea5589e51644038380" + }, + { + "_id": "67d004ea5589e51644038387", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d004ea5589e51644038381" + }, + { + "_id": "67d004ea5589e51644038388", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d004ea5589e51644038386" + }, + { + "_id": "67d004ea5589e51644038389", + "_tpl": "634f036a517ccc8a960fc746", + "slotId": "mod_gas_block", + "parentId": "67d004ea5589e51644038383" + }, + { + "_id": "67d004ea5589e5164403838a", + "_tpl": "574db213245977459a2f3f5d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d004ea5589e51644038383" + }, + { + "_id": "67d004ea5589e5164403838b", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67d004ea5589e51644038384" + }, + { + "_id": "67d004ea5589e5164403838c", + "_tpl": "653ecc425a1690d9d90491e4", + "slotId": "mod_mount_000", + "parentId": "67d004ea5589e51644038389" + } + ] + }, + { + "Id": "67d005610100185b955655f0", + "Name": "supr sks", + "Root": "67d005685589e51644039320", + "Items": [ + { + "_id": "67d005685589e51644039320", + "_tpl": "574d967124597745970e7c94", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d005685589e51644039321", + "_tpl": "574dad8024597745964bf05c", + "slotId": "mod_stock", + "parentId": "67d005685589e51644039320" + }, + { + "_id": "67d005685589e51644039322", + "_tpl": "634f02331f9f536910079b51", + "slotId": "mod_barrel", + "parentId": "67d005685589e51644039320" + }, + { + "_id": "67d005685589e51644039323", + "_tpl": "587df3a12459772c28142567", + "slotId": "mod_magazine", + "parentId": "67d005685589e51644039320" + }, + { + "_id": "67d005685589e51644039324", + "_tpl": "634f06262e5def262d0b30ca", + "slotId": "mod_reciever", + "parentId": "67d005685589e51644039320" + }, + { + "_id": "67d005685589e51644039325", + "_tpl": "634f04d82e5def262d0b30c6", + "slotId": "mod_mount_000", + "parentId": "67d005685589e51644039322" + }, + { + "_id": "67d005685589e51644039326", + "_tpl": "593d490386f7745ee97a1555", + "slotId": "mod_muzzle", + "parentId": "67d005685589e51644039322" + }, + { + "_id": "67d005685589e51644039327", + "_tpl": "634f02d7517ccc8a960fc744", + "slotId": "mod_gas_block", + "parentId": "67d005685589e51644039325" + }, + { + "_id": "67d005685589e51644039328", + "_tpl": "574db213245977459a2f3f5d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d005685589e51644039325" + }, + { + "_id": "67d005685589e51644039329", + "_tpl": "634f08a21f9f536910079b5a", + "slotId": "mod_mount_000", + "parentId": "67d005685589e51644039327" + } + ] + }, + { + "Id": "67d006bb0100185b95401823", + "Name": "loud sks", + "Root": "67d006bf5589e5164403dcc2", + "Items": [ + { + "_id": "67d006bf5589e5164403dcc2", + "_tpl": "574d967124597745970e7c94", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d006bf5589e5164403dcc3", + "_tpl": "574dad8024597745964bf05c", + "slotId": "mod_stock", + "parentId": "67d006bf5589e5164403dcc2" + }, + { + "_id": "67d006bf5589e5164403dcc4", + "_tpl": "634f02331f9f536910079b51", + "slotId": "mod_barrel", + "parentId": "67d006bf5589e5164403dcc2" + }, + { + "_id": "67d006bf5589e5164403dcc5", + "_tpl": "587df3a12459772c28142567", + "slotId": "mod_magazine", + "parentId": "67d006bf5589e5164403dcc2" + }, + { + "_id": "67d006bf5589e5164403dcc6", + "_tpl": "634f06262e5def262d0b30ca", + "slotId": "mod_reciever", + "parentId": "67d006bf5589e5164403dcc2" + }, + { + "_id": "67d006bf5589e5164403dcc7", + "_tpl": "634f04d82e5def262d0b30c6", + "slotId": "mod_mount_000", + "parentId": "67d006bf5589e5164403dcc4" + }, + { + "_id": "67d006bf5589e5164403dcc8", + "_tpl": "5cf67cadd7f00c065a5abab7", + "slotId": "mod_muzzle", + "parentId": "67d006bf5589e5164403dcc4" + }, + { + "_id": "67d006bf5589e5164403dcc9", + "_tpl": "634f02d7517ccc8a960fc744", + "slotId": "mod_gas_block", + "parentId": "67d006bf5589e5164403dcc7" + }, + { + "_id": "67d006bf5589e5164403dcca", + "_tpl": "574db213245977459a2f3f5d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d006bf5589e5164403dcc7" + }, + { + "_id": "67d006bf5589e5164403dccb", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67d006bf5589e5164403dcc8" + }, + { + "_id": "67d006bf5589e5164403dccc", + "_tpl": "634f08a21f9f536910079b5a", + "slotId": "mod_mount_000", + "parentId": "67d006bf5589e5164403dcc9" + } + ] + }, + { + "Id": "67d009e60100185b954a6654", + "Name": "loud srs ak545", + "Root": "67d009ef5589e516440492ee", + "Items": [ + { + "_id": "67d009ef5589e516440492ee", + "_tpl": "628b9c37a733087d0d7fe84b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d009ef5589e516440492ef", + "_tpl": "628b8d83717774443b15e248", + "slotId": "mod_gas_block", + "parentId": "67d009ef5589e516440492ee" + }, + { + "_id": "67d009ef5589e516440492f0", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67d009ef5589e516440492ee" + }, + { + "_id": "67d009ef5589e516440492f1", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67d009ef5589e516440492ee" + }, + { + "_id": "67d009ef5589e516440492f2", + "_tpl": "628b9a40717774443b15e9f2", + "slotId": "mod_stock_000", + "parentId": "67d009ef5589e516440492ee" + }, + { + "_id": "67d009ef5589e516440492f3", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67d009ef5589e516440492ee" + }, + { + "_id": "67d009ef5589e516440492f4", + "_tpl": "628b916469015a4e1711ed8d", + "slotId": "mod_handguard", + "parentId": "67d009ef5589e516440492ef" + }, + { + "_id": "67d009ef5589e516440492f5", + "_tpl": "5beec8c20db834001d2c465c", + "slotId": "mod_stock", + "parentId": "67d009ef5589e516440492f2" + }, + { + "_id": "67d009ef5589e516440492f6", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d009ef5589e516440492f4" + }, + { + "_id": "67d009ef5589e516440492f7", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67d009ef5589e516440492f4" + }, + { + "_id": "67d009ef5589e516440492f8", + "_tpl": "628b9be6cff66b70c002b14c", + "slotId": "mod_reciever", + "parentId": "67d009ef5589e516440492f4" + }, + { + "_id": "67d009ef5589e516440492f9", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d009ef5589e516440492f7" + }, + { + "_id": "67d009ef5589e516440492fa", + "_tpl": "628b9471078f94059a4b9bfb", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d009ef5589e516440492f8" + }, + { + "_id": "67d009ef5589e516440492fb", + "_tpl": "5d2da1e948f035477b1ce2ba", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d009ef5589e516440492f8" + } + ] + }, + { + "Id": "67d00a030100185b957b5e66", + "Name": "loud holo ak545", + "Root": "67d00a2b5589e5164404a26c", + "Items": [ + { + "_id": "67d00a2b5589e5164404a26c", + "_tpl": "628b9c37a733087d0d7fe84b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00a2b5589e5164404a26d", + "_tpl": "628b8d83717774443b15e248", + "slotId": "mod_gas_block", + "parentId": "67d00a2b5589e5164404a26c" + }, + { + "_id": "67d00a2b5589e5164404a26e", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67d00a2b5589e5164404a26c" + }, + { + "_id": "67d00a2b5589e5164404a26f", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67d00a2b5589e5164404a26c" + }, + { + "_id": "67d00a2b5589e5164404a270", + "_tpl": "628b9a40717774443b15e9f2", + "slotId": "mod_stock_000", + "parentId": "67d00a2b5589e5164404a26c" + }, + { + "_id": "67d00a2b5589e5164404a271", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67d00a2b5589e5164404a26c" + }, + { + "_id": "67d00a2b5589e5164404a272", + "_tpl": "628b916469015a4e1711ed8d", + "slotId": "mod_handguard", + "parentId": "67d00a2b5589e5164404a26d" + }, + { + "_id": "67d00a2b5589e5164404a273", + "_tpl": "5beec8c20db834001d2c465c", + "slotId": "mod_stock", + "parentId": "67d00a2b5589e5164404a270" + }, + { + "_id": "67d00a2b5589e5164404a274", + "_tpl": "651a8bf3a8520e48047bf708", + "slotId": "mod_foregrip", + "parentId": "67d00a2b5589e5164404a272" + }, + { + "_id": "67d00a2b5589e5164404a275", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67d00a2b5589e5164404a272" + }, + { + "_id": "67d00a2b5589e5164404a276", + "_tpl": "628b9be6cff66b70c002b14c", + "slotId": "mod_reciever", + "parentId": "67d00a2b5589e5164404a272" + }, + { + "_id": "67d00a2b5589e5164404a277", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d00a2b5589e5164404a275" + }, + { + "_id": "67d00a2b5589e5164404a278", + "_tpl": "628b9471078f94059a4b9bfb", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00a2b5589e5164404a276" + }, + { + "_id": "67d00a2b5589e5164404a279", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00a2b5589e5164404a276" + } + ] + }, + { + "Id": "67d00a1a0100185b95fce452", + "Name": "loud ekp ak545", + "Root": "67d00a1d5589e51644049317", + "Items": [ + { + "_id": "67d00a1d5589e51644049317", + "_tpl": "628b9c37a733087d0d7fe84b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00a1d5589e51644049318", + "_tpl": "628b8d83717774443b15e248", + "slotId": "mod_gas_block", + "parentId": "67d00a1d5589e51644049317" + }, + { + "_id": "67d00a1d5589e51644049319", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67d00a1d5589e51644049317" + }, + { + "_id": "67d00a1d5589e5164404931a", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67d00a1d5589e51644049317" + }, + { + "_id": "67d00a1d5589e5164404931b", + "_tpl": "628b9a40717774443b15e9f2", + "slotId": "mod_stock_000", + "parentId": "67d00a1d5589e51644049317" + }, + { + "_id": "67d00a1d5589e5164404931c", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67d00a1d5589e51644049317" + }, + { + "_id": "67d00a1d5589e5164404931d", + "_tpl": "628b916469015a4e1711ed8d", + "slotId": "mod_handguard", + "parentId": "67d00a1d5589e51644049318" + }, + { + "_id": "67d00a1d5589e5164404931e", + "_tpl": "5beec8c20db834001d2c465c", + "slotId": "mod_stock", + "parentId": "67d00a1d5589e5164404931b" + }, + { + "_id": "67d00a1d5589e5164404931f", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d00a1d5589e5164404931d" + }, + { + "_id": "67d00a1d5589e51644049320", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67d00a1d5589e5164404931d" + }, + { + "_id": "67d00a1d5589e51644049321", + "_tpl": "628b9be6cff66b70c002b14c", + "slotId": "mod_reciever", + "parentId": "67d00a1d5589e5164404931d" + }, + { + "_id": "67d00a1d5589e51644049322", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d00a1d5589e51644049320" + }, + { + "_id": "67d00a1d5589e51644049323", + "_tpl": "628b9471078f94059a4b9bfb", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00a1d5589e51644049321" + }, + { + "_id": "67d00a1d5589e51644049324", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00a1d5589e51644049321" + } + ] + }, + { + "Id": "67d00a5a0100185b95245332", + "Name": "loud hamr ak545", + "Root": "67d00a695589e5164404b158", + "Items": [ + { + "_id": "67d00a695589e5164404b158", + "_tpl": "628b5638ad252a16da6dd245", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00a695589e5164404b159", + "_tpl": "628b8d83717774443b15e248", + "slotId": "mod_gas_block", + "parentId": "67d00a695589e5164404b158" + }, + { + "_id": "67d00a695589e5164404b15a", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67d00a695589e5164404b158" + }, + { + "_id": "67d00a695589e5164404b15b", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "slotId": "mod_pistol_grip", + "parentId": "67d00a695589e5164404b158" + }, + { + "_id": "67d00a695589e5164404b15c", + "_tpl": "628b9a40717774443b15e9f2", + "slotId": "mod_stock_000", + "parentId": "67d00a695589e5164404b158" + }, + { + "_id": "67d00a695589e5164404b15d", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67d00a695589e5164404b158" + }, + { + "_id": "67d00a695589e5164404b15e", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d00a695589e5164404b158" + }, + { + "_id": "67d00a695589e5164404b15f", + "_tpl": "628b916469015a4e1711ed8d", + "slotId": "mod_handguard", + "parentId": "67d00a695589e5164404b159" + }, + { + "_id": "67d00a695589e5164404b160", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "slotId": "mod_stock", + "parentId": "67d00a695589e5164404b15c" + }, + { + "_id": "67d00a695589e5164404b161", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d00a695589e5164404b15f" + }, + { + "_id": "67d00a695589e5164404b162", + "_tpl": "628b9be6cff66b70c002b14c", + "slotId": "mod_reciever", + "parentId": "67d00a695589e5164404b15f" + }, + { + "_id": "67d00a695589e5164404b163", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d00a695589e5164404b161" + }, + { + "_id": "67d00a695589e5164404b164", + "_tpl": "628b9471078f94059a4b9bfb", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00a695589e5164404b162" + }, + { + "_id": "67d00a695589e5164404b165", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00a695589e5164404b162" + }, + { + "_id": "67d00a695589e5164404b166", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00a695589e5164404b165" + } + ] + }, + { + "Id": "67d00a920100185b9558dc60", + "Name": "loud holo long ak545", + "Root": "67d00a9e5589e5164404b16c", + "Items": [ + { + "_id": "67d00a9e5589e5164404b16c", + "_tpl": "628b5638ad252a16da6dd245", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00a9e5589e5164404b16d", + "_tpl": "628b8d83717774443b15e248", + "slotId": "mod_gas_block", + "parentId": "67d00a9e5589e5164404b16c" + }, + { + "_id": "67d00a9e5589e5164404b16e", + "_tpl": "5649ab884bdc2ded0b8b457f", + "slotId": "mod_muzzle", + "parentId": "67d00a9e5589e5164404b16c" + }, + { + "_id": "67d00a9e5589e5164404b16f", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "slotId": "mod_pistol_grip", + "parentId": "67d00a9e5589e5164404b16c" + }, + { + "_id": "67d00a9e5589e5164404b170", + "_tpl": "628b9a40717774443b15e9f2", + "slotId": "mod_stock_000", + "parentId": "67d00a9e5589e5164404b16c" + }, + { + "_id": "67d00a9e5589e5164404b171", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67d00a9e5589e5164404b16c" + }, + { + "_id": "67d00a9e5589e5164404b172", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d00a9e5589e5164404b16c" + }, + { + "_id": "67d00a9e5589e5164404b173", + "_tpl": "628b916469015a4e1711ed8d", + "slotId": "mod_handguard", + "parentId": "67d00a9e5589e5164404b16d" + }, + { + "_id": "67d00a9e5589e5164404b174", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "slotId": "mod_stock", + "parentId": "67d00a9e5589e5164404b170" + }, + { + "_id": "67d00a9e5589e5164404b175", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d00a9e5589e5164404b173" + }, + { + "_id": "67d00a9e5589e5164404b176", + "_tpl": "628b9be6cff66b70c002b14c", + "slotId": "mod_reciever", + "parentId": "67d00a9e5589e5164404b173" + }, + { + "_id": "67d00a9e5589e5164404b177", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d00a9e5589e5164404b175" + }, + { + "_id": "67d00a9e5589e5164404b178", + "_tpl": "628b9471078f94059a4b9bfb", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00a9e5589e5164404b176" + }, + { + "_id": "67d00a9e5589e5164404b179", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00a9e5589e5164404b176" + } + ] + }, + { + "Id": "67d00ac60100185b95fb5106", + "Name": "supr uh1 long ak545", + "Root": "67d00ad85589e5164404c0c4", + "Items": [ + { + "_id": "67d00ad85589e5164404c0c4", + "_tpl": "628b5638ad252a16da6dd245", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00ad85589e5164404c0c5", + "_tpl": "628b8d83717774443b15e248", + "slotId": "mod_gas_block", + "parentId": "67d00ad85589e5164404c0c4" + }, + { + "_id": "67d00ad85589e5164404c0c6", + "_tpl": "593d493f86f7745e6b2ceb22", + "slotId": "mod_muzzle", + "parentId": "67d00ad85589e5164404c0c4" + }, + { + "_id": "67d00ad85589e5164404c0c7", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "slotId": "mod_pistol_grip", + "parentId": "67d00ad85589e5164404c0c4" + }, + { + "_id": "67d00ad85589e5164404c0c8", + "_tpl": "628b9a40717774443b15e9f2", + "slotId": "mod_stock_000", + "parentId": "67d00ad85589e5164404c0c4" + }, + { + "_id": "67d00ad85589e5164404c0c9", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67d00ad85589e5164404c0c4" + }, + { + "_id": "67d00ad85589e5164404c0ca", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d00ad85589e5164404c0c4" + }, + { + "_id": "67d00ad85589e5164404c0cb", + "_tpl": "628b916469015a4e1711ed8d", + "slotId": "mod_handguard", + "parentId": "67d00ad85589e5164404c0c5" + }, + { + "_id": "67d00ad85589e5164404c0cc", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock", + "parentId": "67d00ad85589e5164404c0c8" + }, + { + "_id": "67d00ad85589e5164404c0cd", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d00ad85589e5164404c0cb" + }, + { + "_id": "67d00ad85589e5164404c0ce", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67d00ad85589e5164404c0cb" + }, + { + "_id": "67d00ad85589e5164404c0cf", + "_tpl": "628b9be6cff66b70c002b14c", + "slotId": "mod_reciever", + "parentId": "67d00ad85589e5164404c0cb" + }, + { + "_id": "67d00ad85589e5164404c0d0", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67d00ad85589e5164404c0cd" + }, + { + "_id": "67d00ad85589e5164404c0d1", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d00ad85589e5164404c0ce" + }, + { + "_id": "67d00ad85589e5164404c0d2", + "_tpl": "628b9471078f94059a4b9bfb", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00ad85589e5164404c0cf" + }, + { + "_id": "67d00ad85589e5164404c0d3", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00ad85589e5164404c0cf" + }, + { + "_id": "67d00ad85589e5164404c0d4", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d00ad85589e5164404c0cc" + } + ] + }, + { + "Id": "67d00b020100185b95b6396e", + "Name": "loud bravo long ak545", + "Root": "67d00b0c5589e5164404d019", + "Items": [ + { + "_id": "67d00b0c5589e5164404d019", + "_tpl": "628b5638ad252a16da6dd245", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00b0c5589e5164404d01a", + "_tpl": "628b8d83717774443b15e248", + "slotId": "mod_gas_block", + "parentId": "67d00b0c5589e5164404d019" + }, + { + "_id": "67d00b0c5589e5164404d01b", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67d00b0c5589e5164404d019" + }, + { + "_id": "67d00b0c5589e5164404d01c", + "_tpl": "5c6bf4aa2e2216001219b0ae", + "slotId": "mod_pistol_grip", + "parentId": "67d00b0c5589e5164404d019" + }, + { + "_id": "67d00b0c5589e5164404d01d", + "_tpl": "628b9a40717774443b15e9f2", + "slotId": "mod_stock_000", + "parentId": "67d00b0c5589e5164404d019" + }, + { + "_id": "67d00b0c5589e5164404d01e", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67d00b0c5589e5164404d019" + }, + { + "_id": "67d00b0c5589e5164404d01f", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d00b0c5589e5164404d019" + }, + { + "_id": "67d00b0c5589e5164404d020", + "_tpl": "628b916469015a4e1711ed8d", + "slotId": "mod_handguard", + "parentId": "67d00b0c5589e5164404d01a" + }, + { + "_id": "67d00b0c5589e5164404d021", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock", + "parentId": "67d00b0c5589e5164404d01d" + }, + { + "_id": "67d00b0c5589e5164404d022", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d00b0c5589e5164404d020" + }, + { + "_id": "67d00b0c5589e5164404d023", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67d00b0c5589e5164404d020" + }, + { + "_id": "67d00b0c5589e5164404d024", + "_tpl": "628b9be6cff66b70c002b14c", + "slotId": "mod_reciever", + "parentId": "67d00b0c5589e5164404d020" + }, + { + "_id": "67d00b0c5589e5164404d025", + "_tpl": "5c1bc5612e221602b5429350", + "slotId": "mod_foregrip", + "parentId": "67d00b0c5589e5164404d022" + }, + { + "_id": "67d00b0c5589e5164404d026", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d00b0c5589e5164404d023" + }, + { + "_id": "67d00b0c5589e5164404d027", + "_tpl": "628b9471078f94059a4b9bfb", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00b0c5589e5164404d024" + }, + { + "_id": "67d00b0c5589e5164404d028", + "_tpl": "57adff4f24597737f373b6e6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00b0c5589e5164404d024" + }, + { + "_id": "67d00b0c5589e5164404d029", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d00b0c5589e5164404d028" + }, + { + "_id": "67d00b0c5589e5164404d02a", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00b0c5589e5164404d029" + }, + { + "_id": "67d00b0c5589e5164404d02b", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d00b0c5589e5164404d021" + } + ] + }, + { + "Id": "67d00b6a0100185b95fbf2ca", + "Name": "supr okp sr3m", + "Root": "67d00bb15589e51644050153", + "Items": [ + { + "_id": "67d00bb15589e51644050153", + "_tpl": "651450ce0e00edc794068371", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00bb15589e51644050154", + "_tpl": "65144ff50e00edc79406836f", + "slotId": "mod_muzzle", + "parentId": "67d00bb15589e51644050153" + }, + { + "_id": "67d00bb15589e51644050155", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67d00bb15589e51644050153" + }, + { + "_id": "67d00bb15589e51644050156", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67d00bb15589e51644050153" + }, + { + "_id": "67d00bb15589e51644050157", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67d00bb15589e51644050153" + }, + { + "_id": "67d00bb15589e51644050158", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67d00bb15589e51644050153" + }, + { + "_id": "67d00bb15589e51644050159", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d00bb15589e51644050153" + }, + { + "_id": "67d00bb15589e5164405015a", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00bb15589e51644050153" + }, + { + "_id": "67d00bb15589e5164405015b", + "_tpl": "6565c3ab977bcc2dbb01c2e7", + "slotId": "mod_handguard", + "parentId": "67d00bb15589e51644050153" + }, + { + "_id": "67d00bb15589e5164405015c", + "_tpl": "6565c0c2ff7eb7070409084c", + "slotId": "mod_foregrip", + "parentId": "67d00bb15589e51644050153" + }, + { + "_id": "67d00bb15589e5164405015d", + "_tpl": "57a3459f245977764a01f703", + "slotId": "mod_mount", + "parentId": "67d00bb15589e51644050154" + }, + { + "_id": "67d00bb15589e5164405015e", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d00bb15589e5164405015d" + } + ] + }, + { + "Id": "67d00b800100185b9514f5f1", + "Name": "supr ekp sr3m", + "Root": "67d00b925589e51644050141", + "Items": [ + { + "_id": "67d00b925589e51644050141", + "_tpl": "651450ce0e00edc794068371", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00b925589e51644050142", + "_tpl": "65144ff50e00edc79406836f", + "slotId": "mod_muzzle", + "parentId": "67d00b925589e51644050141" + }, + { + "_id": "67d00b925589e51644050143", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67d00b925589e51644050141" + }, + { + "_id": "67d00b925589e51644050144", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67d00b925589e51644050141" + }, + { + "_id": "67d00b925589e51644050145", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67d00b925589e51644050141" + }, + { + "_id": "67d00b925589e51644050146", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67d00b925589e51644050141" + }, + { + "_id": "67d00b925589e51644050147", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d00b925589e51644050141" + }, + { + "_id": "67d00b925589e51644050148", + "_tpl": "5947db3f86f77447880cf76f", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00b925589e51644050141" + }, + { + "_id": "67d00b925589e51644050149", + "_tpl": "6565c3ab977bcc2dbb01c2e7", + "slotId": "mod_handguard", + "parentId": "67d00b925589e51644050141" + }, + { + "_id": "67d00b925589e5164405014a", + "_tpl": "6565c0c2ff7eb7070409084c", + "slotId": "mod_foregrip", + "parentId": "67d00b925589e51644050141" + }, + { + "_id": "67d00b925589e5164405014b", + "_tpl": "57a3459f245977764a01f703", + "slotId": "mod_mount", + "parentId": "67d00b925589e51644050142" + }, + { + "_id": "67d00b925589e5164405014c", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d00b925589e5164405014b" + } + ] + }, + { + "Id": "67d00bc10100185b959fbc84", + "Name": "supr holo sr3m", + "Root": "67d00bc55589e5164405015f", + "Items": [ + { + "_id": "67d00bc55589e5164405015f", + "_tpl": "651450ce0e00edc794068371", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00bc55589e51644050160", + "_tpl": "65144ff50e00edc79406836f", + "slotId": "mod_muzzle", + "parentId": "67d00bc55589e5164405015f" + }, + { + "_id": "67d00bc55589e51644050161", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67d00bc55589e5164405015f" + }, + { + "_id": "67d00bc55589e51644050162", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67d00bc55589e5164405015f" + }, + { + "_id": "67d00bc55589e51644050163", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67d00bc55589e5164405015f" + }, + { + "_id": "67d00bc55589e51644050164", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67d00bc55589e5164405015f" + }, + { + "_id": "67d00bc55589e51644050165", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d00bc55589e5164405015f" + }, + { + "_id": "67d00bc55589e51644050166", + "_tpl": "5e569a2e56edd02abe09f280", + "slotId": "mod_mount_004", + "parentId": "67d00bc55589e5164405015f" + }, + { + "_id": "67d00bc55589e51644050167", + "_tpl": "6565c3ab977bcc2dbb01c2e7", + "slotId": "mod_handguard", + "parentId": "67d00bc55589e5164405015f" + }, + { + "_id": "67d00bc55589e51644050168", + "_tpl": "6565c0c2ff7eb7070409084c", + "slotId": "mod_foregrip", + "parentId": "67d00bc55589e5164405015f" + }, + { + "_id": "67d00bc55589e51644050169", + "_tpl": "57a3459f245977764a01f703", + "slotId": "mod_mount", + "parentId": "67d00bc55589e51644050160" + }, + { + "_id": "67d00bc55589e5164405016a", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00bc55589e51644050166" + }, + { + "_id": "67d00bc55589e5164405016b", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d00bc55589e51644050169" + } + ] + }, + { + "Id": "67d00be70100185b9501600e", + "Name": "loud okp sr3m", + "Root": "67d00beb5589e5164405114f", + "Items": [ + { + "_id": "67d00beb5589e5164405114f", + "_tpl": "651450ce0e00edc794068371", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00beb5589e51644051150", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67d00beb5589e5164405114f" + }, + { + "_id": "67d00beb5589e51644051151", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67d00beb5589e5164405114f" + }, + { + "_id": "67d00beb5589e51644051152", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67d00beb5589e5164405114f" + }, + { + "_id": "67d00beb5589e51644051153", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67d00beb5589e5164405114f" + }, + { + "_id": "67d00beb5589e51644051154", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d00beb5589e5164405114f" + }, + { + "_id": "67d00beb5589e51644051155", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00beb5589e5164405114f" + }, + { + "_id": "67d00beb5589e51644051156", + "_tpl": "6565c3ab977bcc2dbb01c2e7", + "slotId": "mod_handguard", + "parentId": "67d00beb5589e5164405114f" + }, + { + "_id": "67d00beb5589e51644051157", + "_tpl": "6565c0c2ff7eb7070409084c", + "slotId": "mod_foregrip", + "parentId": "67d00beb5589e5164405114f" + } + ] + }, + { + "Id": "67d00bfd0100185b95d360bc", + "Name": "loud ekp sr3m", + "Root": "67d00c015589e51644052032", + "Items": [ + { + "_id": "67d00c015589e51644052032", + "_tpl": "651450ce0e00edc794068371", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00c015589e51644052033", + "_tpl": "57c44f4f2459772d2c627113", + "slotId": "mod_reciever", + "parentId": "67d00c015589e51644052032" + }, + { + "_id": "67d00c015589e51644052034", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67d00c015589e51644052032" + }, + { + "_id": "67d00c015589e51644052035", + "_tpl": "57c44fa82459772d2d75e415", + "slotId": "mod_pistol_grip", + "parentId": "67d00c015589e51644052032" + }, + { + "_id": "67d00c015589e51644052036", + "_tpl": "57c450252459772d28133253", + "slotId": "mod_stock", + "parentId": "67d00c015589e51644052032" + }, + { + "_id": "67d00c015589e51644052037", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d00c015589e51644052032" + }, + { + "_id": "67d00c015589e51644052038", + "_tpl": "5947db3f86f77447880cf76f", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00c015589e51644052032" + }, + { + "_id": "67d00c015589e51644052039", + "_tpl": "6565c3ab977bcc2dbb01c2e7", + "slotId": "mod_handguard", + "parentId": "67d00c015589e51644052032" + }, + { + "_id": "67d00c015589e5164405203a", + "_tpl": "6565c0c2ff7eb7070409084c", + "slotId": "mod_foregrip", + "parentId": "67d00c015589e51644052032" + } + ] + }, + { + "Id": "67d00c7a0100185b95ea685e", + "Name": "avt stock", + "Root": "67d00c805589e51644053dca", + "Items": [ + { + "_id": "67d00c805589e51644053dca", + "_tpl": "6410733d5dd49d77bd07847e", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00c805589e51644053dcb", + "_tpl": "6410745d5dd49d77bd078485", + "slotId": "mod_stock", + "parentId": "67d00c805589e51644053dca" + }, + { + "_id": "67d00c805589e51644053dcc", + "_tpl": "6410758c857473525b08bb77", + "slotId": "mod_barrel", + "parentId": "67d00c805589e51644053dca" + }, + { + "_id": "67d00c805589e51644053dcd", + "_tpl": "641074a07fd350b98c0b3f96", + "slotId": "mod_magazine", + "parentId": "67d00c805589e51644053dca" + }, + { + "_id": "67d00c805589e51644053dce", + "_tpl": "64119cdbdcf48d656f0aa272", + "slotId": "mod_reciever", + "parentId": "67d00c805589e51644053dca" + }, + { + "_id": "67d00c805589e51644053dcf", + "_tpl": "64119d1f2c6d6f921a0929f8", + "slotId": "mod_muzzle", + "parentId": "67d00c805589e51644053dcc" + }, + { + "_id": "67d00c805589e51644053dd0", + "_tpl": "64119d90dcf48d656f0aa275", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00c805589e51644053dcc" + }, + { + "_id": "67d00c805589e51644053dd1", + "_tpl": "64119d672c6d6f921a0929fb", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00c805589e51644053dcf" + } + ] + }, + { + "Id": "67d00c8d0100185b95474bf1", + "Name": "avt stock 2", + "Root": "67d00c925589e51644053dd2", + "Items": [ + { + "_id": "67d00c925589e51644053dd2", + "_tpl": "6410733d5dd49d77bd07847e", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00c925589e51644053dd3", + "_tpl": "6410745d5dd49d77bd078485", + "slotId": "mod_stock", + "parentId": "67d00c925589e51644053dd2" + }, + { + "_id": "67d00c925589e51644053dd4", + "_tpl": "6410758c857473525b08bb77", + "slotId": "mod_barrel", + "parentId": "67d00c925589e51644053dd2" + }, + { + "_id": "67d00c925589e51644053dd5", + "_tpl": "641074a07fd350b98c0b3f96", + "slotId": "mod_magazine", + "parentId": "67d00c925589e51644053dd2" + }, + { + "_id": "67d00c925589e51644053dd6", + "_tpl": "64119cdbdcf48d656f0aa272", + "slotId": "mod_reciever", + "parentId": "67d00c925589e51644053dd2" + }, + { + "_id": "67d00c925589e51644053dd7", + "_tpl": "64119d1f2c6d6f921a0929f8", + "slotId": "mod_muzzle", + "parentId": "67d00c925589e51644053dd4" + }, + { + "_id": "67d00c925589e51644053dd8", + "_tpl": "64119d90dcf48d656f0aa275", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00c925589e51644053dd4" + }, + { + "_id": "67d00c925589e51644053dd9", + "_tpl": "64119d672c6d6f921a0929fb", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00c925589e51644053dd7" + } + ] + }, + { + "Id": "67d00cb00100185b95e2768d", + "Name": "scope svt", + "Root": "67d00cb55589e51644054b93", + "Items": [ + { + "_id": "67d00cb55589e51644054b93", + "_tpl": "643ea5b23db6f9f57107d9fd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00cb55589e51644054b94", + "_tpl": "6410745d5dd49d77bd078485", + "slotId": "mod_stock", + "parentId": "67d00cb55589e51644054b93" + }, + { + "_id": "67d00cb55589e51644054b95", + "_tpl": "6410758c857473525b08bb77", + "slotId": "mod_barrel", + "parentId": "67d00cb55589e51644054b93" + }, + { + "_id": "67d00cb55589e51644054b96", + "_tpl": "641074a07fd350b98c0b3f96", + "slotId": "mod_magazine", + "parentId": "67d00cb55589e51644054b93" + }, + { + "_id": "67d00cb55589e51644054b97", + "_tpl": "64119cdbdcf48d656f0aa272", + "slotId": "mod_reciever", + "parentId": "67d00cb55589e51644054b93" + }, + { + "_id": "67d00cb55589e51644054b98", + "_tpl": "641dc35e19604f20c800be18", + "slotId": "mod_scope", + "parentId": "67d00cb55589e51644054b93" + }, + { + "_id": "67d00cb55589e51644054b99", + "_tpl": "64119d1f2c6d6f921a0929f8", + "slotId": "mod_muzzle", + "parentId": "67d00cb55589e51644054b95" + }, + { + "_id": "67d00cb55589e51644054b9a", + "_tpl": "64119d90dcf48d656f0aa275", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00cb55589e51644054b95" + }, + { + "_id": "67d00cb55589e51644054b9b", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00cb55589e51644054b98" + }, + { + "_id": "67d00cb55589e51644054b9c", + "_tpl": "64119d672c6d6f921a0929fb", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00cb55589e51644054b99" + } + ] + }, + { + "Id": "67d00cca0100185b95c5122d", + "Name": "scope svt 2", + "Root": "67d00cd05589e51644055bbf", + "Items": [ + { + "_id": "67d00cd05589e51644055bbf", + "_tpl": "643ea5b23db6f9f57107d9fd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00cd05589e51644055bc0", + "_tpl": "6410745d5dd49d77bd078485", + "slotId": "mod_stock", + "parentId": "67d00cd05589e51644055bbf" + }, + { + "_id": "67d00cd05589e51644055bc1", + "_tpl": "6410758c857473525b08bb77", + "slotId": "mod_barrel", + "parentId": "67d00cd05589e51644055bbf" + }, + { + "_id": "67d00cd05589e51644055bc2", + "_tpl": "641074a07fd350b98c0b3f96", + "slotId": "mod_magazine", + "parentId": "67d00cd05589e51644055bbf" + }, + { + "_id": "67d00cd05589e51644055bc3", + "_tpl": "64119cdbdcf48d656f0aa272", + "slotId": "mod_reciever", + "parentId": "67d00cd05589e51644055bbf" + }, + { + "_id": "67d00cd05589e51644055bc4", + "_tpl": "641dc35e19604f20c800be18", + "slotId": "mod_scope", + "parentId": "67d00cd05589e51644055bbf" + }, + { + "_id": "67d00cd05589e51644055bc5", + "_tpl": "64119d1f2c6d6f921a0929f8", + "slotId": "mod_muzzle", + "parentId": "67d00cd05589e51644055bc1" + }, + { + "_id": "67d00cd05589e51644055bc6", + "_tpl": "64119d90dcf48d656f0aa275", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00cd05589e51644055bc1" + }, + { + "_id": "67d00cd05589e51644055bc7", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00cd05589e51644055bc4" + }, + { + "_id": "67d00cd05589e51644055bc8", + "_tpl": "64119d672c6d6f921a0929fb", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00cd05589e51644055bc5" + } + ] + }, + { + "Id": "67d00d320100185b95a59b2d", + "Name": "supr pu sniper mosin", + "Root": "67d00d415589e51644057bbd", + "Items": [ + { + "_id": "67d00d415589e51644057bbd", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00d415589e51644057bbe", + "_tpl": "5ae0973a5acfc4001562206c", + "slotId": "mod_magazine", + "parentId": "67d00d415589e51644057bbd" + }, + { + "_id": "67d00d415589e51644057bbf", + "_tpl": "5ae096d95acfc400185c2c81", + "slotId": "mod_stock", + "parentId": "67d00d415589e51644057bbd" + }, + { + "_id": "67d00d415589e51644057bc0", + "_tpl": "5ae09bff5acfc4001562219d", + "slotId": "mod_barrel", + "parentId": "67d00d415589e51644057bbd" + }, + { + "_id": "67d00d415589e51644057bc1", + "_tpl": "5b3f7bf05acfc433000ecf6b", + "slotId": "mod_mount", + "parentId": "67d00d415589e51644057bbd" + }, + { + "_id": "67d00d415589e51644057bc2", + "_tpl": "5bbde409d4351e003562b036", + "slotId": "mod_stock", + "parentId": "67d00d415589e51644057bbf" + }, + { + "_id": "67d00d415589e51644057bc3", + "_tpl": "5bbde41ed4351e003562b038", + "slotId": "mod_pistol_grip", + "parentId": "67d00d415589e51644057bbf" + }, + { + "_id": "67d00d415589e51644057bc4", + "_tpl": "5ae099875acfc4001714e593", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d415589e51644057bc0" + }, + { + "_id": "67d00d415589e51644057bc5", + "_tpl": "5ae099925acfc4001a5fc7b3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d415589e51644057bc0" + }, + { + "_id": "67d00d415589e51644057bc6", + "_tpl": "5b86a0e586f7745b600ccb23", + "slotId": "mod_muzzle", + "parentId": "67d00d415589e51644057bc0" + }, + { + "_id": "67d00d415589e51644057bc7", + "_tpl": "5b3f7c005acfc4704b4a1de8", + "slotId": "mod_mount", + "parentId": "67d00d415589e51644057bc1" + }, + { + "_id": "67d00d415589e51644057bc8", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d415589e51644057bc7" + } + ] + }, + { + "Id": "67d00d500100185b955ed6a3", + "Name": "supr pu sniper mosin 2", + "Root": "67d00d545589e51644057bcf", + "Items": [ + { + "_id": "67d00d545589e51644057bcf", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00d545589e51644057bd0", + "_tpl": "5ae0973a5acfc4001562206c", + "slotId": "mod_magazine", + "parentId": "67d00d545589e51644057bcf" + }, + { + "_id": "67d00d545589e51644057bd1", + "_tpl": "5ae096d95acfc400185c2c81", + "slotId": "mod_stock", + "parentId": "67d00d545589e51644057bcf" + }, + { + "_id": "67d00d545589e51644057bd2", + "_tpl": "5ae09bff5acfc4001562219d", + "slotId": "mod_barrel", + "parentId": "67d00d545589e51644057bcf" + }, + { + "_id": "67d00d545589e51644057bd3", + "_tpl": "5b3f7bf05acfc433000ecf6b", + "slotId": "mod_mount", + "parentId": "67d00d545589e51644057bcf" + }, + { + "_id": "67d00d545589e51644057bd4", + "_tpl": "5ae099875acfc4001714e593", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d545589e51644057bd2" + }, + { + "_id": "67d00d545589e51644057bd5", + "_tpl": "5ae099925acfc4001a5fc7b3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d545589e51644057bd2" + }, + { + "_id": "67d00d545589e51644057bd6", + "_tpl": "5b86a0e586f7745b600ccb23", + "slotId": "mod_muzzle", + "parentId": "67d00d545589e51644057bd2" + }, + { + "_id": "67d00d545589e51644057bd7", + "_tpl": "5b3f7c005acfc4704b4a1de8", + "slotId": "mod_mount", + "parentId": "67d00d545589e51644057bd3" + }, + { + "_id": "67d00d545589e51644057bd8", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d545589e51644057bd7" + } + ] + }, + { + "Id": "67d00d640100185b952dabd3", + "Name": "loud pu sniper mosin", + "Root": "67d00d6b5589e51644058bd0", + "Items": [ + { + "_id": "67d00d6b5589e51644058bd0", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00d6b5589e51644058bd1", + "_tpl": "5ae0973a5acfc4001562206c", + "slotId": "mod_magazine", + "parentId": "67d00d6b5589e51644058bd0" + }, + { + "_id": "67d00d6b5589e51644058bd2", + "_tpl": "5ae096d95acfc400185c2c81", + "slotId": "mod_stock", + "parentId": "67d00d6b5589e51644058bd0" + }, + { + "_id": "67d00d6b5589e51644058bd3", + "_tpl": "5ae09bff5acfc4001562219d", + "slotId": "mod_barrel", + "parentId": "67d00d6b5589e51644058bd0" + }, + { + "_id": "67d00d6b5589e51644058bd4", + "_tpl": "5b3f7bf05acfc433000ecf6b", + "slotId": "mod_mount", + "parentId": "67d00d6b5589e51644058bd0" + }, + { + "_id": "67d00d6b5589e51644058bd5", + "_tpl": "5ae099875acfc4001714e593", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d6b5589e51644058bd3" + }, + { + "_id": "67d00d6b5589e51644058bd6", + "_tpl": "5ae099925acfc4001a5fc7b3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d6b5589e51644058bd3" + }, + { + "_id": "67d00d6b5589e51644058bd7", + "_tpl": "5b3f7c005acfc4704b4a1de8", + "slotId": "mod_mount", + "parentId": "67d00d6b5589e51644058bd4" + }, + { + "_id": "67d00d6b5589e51644058bd8", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d6b5589e51644058bd7" + } + ] + }, + { + "Id": "67d00d820100185b9522f812", + "Name": "loud pu sniper mosin 2", + "Root": "67d00d855589e51644058bdc", + "Items": [ + { + "_id": "67d00d855589e51644058bdc", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00d855589e51644058bdd", + "_tpl": "5ae0973a5acfc4001562206c", + "slotId": "mod_magazine", + "parentId": "67d00d855589e51644058bdc" + }, + { + "_id": "67d00d855589e51644058bde", + "_tpl": "5ae096d95acfc400185c2c81", + "slotId": "mod_stock", + "parentId": "67d00d855589e51644058bdc" + }, + { + "_id": "67d00d855589e51644058bdf", + "_tpl": "5ae09bff5acfc4001562219d", + "slotId": "mod_barrel", + "parentId": "67d00d855589e51644058bdc" + }, + { + "_id": "67d00d855589e51644058be0", + "_tpl": "5b3f7bf05acfc433000ecf6b", + "slotId": "mod_mount", + "parentId": "67d00d855589e51644058bdc" + }, + { + "_id": "67d00d855589e51644058be1", + "_tpl": "5bbde409d4351e003562b036", + "slotId": "mod_stock", + "parentId": "67d00d855589e51644058bde" + }, + { + "_id": "67d00d855589e51644058be2", + "_tpl": "5bbde41ed4351e003562b038", + "slotId": "mod_pistol_grip", + "parentId": "67d00d855589e51644058bde" + }, + { + "_id": "67d00d855589e51644058be3", + "_tpl": "5ae099875acfc4001714e593", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d855589e51644058bdf" + }, + { + "_id": "67d00d855589e51644058be4", + "_tpl": "5ae099925acfc4001a5fc7b3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d855589e51644058bdf" + }, + { + "_id": "67d00d855589e51644058be5", + "_tpl": "5b3f7c005acfc4704b4a1de8", + "slotId": "mod_mount", + "parentId": "67d00d855589e51644058be0" + }, + { + "_id": "67d00d855589e51644058be6", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00d855589e51644058be5" + } + ] + }, + { + "Id": "67d00da80100185b95c04bf2", + "Name": "supr short mosin", + "Root": "67d00db05589e51644059a89", + "Items": [ + { + "_id": "67d00db05589e51644059a89", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00db05589e51644059a8a", + "_tpl": "5ae0973a5acfc4001562206c", + "slotId": "mod_magazine", + "parentId": "67d00db05589e51644059a89" + }, + { + "_id": "67d00db05589e51644059a8b", + "_tpl": "5bfd36ad0db834001c38ef66", + "slotId": "mod_stock", + "parentId": "67d00db05589e51644059a89" + }, + { + "_id": "67d00db05589e51644059a8c", + "_tpl": "5bfd4cbe0db834001b73449f", + "slotId": "mod_barrel", + "parentId": "67d00db05589e51644059a89" + }, + { + "_id": "67d00db05589e51644059a8d", + "_tpl": "5bbde41ed4351e003562b038", + "slotId": "mod_pistol_grip", + "parentId": "67d00db05589e51644059a8b" + }, + { + "_id": "67d00db05589e51644059a8e", + "_tpl": "5ae099875acfc4001714e593", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00db05589e51644059a8c" + }, + { + "_id": "67d00db05589e51644059a8f", + "_tpl": "5bfd4c980db834001b73449d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00db05589e51644059a8c" + }, + { + "_id": "67d00db05589e51644059a90", + "_tpl": "5b86a0e586f7745b600ccb23", + "slotId": "mod_muzzle", + "parentId": "67d00db05589e51644059a8c" + } + ] + }, + { + "Id": "67d00dc70100185b95cc95ef", + "Name": "loud short mosin", + "Root": "67d00dcb5589e5164405aa7c", + "Items": [ + { + "_id": "67d00dcb5589e5164405aa7c", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00dcb5589e5164405aa7d", + "_tpl": "5ae0973a5acfc4001562206c", + "slotId": "mod_magazine", + "parentId": "67d00dcb5589e5164405aa7c" + }, + { + "_id": "67d00dcb5589e5164405aa7e", + "_tpl": "5bfd36ad0db834001c38ef66", + "slotId": "mod_stock", + "parentId": "67d00dcb5589e5164405aa7c" + }, + { + "_id": "67d00dcb5589e5164405aa7f", + "_tpl": "5bfd4cd60db834001c38f095", + "slotId": "mod_barrel", + "parentId": "67d00dcb5589e5164405aa7c" + } + ] + }, + { + "Id": "67d00e170100185b95be258e", + "Name": "supr long mosin", + "Root": "67d00e1f5589e5164405bab5", + "Items": [ + { + "_id": "67d00e1f5589e5164405bab5", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00e1f5589e5164405bab6", + "_tpl": "5ae0973a5acfc4001562206c", + "slotId": "mod_magazine", + "parentId": "67d00e1f5589e5164405bab5" + }, + { + "_id": "67d00e1f5589e5164405bab7", + "_tpl": "5bbdb870d4351e00367fb67d", + "slotId": "mod_stock", + "parentId": "67d00e1f5589e5164405bab5" + }, + { + "_id": "67d00e1f5589e5164405bab8", + "_tpl": "5bfd4cbe0db834001b73449f", + "slotId": "mod_barrel", + "parentId": "67d00e1f5589e5164405bab5" + }, + { + "_id": "67d00e1f5589e5164405bab9", + "_tpl": "5ae099875acfc4001714e593", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00e1f5589e5164405bab8" + }, + { + "_id": "67d00e1f5589e5164405baba", + "_tpl": "5bfd4c980db834001b73449d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00e1f5589e5164405bab8" + }, + { + "_id": "67d00e1f5589e5164405babb", + "_tpl": "5cf79389d7f00c10941a0c4d", + "slotId": "mod_muzzle", + "parentId": "67d00e1f5589e5164405bab8" + }, + { + "_id": "67d00e1f5589e5164405babc", + "_tpl": "5a9fbacda2750c00141e080f", + "slotId": "mod_muzzle", + "parentId": "67d00e1f5589e5164405babb" + } + ] + }, + { + "Id": "67d00e7f0100185b9510052d", + "Name": "supr vudu mosin", + "Root": "67d00e875589e5164405da8f", + "Items": [ + { + "_id": "67d00e875589e5164405da8f", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00e875589e5164405da90", + "_tpl": "5bae13ded4351e44f824bf38", + "slotId": "mod_magazine", + "parentId": "67d00e875589e5164405da8f" + }, + { + "_id": "67d00e875589e5164405da91", + "_tpl": "5bae13bad4351e00320204af", + "slotId": "mod_stock", + "parentId": "67d00e875589e5164405da8f" + }, + { + "_id": "67d00e875589e5164405da92", + "_tpl": "5ae09bff5acfc4001562219d", + "slotId": "mod_barrel", + "parentId": "67d00e875589e5164405da8f" + }, + { + "_id": "67d00e875589e5164405da93", + "_tpl": "5bbdb811d4351e45020113c7", + "slotId": "mod_sight_rear", + "parentId": "67d00e875589e5164405da92" + }, + { + "_id": "67d00e875589e5164405da94", + "_tpl": "5b86a0e586f7745b600ccb23", + "slotId": "mod_muzzle", + "parentId": "67d00e875589e5164405da92" + }, + { + "_id": "67d00e875589e5164405da95", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67d00e875589e5164405da93" + }, + { + "_id": "67d00e875589e5164405da96", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d00e875589e5164405da93" + }, + { + "_id": "67d00e875589e5164405da97", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00e875589e5164405da95" + } + ] + }, + { + "Id": "67d00fb90100185b957e23cc", + "Name": "supr vudu sniper mosin", + "Root": "67d00fcb5589e51644065777", + "Items": [ + { + "_id": "67d00fcb5589e51644065777", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d00fcb5589e51644065778", + "_tpl": "5bae13ded4351e44f824bf38", + "slotId": "mod_magazine", + "parentId": "67d00fcb5589e51644065777" + }, + { + "_id": "67d00fcb5589e51644065779", + "_tpl": "5bae13bad4351e00320204af", + "slotId": "mod_stock", + "parentId": "67d00fcb5589e51644065777" + }, + { + "_id": "67d00fcb5589e5164406577a", + "_tpl": "5ae09bff5acfc4001562219d", + "slotId": "mod_barrel", + "parentId": "67d00fcb5589e51644065777" + }, + { + "_id": "67d00fcb5589e5164406577b", + "_tpl": "5ae099875acfc4001714e593", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00fcb5589e5164406577a" + }, + { + "_id": "67d00fcb5589e5164406577c", + "_tpl": "5bbdb811d4351e45020113c7", + "slotId": "mod_sight_rear", + "parentId": "67d00fcb5589e5164406577a" + }, + { + "_id": "67d00fcb5589e5164406577d", + "_tpl": "5b86a0e586f7745b600ccb23", + "slotId": "mod_muzzle", + "parentId": "67d00fcb5589e5164406577a" + }, + { + "_id": "67d00fcb5589e5164406577e", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67d00fcb5589e5164406577c" + }, + { + "_id": "67d00fcb5589e5164406577f", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d00fcb5589e5164406577c" + }, + { + "_id": "67d00fcb5589e51644065780", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00fcb5589e5164406577e" + }, + { + "_id": "67d00fcb5589e51644065781", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d00fcb5589e5164406577e" + } + ] + }, + { + "Id": "67d010090100185b95a9c3ae", + "Name": "553 vpo215", + "Root": "67d010145589e51644067574", + "Items": [ + { + "_id": "67d010145589e51644067574", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d010145589e51644067575", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "slotId": "mod_magazine", + "parentId": "67d010145589e51644067574" + }, + { + "_id": "67d010145589e51644067576", + "_tpl": "5de655be4a9f347bc92edb88", + "slotId": "mod_stock", + "parentId": "67d010145589e51644067574" + }, + { + "_id": "67d010145589e51644067577", + "_tpl": "5de65547883dde217541644b", + "slotId": "mod_barrel", + "parentId": "67d010145589e51644067574" + }, + { + "_id": "67d010145589e51644067578", + "_tpl": "5de6558e9f98ac2bc65950fc", + "slotId": "mod_mount", + "parentId": "67d010145589e51644067574" + }, + { + "_id": "67d010145589e51644067579", + "_tpl": "5de6556a205ddc616a6bc4f7", + "slotId": "mod_muzzle", + "parentId": "67d010145589e51644067577" + }, + { + "_id": "67d010145589e5164406757a", + "_tpl": "570fd6c2d2720bc6458b457f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d010145589e51644067578" + } + ] + }, + { + "Id": "67d010240100185b954d2fe0", + "Name": "supr specter vpo215", + "Root": "67d0102f5589e5164406757c", + "Items": [ + { + "_id": "67d0102f5589e5164406757c", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0102f5589e5164406757d", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "slotId": "mod_magazine", + "parentId": "67d0102f5589e5164406757c" + }, + { + "_id": "67d0102f5589e5164406757e", + "_tpl": "5de655be4a9f347bc92edb88", + "slotId": "mod_stock", + "parentId": "67d0102f5589e5164406757c" + }, + { + "_id": "67d0102f5589e5164406757f", + "_tpl": "5de65547883dde217541644b", + "slotId": "mod_barrel", + "parentId": "67d0102f5589e5164406757c" + }, + { + "_id": "67d0102f5589e51644067580", + "_tpl": "5de6558e9f98ac2bc65950fc", + "slotId": "mod_mount", + "parentId": "67d0102f5589e5164406757c" + }, + { + "_id": "67d0102f5589e51644067581", + "_tpl": "5a9fbb74a2750c0032157181", + "slotId": "mod_muzzle", + "parentId": "67d0102f5589e5164406757f" + }, + { + "_id": "67d0102f5589e51644067582", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0102f5589e51644067580" + } + ] + }, + { + "Id": "67d0104a0100185b9583c191", + "Name": "supr valday vpo215", + "Root": "67d010515589e51644068451", + "Items": [ + { + "_id": "67d010515589e51644068451", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d010515589e51644068452", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "slotId": "mod_magazine", + "parentId": "67d010515589e51644068451" + }, + { + "_id": "67d010515589e51644068453", + "_tpl": "5de655be4a9f347bc92edb88", + "slotId": "mod_stock", + "parentId": "67d010515589e51644068451" + }, + { + "_id": "67d010515589e51644068454", + "_tpl": "5de65547883dde217541644b", + "slotId": "mod_barrel", + "parentId": "67d010515589e51644068451" + }, + { + "_id": "67d010515589e51644068455", + "_tpl": "5de6558e9f98ac2bc65950fc", + "slotId": "mod_mount", + "parentId": "67d010515589e51644068451" + }, + { + "_id": "67d010515589e51644068456", + "_tpl": "5a9fbb74a2750c0032157181", + "slotId": "mod_muzzle", + "parentId": "67d010515589e51644068454" + }, + { + "_id": "67d010515589e51644068457", + "_tpl": "5c0517910db83400232ffee5", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d010515589e51644068455" + } + ] + }, + { + "Id": "67d010740100185b952e97fb", + "Name": "supr 2x vpo215", + "Root": "67d010795589e516440693d7", + "Items": [ + { + "_id": "67d010795589e516440693d7", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d010795589e516440693d8", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "slotId": "mod_magazine", + "parentId": "67d010795589e516440693d7" + }, + { + "_id": "67d010795589e516440693d9", + "_tpl": "5de655be4a9f347bc92edb88", + "slotId": "mod_stock", + "parentId": "67d010795589e516440693d7" + }, + { + "_id": "67d010795589e516440693da", + "_tpl": "5de65547883dde217541644b", + "slotId": "mod_barrel", + "parentId": "67d010795589e516440693d7" + }, + { + "_id": "67d010795589e516440693db", + "_tpl": "5de6558e9f98ac2bc65950fc", + "slotId": "mod_mount", + "parentId": "67d010795589e516440693d7" + }, + { + "_id": "67d010795589e516440693dc", + "_tpl": "5a9fbb74a2750c0032157181", + "slotId": "mod_muzzle", + "parentId": "67d010795589e516440693da" + }, + { + "_id": "67d010795589e516440693dd", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d010795589e516440693db" + } + ] + }, + { + "Id": "67d0109d0100185b953a1598", + "Name": "supr tac30 vpo215", + "Root": "67d010a25589e5164406a37a", + "Items": [ + { + "_id": "67d010a25589e5164406a37a", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d010a25589e5164406a37b", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "slotId": "mod_magazine", + "parentId": "67d010a25589e5164406a37a" + }, + { + "_id": "67d010a25589e5164406a37c", + "_tpl": "5de655be4a9f347bc92edb88", + "slotId": "mod_stock", + "parentId": "67d010a25589e5164406a37a" + }, + { + "_id": "67d010a25589e5164406a37d", + "_tpl": "5de65547883dde217541644b", + "slotId": "mod_barrel", + "parentId": "67d010a25589e5164406a37a" + }, + { + "_id": "67d010a25589e5164406a37e", + "_tpl": "5de6558e9f98ac2bc65950fc", + "slotId": "mod_mount", + "parentId": "67d010a25589e5164406a37a" + }, + { + "_id": "67d010a25589e5164406a37f", + "_tpl": "5a9fbb74a2750c0032157181", + "slotId": "mod_muzzle", + "parentId": "67d010a25589e5164406a37d" + }, + { + "_id": "67d010a25589e5164406a380", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d010a25589e5164406a37e" + }, + { + "_id": "67d010a25589e5164406a381", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d010a25589e5164406a380" + } + ] + }, + { + "Id": "67d010c60100185b95204783", + "Name": "supr vudu vpo215", + "Root": "67d010ca5589e5164406b55d", + "Items": [ + { + "_id": "67d010ca5589e5164406b55d", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d010ca5589e5164406b55e", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "slotId": "mod_magazine", + "parentId": "67d010ca5589e5164406b55d" + }, + { + "_id": "67d010ca5589e5164406b55f", + "_tpl": "5de655be4a9f347bc92edb88", + "slotId": "mod_stock", + "parentId": "67d010ca5589e5164406b55d" + }, + { + "_id": "67d010ca5589e5164406b560", + "_tpl": "5de65547883dde217541644b", + "slotId": "mod_barrel", + "parentId": "67d010ca5589e5164406b55d" + }, + { + "_id": "67d010ca5589e5164406b561", + "_tpl": "5de6558e9f98ac2bc65950fc", + "slotId": "mod_mount", + "parentId": "67d010ca5589e5164406b55d" + }, + { + "_id": "67d010ca5589e5164406b562", + "_tpl": "5a9fbb74a2750c0032157181", + "slotId": "mod_muzzle", + "parentId": "67d010ca5589e5164406b560" + }, + { + "_id": "67d010ca5589e5164406b563", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d010ca5589e5164406b561" + }, + { + "_id": "67d010ca5589e5164406b564", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d010ca5589e5164406b563" + } + ] + }, + { + "Id": "67d011210100185b95cd1239", + "Name": "loud vudu dvl", + "Root": "67d0112e5589e5164406e59a", + "Items": [ + { + "_id": "67d0112e5589e5164406e59a", + "_tpl": "588892092459774ac91d4b11", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0112e5589e5164406e59b", + "_tpl": "5888988e24597752fe43a6fa", + "slotId": "mod_magazine", + "parentId": "67d0112e5589e5164406e59a" + }, + { + "_id": "67d0112e5589e5164406e59c", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67d0112e5589e5164406e59a" + }, + { + "_id": "67d0112e5589e5164406e59d", + "_tpl": "5888956924597752983e182d", + "slotId": "mod_barrel", + "parentId": "67d0112e5589e5164406e59a" + }, + { + "_id": "67d0112e5589e5164406e59e", + "_tpl": "57c55f172459772d27602381", + "slotId": "mod_pistol_grip", + "parentId": "67d0112e5589e5164406e59a" + }, + { + "_id": "67d0112e5589e5164406e59f", + "_tpl": "58889d0c2459775bc215d981", + "slotId": "mod_stock", + "parentId": "67d0112e5589e5164406e59a" + }, + { + "_id": "67d0112e5589e5164406e5a0", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0112e5589e5164406e59c" + }, + { + "_id": "67d0112e5589e5164406e5a1", + "_tpl": "5888996c24597754281f9419", + "slotId": "mod_muzzle", + "parentId": "67d0112e5589e5164406e59d" + }, + { + "_id": "67d0112e5589e5164406e5a2", + "_tpl": "5888976c24597754281f93f5", + "slotId": "mod_handguard", + "parentId": "67d0112e5589e5164406e59d" + }, + { + "_id": "67d0112e5589e5164406e5a3", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0112e5589e5164406e5a2" + } + ] + }, + { + "Id": "67d011430100185b958c2777", + "Name": "loud razor dvl", + "Root": "67d0114a5589e5164406f6cf", + "Items": [ + { + "_id": "67d0114a5589e5164406f6cf", + "_tpl": "588892092459774ac91d4b11", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0114a5589e5164406f6d0", + "_tpl": "5888988e24597752fe43a6fa", + "slotId": "mod_magazine", + "parentId": "67d0114a5589e5164406f6cf" + }, + { + "_id": "67d0114a5589e5164406f6d1", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67d0114a5589e5164406f6cf" + }, + { + "_id": "67d0114a5589e5164406f6d2", + "_tpl": "5888956924597752983e182d", + "slotId": "mod_barrel", + "parentId": "67d0114a5589e5164406f6cf" + }, + { + "_id": "67d0114a5589e5164406f6d3", + "_tpl": "57c55f172459772d27602381", + "slotId": "mod_pistol_grip", + "parentId": "67d0114a5589e5164406f6cf" + }, + { + "_id": "67d0114a5589e5164406f6d4", + "_tpl": "58889d0c2459775bc215d981", + "slotId": "mod_stock", + "parentId": "67d0114a5589e5164406f6cf" + }, + { + "_id": "67d0114a5589e5164406f6d5", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0114a5589e5164406f6d1" + }, + { + "_id": "67d0114a5589e5164406f6d6", + "_tpl": "5888996c24597754281f9419", + "slotId": "mod_muzzle", + "parentId": "67d0114a5589e5164406f6d2" + }, + { + "_id": "67d0114a5589e5164406f6d7", + "_tpl": "5888976c24597754281f93f5", + "slotId": "mod_handguard", + "parentId": "67d0114a5589e5164406f6d2" + }, + { + "_id": "67d0114a5589e5164406f6d8", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0114a5589e5164406f6d7" + } + ] + }, + { + "Id": "67d011680100185b951ef4ea", + "Name": "supr vudu dvl", + "Root": "67d011715589e51644070712", + "Items": [ + { + "_id": "67d011715589e51644070712", + "_tpl": "588892092459774ac91d4b11", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d011715589e51644070713", + "_tpl": "5888988e24597752fe43a6fa", + "slotId": "mod_magazine", + "parentId": "67d011715589e51644070712" + }, + { + "_id": "67d011715589e51644070714", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67d011715589e51644070712" + }, + { + "_id": "67d011715589e51644070715", + "_tpl": "5888945a2459774bf43ba385", + "slotId": "mod_barrel", + "parentId": "67d011715589e51644070712" + }, + { + "_id": "67d011715589e51644070716", + "_tpl": "57c55f172459772d27602381", + "slotId": "mod_pistol_grip", + "parentId": "67d011715589e51644070712" + }, + { + "_id": "67d011715589e51644070717", + "_tpl": "58889d0c2459775bc215d981", + "slotId": "mod_stock", + "parentId": "67d011715589e51644070712" + }, + { + "_id": "67d011715589e51644070718", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d011715589e51644070714" + }, + { + "_id": "67d011715589e51644070719", + "_tpl": "58889c7324597754281f9439", + "slotId": "mod_muzzle", + "parentId": "67d011715589e51644070715" + }, + { + "_id": "67d011715589e5164407071a", + "_tpl": "5888961624597754281f93f3", + "slotId": "mod_bipod", + "parentId": "67d011715589e51644070715" + } + ] + }, + { + "Id": "67d011840100185b95810cb8", + "Name": "supr tango dvl", + "Root": "67d011915589e51644070720", + "Items": [ + { + "_id": "67d011915589e51644070720", + "_tpl": "588892092459774ac91d4b11", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d011915589e51644070721", + "_tpl": "5888988e24597752fe43a6fa", + "slotId": "mod_magazine", + "parentId": "67d011915589e51644070720" + }, + { + "_id": "67d011915589e51644070722", + "_tpl": "5b3b99265acfc4704b4a1afb", + "slotId": "mod_scope", + "parentId": "67d011915589e51644070720" + }, + { + "_id": "67d011915589e51644070723", + "_tpl": "5888945a2459774bf43ba385", + "slotId": "mod_barrel", + "parentId": "67d011915589e51644070720" + }, + { + "_id": "67d011915589e51644070724", + "_tpl": "57c55f172459772d27602381", + "slotId": "mod_pistol_grip", + "parentId": "67d011915589e51644070720" + }, + { + "_id": "67d011915589e51644070725", + "_tpl": "58889d0c2459775bc215d981", + "slotId": "mod_stock", + "parentId": "67d011915589e51644070720" + }, + { + "_id": "67d011915589e51644070726", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d011915589e51644070722" + }, + { + "_id": "67d011915589e51644070727", + "_tpl": "58889c7324597754281f9439", + "slotId": "mod_muzzle", + "parentId": "67d011915589e51644070723" + }, + { + "_id": "67d011915589e51644070728", + "_tpl": "5888961624597754281f93f3", + "slotId": "mod_bipod", + "parentId": "67d011915589e51644070723" + } + ] + }, + { + "Id": "67d012520100185b95bfdc31", + "Name": "loud tango axmc", + "Root": "67d0125c5589e51644074641", + "Items": [ + { + "_id": "67d0125c5589e51644074641", + "_tpl": "627e14b21713922ded6f2c15", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0125c5589e51644074642", + "_tpl": "628120fd5631d45211793c9f", + "slotId": "mod_magazine", + "parentId": "67d0125c5589e51644074641" + }, + { + "_id": "67d0125c5589e51644074643", + "_tpl": "62811e2510e26c1f344e6554", + "slotId": "mod_pistol_grip", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d0125c5589e51644074641" + }, + { + "_id": "67d0125c5589e51644074644", + "_tpl": "62811cd7308cb521f87a8f99", + "slotId": "mod_charge", + "parentId": "67d0125c5589e51644074641" + }, + { + "_id": "67d0125c5589e51644074645", + "_tpl": "62811f828193841aca4a45c3", + "slotId": "mod_stock", + "parentId": "67d0125c5589e51644074643" + }, + { + "_id": "67d0125c5589e51644074646", + "_tpl": "6281204f308cb521f87a8f9b", + "slotId": "mod_reciever", + "parentId": "67d0125c5589e51644074643" + }, + { + "_id": "67d0125c5589e51644074647", + "_tpl": "6281209662cba23f6c4d7a19", + "slotId": "mod_handguard", + "parentId": "67d0125c5589e51644074646" + }, + { + "_id": "67d0125c5589e51644074648", + "_tpl": "6281212a09427b40ab14e770", + "slotId": "mod_foregrip", + "parentId": "67d0125c5589e51644074646" + }, + { + "_id": "67d0125c5589e51644074649", + "_tpl": "62811fbf09427b40ab14e767", + "slotId": "mod_reciever", + "parentId": "67d0125c5589e51644074646" + }, + { + "_id": "67d0125c5589e5164407464a", + "_tpl": "628120c21d5df4475f46a337", + "slotId": "mod_mount_000", + "parentId": "67d0125c5589e51644074647" + }, + { + "_id": "67d0125c5589e5164407464b", + "_tpl": "628120d309427b40ab14e76d", + "slotId": "mod_mount_001", + "parentId": "67d0125c5589e51644074647" + }, + { + "_id": "67d0125c5589e5164407464c", + "_tpl": "628120d309427b40ab14e76d", + "slotId": "mod_mount_002", + "parentId": "67d0125c5589e51644074647" + }, + { + "_id": "67d0125c5589e5164407464d", + "_tpl": "628120dd308cb521f87a8fa1", + "slotId": "mod_mount_003", + "parentId": "67d0125c5589e51644074647" + }, + { + "_id": "67d0125c5589e5164407464e", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d0125c5589e51644074649" + }, + { + "_id": "67d0125c5589e5164407464f", + "_tpl": "628121434fa03b6b6c35dc6a", + "slotId": "mod_barrel", + "parentId": "67d0125c5589e51644074649" + }, + { + "_id": "67d0125c5589e51644074650", + "_tpl": "626becf9582c3e319310b837", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0125c5589e5164407464d" + }, + { + "_id": "67d0125c5589e51644074651", + "_tpl": "6567e7681265c8a131069b0f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0125c5589e5164407464e" + }, + { + "_id": "67d0125c5589e51644074652", + "_tpl": "62812081d23f207deb0ab216", + "slotId": "mod_muzzle", + "parentId": "67d0125c5589e5164407464f" + }, + { + "_id": "67d0125c5589e51644074653", + "_tpl": "628120621d5df4475f46a335", + "slotId": "mod_muzzle", + "parentId": "67d0125c5589e51644074652" + } + ] + }, + { + "Id": "67d012a50100185b95406888", + "Name": "loud vudu t5000", + "Root": "67d012ad5589e516440756fa", + "Items": [ + { + "_id": "67d012ad5589e516440756fa", + "_tpl": "5df24cf80dee1b22f862e9bc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d012ad5589e516440756fb", + "_tpl": "5df25b6c0b92095fd441e4cf", + "slotId": "mod_magazine", + "parentId": "67d012ad5589e516440756fa" + }, + { + "_id": "67d012ad5589e516440756fc", + "_tpl": "5df256570dee1b22f862e9c4", + "slotId": "mod_barrel", + "parentId": "67d012ad5589e516440756fa" + }, + { + "_id": "67d012ad5589e516440756fd", + "_tpl": "5df35e59c41b2312ea3334d5", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d012ad5589e516440756fa" + }, + { + "_id": "67d012ad5589e516440756fe", + "_tpl": "5df35e970b92095fd441e4d2", + "slotId": "mod_mount", + "parentId": "67d012ad5589e516440756fa" + }, + { + "_id": "67d012ad5589e516440756ff", + "_tpl": "5df35e7f2a78646d96665dd4", + "slotId": "mod_muzzle", + "parentId": "67d012ad5589e516440756fc" + }, + { + "_id": "67d012ad5589e51644075700", + "_tpl": "5df25d3bfd6b4e6e2276dc9a", + "slotId": "mod_handguard", + "parentId": "67d012ad5589e516440756fd" + }, + { + "_id": "67d012ad5589e51644075701", + "_tpl": "5df38a5fb74cd90030650cb6", + "slotId": "mod_pistol_grip", + "parentId": "67d012ad5589e516440756fd" + }, + { + "_id": "67d012ad5589e51644075702", + "_tpl": "5df35ddddfc58d14537c2036", + "slotId": "mod_stock_axis", + "parentId": "67d012ad5589e516440756fd" + }, + { + "_id": "67d012ad5589e51644075703", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67d012ad5589e516440756fe" + }, + { + "_id": "67d012ad5589e51644075704", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_000", + "parentId": "67d012ad5589e51644075700" + }, + { + "_id": "67d012ad5589e51644075705", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_001", + "parentId": "67d012ad5589e51644075700" + }, + { + "_id": "67d012ad5589e51644075706", + "_tpl": "5df35ea9c41b2312ea3334d8", + "slotId": "mod_mount_002", + "parentId": "67d012ad5589e51644075700" + }, + { + "_id": "67d012ad5589e51644075707", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_003", + "parentId": "67d012ad5589e51644075700" + }, + { + "_id": "67d012ad5589e51644075708", + "_tpl": "5df36948bb49d91fb446d5ad", + "slotId": "mod_foregrip", + "parentId": "67d012ad5589e51644075700" + }, + { + "_id": "67d012ad5589e51644075709", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d012ad5589e51644075707" + }, + { + "_id": "67d012ad5589e5164407570a", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d012ad5589e51644075703" + }, + { + "_id": "67d012ad5589e5164407570b", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d012ad5589e51644075703" + } + ] + }, + { + "Id": "67d012c20100185b95aebd49", + "Name": "supr vudu t5000", + "Root": "67d012c75589e51644075750", + "Items": [ + { + "_id": "67d012c75589e51644075750", + "_tpl": "5df24cf80dee1b22f862e9bc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d012c75589e51644075751", + "_tpl": "5df25b6c0b92095fd441e4cf", + "slotId": "mod_magazine", + "parentId": "67d012c75589e51644075750" + }, + { + "_id": "67d012c75589e51644075752", + "_tpl": "5df256570dee1b22f862e9c4", + "slotId": "mod_barrel", + "parentId": "67d012c75589e51644075750" + }, + { + "_id": "67d012c75589e51644075753", + "_tpl": "5df35e59c41b2312ea3334d5", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d012c75589e51644075750" + }, + { + "_id": "67d012c75589e51644075754", + "_tpl": "5df35e970b92095fd441e4d2", + "slotId": "mod_mount", + "parentId": "67d012c75589e51644075750" + }, + { + "_id": "67d012c75589e51644075755", + "_tpl": "59bffc1f86f77435b128b872", + "slotId": "mod_muzzle", + "parentId": "67d012c75589e51644075752" + }, + { + "_id": "67d012c75589e51644075756", + "_tpl": "5df25d3bfd6b4e6e2276dc9a", + "slotId": "mod_handguard", + "parentId": "67d012c75589e51644075753" + }, + { + "_id": "67d012c75589e51644075757", + "_tpl": "5df38a5fb74cd90030650cb6", + "slotId": "mod_pistol_grip", + "parentId": "67d012c75589e51644075753" + }, + { + "_id": "67d012c75589e51644075758", + "_tpl": "5df35ddddfc58d14537c2036", + "slotId": "mod_stock_axis", + "parentId": "67d012c75589e51644075753" + }, + { + "_id": "67d012c75589e51644075759", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67d012c75589e51644075754" + }, + { + "_id": "67d012c75589e5164407575a", + "_tpl": "59bffbb386f77435b379b9c2", + "slotId": "mod_muzzle", + "parentId": "67d012c75589e51644075755" + }, + { + "_id": "67d012c75589e5164407575b", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_000", + "parentId": "67d012c75589e51644075756" + }, + { + "_id": "67d012c75589e5164407575c", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_001", + "parentId": "67d012c75589e51644075756" + }, + { + "_id": "67d012c75589e5164407575d", + "_tpl": "5df35ea9c41b2312ea3334d8", + "slotId": "mod_mount_002", + "parentId": "67d012c75589e51644075756" + }, + { + "_id": "67d012c75589e5164407575e", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_003", + "parentId": "67d012c75589e51644075756" + }, + { + "_id": "67d012c75589e5164407575f", + "_tpl": "5df36948bb49d91fb446d5ad", + "slotId": "mod_foregrip", + "parentId": "67d012c75589e51644075756" + }, + { + "_id": "67d012c75589e51644075760", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d012c75589e5164407575e" + }, + { + "_id": "67d012c75589e51644075761", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d012c75589e51644075759" + }, + { + "_id": "67d012c75589e51644075762", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d012c75589e51644075759" + } + ] + }, + { + "Id": "67d013000100185b9555ce81", + "Name": "supr razor t5000", + "Root": "67d013195589e5164407765d", + "Items": [ + { + "_id": "67d013195589e5164407765d", + "_tpl": "5df24cf80dee1b22f862e9bc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d013195589e5164407765e", + "_tpl": "5df25b6c0b92095fd441e4cf", + "slotId": "mod_magazine", + "parentId": "67d013195589e5164407765d" + }, + { + "_id": "67d013195589e5164407765f", + "_tpl": "5df256570dee1b22f862e9c4", + "slotId": "mod_barrel", + "parentId": "67d013195589e5164407765d" + }, + { + "_id": "67d013195589e51644077660", + "_tpl": "5df35e59c41b2312ea3334d5", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d013195589e5164407765d" + }, + { + "_id": "67d013195589e51644077661", + "_tpl": "5df35e970b92095fd441e4d2", + "slotId": "mod_mount", + "parentId": "67d013195589e5164407765d" + }, + { + "_id": "67d013195589e51644077662", + "_tpl": "5d1f819086f7744b355c219b", + "slotId": "mod_muzzle", + "parentId": "67d013195589e5164407765f" + }, + { + "_id": "67d013195589e51644077663", + "_tpl": "5df25d3bfd6b4e6e2276dc9a", + "slotId": "mod_handguard", + "parentId": "67d013195589e51644077660" + }, + { + "_id": "67d013195589e51644077664", + "_tpl": "5df38a5fb74cd90030650cb6", + "slotId": "mod_pistol_grip", + "parentId": "67d013195589e51644077660" + }, + { + "_id": "67d013195589e51644077665", + "_tpl": "5df35ddddfc58d14537c2036", + "slotId": "mod_stock_axis", + "parentId": "67d013195589e51644077660" + }, + { + "_id": "67d013195589e51644077666", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67d013195589e51644077661" + }, + { + "_id": "67d013195589e51644077667", + "_tpl": "5cff9e84d7ad1a049e54ed55", + "slotId": "mod_muzzle", + "parentId": "67d013195589e51644077662" + }, + { + "_id": "67d013195589e51644077668", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_000", + "parentId": "67d013195589e51644077663" + }, + { + "_id": "67d013195589e51644077669", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_001", + "parentId": "67d013195589e51644077663" + }, + { + "_id": "67d013195589e5164407766a", + "_tpl": "5df35ea9c41b2312ea3334d8", + "slotId": "mod_mount_002", + "parentId": "67d013195589e51644077663" + }, + { + "_id": "67d013195589e5164407766b", + "_tpl": "5df35eb2b11454561e3923e2", + "slotId": "mod_mount_003", + "parentId": "67d013195589e51644077663" + }, + { + "_id": "67d013195589e5164407766c", + "_tpl": "5df36948bb49d91fb446d5ad", + "slotId": "mod_foregrip", + "parentId": "67d013195589e51644077663" + }, + { + "_id": "67d013195589e5164407766d", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d013195589e5164407766b" + }, + { + "_id": "67d013195589e5164407766e", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d013195589e51644077666" + }, + { + "_id": "67d013195589e5164407766f", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d013195589e51644077666" + } + ] + }, + { + "Id": "67d013610100185b95ba5bb1", + "Name": "loud vudu m700", + "Root": "67d0136d5589e516440784c5", + "Items": [ + { + "_id": "67d0136d5589e516440784c5", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0136d5589e516440784c6", + "_tpl": "5bfea7ad0db834001c38f1ee", + "slotId": "mod_magazine", + "parentId": "67d0136d5589e516440784c5" + }, + { + "_id": "67d0136d5589e516440784c7", + "_tpl": "5bfeb32b0db834001a6694d9", + "slotId": "mod_stock", + "parentId": "67d0136d5589e516440784c5" + }, + { + "_id": "67d0136d5589e516440784c8", + "_tpl": "5bfebc320db8340019668d79", + "slotId": "mod_barrel", + "parentId": "67d0136d5589e516440784c5" + }, + { + "_id": "67d0136d5589e516440784c9", + "_tpl": "5bfebc530db834001d23eb65", + "slotId": "mod_mount", + "parentId": "67d0136d5589e516440784c5" + }, + { + "_id": "67d0136d5589e516440784ca", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0136d5589e516440784c7" + }, + { + "_id": "67d0136d5589e516440784cb", + "_tpl": "5d270b3c8abbc3105335cfb8", + "slotId": "mod_muzzle", + "parentId": "67d0136d5589e516440784c8" + }, + { + "_id": "67d0136d5589e516440784cc", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d0136d5589e516440784c9" + }, + { + "_id": "67d0136d5589e516440784cd", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0136d5589e516440784cc" + } + ] + }, + { + "Id": "67d0137c0100185b9588e49c", + "Name": "supr vudu m700", + "Root": "67d013815589e51644079221", + "Items": [ + { + "_id": "67d013815589e51644079221", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d013815589e51644079222", + "_tpl": "5bfea7ad0db834001c38f1ee", + "slotId": "mod_magazine", + "parentId": "67d013815589e51644079221" + }, + { + "_id": "67d013815589e51644079223", + "_tpl": "5bfeb32b0db834001a6694d9", + "slotId": "mod_stock", + "parentId": "67d013815589e51644079221" + }, + { + "_id": "67d013815589e51644079224", + "_tpl": "5bfebc320db8340019668d79", + "slotId": "mod_barrel", + "parentId": "67d013815589e51644079221" + }, + { + "_id": "67d013815589e51644079225", + "_tpl": "5bfebc530db834001d23eb65", + "slotId": "mod_mount", + "parentId": "67d013815589e51644079221" + }, + { + "_id": "67d013815589e51644079226", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d013815589e51644079223" + }, + { + "_id": "67d013815589e51644079227", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67d013815589e51644079224" + }, + { + "_id": "67d013815589e51644079228", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d013815589e51644079225" + }, + { + "_id": "67d013815589e51644079229", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d013815589e51644079228" + } + ] + }, + { + "Id": "67d013c20100185b9500fc24", + "Name": "supr pmII m700", + "Root": "67d013d05589e5164407a17f", + "Items": [ + { + "_id": "67d013d05589e5164407a17f", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d013d05589e5164407a180", + "_tpl": "5bfea7ad0db834001c38f1ee", + "slotId": "mod_magazine", + "parentId": "67d013d05589e5164407a17f" + }, + { + "_id": "67d013d05589e5164407a181", + "_tpl": "5bfeb32b0db834001a6694d9", + "slotId": "mod_stock", + "parentId": "67d013d05589e5164407a17f" + }, + { + "_id": "67d013d05589e5164407a182", + "_tpl": "5bfebc320db8340019668d79", + "slotId": "mod_barrel", + "parentId": "67d013d05589e5164407a17f" + }, + { + "_id": "67d013d05589e5164407a183", + "_tpl": "5bfebc530db834001d23eb65", + "slotId": "mod_mount", + "parentId": "67d013d05589e5164407a17f" + }, + { + "_id": "67d013d05589e5164407a184", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d013d05589e5164407a181" + }, + { + "_id": "67d013d05589e5164407a185", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67d013d05589e5164407a182" + }, + { + "_id": "67d013d05589e5164407a186", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d013d05589e5164407a183" + }, + { + "_id": "67d013d05589e5164407a187", + "_tpl": "617151c1d92c473c770214ab", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d013d05589e5164407a186" + } + ] + }, + { + "Id": "67d013e70100185b9536a4b3", + "Name": "loud tac30 m700", + "Root": "67d013ed5589e5164407af9c", + "Items": [ + { + "_id": "67d013ed5589e5164407af9c", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d013ed5589e5164407af9d", + "_tpl": "5bfea7ad0db834001c38f1ee", + "slotId": "mod_magazine", + "parentId": "67d013ed5589e5164407af9c" + }, + { + "_id": "67d013ed5589e5164407af9e", + "_tpl": "5bfeb32b0db834001a6694d9", + "slotId": "mod_stock", + "parentId": "67d013ed5589e5164407af9c" + }, + { + "_id": "67d013ed5589e5164407af9f", + "_tpl": "5bfebc320db8340019668d79", + "slotId": "mod_barrel", + "parentId": "67d013ed5589e5164407af9c" + }, + { + "_id": "67d013ed5589e5164407afa0", + "_tpl": "5bfebc530db834001d23eb65", + "slotId": "mod_mount", + "parentId": "67d013ed5589e5164407af9c" + }, + { + "_id": "67d013ed5589e5164407afa1", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d013ed5589e5164407af9e" + }, + { + "_id": "67d013ed5589e5164407afa2", + "_tpl": "5d270b3c8abbc3105335cfb8", + "slotId": "mod_muzzle", + "parentId": "67d013ed5589e5164407af9f" + }, + { + "_id": "67d013ed5589e5164407afa3", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d013ed5589e5164407afa0" + }, + { + "_id": "67d013ed5589e5164407afa4", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d013ed5589e5164407afa3" + } + ] + }, + { + "Id": "67d0142d0100185b953bc31e", + "Name": "loud vudu sv98", + "Root": "67d014375589e5164407be53", + "Items": [ + { + "_id": "67d014375589e5164407be53", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d014375589e5164407be54", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "slotId": "mod_magazine", + "parentId": "67d014375589e5164407be53" + }, + { + "_id": "67d014375589e5164407be55", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d014375589e5164407be53" + }, + { + "_id": "67d014375589e5164407be56", + "_tpl": "56083e1b4bdc2dc8488b4572", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d014375589e5164407be53" + }, + { + "_id": "67d014375589e5164407be57", + "_tpl": "56083eab4bdc2d26448b456a", + "slotId": "mod_tactical", + "parentId": "67d014375589e5164407be53" + }, + { + "_id": "67d014375589e5164407be58", + "_tpl": "5c4ee3d62e2216152006f302", + "slotId": "mod_muzzle", + "parentId": "67d014375589e5164407be53" + }, + { + "_id": "67d014375589e5164407be59", + "_tpl": "61faa91878830f069b6b7967", + "slotId": "mod_stock", + "parentId": "67d014375589e5164407be53" + }, + { + "_id": "67d014375589e5164407be5a", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d014375589e5164407be55" + }, + { + "_id": "67d014375589e5164407be5b", + "_tpl": "56ea8222d2720b69698b4567", + "slotId": "mod_bipod", + "parentId": "67d014375589e5164407be59" + } + ] + }, + { + "Id": "67d014580100185b95ea3253", + "Name": "supr razor sv98", + "Root": "67d0145f5589e5164407cce5", + "Items": [ + { + "_id": "67d0145f5589e5164407cce5", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0145f5589e5164407cce6", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "slotId": "mod_magazine", + "parentId": "67d0145f5589e5164407cce5" + }, + { + "_id": "67d0145f5589e5164407cce7", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d0145f5589e5164407cce5" + }, + { + "_id": "67d0145f5589e5164407cce8", + "_tpl": "56083e1b4bdc2dc8488b4572", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0145f5589e5164407cce5" + }, + { + "_id": "67d0145f5589e5164407cce9", + "_tpl": "56083eab4bdc2d26448b456a", + "slotId": "mod_tactical", + "parentId": "67d0145f5589e5164407cce5" + }, + { + "_id": "67d0145f5589e5164407ccea", + "_tpl": "5c4eec9b2e2216398b5aaba2", + "slotId": "mod_muzzle", + "parentId": "67d0145f5589e5164407cce5" + }, + { + "_id": "67d0145f5589e5164407cceb", + "_tpl": "61faa91878830f069b6b7967", + "slotId": "mod_stock", + "parentId": "67d0145f5589e5164407cce5" + }, + { + "_id": "67d0145f5589e5164407ccec", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0145f5589e5164407cce7" + }, + { + "_id": "67d0145f5589e5164407cced", + "_tpl": "5c4eecc32e221602b412b440", + "slotId": "mod_muzzle", + "parentId": "67d0145f5589e5164407ccea" + }, + { + "_id": "67d0145f5589e5164407ccee", + "_tpl": "56ea8222d2720b69698b4567", + "slotId": "mod_bipod", + "parentId": "67d0145f5589e5164407cceb" + } + ] + }, + { + "Id": "67d0146d0100185b9562308a", + "Name": "supr tac30 sv98", + "Root": "67d014715589e5164407dba9", + "Items": [ + { + "_id": "67d014715589e5164407dba9", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d014715589e5164407dbaa", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "slotId": "mod_magazine", + "parentId": "67d014715589e5164407dba9" + }, + { + "_id": "67d014715589e5164407dbab", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d014715589e5164407dba9" + }, + { + "_id": "67d014715589e5164407dbac", + "_tpl": "56083e1b4bdc2dc8488b4572", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d014715589e5164407dba9" + }, + { + "_id": "67d014715589e5164407dbad", + "_tpl": "56083eab4bdc2d26448b456a", + "slotId": "mod_tactical", + "parentId": "67d014715589e5164407dba9" + }, + { + "_id": "67d014715589e5164407dbae", + "_tpl": "5c4eec9b2e2216398b5aaba2", + "slotId": "mod_muzzle", + "parentId": "67d014715589e5164407dba9" + }, + { + "_id": "67d014715589e5164407dbaf", + "_tpl": "61faa91878830f069b6b7967", + "slotId": "mod_stock", + "parentId": "67d014715589e5164407dba9" + }, + { + "_id": "67d014715589e5164407dbb0", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d014715589e5164407dbab" + }, + { + "_id": "67d014715589e5164407dbb1", + "_tpl": "5c4eecc32e221602b412b440", + "slotId": "mod_muzzle", + "parentId": "67d014715589e5164407dbae" + }, + { + "_id": "67d014715589e5164407dbb2", + "_tpl": "56ea8222d2720b69698b4567", + "slotId": "mod_bipod", + "parentId": "67d014715589e5164407dbaf" + } + ] + }, + { + "Id": "67d015380100185b9543b967", + "Name": "loud hame rpk", + "Root": "67d015475589e5164408163c", + "Items": [ + { + "_id": "67d015475589e5164408163c", + "_tpl": "5beed0f50db834001c062b12", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d015475589e5164408163d", + "_tpl": "5beec8ea0db834001a6f9dbf", + "slotId": "mod_pistol_grip", + "parentId": "67d015475589e5164408163c" + }, + { + "_id": "67d015475589e5164408163e", + "_tpl": "5beec91a0db834001961942d", + "slotId": "mod_reciever", + "parentId": "67d015475589e5164408163c" + }, + { + "_id": "67d015475589e5164408163f", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67d015475589e5164408163c" + }, + { + "_id": "67d015475589e51644081640", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d015475589e5164408163c" + }, + { + "_id": "67d015475589e51644081641", + "_tpl": "5beec8b20db834001961942a", + "slotId": "mod_stock_001", + "parentId": "67d015475589e5164408163c" + }, + { + "_id": "67d015475589e51644081642", + "_tpl": "5beec3e30db8340019619424", + "slotId": "mod_handguard", + "parentId": "67d015475589e5164408163c" + }, + { + "_id": "67d015475589e51644081643", + "_tpl": "5beec1bd0db834001e6006f3", + "slotId": "mod_barrel", + "parentId": "67d015475589e5164408163c" + }, + { + "_id": "67d015475589e51644081644", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d015475589e5164408163e" + }, + { + "_id": "67d015475589e51644081645", + "_tpl": "5beec9450db83400970084fd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d015475589e5164408163e" + }, + { + "_id": "67d015475589e51644081646", + "_tpl": "5beec8c20db834001d2c465c", + "slotId": "mod_stock", + "parentId": "67d015475589e51644081641" + }, + { + "_id": "67d015475589e51644081647", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_000", + "parentId": "67d015475589e51644081642" + }, + { + "_id": "67d015475589e51644081648", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67d015475589e51644081642" + }, + { + "_id": "67d015475589e51644081649", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d015475589e51644081642" + }, + { + "_id": "67d015475589e5164408164a", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67d015475589e51644081643" + }, + { + "_id": "67d015475589e5164408164b", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d015475589e51644081644" + }, + { + "_id": "67d015475589e5164408164c", + "_tpl": "5bf3f59f0db834001a6fa060", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d015475589e51644081645" + } + ] + }, + { + "Id": "67d015600100185b951c7893", + "Name": "loud holo rpk", + "Root": "67d015695589e51644082473", + "Items": [ + { + "_id": "67d015695589e51644082473", + "_tpl": "5beed0f50db834001c062b12", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d015695589e51644082474", + "_tpl": "5beec8ea0db834001a6f9dbf", + "slotId": "mod_pistol_grip", + "parentId": "67d015695589e51644082473" + }, + { + "_id": "67d015695589e51644082475", + "_tpl": "5beec91a0db834001961942d", + "slotId": "mod_reciever", + "parentId": "67d015695589e51644082473" + }, + { + "_id": "67d015695589e51644082476", + "_tpl": "5aaa4194e5b5b055d06310a5", + "slotId": "mod_magazine", + "parentId": "67d015695589e51644082473" + }, + { + "_id": "67d015695589e51644082477", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d015695589e51644082473" + }, + { + "_id": "67d015695589e51644082478", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67d015695589e51644082473" + }, + { + "_id": "67d015695589e51644082479", + "_tpl": "5beec3e30db8340019619424", + "slotId": "mod_handguard", + "parentId": "67d015695589e51644082473" + }, + { + "_id": "67d015695589e5164408247a", + "_tpl": "5beec1bd0db834001e6006f3", + "slotId": "mod_barrel", + "parentId": "67d015695589e51644082473" + }, + { + "_id": "67d015695589e5164408247b", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d015695589e51644082475" + }, + { + "_id": "67d015695589e5164408247c", + "_tpl": "5beec9450db83400970084fd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d015695589e51644082475" + }, + { + "_id": "67d015695589e5164408247d", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock", + "parentId": "67d015695589e51644082478" + }, + { + "_id": "67d015695589e5164408247e", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_000", + "parentId": "67d015695589e51644082479" + }, + { + "_id": "67d015695589e5164408247f", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67d015695589e51644082479" + }, + { + "_id": "67d015695589e51644082480", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d015695589e51644082479" + }, + { + "_id": "67d015695589e51644082481", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67d015695589e5164408247a" + }, + { + "_id": "67d015695589e51644082482", + "_tpl": "5bf3f59f0db834001a6fa060", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d015695589e5164408247c" + }, + { + "_id": "67d015695589e51644082483", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d015695589e5164408247d" + } + ] + }, + { + "Id": "67d015870100185b954f9298", + "Name": "loud holo rpk v2", + "Root": "67d0158c5589e51644082489", + "Items": [ + { + "_id": "67d0158c5589e51644082489", + "_tpl": "5beed0f50db834001c062b12", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0158c5589e5164408248a", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "slotId": "mod_pistol_grip", + "parentId": "67d0158c5589e51644082489" + }, + { + "_id": "67d0158c5589e5164408248b", + "_tpl": "5beec91a0db834001961942d", + "slotId": "mod_reciever", + "parentId": "67d0158c5589e51644082489" + }, + { + "_id": "67d0158c5589e5164408248c", + "_tpl": "55d482194bdc2d1d4e8b456b", + "slotId": "mod_magazine", + "parentId": "67d0158c5589e51644082489" + }, + { + "_id": "67d0158c5589e5164408248d", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d0158c5589e51644082489" + }, + { + "_id": "67d0158c5589e5164408248e", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67d0158c5589e51644082489" + }, + { + "_id": "67d0158c5589e5164408248f", + "_tpl": "5beec3e30db8340019619424", + "slotId": "mod_handguard", + "parentId": "67d0158c5589e51644082489" + }, + { + "_id": "67d0158c5589e51644082490", + "_tpl": "5beec1bd0db834001e6006f3", + "slotId": "mod_barrel", + "parentId": "67d0158c5589e51644082489" + }, + { + "_id": "67d0158c5589e51644082491", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0158c5589e5164408248b" + }, + { + "_id": "67d0158c5589e51644082492", + "_tpl": "5beec9450db83400970084fd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0158c5589e5164408248b" + }, + { + "_id": "67d0158c5589e51644082493", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock", + "parentId": "67d0158c5589e5164408248e" + }, + { + "_id": "67d0158c5589e51644082494", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_000", + "parentId": "67d0158c5589e5164408248f" + }, + { + "_id": "67d0158c5589e51644082495", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67d0158c5589e5164408248f" + }, + { + "_id": "67d0158c5589e51644082496", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d0158c5589e5164408248f" + }, + { + "_id": "67d0158c5589e51644082497", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67d0158c5589e51644082490" + }, + { + "_id": "67d0158c5589e51644082498", + "_tpl": "5bf3f59f0db834001a6fa060", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0158c5589e51644082492" + }, + { + "_id": "67d0158c5589e51644082499", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d0158c5589e51644082493" + } + ] + }, + { + "Id": "67d015b30100185b95b12a86", + "Name": "loud dp rpk", + "Root": "67d015bb5589e51644083490", + "Items": [ + { + "_id": "67d015bb5589e51644083490", + "_tpl": "5beed0f50db834001c062b12", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d015bb5589e51644083491", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "slotId": "mod_pistol_grip", + "parentId": "67d015bb5589e51644083490" + }, + { + "_id": "67d015bb5589e51644083492", + "_tpl": "5beec91a0db834001961942d", + "slotId": "mod_reciever", + "parentId": "67d015bb5589e51644083490" + }, + { + "_id": "67d015bb5589e51644083493", + "_tpl": "5bed625c0db834001c062946", + "slotId": "mod_magazine", + "parentId": "67d015bb5589e51644083490" + }, + { + "_id": "67d015bb5589e51644083494", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d015bb5589e51644083490" + }, + { + "_id": "67d015bb5589e51644083495", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67d015bb5589e51644083490" + }, + { + "_id": "67d015bb5589e51644083496", + "_tpl": "5beec3e30db8340019619424", + "slotId": "mod_handguard", + "parentId": "67d015bb5589e51644083490" + }, + { + "_id": "67d015bb5589e51644083497", + "_tpl": "5beec1bd0db834001e6006f3", + "slotId": "mod_barrel", + "parentId": "67d015bb5589e51644083490" + }, + { + "_id": "67d015bb5589e51644083498", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d015bb5589e51644083492" + }, + { + "_id": "67d015bb5589e51644083499", + "_tpl": "5beec9450db83400970084fd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d015bb5589e51644083492" + }, + { + "_id": "67d015bb5589e5164408349a", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock", + "parentId": "67d015bb5589e51644083495" + }, + { + "_id": "67d015bb5589e5164408349b", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_000", + "parentId": "67d015bb5589e51644083496" + }, + { + "_id": "67d015bb5589e5164408349c", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67d015bb5589e51644083496" + }, + { + "_id": "67d015bb5589e5164408349d", + "_tpl": "5c1bc5612e221602b5429350", + "slotId": "mod_foregrip", + "parentId": "67d015bb5589e51644083496" + }, + { + "_id": "67d015bb5589e5164408349e", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67d015bb5589e51644083497" + }, + { + "_id": "67d015bb5589e5164408349f", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d015bb5589e51644083498" + }, + { + "_id": "67d015bb5589e516440834a0", + "_tpl": "5bf3f59f0db834001a6fa060", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d015bb5589e51644083499" + }, + { + "_id": "67d015bb5589e516440834a1", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d015bb5589e5164408349a" + } + ] + }, + { + "Id": "67d015fe0100185b95ee0328", + "Name": "loud uh1 rpk", + "Root": "67d016035589e516440851bf", + "Items": [ + { + "_id": "67d016035589e516440851bf", + "_tpl": "5beed0f50db834001c062b12", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d016035589e516440851c0", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "slotId": "mod_pistol_grip", + "parentId": "67d016035589e516440851bf" + }, + { + "_id": "67d016035589e516440851c1", + "_tpl": "5beec91a0db834001961942d", + "slotId": "mod_reciever", + "parentId": "67d016035589e516440851bf" + }, + { + "_id": "67d016035589e516440851c2", + "_tpl": "5bed625c0db834001c062946", + "slotId": "mod_magazine", + "parentId": "67d016035589e516440851bf" + }, + { + "_id": "67d016035589e516440851c3", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d016035589e516440851bf" + }, + { + "_id": "67d016035589e516440851c4", + "_tpl": "649ec87d8007560a9001ab36", + "slotId": "mod_stock_001", + "parentId": "67d016035589e516440851bf" + }, + { + "_id": "67d016035589e516440851c5", + "_tpl": "5beec3e30db8340019619424", + "slotId": "mod_handguard", + "parentId": "67d016035589e516440851bf" + }, + { + "_id": "67d016035589e516440851c6", + "_tpl": "5beec1bd0db834001e6006f3", + "slotId": "mod_barrel", + "parentId": "67d016035589e516440851bf" + }, + { + "_id": "67d016035589e516440851c7", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d016035589e516440851c1" + }, + { + "_id": "67d016035589e516440851c8", + "_tpl": "5beec9450db83400970084fd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d016035589e516440851c1" + }, + { + "_id": "67d016035589e516440851c9", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock", + "parentId": "67d016035589e516440851c4" + }, + { + "_id": "67d016035589e516440851ca", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_000", + "parentId": "67d016035589e516440851c5" + }, + { + "_id": "67d016035589e516440851cb", + "_tpl": "5beecbb80db834001d2c465e", + "slotId": "mod_mount_001", + "parentId": "67d016035589e516440851c5" + }, + { + "_id": "67d016035589e516440851cc", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d016035589e516440851c5" + }, + { + "_id": "67d016035589e516440851cd", + "_tpl": "5943eeeb86f77412d6384f6b", + "slotId": "mod_muzzle", + "parentId": "67d016035589e516440851c6" + }, + { + "_id": "67d016035589e516440851ce", + "_tpl": "5bf3f59f0db834001a6fa060", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d016035589e516440851c8" + }, + { + "_id": "67d016035589e516440851cf", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d016035589e516440851c9" + } + ] + }, + { + "Id": "67d01a450100185b95dcfad5", + "Name": "loud holo tan rsass", + "Root": "67d01a4fef2eac5c58039960", + "Items": [ + { + "_id": "67d01a4fef2eac5c58039960", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d01a4fef2eac5c58039961", + "_tpl": "59db3b0886f77429d72fb895", + "slotId": "mod_pistol_grip", + "parentId": "67d01a4fef2eac5c58039960" + }, + { + "_id": "67d01a4fef2eac5c58039962", + "_tpl": "65293c38fc460e50a509cb25", + "slotId": "mod_magazine", + "parentId": "67d01a4fef2eac5c58039960" + }, + { + "_id": "67d01a4fef2eac5c58039963", + "_tpl": "5a33ca0fc4a282000d72292f", + "slotId": "mod_stock", + "parentId": "67d01a4fef2eac5c58039960" + }, + { + "_id": "67d01a4fef2eac5c58039964", + "_tpl": "5a329052c4a28200741e22d3", + "slotId": "mod_handguard", + "parentId": "67d01a4fef2eac5c58039960" + }, + { + "_id": "67d01a4fef2eac5c58039965", + "_tpl": "5a34fae7c4a2826c6e06d760", + "slotId": "mod_barrel", + "parentId": "67d01a4fef2eac5c58039960" + }, + { + "_id": "67d01a4fef2eac5c58039966", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01a4fef2eac5c58039960" + }, + { + "_id": "67d01a4fef2eac5c58039967", + "_tpl": "5a33cae9c4a28232980eb086", + "slotId": "mod_stock", + "parentId": "67d01a4fef2eac5c58039963" + }, + { + "_id": "67d01a4fef2eac5c58039968", + "_tpl": "5c0102b20db834001d23eebc", + "slotId": "mod_foregrip", + "parentId": "67d01a4fef2eac5c58039964" + }, + { + "_id": "67d01a4fef2eac5c58039969", + "_tpl": "5c0102aa0db834001b734ba1", + "slotId": "mod_mount_000", + "parentId": "67d01a4fef2eac5c58039964" + }, + { + "_id": "67d01a4fef2eac5c5803996a", + "_tpl": "5cdd7693d7f00c0010373aa5", + "slotId": "mod_muzzle", + "parentId": "67d01a4fef2eac5c58039965" + }, + { + "_id": "67d01a4fef2eac5c5803996b", + "_tpl": "5a34fbadc4a28200741e230a", + "slotId": "mod_gas_block", + "parentId": "67d01a4fef2eac5c58039965" + }, + { + "_id": "67d01a4fef2eac5c5803996c", + "_tpl": "5fce0cf655375d18a253eff0", + "slotId": "mod_foregrip", + "parentId": "67d01a4fef2eac5c58039968" + }, + { + "_id": "67d01a4fef2eac5c5803996d", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d01a4fef2eac5c58039969" + } + ] + }, + { + "Id": "67d01a620100185b952ca7bf", + "Name": "supr hamr rsass", + "Root": "67d01a7def2eac5c580399c1", + "Items": [ + { + "_id": "67d01a7def2eac5c580399c1", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d01a7def2eac5c580399c2", + "_tpl": "5a339805c4a2826c6e06d73d", + "slotId": "mod_pistol_grip", + "parentId": "67d01a7def2eac5c580399c1" + }, + { + "_id": "67d01a7def2eac5c580399c3", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67d01a7def2eac5c580399c1" + }, + { + "_id": "67d01a7def2eac5c580399c4", + "_tpl": "5a33ca0fc4a282000d72292f", + "slotId": "mod_stock", + "parentId": "67d01a7def2eac5c580399c1" + }, + { + "_id": "67d01a7def2eac5c580399c5", + "_tpl": "5a329052c4a28200741e22d3", + "slotId": "mod_handguard", + "parentId": "67d01a7def2eac5c580399c1" + }, + { + "_id": "67d01a7def2eac5c580399c6", + "_tpl": "5a34fae7c4a2826c6e06d760", + "slotId": "mod_barrel", + "parentId": "67d01a7def2eac5c580399c1" + }, + { + "_id": "67d01a7def2eac5c580399c7", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01a7def2eac5c580399c1" + }, + { + "_id": "67d01a7def2eac5c580399c8", + "_tpl": "5a33cae9c4a28232980eb086", + "slotId": "mod_stock", + "parentId": "67d01a7def2eac5c580399c4" + }, + { + "_id": "67d01a7def2eac5c580399c9", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d01a7def2eac5c580399c5" + }, + { + "_id": "67d01a7def2eac5c580399ca", + "_tpl": "5c0102aa0db834001b734ba1", + "slotId": "mod_mount_000", + "parentId": "67d01a7def2eac5c580399c5" + }, + { + "_id": "67d01a7def2eac5c580399cb", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "slotId": "mod_muzzle", + "parentId": "67d01a7def2eac5c580399c6" + }, + { + "_id": "67d01a7def2eac5c580399cc", + "_tpl": "5a34fbadc4a28200741e230a", + "slotId": "mod_gas_block", + "parentId": "67d01a7def2eac5c580399c6" + }, + { + "_id": "67d01a7def2eac5c580399cd", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01a7def2eac5c580399c7" + }, + { + "_id": "67d01a7def2eac5c580399ce", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d01a7def2eac5c580399ca" + }, + { + "_id": "67d01a7def2eac5c580399cf", + "_tpl": "5a34fe59c4a282000b1521a2", + "slotId": "mod_muzzle", + "parentId": "67d01a7def2eac5c580399cb" + } + ] + }, + { + "Id": "67d01acb0100185b952c9b43", + "Name": "supr razor rsass", + "Root": "67d01ad3ef2eac5c5803a925", + "Items": [ + { + "_id": "67d01ad3ef2eac5c5803a925", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d01ad3ef2eac5c5803a926", + "_tpl": "5a339805c4a2826c6e06d73d", + "slotId": "mod_pistol_grip", + "parentId": "67d01ad3ef2eac5c5803a925" + }, + { + "_id": "67d01ad3ef2eac5c5803a927", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67d01ad3ef2eac5c5803a925" + }, + { + "_id": "67d01ad3ef2eac5c5803a928", + "_tpl": "5a33ca0fc4a282000d72292f", + "slotId": "mod_stock", + "parentId": "67d01ad3ef2eac5c5803a925" + }, + { + "_id": "67d01ad3ef2eac5c5803a929", + "_tpl": "5a329052c4a28200741e22d3", + "slotId": "mod_handguard", + "parentId": "67d01ad3ef2eac5c5803a925" + }, + { + "_id": "67d01ad3ef2eac5c5803a92a", + "_tpl": "5a34fae7c4a2826c6e06d760", + "slotId": "mod_barrel", + "parentId": "67d01ad3ef2eac5c5803a925" + }, + { + "_id": "67d01ad3ef2eac5c5803a92b", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d01ad3ef2eac5c5803a925" + }, + { + "_id": "67d01ad3ef2eac5c5803a92c", + "_tpl": "5a33cae9c4a28232980eb086", + "slotId": "mod_stock", + "parentId": "67d01ad3ef2eac5c5803a928" + }, + { + "_id": "67d01ad3ef2eac5c5803a92d", + "_tpl": "57cffcd624597763133760c5", + "slotId": "mod_foregrip", + "parentId": "67d01ad3ef2eac5c5803a929" + }, + { + "_id": "67d01ad3ef2eac5c5803a92e", + "_tpl": "5c0102aa0db834001b734ba1", + "slotId": "mod_mount_002", + "parentId": "67d01ad3ef2eac5c5803a929" + }, + { + "_id": "67d01ad3ef2eac5c5803a92f", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67d01ad3ef2eac5c5803a92a" + }, + { + "_id": "67d01ad3ef2eac5c5803a930", + "_tpl": "5a34fbadc4a28200741e230a", + "slotId": "mod_gas_block", + "parentId": "67d01ad3ef2eac5c5803a92a" + }, + { + "_id": "67d01ad3ef2eac5c5803a931", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01ad3ef2eac5c5803a92b" + }, + { + "_id": "67d01ad3ef2eac5c5803a932", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d01ad3ef2eac5c5803a92e" + } + ] + }, + { + "Id": "67d01b390100185b950056e1", + "Name": "loud hamr sr-25", + "Root": "67d01b48ef2eac5c5803c5ff", + "Items": [ + { + "_id": "67d01b48ef2eac5c5803c5ff", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d01b48ef2eac5c5803c600", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67d01b48ef2eac5c5803c5ff" + }, + { + "_id": "67d01b48ef2eac5c5803c601", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67d01b48ef2eac5c5803c5ff" + }, + { + "_id": "67d01b48ef2eac5c5803c602", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67d01b48ef2eac5c5803c5ff" + }, + { + "_id": "67d01b48ef2eac5c5803c603", + "_tpl": "5df8e4080b92095fd441e594", + "slotId": "mod_reciever", + "parentId": "67d01b48ef2eac5c5803c5ff" + }, + { + "_id": "67d01b48ef2eac5c5803c604", + "_tpl": "5df8e053bb49d91fb446d6a6", + "slotId": "mod_charge", + "parentId": "67d01b48ef2eac5c5803c5ff" + }, + { + "_id": "67d01b48ef2eac5c5803c605", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d01b48ef2eac5c5803c602" + }, + { + "_id": "67d01b48ef2eac5c5803c606", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01b48ef2eac5c5803c603" + }, + { + "_id": "67d01b48ef2eac5c5803c607", + "_tpl": "5df917564a9f347bc92edca3", + "slotId": "mod_barrel", + "parentId": "67d01b48ef2eac5c5803c603" + }, + { + "_id": "67d01b48ef2eac5c5803c608", + "_tpl": "5df916dfbb49d91fb446d6b9", + "slotId": "mod_handguard", + "parentId": "67d01b48ef2eac5c5803c603" + }, + { + "_id": "67d01b48ef2eac5c5803c609", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01b48ef2eac5c5803c603" + }, + { + "_id": "67d01b48ef2eac5c5803c60a", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d01b48ef2eac5c5803c605" + }, + { + "_id": "67d01b48ef2eac5c5803c60b", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01b48ef2eac5c5803c606" + }, + { + "_id": "67d01b48ef2eac5c5803c60c", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67d01b48ef2eac5c5803c607" + }, + { + "_id": "67d01b48ef2eac5c5803c60d", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67d01b48ef2eac5c5803c607" + }, + { + "_id": "67d01b48ef2eac5c5803c60e", + "_tpl": "5dfa3d950dee1b22f862eae0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01b48ef2eac5c5803c608" + }, + { + "_id": "67d01b48ef2eac5c5803c60f", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d01b48ef2eac5c5803c608" + }, + { + "_id": "67d01b48ef2eac5c5803c610", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d01b48ef2eac5c5803c60f" + } + ] + }, + { + "Id": "67d01b9c0100185b9536ec93", + "Name": "supr hamr sr25", + "Root": "67d01bb4ef2eac5c5803d402", + "Items": [ + { + "_id": "67d01bb4ef2eac5c5803d402", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d01bb4ef2eac5c5803d403", + "_tpl": "55802f5d4bdc2dac148b458f", + "slotId": "mod_pistol_grip", + "parentId": "67d01bb4ef2eac5c5803d402" + }, + { + "_id": "67d01bb4ef2eac5c5803d404", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67d01bb4ef2eac5c5803d402" + }, + { + "_id": "67d01bb4ef2eac5c5803d405", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67d01bb4ef2eac5c5803d402" + }, + { + "_id": "67d01bb4ef2eac5c5803d406", + "_tpl": "5df8e4080b92095fd441e594", + "slotId": "mod_reciever", + "parentId": "67d01bb4ef2eac5c5803d402" + }, + { + "_id": "67d01bb4ef2eac5c5803d407", + "_tpl": "5df8e053bb49d91fb446d6a6", + "slotId": "mod_charge", + "parentId": "67d01bb4ef2eac5c5803d402" + }, + { + "_id": "67d01bb4ef2eac5c5803d408", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d01bb4ef2eac5c5803d405" + }, + { + "_id": "67d01bb4ef2eac5c5803d409", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01bb4ef2eac5c5803d406" + }, + { + "_id": "67d01bb4ef2eac5c5803d40a", + "_tpl": "5df917564a9f347bc92edca3", + "slotId": "mod_barrel", + "parentId": "67d01bb4ef2eac5c5803d406" + }, + { + "_id": "67d01bb4ef2eac5c5803d40b", + "_tpl": "5df916dfbb49d91fb446d6b9", + "slotId": "mod_handguard", + "parentId": "67d01bb4ef2eac5c5803d406" + }, + { + "_id": "67d01bb4ef2eac5c5803d40c", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01bb4ef2eac5c5803d406" + }, + { + "_id": "67d01bb4ef2eac5c5803d40d", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d01bb4ef2eac5c5803d408" + }, + { + "_id": "67d01bb4ef2eac5c5803d40e", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01bb4ef2eac5c5803d409" + }, + { + "_id": "67d01bb4ef2eac5c5803d40f", + "_tpl": "5fbc22ccf24b94483f726483", + "slotId": "mod_muzzle", + "parentId": "67d01bb4ef2eac5c5803d40a" + }, + { + "_id": "67d01bb4ef2eac5c5803d410", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67d01bb4ef2eac5c5803d40a" + }, + { + "_id": "67d01bb4ef2eac5c5803d411", + "_tpl": "5dfa3d950dee1b22f862eae0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01bb4ef2eac5c5803d40b" + }, + { + "_id": "67d01bb4ef2eac5c5803d412", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d01bb4ef2eac5c5803d40b" + }, + { + "_id": "67d01bb4ef2eac5c5803d413", + "_tpl": "5fbe760793164a5b6278efc8", + "slotId": "mod_muzzle_001", + "parentId": "67d01bb4ef2eac5c5803d40f" + }, + { + "_id": "67d01bb4ef2eac5c5803d414", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d01bb4ef2eac5c5803d412" + } + ] + }, + { + "Id": "67d01bf10100185b9544530f", + "Name": "supr vudu sr25", + "Root": "67d01bfaef2eac5c5803e34b", + "Items": [ + { + "_id": "67d01bfaef2eac5c5803e34b", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d01bfaef2eac5c5803e34c", + "_tpl": "55802f5d4bdc2dac148b458f", + "slotId": "mod_pistol_grip", + "parentId": "67d01bfaef2eac5c5803e34b" + }, + { + "_id": "67d01bfaef2eac5c5803e34d", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67d01bfaef2eac5c5803e34b" + }, + { + "_id": "67d01bfaef2eac5c5803e34e", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67d01bfaef2eac5c5803e34b" + }, + { + "_id": "67d01bfaef2eac5c5803e34f", + "_tpl": "5df8e4080b92095fd441e594", + "slotId": "mod_reciever", + "parentId": "67d01bfaef2eac5c5803e34b" + }, + { + "_id": "67d01bfaef2eac5c5803e350", + "_tpl": "5df8e053bb49d91fb446d6a6", + "slotId": "mod_charge", + "parentId": "67d01bfaef2eac5c5803e34b" + }, + { + "_id": "67d01bfaef2eac5c5803e351", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d01bfaef2eac5c5803e34e" + }, + { + "_id": "67d01bfaef2eac5c5803e352", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d01bfaef2eac5c5803e34f" + }, + { + "_id": "67d01bfaef2eac5c5803e353", + "_tpl": "5df917564a9f347bc92edca3", + "slotId": "mod_barrel", + "parentId": "67d01bfaef2eac5c5803e34f" + }, + { + "_id": "67d01bfaef2eac5c5803e354", + "_tpl": "5df916dfbb49d91fb446d6b9", + "slotId": "mod_handguard", + "parentId": "67d01bfaef2eac5c5803e34f" + }, + { + "_id": "67d01bfaef2eac5c5803e355", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01bfaef2eac5c5803e34f" + }, + { + "_id": "67d01bfaef2eac5c5803e356", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d01bfaef2eac5c5803e351" + }, + { + "_id": "67d01bfaef2eac5c5803e357", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01bfaef2eac5c5803e352" + }, + { + "_id": "67d01bfaef2eac5c5803e358", + "_tpl": "5dfa3cd1b33c0951220c079b", + "slotId": "mod_muzzle", + "parentId": "67d01bfaef2eac5c5803e353" + }, + { + "_id": "67d01bfaef2eac5c5803e359", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67d01bfaef2eac5c5803e353" + }, + { + "_id": "67d01bfaef2eac5c5803e35a", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67d01bfaef2eac5c5803e354" + }, + { + "_id": "67d01bfaef2eac5c5803e35b", + "_tpl": "5dfa3d950dee1b22f862eae0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01bfaef2eac5c5803e354" + }, + { + "_id": "67d01bfaef2eac5c5803e35c", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d01bfaef2eac5c5803e354" + }, + { + "_id": "67d01bfaef2eac5c5803e35d", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67d01bfaef2eac5c5803e358" + }, + { + "_id": "67d01bfaef2eac5c5803e35e", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d01bfaef2eac5c5803e35a" + }, + { + "_id": "67d01bfaef2eac5c5803e35f", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d01bfaef2eac5c5803e35c" + } + ] + }, + { + "Id": "67d01c310100185b95a444ae", + "Name": "loud holo sr-25", + "Root": "67d01c37ef2eac5c5803f2ae", + "Items": [ + { + "_id": "67d01c37ef2eac5c5803f2ae", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d01c37ef2eac5c5803f2af", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67d01c37ef2eac5c5803f2ae" + }, + { + "_id": "67d01c37ef2eac5c5803f2b0", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67d01c37ef2eac5c5803f2ae" + }, + { + "_id": "67d01c37ef2eac5c5803f2b1", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67d01c37ef2eac5c5803f2ae" + }, + { + "_id": "67d01c37ef2eac5c5803f2b2", + "_tpl": "5df8e4080b92095fd441e594", + "slotId": "mod_reciever", + "parentId": "67d01c37ef2eac5c5803f2ae" + }, + { + "_id": "67d01c37ef2eac5c5803f2b3", + "_tpl": "5df8e053bb49d91fb446d6a6", + "slotId": "mod_charge", + "parentId": "67d01c37ef2eac5c5803f2ae" + }, + { + "_id": "67d01c37ef2eac5c5803f2b4", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d01c37ef2eac5c5803f2b1" + }, + { + "_id": "67d01c37ef2eac5c5803f2b5", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01c37ef2eac5c5803f2b2" + }, + { + "_id": "67d01c37ef2eac5c5803f2b6", + "_tpl": "5df917564a9f347bc92edca3", + "slotId": "mod_barrel", + "parentId": "67d01c37ef2eac5c5803f2b2" + }, + { + "_id": "67d01c37ef2eac5c5803f2b7", + "_tpl": "5df916dfbb49d91fb446d6b9", + "slotId": "mod_handguard", + "parentId": "67d01c37ef2eac5c5803f2b2" + }, + { + "_id": "67d01c37ef2eac5c5803f2b8", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01c37ef2eac5c5803f2b2" + }, + { + "_id": "67d01c37ef2eac5c5803f2b9", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d01c37ef2eac5c5803f2b4" + }, + { + "_id": "67d01c37ef2eac5c5803f2ba", + "_tpl": "5cdd7693d7f00c0010373aa5", + "slotId": "mod_muzzle", + "parentId": "67d01c37ef2eac5c5803f2b6" + }, + { + "_id": "67d01c37ef2eac5c5803f2bb", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67d01c37ef2eac5c5803f2b6" + }, + { + "_id": "67d01c37ef2eac5c5803f2bc", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_002", + "parentId": "67d01c37ef2eac5c5803f2b7" + }, + { + "_id": "67d01c37ef2eac5c5803f2bd", + "_tpl": "5dfa3d950dee1b22f862eae0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01c37ef2eac5c5803f2b7" + }, + { + "_id": "67d01c37ef2eac5c5803f2be", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d01c37ef2eac5c5803f2b7" + }, + { + "_id": "67d01c37ef2eac5c5803f2bf", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d01c37ef2eac5c5803f2bc" + }, + { + "_id": "67d01c37ef2eac5c5803f2c0", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d01c37ef2eac5c5803f2be" + } + ] + }, + { + "Id": "67d01c5d0100185b95e10d15", + "Name": "supr razor sr25", + "Root": "67d01c65ef2eac5c5804025b", + "Items": [ + { + "_id": "67d01c65ef2eac5c5804025b", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d01c65ef2eac5c5804025c", + "_tpl": "55802f5d4bdc2dac148b458f", + "slotId": "mod_pistol_grip", + "parentId": "67d01c65ef2eac5c5804025b" + }, + { + "_id": "67d01c65ef2eac5c5804025d", + "_tpl": "5a3501acc4a282000d72293a", + "slotId": "mod_magazine", + "parentId": "67d01c65ef2eac5c5804025b" + }, + { + "_id": "67d01c65ef2eac5c5804025e", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67d01c65ef2eac5c5804025b" + }, + { + "_id": "67d01c65ef2eac5c5804025f", + "_tpl": "5df8e4080b92095fd441e594", + "slotId": "mod_reciever", + "parentId": "67d01c65ef2eac5c5804025b" + }, + { + "_id": "67d01c65ef2eac5c58040260", + "_tpl": "5df8e053bb49d91fb446d6a6", + "slotId": "mod_charge", + "parentId": "67d01c65ef2eac5c5804025b" + }, + { + "_id": "67d01c65ef2eac5c58040261", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d01c65ef2eac5c5804025e" + }, + { + "_id": "67d01c65ef2eac5c58040262", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d01c65ef2eac5c5804025f" + }, + { + "_id": "67d01c65ef2eac5c58040263", + "_tpl": "5df917564a9f347bc92edca3", + "slotId": "mod_barrel", + "parentId": "67d01c65ef2eac5c5804025f" + }, + { + "_id": "67d01c65ef2eac5c58040264", + "_tpl": "5df916dfbb49d91fb446d6b9", + "slotId": "mod_handguard", + "parentId": "67d01c65ef2eac5c5804025f" + }, + { + "_id": "67d01c65ef2eac5c58040265", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01c65ef2eac5c5804025f" + }, + { + "_id": "67d01c65ef2eac5c58040266", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d01c65ef2eac5c58040261" + }, + { + "_id": "67d01c65ef2eac5c58040267", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01c65ef2eac5c58040262" + }, + { + "_id": "67d01c65ef2eac5c58040268", + "_tpl": "5dfa3cd1b33c0951220c079b", + "slotId": "mod_muzzle", + "parentId": "67d01c65ef2eac5c58040263" + }, + { + "_id": "67d01c65ef2eac5c58040269", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "slotId": "mod_gas_block", + "parentId": "67d01c65ef2eac5c58040263" + }, + { + "_id": "67d01c65ef2eac5c5804026a", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67d01c65ef2eac5c58040264" + }, + { + "_id": "67d01c65ef2eac5c5804026b", + "_tpl": "5dfa3d950dee1b22f862eae0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01c65ef2eac5c58040264" + }, + { + "_id": "67d01c65ef2eac5c5804026c", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d01c65ef2eac5c58040264" + }, + { + "_id": "67d01c65ef2eac5c5804026d", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67d01c65ef2eac5c58040268" + }, + { + "_id": "67d01c65ef2eac5c5804026e", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d01c65ef2eac5c5804026a" + }, + { + "_id": "67d01c65ef2eac5c5804026f", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d01c65ef2eac5c5804026c" + } + ] + }, + { + "Id": "67d01c8c0100185b9599f481", + "Name": "stock g28", + "Root": "67d01c9def2eac5c58040279", + "Items": [ + { + "_id": "67d01c9def2eac5c58040279", + "_tpl": "6176aca650224f204c1da3fb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d01c9def2eac5c5804027a", + "_tpl": "6193dcd0f8ee7e52e4210a28", + "slotId": "mod_pistol_grip", + "parentId": "67d01c9def2eac5c58040279" + }, + { + "_id": "67d01c9def2eac5c5804027b", + "_tpl": "617131a4568c120fdd29482d", + "slotId": "mod_magazine", + "parentId": "67d01c9def2eac5c58040279" + }, + { + "_id": "67d01c9def2eac5c5804027c", + "_tpl": "617153016c780c1e710c9a2f", + "slotId": "mod_stock", + "parentId": "67d01c9def2eac5c58040279" + }, + { + "_id": "67d01c9def2eac5c5804027d", + "_tpl": "61713a8fd92c473c770214a4", + "slotId": "mod_reciever", + "parentId": "67d01c9def2eac5c58040279" + }, + { + "_id": "67d01c9def2eac5c5804027e", + "_tpl": "61702d8a67085e45ef140b24", + "slotId": "mod_charge", + "parentId": "67d01c9def2eac5c58040279" + }, + { + "_id": "67d01c9def2eac5c5804027f", + "_tpl": "617155ee50224f204c1da3cd", + "slotId": "mod_stock_000", + "parentId": "67d01c9def2eac5c5804027c" + }, + { + "_id": "67d01c9def2eac5c58040280", + "_tpl": "61713cc4d8e3106d9806c109", + "slotId": "mod_scope", + "parentId": "67d01c9def2eac5c5804027d" + }, + { + "_id": "67d01c9def2eac5c58040281", + "_tpl": "61702be9faa1272e431522c3", + "slotId": "mod_barrel", + "parentId": "67d01c9def2eac5c5804027d" + }, + { + "_id": "67d01c9def2eac5c58040282", + "_tpl": "61703001d92c473c77021497", + "slotId": "mod_handguard", + "parentId": "67d01c9def2eac5c5804027d" + }, + { + "_id": "67d01c9def2eac5c58040283", + "_tpl": "5bb20e49d4351e3bac1212de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01c9def2eac5c5804027d" + }, + { + "_id": "67d01c9def2eac5c58040284", + "_tpl": "61715e7e67085e45ef140b33", + "slotId": "mod_stock_000", + "parentId": "67d01c9def2eac5c5804027f" + }, + { + "_id": "67d01c9def2eac5c58040285", + "_tpl": "61714eec290d254f5e6b2ffc", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01c9def2eac5c58040280" + }, + { + "_id": "67d01c9def2eac5c58040286", + "_tpl": "61714b2467085e45ef140b2c", + "slotId": "mod_scope_001", + "parentId": "67d01c9def2eac5c58040280" + }, + { + "_id": "67d01c9def2eac5c58040287", + "_tpl": "61713308d92c473c770214a0", + "slotId": "mod_muzzle", + "parentId": "67d01c9def2eac5c58040281" + }, + { + "_id": "67d01c9def2eac5c58040288", + "_tpl": "61702f1b67085e45ef140b26", + "slotId": "mod_gas_block", + "parentId": "67d01c9def2eac5c58040281" + }, + { + "_id": "67d01c9def2eac5c58040289", + "_tpl": "619386379fb0c665d5490dbe", + "slotId": "mod_foregrip", + "parentId": "67d01c9def2eac5c58040282" + }, + { + "_id": "67d01c9def2eac5c5804028a", + "_tpl": "58d399e486f77442e0016fe7", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d01c9def2eac5c58040286" + }, + { + "_id": "67d01c9def2eac5c5804028b", + "_tpl": "6171367e1cb55961fa0fdb36", + "slotId": "mod_muzzle", + "parentId": "67d01c9def2eac5c58040287" + } + ] + }, + { + "Id": "67d09d090100185b954c498a", + "Name": "supr 2x adar", + "Root": "67d09d0db205ca3dd4037b19", + "Items": [ + { + "_id": "67d09d0db205ca3dd4037b19", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d09d0db205ca3dd4037b1a", + "_tpl": "55802f5d4bdc2dac148b458f", + "slotId": "mod_pistol_grip", + "parentId": "67d09d0db205ca3dd4037b19" + }, + { + "_id": "67d09d0db205ca3dd4037b1b", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67d09d0db205ca3dd4037b19" + }, + { + "_id": "67d09d0db205ca3dd4037b1c", + "_tpl": "5c0e2f26d174af02a9625114", + "slotId": "mod_reciever", + "parentId": "67d09d0db205ca3dd4037b19" + }, + { + "_id": "67d09d0db205ca3dd4037b1d", + "_tpl": "5c0faeddd174af02a962601f", + "slotId": "mod_stock", + "parentId": "67d09d0db205ca3dd4037b19" + }, + { + "_id": "67d09d0db205ca3dd4037b1e", + "_tpl": "5c0faf68d174af02a96260b8", + "slotId": "mod_charge", + "parentId": "67d09d0db205ca3dd4037b19" + }, + { + "_id": "67d09d0db205ca3dd4037b1f", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d09d0db205ca3dd4037b1c" + }, + { + "_id": "67d09d0db205ca3dd4037b20", + "_tpl": "5c0e2f94d174af029f650d56", + "slotId": "mod_barrel", + "parentId": "67d09d0db205ca3dd4037b1c" + }, + { + "_id": "67d09d0db205ca3dd4037b21", + "_tpl": "595cf16b86f77427440c32e2", + "slotId": "mod_handguard", + "parentId": "67d09d0db205ca3dd4037b1c" + }, + { + "_id": "67d09d0db205ca3dd4037b22", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67d09d0db205ca3dd4037b1d" + }, + { + "_id": "67d09d0db205ca3dd4037b23", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67d09d0db205ca3dd4037b20" + }, + { + "_id": "67d09d0db205ca3dd4037b24", + "_tpl": "56eabcd4d2720b66698b4574", + "slotId": "mod_gas_block", + "parentId": "67d09d0db205ca3dd4037b20" + }, + { + "_id": "67d09d0db205ca3dd4037b25", + "_tpl": "59e0bed186f774156f04ce84", + "slotId": "mod_mount_000", + "parentId": "67d09d0db205ca3dd4037b21" + }, + { + "_id": "67d09d0db205ca3dd4037b26", + "_tpl": "59e0bdb186f774156f04ce82", + "slotId": "mod_mount_004", + "parentId": "67d09d0db205ca3dd4037b21" + }, + { + "_id": "67d09d0db205ca3dd4037b27", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67d09d0db205ca3dd4037b23" + }, + { + "_id": "67d09d0db205ca3dd4037b28", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d09d0db205ca3dd4037b25" + }, + { + "_id": "67d09d0db205ca3dd4037b29", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d09d0db205ca3dd4037b26" + } + ] + }, + { + "Id": "67d0abb10100185b95d87cba", + "Name": "loud 2x m1a", + "Root": "67d0abb61f414e282c037c6c", + "Items": [ + { + "_id": "67d0abb61f414e282c037c6c", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0abb61f414e282c037c6d", + "_tpl": "5aaf8a0be5b5b00015693243", + "slotId": "mod_magazine", + "parentId": "67d0abb61f414e282c037c6c" + }, + { + "_id": "67d0abb61f414e282c037c6e", + "_tpl": "5aaf8e43e5b5b00015693246", + "slotId": "mod_stock", + "parentId": "67d0abb61f414e282c037c6c" + }, + { + "_id": "67d0abb61f414e282c037c6f", + "_tpl": "5aaf9d53e5b5b00015042a52", + "slotId": "mod_barrel", + "parentId": "67d0abb61f414e282c037c6c" + }, + { + "_id": "67d0abb61f414e282c037c70", + "_tpl": "5abcbb20d8ce87001773e258", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0abb61f414e282c037c6c" + }, + { + "_id": "67d0abb61f414e282c037c71", + "_tpl": "5addbfe15acfc4001a5fc58b", + "slotId": "mod_mount", + "parentId": "67d0abb61f414e282c037c6c" + }, + { + "_id": "67d0abb61f414e282c037c72", + "_tpl": "5ab24ef9e5b5b00fe93c9209", + "slotId": "mod_mount", + "parentId": "67d0abb61f414e282c037c6e" + }, + { + "_id": "67d0abb61f414e282c037c73", + "_tpl": "5aafa1c2e5b5b00015042a56", + "slotId": "mod_muzzle", + "parentId": "67d0abb61f414e282c037c6f" + }, + { + "_id": "67d0abb61f414e282c037c74", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0abb61f414e282c037c71" + }, + { + "_id": "67d0abb61f414e282c037c75", + "_tpl": "5aafa49ae5b5b00015042a58", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0abb61f414e282c037c73" + } + ] + }, + { + "Id": "67d0abd00100185b95d667ad", + "Name": "supr 2x m1a", + "Root": "67d0abd31f414e282c037c79", + "Items": [ + { + "_id": "67d0abd31f414e282c037c79", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0abd31f414e282c037c7a", + "_tpl": "5aaf8a0be5b5b00015693243", + "slotId": "mod_magazine", + "parentId": "67d0abd31f414e282c037c79" + }, + { + "_id": "67d0abd31f414e282c037c7b", + "_tpl": "5aaf8e43e5b5b00015693246", + "slotId": "mod_stock", + "parentId": "67d0abd31f414e282c037c79" + }, + { + "_id": "67d0abd31f414e282c037c7c", + "_tpl": "5aaf9d53e5b5b00015042a52", + "slotId": "mod_barrel", + "parentId": "67d0abd31f414e282c037c79" + }, + { + "_id": "67d0abd31f414e282c037c7d", + "_tpl": "5abcbb20d8ce87001773e258", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0abd31f414e282c037c79" + }, + { + "_id": "67d0abd31f414e282c037c7e", + "_tpl": "5addbfe15acfc4001a5fc58b", + "slotId": "mod_mount", + "parentId": "67d0abd31f414e282c037c79" + }, + { + "_id": "67d0abd31f414e282c037c7f", + "_tpl": "5ab24ef9e5b5b00fe93c9209", + "slotId": "mod_mount", + "parentId": "67d0abd31f414e282c037c7b" + }, + { + "_id": "67d0abd31f414e282c037c80", + "_tpl": "5ab3afb2d8ce87001660304d", + "slotId": "mod_muzzle", + "parentId": "67d0abd31f414e282c037c7c" + }, + { + "_id": "67d0abd31f414e282c037c81", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0abd31f414e282c037c7e" + }, + { + "_id": "67d0abd31f414e282c037c82", + "_tpl": "5c7954d52e221600106f4cc7", + "slotId": "mod_muzzle", + "parentId": "67d0abd31f414e282c037c80" + }, + { + "_id": "67d0abd31f414e282c037c83", + "_tpl": "5c7955c22e221644f31bfd5e", + "slotId": "mod_muzzle", + "parentId": "67d0abd31f414e282c037c82" + } + ] + }, + { + "Id": "67d0abf00100185b95e46e0e", + "Name": "loud holo m1a", + "Root": "67d0abf51f414e282c037c8a", + "Items": [ + { + "_id": "67d0abf51f414e282c037c8a", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0abf51f414e282c037c8b", + "_tpl": "5aaf8a0be5b5b00015693243", + "slotId": "mod_magazine", + "parentId": "67d0abf51f414e282c037c8a" + }, + { + "_id": "67d0abf51f414e282c037c8c", + "_tpl": "5aaf8e43e5b5b00015693246", + "slotId": "mod_stock", + "parentId": "67d0abf51f414e282c037c8a" + }, + { + "_id": "67d0abf51f414e282c037c8d", + "_tpl": "5aaf9d53e5b5b00015042a52", + "slotId": "mod_barrel", + "parentId": "67d0abf51f414e282c037c8a" + }, + { + "_id": "67d0abf51f414e282c037c8e", + "_tpl": "5abcbb20d8ce87001773e258", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0abf51f414e282c037c8a" + }, + { + "_id": "67d0abf51f414e282c037c8f", + "_tpl": "5addbfef5acfc400185c2857", + "slotId": "mod_mount", + "parentId": "67d0abf51f414e282c037c8a" + }, + { + "_id": "67d0abf51f414e282c037c90", + "_tpl": "5ab24ef9e5b5b00fe93c9209", + "slotId": "mod_mount", + "parentId": "67d0abf51f414e282c037c8c" + }, + { + "_id": "67d0abf51f414e282c037c91", + "_tpl": "5ab3afb2d8ce87001660304d", + "slotId": "mod_muzzle", + "parentId": "67d0abf51f414e282c037c8d" + }, + { + "_id": "67d0abf51f414e282c037c92", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0abf51f414e282c037c8f" + }, + { + "_id": "67d0abf51f414e282c037c93", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67d0abf51f414e282c037c91" + } + ] + }, + { + "Id": "67d0ac0b0100185b95e354a2", + "Name": "loud specter m1a", + "Root": "67d0ac111f414e282c037c99", + "Items": [ + { + "_id": "67d0ac111f414e282c037c99", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0ac111f414e282c037c9a", + "_tpl": "5aaf8a0be5b5b00015693243", + "slotId": "mod_magazine", + "parentId": "67d0ac111f414e282c037c99" + }, + { + "_id": "67d0ac111f414e282c037c9b", + "_tpl": "5aaf8e43e5b5b00015693246", + "slotId": "mod_stock", + "parentId": "67d0ac111f414e282c037c99" + }, + { + "_id": "67d0ac111f414e282c037c9c", + "_tpl": "5aaf9d53e5b5b00015042a52", + "slotId": "mod_barrel", + "parentId": "67d0ac111f414e282c037c99" + }, + { + "_id": "67d0ac111f414e282c037c9d", + "_tpl": "5abcbb20d8ce87001773e258", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ac111f414e282c037c99" + }, + { + "_id": "67d0ac111f414e282c037c9e", + "_tpl": "5addbfe15acfc4001a5fc58b", + "slotId": "mod_mount", + "parentId": "67d0ac111f414e282c037c99" + }, + { + "_id": "67d0ac111f414e282c037c9f", + "_tpl": "5ab24ef9e5b5b00fe93c9209", + "slotId": "mod_mount", + "parentId": "67d0ac111f414e282c037c9b" + }, + { + "_id": "67d0ac111f414e282c037ca0", + "_tpl": "5aafa1c2e5b5b00015042a56", + "slotId": "mod_muzzle", + "parentId": "67d0ac111f414e282c037c9c" + }, + { + "_id": "67d0ac111f414e282c037ca1", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ac111f414e282c037c9e" + }, + { + "_id": "67d0ac111f414e282c037ca2", + "_tpl": "5aafa49ae5b5b00015042a58", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ac111f414e282c037ca0" + } + ] + }, + { + "Id": "67d0ac380100185b954cbc2b", + "Name": "supr ad0p4 m1a", + "Root": "67d0ac421f414e282c037ca6", + "Items": [ + { + "_id": "67d0ac421f414e282c037ca6", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0ac421f414e282c037ca7", + "_tpl": "5aaf8a0be5b5b00015693243", + "slotId": "mod_magazine", + "parentId": "67d0ac421f414e282c037ca6" + }, + { + "_id": "67d0ac421f414e282c037ca8", + "_tpl": "5addbf175acfc408fb13965b", + "slotId": "mod_stock", + "parentId": "67d0ac421f414e282c037ca6" + }, + { + "_id": "67d0ac421f414e282c037ca9", + "_tpl": "5addbac75acfc400194dbc56", + "slotId": "mod_barrel", + "parentId": "67d0ac421f414e282c037ca6" + }, + { + "_id": "67d0ac421f414e282c037caa", + "_tpl": "5abcbb20d8ce87001773e258", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ac421f414e282c037ca6" + }, + { + "_id": "67d0ac421f414e282c037cab", + "_tpl": "5addbfe15acfc4001a5fc58b", + "slotId": "mod_mount", + "parentId": "67d0ac421f414e282c037ca6" + }, + { + "_id": "67d0ac421f414e282c037cac", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0ac421f414e282c037ca8" + }, + { + "_id": "67d0ac421f414e282c037cad", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "slotId": "mod_muzzle", + "parentId": "67d0ac421f414e282c037ca9" + }, + { + "_id": "67d0ac421f414e282c037cae", + "_tpl": "5dfe6104585a0c3e995c7b82", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ac421f414e282c037cab" + }, + { + "_id": "67d0ac421f414e282c037caf", + "_tpl": "5a34fe59c4a282000b1521a2", + "slotId": "mod_muzzle", + "parentId": "67d0ac421f414e282c037cad" + } + ] + }, + { + "Id": "67d0ac640100185b95238b0a", + "Name": "supr tac30 m1a", + "Root": "67d0ac681f414e282c037cf8", + "Items": [ + { + "_id": "67d0ac681f414e282c037cf8", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0ac681f414e282c037cf9", + "_tpl": "5aaf8a0be5b5b00015693243", + "slotId": "mod_magazine", + "parentId": "67d0ac681f414e282c037cf8" + }, + { + "_id": "67d0ac681f414e282c037cfa", + "_tpl": "5addbf175acfc408fb13965b", + "slotId": "mod_stock", + "parentId": "67d0ac681f414e282c037cf8" + }, + { + "_id": "67d0ac681f414e282c037cfb", + "_tpl": "5addbac75acfc400194dbc56", + "slotId": "mod_barrel", + "parentId": "67d0ac681f414e282c037cf8" + }, + { + "_id": "67d0ac681f414e282c037cfc", + "_tpl": "5abcbb20d8ce87001773e258", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ac681f414e282c037cf8" + }, + { + "_id": "67d0ac681f414e282c037cfd", + "_tpl": "5addbfef5acfc400185c2857", + "slotId": "mod_mount", + "parentId": "67d0ac681f414e282c037cf8" + }, + { + "_id": "67d0ac681f414e282c037cfe", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0ac681f414e282c037cfa" + }, + { + "_id": "67d0ac681f414e282c037cff", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "slotId": "mod_muzzle", + "parentId": "67d0ac681f414e282c037cfb" + }, + { + "_id": "67d0ac681f414e282c037d00", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67d0ac681f414e282c037cfd" + }, + { + "_id": "67d0ac681f414e282c037d01", + "_tpl": "5a34fe59c4a282000b1521a2", + "slotId": "mod_muzzle", + "parentId": "67d0ac681f414e282c037cff" + }, + { + "_id": "67d0ac681f414e282c037d02", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ac681f414e282c037d00" + }, + { + "_id": "67d0ac681f414e282c037d03", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ac681f414e282c037d00" + } + ] + }, + { + "Id": "67d0acbb0100185b9516ffef", + "Name": "loud mk18", + "Root": "67d0acc01f414e282c037d0b", + "Items": [ + { + "_id": "67d0acc01f414e282c037d0b", + "_tpl": "5fc22d7c187fea44d52eda44", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0acc01f414e282c037d0c", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67d0acc01f414e282c037d0b" + }, + { + "_id": "67d0acc01f414e282c037d0d", + "_tpl": "5fc23426900b1d5091531e15", + "slotId": "mod_magazine", + "parentId": "67d0acc01f414e282c037d0b" + }, + { + "_id": "67d0acc01f414e282c037d0e", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock_001", + "parentId": "67d0acc01f414e282c037d0b" + }, + { + "_id": "67d0acc01f414e282c037d0f", + "_tpl": "5fc278107283c4046c581489", + "slotId": "mod_reciever", + "parentId": "67d0acc01f414e282c037d0b" + }, + { + "_id": "67d0acc01f414e282c037d10", + "_tpl": "5fc2369685fd526b824a5713", + "slotId": "mod_stock_000", + "parentId": "67d0acc01f414e282c037d0e" + }, + { + "_id": "67d0acc01f414e282c037d11", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67d0acc01f414e282c037d0f" + }, + { + "_id": "67d0acc01f414e282c037d12", + "_tpl": "5fc23678ab884124df0cd590", + "slotId": "mod_barrel", + "parentId": "67d0acc01f414e282c037d0f" + }, + { + "_id": "67d0acc01f414e282c037d13", + "_tpl": "5fc235db2770a0045c59c683", + "slotId": "mod_handguard", + "parentId": "67d0acc01f414e282c037d0f" + }, + { + "_id": "67d0acc01f414e282c037d14", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0acc01f414e282c037d11" + }, + { + "_id": "67d0acc01f414e282c037d15", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0acc01f414e282c037d11" + }, + { + "_id": "67d0acc01f414e282c037d16", + "_tpl": "5fc23636016cce60e8341b05", + "slotId": "mod_muzzle", + "parentId": "67d0acc01f414e282c037d12" + }, + { + "_id": "67d0acc01f414e282c037d17", + "_tpl": "5fc2360f900b1d5091531e19", + "slotId": "mod_gas_block", + "parentId": "67d0acc01f414e282c037d12" + }, + { + "_id": "67d0acc01f414e282c037d18", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d0acc01f414e282c037d13" + } + ] + }, + { + "Id": "67d0acd10100185b95d2ece9", + "Name": "supr razor mk18", + "Root": "67d0acd71f414e282c037d1b", + "Items": [ + { + "_id": "67d0acd71f414e282c037d1b", + "_tpl": "5fc22d7c187fea44d52eda44", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0acd71f414e282c037d1c", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67d0acd71f414e282c037d1b" + }, + { + "_id": "67d0acd71f414e282c037d1d", + "_tpl": "5fc23426900b1d5091531e15", + "slotId": "mod_magazine", + "parentId": "67d0acd71f414e282c037d1b" + }, + { + "_id": "67d0acd71f414e282c037d1e", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock_001", + "parentId": "67d0acd71f414e282c037d1b" + }, + { + "_id": "67d0acd71f414e282c037d1f", + "_tpl": "5fc278107283c4046c581489", + "slotId": "mod_reciever", + "parentId": "67d0acd71f414e282c037d1b" + }, + { + "_id": "67d0acd71f414e282c037d20", + "_tpl": "5fc2369685fd526b824a5713", + "slotId": "mod_stock_000", + "parentId": "67d0acd71f414e282c037d1e" + }, + { + "_id": "67d0acd71f414e282c037d21", + "_tpl": "5a37ca54c4a282000d72296a", + "slotId": "mod_scope", + "parentId": "67d0acd71f414e282c037d1f" + }, + { + "_id": "67d0acd71f414e282c037d22", + "_tpl": "5fc23678ab884124df0cd590", + "slotId": "mod_barrel", + "parentId": "67d0acd71f414e282c037d1f" + }, + { + "_id": "67d0acd71f414e282c037d23", + "_tpl": "5fc235db2770a0045c59c683", + "slotId": "mod_handguard", + "parentId": "67d0acd71f414e282c037d1f" + }, + { + "_id": "67d0acd71f414e282c037d24", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0acd71f414e282c037d21" + }, + { + "_id": "67d0acd71f414e282c037d25", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0acd71f414e282c037d21" + }, + { + "_id": "67d0acd71f414e282c037d26", + "_tpl": "62812081d23f207deb0ab216", + "slotId": "mod_muzzle", + "parentId": "67d0acd71f414e282c037d22" + }, + { + "_id": "67d0acd71f414e282c037d27", + "_tpl": "5fc2360f900b1d5091531e19", + "slotId": "mod_gas_block", + "parentId": "67d0acd71f414e282c037d22" + }, + { + "_id": "67d0acd71f414e282c037d28", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d0acd71f414e282c037d23" + }, + { + "_id": "67d0acd71f414e282c037d29", + "_tpl": "62811fa609427b40ab14e765", + "slotId": "mod_muzzle", + "parentId": "67d0acd71f414e282c037d26" + } + ] + }, + { + "Id": "67d0ad270100185b95c81167", + "Name": "loud okp svds", + "Root": "67d0ad2e1f414e282c038d02", + "Items": [ + { + "_id": "67d0ad2e1f414e282c038d02", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0ad2e1f414e282c038d03", + "_tpl": "6516b129609aaf354b34b3a8", + "slotId": "mod_pistol_grip", + "parentId": "67d0ad2e1f414e282c038d02" + }, + { + "_id": "67d0ad2e1f414e282c038d04", + "_tpl": "5c88f24b2e22160bc12c69a6", + "slotId": "mod_magazine", + "parentId": "67d0ad2e1f414e282c038d02" + }, + { + "_id": "67d0ad2e1f414e282c038d05", + "_tpl": "5c471b5d2e221602b21d4e14", + "slotId": "mod_stock", + "parentId": "67d0ad2e1f414e282c038d02" + }, + { + "_id": "67d0ad2e1f414e282c038d06", + "_tpl": "5c471cb32e221602b177afaa", + "slotId": "mod_barrel", + "parentId": "67d0ad2e1f414e282c038d02" + }, + { + "_id": "67d0ad2e1f414e282c038d07", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ad2e1f414e282c038d02" + }, + { + "_id": "67d0ad2e1f414e282c038d08", + "_tpl": "5c471c2d2e22164bef5d077f", + "slotId": "mod_mount_001", + "parentId": "67d0ad2e1f414e282c038d02" + }, + { + "_id": "67d0ad2e1f414e282c038d09", + "_tpl": "5c471bd12e221602b4129c3a", + "slotId": "mod_reciever", + "parentId": "67d0ad2e1f414e282c038d02" + }, + { + "_id": "67d0ad2e1f414e282c038d0a", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistolgrip", + "parentId": "67d0ad2e1f414e282c038d03" + }, + { + "_id": "67d0ad2e1f414e282c038d0b", + "_tpl": "5c471bfc2e221602b21d4e17", + "slotId": "mod_muzzle", + "parentId": "67d0ad2e1f414e282c038d06" + }, + { + "_id": "67d0ad2e1f414e282c038d0c", + "_tpl": "5c471c842e221615214259b5", + "slotId": "mod_gas_block", + "parentId": "67d0ad2e1f414e282c038d06" + }, + { + "_id": "67d0ad2e1f414e282c038d0d", + "_tpl": "5e56991336989c75ab4f03f6", + "slotId": "mod_handguard", + "parentId": "67d0ad2e1f414e282c038d08" + }, + { + "_id": "67d0ad2e1f414e282c038d0e", + "_tpl": "5c471b7e2e2216152006e46c", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ad2e1f414e282c038d08" + }, + { + "_id": "67d0ad2e1f414e282c038d0f", + "_tpl": "5c471ba12e221602b3137d76", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ad2e1f414e282c038d0b" + }, + { + "_id": "67d0ad2e1f414e282c038d10", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67d0ad2e1f414e282c038d0d" + }, + { + "_id": "67d0ad2e1f414e282c038d11", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d0ad2e1f414e282c038d0d" + }, + { + "_id": "67d0ad2e1f414e282c038d12", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0ad2e1f414e282c038d10" + } + ] + }, + { + "Id": "67d0ad490100185b95c952f6", + "Name": "loud ekp svds", + "Root": "67d0ad4c1f414e282c038d1b", + "Items": [ + { + "_id": "67d0ad4c1f414e282c038d1b", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0ad4c1f414e282c038d1c", + "_tpl": "6516b129609aaf354b34b3a8", + "slotId": "mod_pistol_grip", + "parentId": "67d0ad4c1f414e282c038d1b" + }, + { + "_id": "67d0ad4c1f414e282c038d1d", + "_tpl": "5c88f24b2e22160bc12c69a6", + "slotId": "mod_magazine", + "parentId": "67d0ad4c1f414e282c038d1b" + }, + { + "_id": "67d0ad4c1f414e282c038d1e", + "_tpl": "5c471b5d2e221602b21d4e14", + "slotId": "mod_stock", + "parentId": "67d0ad4c1f414e282c038d1b" + }, + { + "_id": "67d0ad4c1f414e282c038d1f", + "_tpl": "5c471cb32e221602b177afaa", + "slotId": "mod_barrel", + "parentId": "67d0ad4c1f414e282c038d1b" + }, + { + "_id": "67d0ad4c1f414e282c038d20", + "_tpl": "5947db3f86f77447880cf76f", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ad4c1f414e282c038d1b" + }, + { + "_id": "67d0ad4c1f414e282c038d21", + "_tpl": "5c471c2d2e22164bef5d077f", + "slotId": "mod_mount_001", + "parentId": "67d0ad4c1f414e282c038d1b" + }, + { + "_id": "67d0ad4c1f414e282c038d22", + "_tpl": "5c471bd12e221602b4129c3a", + "slotId": "mod_reciever", + "parentId": "67d0ad4c1f414e282c038d1b" + }, + { + "_id": "67d0ad4c1f414e282c038d23", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistolgrip", + "parentId": "67d0ad4c1f414e282c038d1c" + }, + { + "_id": "67d0ad4c1f414e282c038d24", + "_tpl": "5c471bfc2e221602b21d4e17", + "slotId": "mod_muzzle", + "parentId": "67d0ad4c1f414e282c038d1f" + }, + { + "_id": "67d0ad4c1f414e282c038d25", + "_tpl": "5c471c842e221615214259b5", + "slotId": "mod_gas_block", + "parentId": "67d0ad4c1f414e282c038d1f" + }, + { + "_id": "67d0ad4c1f414e282c038d26", + "_tpl": "5e56991336989c75ab4f03f6", + "slotId": "mod_handguard", + "parentId": "67d0ad4c1f414e282c038d21" + }, + { + "_id": "67d0ad4c1f414e282c038d27", + "_tpl": "5c471b7e2e2216152006e46c", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ad4c1f414e282c038d21" + }, + { + "_id": "67d0ad4c1f414e282c038d28", + "_tpl": "5c471ba12e221602b3137d76", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ad4c1f414e282c038d24" + }, + { + "_id": "67d0ad4c1f414e282c038d29", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_002", + "parentId": "67d0ad4c1f414e282c038d26" + }, + { + "_id": "67d0ad4c1f414e282c038d2a", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d0ad4c1f414e282c038d26" + }, + { + "_id": "67d0ad4c1f414e282c038d2b", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0ad4c1f414e282c038d29" + }, + { + "_id": "67d0ad4c1f414e282c038d2c", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0ad4c1f414e282c038d2a" + } + ] + }, + { + "Id": "67d0ad8b0100185b9514da10", + "Name": "loud vudu svds", + "Root": "67d0ad901f414e282c039bf0", + "Items": [ + { + "_id": "67d0ad901f414e282c039bf0", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0ad901f414e282c039bf1", + "_tpl": "5c471be12e221602b66cd9ac", + "slotId": "mod_pistol_grip", + "parentId": "67d0ad901f414e282c039bf0" + }, + { + "_id": "67d0ad901f414e282c039bf2", + "_tpl": "5c88f24b2e22160bc12c69a6", + "slotId": "mod_magazine", + "parentId": "67d0ad901f414e282c039bf0" + }, + { + "_id": "67d0ad901f414e282c039bf3", + "_tpl": "5c471b5d2e221602b21d4e14", + "slotId": "mod_stock", + "parentId": "67d0ad901f414e282c039bf0" + }, + { + "_id": "67d0ad901f414e282c039bf4", + "_tpl": "5c471cb32e221602b177afaa", + "slotId": "mod_barrel", + "parentId": "67d0ad901f414e282c039bf0" + }, + { + "_id": "67d0ad901f414e282c039bf5", + "_tpl": "5dfcd0e547101c39625f66f9", + "slotId": "mod_mount_001", + "parentId": "67d0ad901f414e282c039bf0" + }, + { + "_id": "67d0ad901f414e282c039bf6", + "_tpl": "5dfce88fe9dc277128008b2e", + "slotId": "mod_reciever", + "parentId": "67d0ad901f414e282c039bf0" + }, + { + "_id": "67d0ad901f414e282c039bf7", + "_tpl": "5c471bfc2e221602b21d4e17", + "slotId": "mod_muzzle", + "parentId": "67d0ad901f414e282c039bf4" + }, + { + "_id": "67d0ad901f414e282c039bf8", + "_tpl": "5c471c842e221615214259b5", + "slotId": "mod_gas_block", + "parentId": "67d0ad901f414e282c039bf4" + }, + { + "_id": "67d0ad901f414e282c039bf9", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_002", + "parentId": "67d0ad901f414e282c039bf5" + }, + { + "_id": "67d0ad901f414e282c039bfa", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d0ad901f414e282c039bf5" + }, + { + "_id": "67d0ad901f414e282c039bfb", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67d0ad901f414e282c039bf5" + }, + { + "_id": "67d0ad901f414e282c039bfc", + "_tpl": "5c471ba12e221602b3137d76", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ad901f414e282c039bf7" + }, + { + "_id": "67d0ad901f414e282c039bfd", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0ad901f414e282c039bf9" + }, + { + "_id": "67d0ad901f414e282c039bfe", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ad901f414e282c039bfa" + }, + { + "_id": "67d0ad901f414e282c039bff", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0ad901f414e282c039bfb" + } + ] + }, + { + "Id": "67d0ada80100185b9537c912", + "Name": "supr vudu svds", + "Root": "67d0adac1f414e282c039c06", + "Items": [ + { + "_id": "67d0adac1f414e282c039c06", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0adac1f414e282c039c07", + "_tpl": "5c471be12e221602b66cd9ac", + "slotId": "mod_pistol_grip", + "parentId": "67d0adac1f414e282c039c06" + }, + { + "_id": "67d0adac1f414e282c039c08", + "_tpl": "5c88f24b2e22160bc12c69a6", + "slotId": "mod_magazine", + "parentId": "67d0adac1f414e282c039c06" + }, + { + "_id": "67d0adac1f414e282c039c09", + "_tpl": "5c471b5d2e221602b21d4e14", + "slotId": "mod_stock", + "parentId": "67d0adac1f414e282c039c06" + }, + { + "_id": "67d0adac1f414e282c039c0a", + "_tpl": "5c471cb32e221602b177afaa", + "slotId": "mod_barrel", + "parentId": "67d0adac1f414e282c039c06" + }, + { + "_id": "67d0adac1f414e282c039c0b", + "_tpl": "5dfcd0e547101c39625f66f9", + "slotId": "mod_mount_001", + "parentId": "67d0adac1f414e282c039c06" + }, + { + "_id": "67d0adac1f414e282c039c0c", + "_tpl": "5dfce88fe9dc277128008b2e", + "slotId": "mod_reciever", + "parentId": "67d0adac1f414e282c039c06" + }, + { + "_id": "67d0adac1f414e282c039c0d", + "_tpl": "5c471bfc2e221602b21d4e17", + "slotId": "mod_muzzle", + "parentId": "67d0adac1f414e282c039c0a" + }, + { + "_id": "67d0adac1f414e282c039c0e", + "_tpl": "5c471c842e221615214259b5", + "slotId": "mod_gas_block", + "parentId": "67d0adac1f414e282c039c0a" + }, + { + "_id": "67d0adac1f414e282c039c0f", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_002", + "parentId": "67d0adac1f414e282c039c0b" + }, + { + "_id": "67d0adac1f414e282c039c10", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d0adac1f414e282c039c0b" + }, + { + "_id": "67d0adac1f414e282c039c11", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67d0adac1f414e282c039c0b" + }, + { + "_id": "67d0adac1f414e282c039c12", + "_tpl": "5c471ba12e221602b3137d76", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0adac1f414e282c039c0d" + }, + { + "_id": "67d0adac1f414e282c039c13", + "_tpl": "5e01e9e273d8eb11426f5bc3", + "slotId": "mod_muzzle", + "parentId": "67d0adac1f414e282c039c0d" + }, + { + "_id": "67d0adac1f414e282c039c14", + "_tpl": "5e01ea19e9dc277128008c0b", + "slotId": "mod_muzzle", + "parentId": "67d0adac1f414e282c039c13" + }, + { + "_id": "67d0adac1f414e282c039c15", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0adac1f414e282c039c0f" + }, + { + "_id": "67d0adac1f414e282c039c16", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0adac1f414e282c039c10" + }, + { + "_id": "67d0adac1f414e282c039c17", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67d0adac1f414e282c039c11" + } + ] + }, + { + "Id": "67d0adcf0100185b95d9512c", + "Name": "supr razor svds", + "Root": "67d0add21f414e282c03ab88", + "Items": [ + { + "_id": "67d0add21f414e282c03ab88", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0add21f414e282c03ab89", + "_tpl": "5c471be12e221602b66cd9ac", + "slotId": "mod_pistol_grip", + "parentId": "67d0add21f414e282c03ab88" + }, + { + "_id": "67d0add21f414e282c03ab8a", + "_tpl": "5c88f24b2e22160bc12c69a6", + "slotId": "mod_magazine", + "parentId": "67d0add21f414e282c03ab88" + }, + { + "_id": "67d0add21f414e282c03ab8b", + "_tpl": "6197b229af1f5202c57a9bea", + "slotId": "mod_stock", + "parentId": "67d0add21f414e282c03ab88" + }, + { + "_id": "67d0add21f414e282c03ab8c", + "_tpl": "5c471cb32e221602b177afaa", + "slotId": "mod_barrel", + "parentId": "67d0add21f414e282c03ab88" + }, + { + "_id": "67d0add21f414e282c03ab8d", + "_tpl": "5dfcd0e547101c39625f66f9", + "slotId": "mod_mount_001", + "parentId": "67d0add21f414e282c03ab88" + }, + { + "_id": "67d0add21f414e282c03ab8e", + "_tpl": "5dfce88fe9dc277128008b2e", + "slotId": "mod_reciever", + "parentId": "67d0add21f414e282c03ab88" + }, + { + "_id": "67d0add21f414e282c03ab8f", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock", + "parentId": "67d0add21f414e282c03ab8b" + }, + { + "_id": "67d0add21f414e282c03ab90", + "_tpl": "5c471bfc2e221602b21d4e17", + "slotId": "mod_muzzle", + "parentId": "67d0add21f414e282c03ab8c" + }, + { + "_id": "67d0add21f414e282c03ab91", + "_tpl": "5c471c842e221615214259b5", + "slotId": "mod_gas_block", + "parentId": "67d0add21f414e282c03ab8c" + }, + { + "_id": "67d0add21f414e282c03ab92", + "_tpl": "59e0be5d86f7742d48765bd2", + "slotId": "mod_mount_002", + "parentId": "67d0add21f414e282c03ab8d" + }, + { + "_id": "67d0add21f414e282c03ab93", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d0add21f414e282c03ab8d" + }, + { + "_id": "67d0add21f414e282c03ab94", + "_tpl": "5a9d6d13a2750c00164f6b03", + "slotId": "mod_foregrip", + "parentId": "67d0add21f414e282c03ab8d" + }, + { + "_id": "67d0add21f414e282c03ab95", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d0add21f414e282c03ab8f" + }, + { + "_id": "67d0add21f414e282c03ab96", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d0add21f414e282c03ab95" + }, + { + "_id": "67d0add21f414e282c03ab97", + "_tpl": "5c471ba12e221602b3137d76", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0add21f414e282c03ab90" + }, + { + "_id": "67d0add21f414e282c03ab98", + "_tpl": "5e01e9e273d8eb11426f5bc3", + "slotId": "mod_muzzle", + "parentId": "67d0add21f414e282c03ab90" + }, + { + "_id": "67d0add21f414e282c03ab99", + "_tpl": "5e01ea19e9dc277128008c0b", + "slotId": "mod_muzzle", + "parentId": "67d0add21f414e282c03ab98" + }, + { + "_id": "67d0add21f414e282c03ab9a", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0add21f414e282c03ab92" + }, + { + "_id": "67d0add21f414e282c03ab9b", + "_tpl": "618ba27d9008e4636a67f61d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0add21f414e282c03ab93" + }, + { + "_id": "67d0add21f414e282c03ab9c", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67d0add21f414e282c03ab94" + } + ] + }, + { + "Id": "67d0ae940100185b95914165", + "Name": "supr stock m4", + "Root": "67d0aea61f414e282c03c887", + "Items": [ + { + "_id": "67d0aea61f414e282c03c887", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0aea61f414e282c03c888", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "slotId": "mod_pistol_grip", + "parentId": "67d0aea61f414e282c03c887" + }, + { + "_id": "67d0aea61f414e282c03c889", + "_tpl": "55802d5f4bdc2dac148b458e", + "slotId": "mod_magazine", + "parentId": "67d0aea61f414e282c03c887" + }, + { + "_id": "67d0aea61f414e282c03c88a", + "_tpl": "55d355e64bdc2d962f8b4569", + "slotId": "mod_reciever", + "parentId": "67d0aea61f414e282c03c887" + }, + { + "_id": "67d0aea61f414e282c03c88b", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock", + "parentId": "67d0aea61f414e282c03c887" + }, + { + "_id": "67d0aea61f414e282c03c88c", + "_tpl": "55d44fd14bdc2d962f8b456e", + "slotId": "mod_charge", + "parentId": "67d0aea61f414e282c03c887" + }, + { + "_id": "67d0aea61f414e282c03c88d", + "_tpl": "55d3632e4bdc2d972f8b4569", + "slotId": "mod_barrel", + "parentId": "67d0aea61f414e282c03c88a" + }, + { + "_id": "67d0aea61f414e282c03c88e", + "_tpl": "5ae30db85acfc408fb139a05", + "slotId": "mod_handguard", + "parentId": "67d0aea61f414e282c03c88a" + }, + { + "_id": "67d0aea61f414e282c03c88f", + "_tpl": "5ae30bad5acfc400185c2dc4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0aea61f414e282c03c88a" + }, + { + "_id": "67d0aea61f414e282c03c890", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "slotId": "mod_stock_000", + "parentId": "67d0aea61f414e282c03c88b" + }, + { + "_id": "67d0aea61f414e282c03c891", + "_tpl": "56ea8180d2720bf2698b456a", + "slotId": "mod_muzzle", + "parentId": "67d0aea61f414e282c03c88d" + }, + { + "_id": "67d0aea61f414e282c03c892", + "_tpl": "5ae30e795acfc408fb139a0b", + "slotId": "mod_gas_block", + "parentId": "67d0aea61f414e282c03c88d" + }, + { + "_id": "67d0aea61f414e282c03c893", + "_tpl": "637f57a68d137b27f70c4968", + "slotId": "mod_handguard", + "parentId": "67d0aea61f414e282c03c88e" + }, + { + "_id": "67d0aea61f414e282c03c894", + "_tpl": "57da93632459771cb65bf83f", + "slotId": "mod_muzzle", + "parentId": "67d0aea61f414e282c03c891" + } + ] + }, + { + "Id": "67d0b0df0100185b95cd19c6", + "Name": "avt stock 3", + "Root": "67d0b0e21f414e282c044dc3", + "Items": [ + { + "_id": "67d0b0e21f414e282c044dc3", + "_tpl": "6410733d5dd49d77bd07847e", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0b0e21f414e282c044dc4", + "_tpl": "6410745d5dd49d77bd078485", + "slotId": "mod_stock", + "parentId": "67d0b0e21f414e282c044dc3" + }, + { + "_id": "67d0b0e21f414e282c044dc5", + "_tpl": "6410758c857473525b08bb77", + "slotId": "mod_barrel", + "parentId": "67d0b0e21f414e282c044dc3" + }, + { + "_id": "67d0b0e21f414e282c044dc6", + "_tpl": "641074a07fd350b98c0b3f96", + "slotId": "mod_magazine", + "parentId": "67d0b0e21f414e282c044dc3" + }, + { + "_id": "67d0b0e21f414e282c044dc7", + "_tpl": "64119cdbdcf48d656f0aa272", + "slotId": "mod_reciever", + "parentId": "67d0b0e21f414e282c044dc3" + }, + { + "_id": "67d0b0e21f414e282c044dc8", + "_tpl": "64119d1f2c6d6f921a0929f8", + "slotId": "mod_muzzle", + "parentId": "67d0b0e21f414e282c044dc5" + }, + { + "_id": "67d0b0e21f414e282c044dc9", + "_tpl": "64119d90dcf48d656f0aa275", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0b0e21f414e282c044dc5" + }, + { + "_id": "67d0b0e21f414e282c044dca", + "_tpl": "64119d672c6d6f921a0929fb", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0b0e21f414e282c044dc8" + } + ] + }, + { + "Id": "67d0c1590100185b95d1f087", + "Name": "okp vss", + "Root": "67d0c164b49d7d078803823a", + "Items": [ + { + "_id": "67d0c164b49d7d078803823a", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c164b49d7d078803823b", + "_tpl": "57838f9f2459774a150289a0", + "slotId": "mod_magazine", + "parentId": "67d0c164b49d7d078803823a" + }, + { + "_id": "67d0c164b49d7d078803823c", + "_tpl": "57838c962459774a1651ec63", + "slotId": "mod_muzzle", + "parentId": "67d0c164b49d7d078803823a" + }, + { + "_id": "67d0c164b49d7d078803823d", + "_tpl": "578395402459774a256959b5", + "slotId": "mod_reciever", + "parentId": "67d0c164b49d7d078803823a" + }, + { + "_id": "67d0c164b49d7d078803823e", + "_tpl": "578395e82459774a0e553c7b", + "slotId": "mod_stock", + "parentId": "67d0c164b49d7d078803823a" + }, + { + "_id": "67d0c164b49d7d078803823f", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d0c164b49d7d078803823a" + }, + { + "_id": "67d0c164b49d7d0788038240", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c164b49d7d078803823a" + }, + { + "_id": "67d0c164b49d7d0788038241", + "_tpl": "6565bb7eb4b12a56eb04b084", + "slotId": "mod_handguard", + "parentId": "67d0c164b49d7d078803823a" + }, + { + "_id": "67d0c164b49d7d0788038242", + "_tpl": "57838e1b2459774a256959b1", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c164b49d7d078803823c" + }, + { + "_id": "67d0c164b49d7d0788038243", + "_tpl": "57a3459f245977764a01f703", + "slotId": "mod_mount_000", + "parentId": "67d0c164b49d7d078803823c" + }, + { + "_id": "67d0c164b49d7d0788038244", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c164b49d7d0788038243" + } + ] + }, + { + "Id": "67d0c1a30100185b95e33015", + "Name": "ekp vss", + "Root": "67d0c1a6b49d7d078803824a", + "Items": [ + { + "_id": "67d0c1a6b49d7d078803824a", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c1a6b49d7d078803824b", + "_tpl": "57838f9f2459774a150289a0", + "slotId": "mod_magazine", + "parentId": "67d0c1a6b49d7d078803824a" + }, + { + "_id": "67d0c1a6b49d7d078803824c", + "_tpl": "57838c962459774a1651ec63", + "slotId": "mod_muzzle", + "parentId": "67d0c1a6b49d7d078803824a" + }, + { + "_id": "67d0c1a6b49d7d078803824d", + "_tpl": "578395402459774a256959b5", + "slotId": "mod_reciever", + "parentId": "67d0c1a6b49d7d078803824a" + }, + { + "_id": "67d0c1a6b49d7d078803824e", + "_tpl": "578395e82459774a0e553c7b", + "slotId": "mod_stock", + "parentId": "67d0c1a6b49d7d078803824a" + }, + { + "_id": "67d0c1a6b49d7d078803824f", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d0c1a6b49d7d078803824a" + }, + { + "_id": "67d0c1a6b49d7d0788038250", + "_tpl": "5947db3f86f77447880cf76f", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c1a6b49d7d078803824a" + }, + { + "_id": "67d0c1a6b49d7d0788038251", + "_tpl": "6565bb7eb4b12a56eb04b084", + "slotId": "mod_handguard", + "parentId": "67d0c1a6b49d7d078803824a" + }, + { + "_id": "67d0c1a6b49d7d0788038252", + "_tpl": "57838e1b2459774a256959b1", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c1a6b49d7d078803824c" + }, + { + "_id": "67d0c1a6b49d7d0788038253", + "_tpl": "57a3459f245977764a01f703", + "slotId": "mod_mount_000", + "parentId": "67d0c1a6b49d7d078803824c" + }, + { + "_id": "67d0c1a6b49d7d0788038254", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c1a6b49d7d0788038253" + } + ] + }, + { + "Id": "67d0c1b90100185b95367fc8", + "Name": "okp vss v2", + "Root": "67d0c1bdb49d7d078803825a", + "Items": [ + { + "_id": "67d0c1bdb49d7d078803825a", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c1bdb49d7d078803825b", + "_tpl": "5a9e81fba2750c00164f6b11", + "slotId": "mod_magazine", + "parentId": "67d0c1bdb49d7d078803825a" + }, + { + "_id": "67d0c1bdb49d7d078803825c", + "_tpl": "57838c962459774a1651ec63", + "slotId": "mod_muzzle", + "parentId": "67d0c1bdb49d7d078803825a" + }, + { + "_id": "67d0c1bdb49d7d078803825d", + "_tpl": "578395402459774a256959b5", + "slotId": "mod_reciever", + "parentId": "67d0c1bdb49d7d078803825a" + }, + { + "_id": "67d0c1bdb49d7d078803825e", + "_tpl": "578395e82459774a0e553c7b", + "slotId": "mod_stock", + "parentId": "67d0c1bdb49d7d078803825a" + }, + { + "_id": "67d0c1bdb49d7d078803825f", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d0c1bdb49d7d078803825a" + }, + { + "_id": "67d0c1bdb49d7d0788038260", + "_tpl": "57486e672459770abd687134", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c1bdb49d7d078803825a" + }, + { + "_id": "67d0c1bdb49d7d0788038261", + "_tpl": "6565bb7eb4b12a56eb04b084", + "slotId": "mod_handguard", + "parentId": "67d0c1bdb49d7d078803825a" + }, + { + "_id": "67d0c1bdb49d7d0788038262", + "_tpl": "57838e1b2459774a256959b1", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c1bdb49d7d078803825c" + }, + { + "_id": "67d0c1bdb49d7d0788038263", + "_tpl": "57a3459f245977764a01f703", + "slotId": "mod_mount_000", + "parentId": "67d0c1bdb49d7d078803825c" + }, + { + "_id": "67d0c1bdb49d7d0788038264", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c1bdb49d7d0788038263" + } + ] + }, + { + "Id": "67d0c2420100185b957993b5", + "Name": "supr holo mp9n", + "Root": "67d0c248b49d7d07880382fc", + "Items": [ + { + "_id": "67d0c248b49d7d07880382fc", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c248b49d7d07880382fd", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67d0c248b49d7d07880382fc" + }, + { + "_id": "67d0c248b49d7d07880382fe", + "_tpl": "5de8f237bbaf010b10528a70", + "slotId": "mod_muzzle", + "parentId": "67d0c248b49d7d07880382fc" + }, + { + "_id": "67d0c248b49d7d07880382ff", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67d0c248b49d7d07880382fc" + }, + { + "_id": "67d0c248b49d7d0788038300", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "slotId": "mod_foregrip", + "parentId": "67d0c248b49d7d07880382fc" + }, + { + "_id": "67d0c248b49d7d0788038301", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "slotId": "mod_reciever", + "parentId": "67d0c248b49d7d07880382fc" + }, + { + "_id": "67d0c248b49d7d0788038302", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67d0c248b49d7d07880382fc" + }, + { + "_id": "67d0c248b49d7d0788038303", + "_tpl": "5de8f2d5b74cd90030650c72", + "slotId": "mod_muzzle", + "parentId": "67d0c248b49d7d07880382fe" + }, + { + "_id": "67d0c248b49d7d0788038304", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c248b49d7d07880382fe" + }, + { + "_id": "67d0c248b49d7d0788038305", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c248b49d7d0788038301" + }, + { + "_id": "67d0c248b49d7d0788038306", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c248b49d7d0788038301" + }, + { + "_id": "67d0c248b49d7d0788038307", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "slotId": "mod_mount", + "parentId": "67d0c248b49d7d0788038301" + } + ] + }, + { + "Id": "67d0c25d0100185b9535a7ee", + "Name": "supr pixi mp9n", + "Root": "67d0c261b49d7d0788038315", + "Items": [ + { + "_id": "67d0c261b49d7d0788038315", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c261b49d7d0788038316", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67d0c261b49d7d0788038315" + }, + { + "_id": "67d0c261b49d7d0788038317", + "_tpl": "5de8f237bbaf010b10528a70", + "slotId": "mod_muzzle", + "parentId": "67d0c261b49d7d0788038315" + }, + { + "_id": "67d0c261b49d7d0788038318", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67d0c261b49d7d0788038315" + }, + { + "_id": "67d0c261b49d7d0788038319", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "slotId": "mod_foregrip", + "parentId": "67d0c261b49d7d0788038315" + }, + { + "_id": "67d0c261b49d7d078803831a", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "slotId": "mod_reciever", + "parentId": "67d0c261b49d7d0788038315" + }, + { + "_id": "67d0c261b49d7d078803831b", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67d0c261b49d7d0788038315" + }, + { + "_id": "67d0c261b49d7d078803831c", + "_tpl": "5de8f2d5b74cd90030650c72", + "slotId": "mod_muzzle", + "parentId": "67d0c261b49d7d0788038317" + }, + { + "_id": "67d0c261b49d7d078803831d", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c261b49d7d0788038317" + }, + { + "_id": "67d0c261b49d7d078803831e", + "_tpl": "584984812459776a704a82a6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c261b49d7d078803831a" + }, + { + "_id": "67d0c261b49d7d078803831f", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c261b49d7d078803831a" + }, + { + "_id": "67d0c261b49d7d0788038320", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "slotId": "mod_mount", + "parentId": "67d0c261b49d7d078803831a" + } + ] + }, + { + "Id": "67d0c2730100185b9563c38e", + "Name": "loud holo mp9n", + "Root": "67d0c277b49d7d0788038324", + "Items": [ + { + "_id": "67d0c277b49d7d0788038324", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c277b49d7d0788038325", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67d0c277b49d7d0788038324" + }, + { + "_id": "67d0c277b49d7d0788038326", + "_tpl": "5de8f237bbaf010b10528a70", + "slotId": "mod_muzzle", + "parentId": "67d0c277b49d7d0788038324" + }, + { + "_id": "67d0c277b49d7d0788038327", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67d0c277b49d7d0788038324" + }, + { + "_id": "67d0c277b49d7d0788038328", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "slotId": "mod_foregrip", + "parentId": "67d0c277b49d7d0788038324" + }, + { + "_id": "67d0c277b49d7d0788038329", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "slotId": "mod_reciever", + "parentId": "67d0c277b49d7d0788038324" + }, + { + "_id": "67d0c277b49d7d078803832a", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67d0c277b49d7d0788038324" + }, + { + "_id": "67d0c277b49d7d078803832b", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c277b49d7d0788038326" + }, + { + "_id": "67d0c277b49d7d078803832c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c277b49d7d0788038329" + }, + { + "_id": "67d0c277b49d7d078803832d", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c277b49d7d0788038329" + }, + { + "_id": "67d0c277b49d7d078803832e", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "slotId": "mod_mount", + "parentId": "67d0c277b49d7d0788038329" + } + ] + }, + { + "Id": "67d0c28c0100185b95b852e2", + "Name": "supr ff3 mp9n", + "Root": "67d0c292b49d7d07880392c7", + "Items": [ + { + "_id": "67d0c292b49d7d07880392c7", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c292b49d7d07880392c8", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67d0c292b49d7d07880392c7" + }, + { + "_id": "67d0c292b49d7d07880392c9", + "_tpl": "5de8f237bbaf010b10528a70", + "slotId": "mod_muzzle", + "parentId": "67d0c292b49d7d07880392c7" + }, + { + "_id": "67d0c292b49d7d07880392ca", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67d0c292b49d7d07880392c7" + }, + { + "_id": "67d0c292b49d7d07880392cb", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "slotId": "mod_foregrip", + "parentId": "67d0c292b49d7d07880392c7" + }, + { + "_id": "67d0c292b49d7d07880392cc", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "slotId": "mod_reciever", + "parentId": "67d0c292b49d7d07880392c7" + }, + { + "_id": "67d0c292b49d7d07880392cd", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67d0c292b49d7d07880392c7" + }, + { + "_id": "67d0c292b49d7d07880392ce", + "_tpl": "5de8f2d5b74cd90030650c72", + "slotId": "mod_muzzle", + "parentId": "67d0c292b49d7d07880392c9" + }, + { + "_id": "67d0c292b49d7d07880392cf", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c292b49d7d07880392c9" + }, + { + "_id": "67d0c292b49d7d07880392d0", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d0c292b49d7d07880392cc" + }, + { + "_id": "67d0c292b49d7d07880392d1", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c292b49d7d07880392cc" + }, + { + "_id": "67d0c292b49d7d07880392d2", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "slotId": "mod_mount", + "parentId": "67d0c292b49d7d07880392cc" + }, + { + "_id": "67d0c292b49d7d07880392d3", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c292b49d7d07880392d0" + } + ] + }, + { + "Id": "67d0c2c70100185b9525985a", + "Name": "loud holo tan mp9", + "Root": "67d0c2cdb49d7d078803931a", + "Items": [ + { + "_id": "67d0c2cdb49d7d078803931a", + "_tpl": "5e00903ae9dc277128008b87", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c2cdb49d7d078803931b", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67d0c2cdb49d7d078803931a" + }, + { + "_id": "67d0c2cdb49d7d078803931c", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67d0c2cdb49d7d078803931a" + }, + { + "_id": "67d0c2cdb49d7d078803931d", + "_tpl": "5e0090f7e9dc277128008b93", + "slotId": "mod_reciever", + "parentId": "67d0c2cdb49d7d078803931a" + }, + { + "_id": "67d0c2cdb49d7d078803931e", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67d0c2cdb49d7d078803931a" + }, + { + "_id": "67d0c2cdb49d7d078803931f", + "_tpl": "5de8fbf2b74cd90030650c79", + "slotId": "mod_mount_000", + "parentId": "67d0c2cdb49d7d078803931a" + }, + { + "_id": "67d0c2cdb49d7d0788039320", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c2cdb49d7d078803931d" + }, + { + "_id": "67d0c2cdb49d7d0788039321", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c2cdb49d7d078803931d" + }, + { + "_id": "67d0c2cdb49d7d0788039322", + "_tpl": "619386379fb0c665d5490dbe", + "slotId": "mod_foregrip", + "parentId": "67d0c2cdb49d7d078803931f" + } + ] + }, + { + "Id": "67d0c2e20100185b95805600", + "Name": "supr holo mp9", + "Root": "67d0c2ebb49d7d078803a123", + "Items": [ + { + "_id": "67d0c2ebb49d7d078803a123", + "_tpl": "5e00903ae9dc277128008b87", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c2ebb49d7d078803a124", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67d0c2ebb49d7d078803a123" + }, + { + "_id": "67d0c2ebb49d7d078803a125", + "_tpl": "5de8f237bbaf010b10528a70", + "slotId": "mod_muzzle", + "parentId": "67d0c2ebb49d7d078803a123" + }, + { + "_id": "67d0c2ebb49d7d078803a126", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67d0c2ebb49d7d078803a123" + }, + { + "_id": "67d0c2ebb49d7d078803a127", + "_tpl": "5e0090f7e9dc277128008b93", + "slotId": "mod_reciever", + "parentId": "67d0c2ebb49d7d078803a123" + }, + { + "_id": "67d0c2ebb49d7d078803a128", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67d0c2ebb49d7d078803a123" + }, + { + "_id": "67d0c2ebb49d7d078803a129", + "_tpl": "5de8fbf2b74cd90030650c79", + "slotId": "mod_mount_000", + "parentId": "67d0c2ebb49d7d078803a123" + }, + { + "_id": "67d0c2ebb49d7d078803a12a", + "_tpl": "5de8f2d5b74cd90030650c72", + "slotId": "mod_muzzle", + "parentId": "67d0c2ebb49d7d078803a125" + }, + { + "_id": "67d0c2ebb49d7d078803a12b", + "_tpl": "6272379924e29f06af4d5ecb", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c2ebb49d7d078803a125" + }, + { + "_id": "67d0c2ebb49d7d078803a12c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c2ebb49d7d078803a127" + }, + { + "_id": "67d0c2ebb49d7d078803a12d", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c2ebb49d7d078803a127" + } + ] + }, + { + "Id": "67d0c30c0100185b957d8d62", + "Name": "loud mrs mp9", + "Root": "67d0c311b49d7d078803a131", + "Items": [ + { + "_id": "67d0c311b49d7d078803a131", + "_tpl": "5e00903ae9dc277128008b87", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c311b49d7d078803a132", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67d0c311b49d7d078803a131" + }, + { + "_id": "67d0c311b49d7d078803a133", + "_tpl": "5de8f237bbaf010b10528a70", + "slotId": "mod_muzzle", + "parentId": "67d0c311b49d7d078803a131" + }, + { + "_id": "67d0c311b49d7d078803a134", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67d0c311b49d7d078803a131" + }, + { + "_id": "67d0c311b49d7d078803a135", + "_tpl": "5e0090f7e9dc277128008b93", + "slotId": "mod_reciever", + "parentId": "67d0c311b49d7d078803a131" + }, + { + "_id": "67d0c311b49d7d078803a136", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67d0c311b49d7d078803a131" + }, + { + "_id": "67d0c311b49d7d078803a137", + "_tpl": "5de8fbf2b74cd90030650c79", + "slotId": "mod_mount_000", + "parentId": "67d0c311b49d7d078803a131" + }, + { + "_id": "67d0c311b49d7d078803a138", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c311b49d7d078803a133" + }, + { + "_id": "67d0c311b49d7d078803a139", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c311b49d7d078803a135" + }, + { + "_id": "67d0c311b49d7d078803a13a", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c311b49d7d078803a135" + } + ] + }, + { + "Id": "67d0c3220100185b955e6dc7", + "Name": "loud ekp mp9", + "Root": "67d0c327b49d7d078803b05c", + "Items": [ + { + "_id": "67d0c327b49d7d078803b05c", + "_tpl": "5e00903ae9dc277128008b87", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c327b49d7d078803b05d", + "_tpl": "5de8eac42a78646d96665d91", + "slotId": "mod_magazine", + "parentId": "67d0c327b49d7d078803b05c" + }, + { + "_id": "67d0c327b49d7d078803b05e", + "_tpl": "5de910da8b6c4240ba2651b5", + "slotId": "mod_stock", + "parentId": "67d0c327b49d7d078803b05c" + }, + { + "_id": "67d0c327b49d7d078803b05f", + "_tpl": "5e0090f7e9dc277128008b93", + "slotId": "mod_reciever", + "parentId": "67d0c327b49d7d078803b05c" + }, + { + "_id": "67d0c327b49d7d078803b060", + "_tpl": "5de922d4b11454561e39239f", + "slotId": "mod_charge", + "parentId": "67d0c327b49d7d078803b05c" + }, + { + "_id": "67d0c327b49d7d078803b061", + "_tpl": "5de8fbf2b74cd90030650c79", + "slotId": "mod_mount_000", + "parentId": "67d0c327b49d7d078803b05c" + }, + { + "_id": "67d0c327b49d7d078803b062", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c327b49d7d078803b05f" + }, + { + "_id": "67d0c327b49d7d078803b063", + "_tpl": "5de8fb539f98ac2bc659513a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c327b49d7d078803b05f" + }, + { + "_id": "67d0c327b49d7d078803b064", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0c327b49d7d078803b061" + } + ] + }, + { + "Id": "67d0c38d0100185b95b50545", + "Name": "supr dp p90", + "Root": "67d0c392b49d7d078803be35", + "Items": [ + { + "_id": "67d0c392b49d7d078803be35", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c392b49d7d078803be36", + "_tpl": "5cc70093e4a949033c734312", + "slotId": "mod_magazine", + "parentId": "67d0c392b49d7d078803be35" + }, + { + "_id": "67d0c392b49d7d078803be37", + "_tpl": "5cc700b9e4a949000f0f0f25", + "slotId": "mod_stock", + "parentId": "67d0c392b49d7d078803be35" + }, + { + "_id": "67d0c392b49d7d078803be38", + "_tpl": "5cc700ede4a949033c734315", + "slotId": "mod_reciever", + "parentId": "67d0c392b49d7d078803be35" + }, + { + "_id": "67d0c392b49d7d078803be39", + "_tpl": "5cc701aae4a949000e1ea45c", + "slotId": "mod_barrel", + "parentId": "67d0c392b49d7d078803be35" + }, + { + "_id": "67d0c392b49d7d078803be3a", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "slotId": "mod_charge", + "parentId": "67d0c392b49d7d078803be35" + }, + { + "_id": "67d0c392b49d7d078803be3b", + "_tpl": "5cc700cae4a949035e43ba72", + "slotId": "mod_stock_000", + "parentId": "67d0c392b49d7d078803be37" + }, + { + "_id": "67d0c392b49d7d078803be3c", + "_tpl": "5cc7012ae4a949001252b43e", + "slotId": "mod_mount_000", + "parentId": "67d0c392b49d7d078803be38" + }, + { + "_id": "67d0c392b49d7d078803be3d", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d0c392b49d7d078803be38" + }, + { + "_id": "67d0c392b49d7d078803be3e", + "_tpl": "5cc82796e24e8d000f5859a8", + "slotId": "mod_muzzle", + "parentId": "67d0c392b49d7d078803be39" + }, + { + "_id": "67d0c392b49d7d078803be3f", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c392b49d7d078803be3c" + }, + { + "_id": "67d0c392b49d7d078803be40", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c392b49d7d078803be3d" + }, + { + "_id": "67d0c392b49d7d078803be41", + "_tpl": "5cebec00d7f00c065c53522a", + "slotId": "mod_muzzle", + "parentId": "67d0c392b49d7d078803be3e" + } + ] + }, + { + "Id": "67d0c3b80100185b95cfed67", + "Name": "supr holo p90", + "Root": "67d0c3bbb49d7d078803cdb5", + "Items": [ + { + "_id": "67d0c3bbb49d7d078803cdb5", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c3bbb49d7d078803cdb6", + "_tpl": "5cc70093e4a949033c734312", + "slotId": "mod_magazine", + "parentId": "67d0c3bbb49d7d078803cdb5" + }, + { + "_id": "67d0c3bbb49d7d078803cdb7", + "_tpl": "5cc700b9e4a949000f0f0f25", + "slotId": "mod_stock", + "parentId": "67d0c3bbb49d7d078803cdb5" + }, + { + "_id": "67d0c3bbb49d7d078803cdb8", + "_tpl": "5cf7acfcd7f00c1084477cf2", + "slotId": "mod_reciever", + "parentId": "67d0c3bbb49d7d078803cdb5" + }, + { + "_id": "67d0c3bbb49d7d078803cdb9", + "_tpl": "5cc701aae4a949000e1ea45c", + "slotId": "mod_barrel", + "parentId": "67d0c3bbb49d7d078803cdb5" + }, + { + "_id": "67d0c3bbb49d7d078803cdba", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "slotId": "mod_charge", + "parentId": "67d0c3bbb49d7d078803cdb5" + }, + { + "_id": "67d0c3bbb49d7d078803cdbb", + "_tpl": "5cc700cae4a949035e43ba72", + "slotId": "mod_stock_000", + "parentId": "67d0c3bbb49d7d078803cdb7" + }, + { + "_id": "67d0c3bbb49d7d078803cdbc", + "_tpl": "5cc7015ae4a949001152b4c6", + "slotId": "mod_mount_000", + "parentId": "67d0c3bbb49d7d078803cdb8" + }, + { + "_id": "67d0c3bbb49d7d078803cdbd", + "_tpl": "5cc70146e4a949000d73bf6b", + "slotId": "mod_mount_002", + "parentId": "67d0c3bbb49d7d078803cdb8" + }, + { + "_id": "67d0c3bbb49d7d078803cdbe", + "_tpl": "5cc82796e24e8d000f5859a8", + "slotId": "mod_muzzle", + "parentId": "67d0c3bbb49d7d078803cdb9" + }, + { + "_id": "67d0c3bbb49d7d078803cdbf", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c3bbb49d7d078803cdbc" + }, + { + "_id": "67d0c3bbb49d7d078803cdc0", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c3bbb49d7d078803cdbd" + }, + { + "_id": "67d0c3bbb49d7d078803cdc1", + "_tpl": "5cebec00d7f00c065c53522a", + "slotId": "mod_muzzle", + "parentId": "67d0c3bbb49d7d078803cdbe" + } + ] + }, + { + "Id": "67d0c3d10100185b95af57bd", + "Name": "loud holo p90", + "Root": "67d0c3d4b49d7d078803cdcd", + "Items": [ + { + "_id": "67d0c3d4b49d7d078803cdcd", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c3d4b49d7d078803cdce", + "_tpl": "5cc70093e4a949033c734312", + "slotId": "mod_magazine", + "parentId": "67d0c3d4b49d7d078803cdcd" + }, + { + "_id": "67d0c3d4b49d7d078803cdcf", + "_tpl": "5cc700b9e4a949000f0f0f25", + "slotId": "mod_stock", + "parentId": "67d0c3d4b49d7d078803cdcd" + }, + { + "_id": "67d0c3d4b49d7d078803cdd0", + "_tpl": "5cf7acfcd7f00c1084477cf2", + "slotId": "mod_reciever", + "parentId": "67d0c3d4b49d7d078803cdcd" + }, + { + "_id": "67d0c3d4b49d7d078803cdd1", + "_tpl": "5cc701d7e4a94900100ac4e7", + "slotId": "mod_barrel", + "parentId": "67d0c3d4b49d7d078803cdcd" + }, + { + "_id": "67d0c3d4b49d7d078803cdd2", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "slotId": "mod_charge", + "parentId": "67d0c3d4b49d7d078803cdcd" + }, + { + "_id": "67d0c3d4b49d7d078803cdd3", + "_tpl": "5cc700cae4a949035e43ba72", + "slotId": "mod_stock_000", + "parentId": "67d0c3d4b49d7d078803cdcf" + }, + { + "_id": "67d0c3d4b49d7d078803cdd4", + "_tpl": "5cc7015ae4a949001152b4c6", + "slotId": "mod_mount_000", + "parentId": "67d0c3d4b49d7d078803cdd0" + }, + { + "_id": "67d0c3d4b49d7d078803cdd5", + "_tpl": "5cc70146e4a949000d73bf6b", + "slotId": "mod_mount_002", + "parentId": "67d0c3d4b49d7d078803cdd0" + }, + { + "_id": "67d0c3d4b49d7d078803cdd6", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c3d4b49d7d078803cdd4" + }, + { + "_id": "67d0c3d4b49d7d078803cdd7", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c3d4b49d7d078803cdd5" + } + ] + }, + { + "Id": "67d0c3e40100185b954bcc54", + "Name": "supr holo p90 v2", + "Root": "67d0c3ebb49d7d078803cddb", + "Items": [ + { + "_id": "67d0c3ebb49d7d078803cddb", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c3ebb49d7d078803cddc", + "_tpl": "5cc70093e4a949033c734312", + "slotId": "mod_magazine", + "parentId": "67d0c3ebb49d7d078803cddb" + }, + { + "_id": "67d0c3ebb49d7d078803cddd", + "_tpl": "5cc700b9e4a949000f0f0f25", + "slotId": "mod_stock", + "parentId": "67d0c3ebb49d7d078803cddb" + }, + { + "_id": "67d0c3ebb49d7d078803cdde", + "_tpl": "5cc700ede4a949033c734315", + "slotId": "mod_reciever", + "parentId": "67d0c3ebb49d7d078803cddb" + }, + { + "_id": "67d0c3ebb49d7d078803cddf", + "_tpl": "5cc701aae4a949000e1ea45c", + "slotId": "mod_barrel", + "parentId": "67d0c3ebb49d7d078803cddb" + }, + { + "_id": "67d0c3ebb49d7d078803cde0", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "slotId": "mod_charge", + "parentId": "67d0c3ebb49d7d078803cddb" + }, + { + "_id": "67d0c3ebb49d7d078803cde1", + "_tpl": "5cc700cae4a949035e43ba72", + "slotId": "mod_stock_000", + "parentId": "67d0c3ebb49d7d078803cddd" + }, + { + "_id": "67d0c3ebb49d7d078803cde2", + "_tpl": "5cc7012ae4a949001252b43e", + "slotId": "mod_mount_000", + "parentId": "67d0c3ebb49d7d078803cdde" + }, + { + "_id": "67d0c3ebb49d7d078803cde3", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c3ebb49d7d078803cdde" + }, + { + "_id": "67d0c3ebb49d7d078803cde4", + "_tpl": "5cc82796e24e8d000f5859a8", + "slotId": "mod_muzzle", + "parentId": "67d0c3ebb49d7d078803cddf" + }, + { + "_id": "67d0c3ebb49d7d078803cde5", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c3ebb49d7d078803cde2" + }, + { + "_id": "67d0c3ebb49d7d078803cde6", + "_tpl": "5cebec00d7f00c065c53522a", + "slotId": "mod_muzzle", + "parentId": "67d0c3ebb49d7d078803cde4" + } + ] + }, + { + "Id": "67d0c3fc0100185b959fff10", + "Name": "loud pixi p90", + "Root": "67d0c403b49d7d078803cdeb", + "Items": [ + { + "_id": "67d0c403b49d7d078803cdeb", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c403b49d7d078803cdec", + "_tpl": "5cc70093e4a949033c734312", + "slotId": "mod_magazine", + "parentId": "67d0c403b49d7d078803cdeb" + }, + { + "_id": "67d0c403b49d7d078803cded", + "_tpl": "5cc700b9e4a949000f0f0f25", + "slotId": "mod_stock", + "parentId": "67d0c403b49d7d078803cdeb" + }, + { + "_id": "67d0c403b49d7d078803cdee", + "_tpl": "5cc700ede4a949033c734315", + "slotId": "mod_reciever", + "parentId": "67d0c403b49d7d078803cdeb" + }, + { + "_id": "67d0c403b49d7d078803cdef", + "_tpl": "5cc701d7e4a94900100ac4e7", + "slotId": "mod_barrel", + "parentId": "67d0c403b49d7d078803cdeb" + }, + { + "_id": "67d0c403b49d7d078803cdf0", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "slotId": "mod_charge", + "parentId": "67d0c403b49d7d078803cdeb" + }, + { + "_id": "67d0c403b49d7d078803cdf1", + "_tpl": "5cc700cae4a949035e43ba72", + "slotId": "mod_stock_000", + "parentId": "67d0c403b49d7d078803cded" + }, + { + "_id": "67d0c403b49d7d078803cdf2", + "_tpl": "5cc7012ae4a949001252b43e", + "slotId": "mod_mount_000", + "parentId": "67d0c403b49d7d078803cdee" + }, + { + "_id": "67d0c403b49d7d078803cdf3", + "_tpl": "584984812459776a704a82a6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c403b49d7d078803cdee" + }, + { + "_id": "67d0c403b49d7d078803cdf4", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c403b49d7d078803cdf2" + } + ] + }, + { + "Id": "67d0c4c80100185b95f7aff6", + "Name": "loud mrs mp5", + "Root": "67d0c4cdb49d7d078803fb62", + "Items": [ + { + "_id": "67d0c4cdb49d7d078803fb62", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c4cdb49d7d078803fb63", + "_tpl": "5926c3b286f774640d189b6b", + "slotId": "mod_magazine", + "parentId": "67d0c4cdb49d7d078803fb62" + }, + { + "_id": "67d0c4cdb49d7d078803fb64", + "_tpl": "5926c0df86f77462f647f764", + "slotId": "mod_reciever", + "parentId": "67d0c4cdb49d7d078803fb62" + }, + { + "_id": "67d0c4cdb49d7d078803fb65", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67d0c4cdb49d7d078803fb62" + }, + { + "_id": "67d0c4cdb49d7d078803fb66", + "_tpl": "5d19cd96d7ad1a4a992c9f52", + "slotId": "mod_handguard", + "parentId": "67d0c4cdb49d7d078803fb64" + }, + { + "_id": "67d0c4cdb49d7d078803fb67", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c4cdb49d7d078803fb64" + }, + { + "_id": "67d0c4cdb49d7d078803fb68", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67d0c4cdb49d7d078803fb64" + }, + { + "_id": "67d0c4cdb49d7d078803fb69", + "_tpl": "5c0000c00db834001a6697fc", + "slotId": "mod_muzzle", + "parentId": "67d0c4cdb49d7d078803fb64" + }, + { + "_id": "67d0c4cdb49d7d078803fb6a", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67d0c4cdb49d7d078803fb64" + }, + { + "_id": "67d0c4cdb49d7d078803fb6b", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0c4cdb49d7d078803fb66" + }, + { + "_id": "67d0c4cdb49d7d078803fb6c", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c4cdb49d7d078803fb66" + }, + { + "_id": "67d0c4cdb49d7d078803fb6d", + "_tpl": "5c07c5ed0db834001b73571c", + "slotId": "mod_muzzle", + "parentId": "67d0c4cdb49d7d078803fb69" + }, + { + "_id": "67d0c4cdb49d7d078803fb6e", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c4cdb49d7d078803fb6a" + } + ] + }, + { + "Id": "67d0c4e70100185b95deb5be", + "Name": "loud mrs mp5 v2", + "Root": "67d0c4eab49d7d07880409bf", + "Items": [ + { + "_id": "67d0c4eab49d7d07880409bf", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c4eab49d7d07880409c0", + "_tpl": "5926c3b286f774640d189b6b", + "slotId": "mod_magazine", + "parentId": "67d0c4eab49d7d07880409bf" + }, + { + "_id": "67d0c4eab49d7d07880409c1", + "_tpl": "5926c0df86f77462f647f764", + "slotId": "mod_reciever", + "parentId": "67d0c4eab49d7d07880409bf" + }, + { + "_id": "67d0c4eab49d7d07880409c2", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67d0c4eab49d7d07880409bf" + }, + { + "_id": "67d0c4eab49d7d07880409c3", + "_tpl": "5d19cd96d7ad1a4a992c9f52", + "slotId": "mod_handguard", + "parentId": "67d0c4eab49d7d07880409c1" + }, + { + "_id": "67d0c4eab49d7d07880409c4", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c4eab49d7d07880409c1" + }, + { + "_id": "67d0c4eab49d7d07880409c5", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67d0c4eab49d7d07880409c1" + }, + { + "_id": "67d0c4eab49d7d07880409c6", + "_tpl": "5c0000c00db834001a6697fc", + "slotId": "mod_muzzle", + "parentId": "67d0c4eab49d7d07880409c1" + }, + { + "_id": "67d0c4eab49d7d07880409c7", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67d0c4eab49d7d07880409c1" + }, + { + "_id": "67d0c4eab49d7d07880409c8", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d0c4eab49d7d07880409c3" + }, + { + "_id": "67d0c4eab49d7d07880409c9", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c4eab49d7d07880409c3" + }, + { + "_id": "67d0c4eab49d7d07880409ca", + "_tpl": "5c07c5ed0db834001b73571c", + "slotId": "mod_muzzle", + "parentId": "67d0c4eab49d7d07880409c6" + }, + { + "_id": "67d0c4eab49d7d07880409cb", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c4eab49d7d07880409c7" + } + ] + }, + { + "Id": "67d0c5010100185b95508183", + "Name": "loud holo mp5", + "Root": "67d0c505b49d7d07880409d1", + "Items": [ + { + "_id": "67d0c505b49d7d07880409d1", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c505b49d7d07880409d2", + "_tpl": "5926c3b286f774640d189b6b", + "slotId": "mod_magazine", + "parentId": "67d0c505b49d7d07880409d1" + }, + { + "_id": "67d0c505b49d7d07880409d3", + "_tpl": "5926c0df86f77462f647f764", + "slotId": "mod_reciever", + "parentId": "67d0c505b49d7d07880409d1" + }, + { + "_id": "67d0c505b49d7d07880409d4", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67d0c505b49d7d07880409d1" + }, + { + "_id": "67d0c505b49d7d07880409d5", + "_tpl": "5d19cd96d7ad1a4a992c9f52", + "slotId": "mod_handguard", + "parentId": "67d0c505b49d7d07880409d3" + }, + { + "_id": "67d0c505b49d7d07880409d6", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c505b49d7d07880409d3" + }, + { + "_id": "67d0c505b49d7d07880409d7", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67d0c505b49d7d07880409d3" + }, + { + "_id": "67d0c505b49d7d07880409d8", + "_tpl": "5c0000c00db834001a6697fc", + "slotId": "mod_muzzle", + "parentId": "67d0c505b49d7d07880409d3" + }, + { + "_id": "67d0c505b49d7d07880409d9", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67d0c505b49d7d07880409d3" + }, + { + "_id": "67d0c505b49d7d07880409da", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d0c505b49d7d07880409d5" + }, + { + "_id": "67d0c505b49d7d07880409db", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c505b49d7d07880409d5" + }, + { + "_id": "67d0c505b49d7d07880409dc", + "_tpl": "5c07c5ed0db834001b73571c", + "slotId": "mod_muzzle", + "parentId": "67d0c505b49d7d07880409d8" + }, + { + "_id": "67d0c505b49d7d07880409dd", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c505b49d7d07880409d9" + } + ] + }, + { + "Id": "67d0c5190100185b95d2ae52", + "Name": "loud holo mp5 v2", + "Root": "67d0c51db49d7d07880409e3", + "Items": [ + { + "_id": "67d0c51db49d7d07880409e3", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c51db49d7d07880409e4", + "_tpl": "5a351711c4a282000b1521a4", + "slotId": "mod_magazine", + "parentId": "67d0c51db49d7d07880409e3" + }, + { + "_id": "67d0c51db49d7d07880409e5", + "_tpl": "5926c0df86f77462f647f764", + "slotId": "mod_reciever", + "parentId": "67d0c51db49d7d07880409e3" + }, + { + "_id": "67d0c51db49d7d07880409e6", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67d0c51db49d7d07880409e3" + }, + { + "_id": "67d0c51db49d7d07880409e7", + "_tpl": "5d19cd96d7ad1a4a992c9f52", + "slotId": "mod_handguard", + "parentId": "67d0c51db49d7d07880409e5" + }, + { + "_id": "67d0c51db49d7d07880409e8", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c51db49d7d07880409e5" + }, + { + "_id": "67d0c51db49d7d07880409e9", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67d0c51db49d7d07880409e5" + }, + { + "_id": "67d0c51db49d7d07880409ea", + "_tpl": "5c0000c00db834001a6697fc", + "slotId": "mod_muzzle", + "parentId": "67d0c51db49d7d07880409e5" + }, + { + "_id": "67d0c51db49d7d07880409eb", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67d0c51db49d7d07880409e5" + }, + { + "_id": "67d0c51db49d7d07880409ec", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0c51db49d7d07880409e7" + }, + { + "_id": "67d0c51db49d7d07880409ed", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c51db49d7d07880409e7" + }, + { + "_id": "67d0c51db49d7d07880409ee", + "_tpl": "5c07c5ed0db834001b73571c", + "slotId": "mod_muzzle", + "parentId": "67d0c51db49d7d07880409ea" + }, + { + "_id": "67d0c51db49d7d07880409ef", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c51db49d7d07880409eb" + } + ] + }, + { + "Id": "67d0c5dc0100185b9579893e", + "Name": "supr mrs mp5", + "Root": "67d0c5e1b49d7d0788043707", + "Items": [ + { + "_id": "67d0c5e1b49d7d0788043707", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c5e1b49d7d0788043708", + "_tpl": "5a351711c4a282000b1521a4", + "slotId": "mod_magazine", + "parentId": "67d0c5e1b49d7d0788043707" + }, + { + "_id": "67d0c5e1b49d7d0788043709", + "_tpl": "5926c0df86f77462f647f764", + "slotId": "mod_reciever", + "parentId": "67d0c5e1b49d7d0788043707" + }, + { + "_id": "67d0c5e1b49d7d078804370a", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67d0c5e1b49d7d0788043707" + }, + { + "_id": "67d0c5e1b49d7d078804370b", + "_tpl": "5d19cd96d7ad1a4a992c9f52", + "slotId": "mod_handguard", + "parentId": "67d0c5e1b49d7d0788043709" + }, + { + "_id": "67d0c5e1b49d7d078804370c", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c5e1b49d7d0788043709" + }, + { + "_id": "67d0c5e1b49d7d078804370d", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67d0c5e1b49d7d0788043709" + }, + { + "_id": "67d0c5e1b49d7d078804370e", + "_tpl": "5c0000c00db834001a6697fc", + "slotId": "mod_muzzle", + "parentId": "67d0c5e1b49d7d0788043709" + }, + { + "_id": "67d0c5e1b49d7d078804370f", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67d0c5e1b49d7d0788043709" + }, + { + "_id": "67d0c5e1b49d7d0788043710", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d0c5e1b49d7d078804370b" + }, + { + "_id": "67d0c5e1b49d7d0788043711", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c5e1b49d7d078804370b" + }, + { + "_id": "67d0c5e1b49d7d0788043712", + "_tpl": "5c7e8fab2e22165df16b889b", + "slotId": "mod_muzzle", + "parentId": "67d0c5e1b49d7d078804370e" + }, + { + "_id": "67d0c5e1b49d7d0788043713", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c5e1b49d7d078804370f" + } + ] + }, + { + "Id": "67d0c5f60100185b9596b4c6", + "Name": "supr holo mp5", + "Root": "67d0c5f9b49d7d078804371c", + "Items": [ + { + "_id": "67d0c5f9b49d7d078804371c", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c5f9b49d7d078804371d", + "_tpl": "5a351711c4a282000b1521a4", + "slotId": "mod_magazine", + "parentId": "67d0c5f9b49d7d078804371c" + }, + { + "_id": "67d0c5f9b49d7d078804371e", + "_tpl": "5926c0df86f77462f647f764", + "slotId": "mod_reciever", + "parentId": "67d0c5f9b49d7d078804371c" + }, + { + "_id": "67d0c5f9b49d7d078804371f", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67d0c5f9b49d7d078804371c" + }, + { + "_id": "67d0c5f9b49d7d0788043720", + "_tpl": "5d19cd96d7ad1a4a992c9f52", + "slotId": "mod_handguard", + "parentId": "67d0c5f9b49d7d078804371e" + }, + { + "_id": "67d0c5f9b49d7d0788043721", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c5f9b49d7d078804371e" + }, + { + "_id": "67d0c5f9b49d7d0788043722", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67d0c5f9b49d7d078804371e" + }, + { + "_id": "67d0c5f9b49d7d0788043723", + "_tpl": "5c0000c00db834001a6697fc", + "slotId": "mod_muzzle", + "parentId": "67d0c5f9b49d7d078804371e" + }, + { + "_id": "67d0c5f9b49d7d0788043724", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67d0c5f9b49d7d078804371e" + }, + { + "_id": "67d0c5f9b49d7d0788043725", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d0c5f9b49d7d0788043720" + }, + { + "_id": "67d0c5f9b49d7d0788043726", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c5f9b49d7d0788043720" + }, + { + "_id": "67d0c5f9b49d7d0788043727", + "_tpl": "5c7e8fab2e22165df16b889b", + "slotId": "mod_muzzle", + "parentId": "67d0c5f9b49d7d0788043723" + }, + { + "_id": "67d0c5f9b49d7d0788043728", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c5f9b49d7d0788043724" + } + ] + }, + { + "Id": "67d0c6a30100185b958eaaeb", + "Name": "supr holo mp7a2", + "Root": "67d0c6a9b49d7d078804649a", + "Items": [ + { + "_id": "67d0c6a9b49d7d078804649a", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c6a9b49d7d078804649b", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67d0c6a9b49d7d078804649a" + }, + { + "_id": "67d0c6a9b49d7d078804649c", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67d0c6a9b49d7d078804649a" + }, + { + "_id": "67d0c6a9b49d7d078804649d", + "_tpl": "5ba26b01d4351e0085325a51", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6a9b49d7d078804649a" + }, + { + "_id": "67d0c6a9b49d7d078804649e", + "_tpl": "5ba26b17d4351e00367f9bdd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6a9b49d7d078804649a" + }, + { + "_id": "67d0c6a9b49d7d078804649f", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6a9b49d7d078804649a" + }, + { + "_id": "67d0c6a9b49d7d07880464a0", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c6a9b49d7d078804649a" + }, + { + "_id": "67d0c6a9b49d7d07880464a1", + "_tpl": "5bd704e7209c4d00d7167c31", + "slotId": "mod_stock", + "parentId": "67d0c6a9b49d7d078804649a" + }, + { + "_id": "67d0c6a9b49d7d07880464a2", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0c6a9b49d7d078804649a" + }, + { + "_id": "67d0c6a9b49d7d07880464a3", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67d0c6a9b49d7d078804649c" + } + ] + }, + { + "Id": "67d0c6b80100185b9562176d", + "Name": "supr holo tan mp7a2", + "Root": "67d0c6c1b49d7d07880472ab", + "Items": [ + { + "_id": "67d0c6c1b49d7d07880472ab", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c6c1b49d7d07880472ac", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67d0c6c1b49d7d07880472ab" + }, + { + "_id": "67d0c6c1b49d7d07880472ad", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67d0c6c1b49d7d07880472ab" + }, + { + "_id": "67d0c6c1b49d7d07880472ae", + "_tpl": "5ba26b01d4351e0085325a51", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6c1b49d7d07880472ab" + }, + { + "_id": "67d0c6c1b49d7d07880472af", + "_tpl": "5ba26b17d4351e00367f9bdd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6c1b49d7d07880472ab" + }, + { + "_id": "67d0c6c1b49d7d07880472b0", + "_tpl": "558022b54bdc2dac148b458d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6c1b49d7d07880472ab" + }, + { + "_id": "67d0c6c1b49d7d07880472b1", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c6c1b49d7d07880472ab" + }, + { + "_id": "67d0c6c1b49d7d07880472b2", + "_tpl": "5bd704e7209c4d00d7167c31", + "slotId": "mod_stock", + "parentId": "67d0c6c1b49d7d07880472ab" + }, + { + "_id": "67d0c6c1b49d7d07880472b3", + "_tpl": "5fce0cf655375d18a253eff0", + "slotId": "mod_foregrip", + "parentId": "67d0c6c1b49d7d07880472ab" + }, + { + "_id": "67d0c6c1b49d7d07880472b4", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67d0c6c1b49d7d07880472ad" + } + ] + }, + { + "Id": "67d0c6d50100185b951efc97", + "Name": "loud dp mp7a2", + "Root": "67d0c6dab49d7d07880472b9", + "Items": [ + { + "_id": "67d0c6dab49d7d07880472b9", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c6dab49d7d07880472ba", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67d0c6dab49d7d07880472b9" + }, + { + "_id": "67d0c6dab49d7d07880472bb", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67d0c6dab49d7d07880472b9" + }, + { + "_id": "67d0c6dab49d7d07880472bc", + "_tpl": "5ba26b01d4351e0085325a51", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6dab49d7d07880472b9" + }, + { + "_id": "67d0c6dab49d7d07880472bd", + "_tpl": "5ba26b17d4351e00367f9bdd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6dab49d7d07880472b9" + }, + { + "_id": "67d0c6dab49d7d07880472be", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d0c6dab49d7d07880472b9" + }, + { + "_id": "67d0c6dab49d7d07880472bf", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c6dab49d7d07880472b9" + }, + { + "_id": "67d0c6dab49d7d07880472c0", + "_tpl": "5bd704e7209c4d00d7167c31", + "slotId": "mod_stock", + "parentId": "67d0c6dab49d7d07880472b9" + }, + { + "_id": "67d0c6dab49d7d07880472c1", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0c6dab49d7d07880472b9" + }, + { + "_id": "67d0c6dab49d7d07880472c2", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6dab49d7d07880472be" + } + ] + }, + { + "Id": "67d0c6ec0100185b9522517c", + "Name": "loud holo mp7a2", + "Root": "67d0c6efb49d7d07880472c5", + "Items": [ + { + "_id": "67d0c6efb49d7d07880472c5", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c6efb49d7d07880472c6", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67d0c6efb49d7d07880472c5" + }, + { + "_id": "67d0c6efb49d7d07880472c7", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67d0c6efb49d7d07880472c5" + }, + { + "_id": "67d0c6efb49d7d07880472c8", + "_tpl": "5ba26b01d4351e0085325a51", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6efb49d7d07880472c5" + }, + { + "_id": "67d0c6efb49d7d07880472c9", + "_tpl": "5ba26b17d4351e00367f9bdd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6efb49d7d07880472c5" + }, + { + "_id": "67d0c6efb49d7d07880472ca", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c6efb49d7d07880472c5" + }, + { + "_id": "67d0c6efb49d7d07880472cb", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c6efb49d7d07880472c5" + }, + { + "_id": "67d0c6efb49d7d07880472cc", + "_tpl": "5bd704e7209c4d00d7167c31", + "slotId": "mod_stock", + "parentId": "67d0c6efb49d7d07880472c5" + }, + { + "_id": "67d0c6efb49d7d07880472cd", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0c6efb49d7d07880472c5" + } + ] + }, + { + "Id": "67d0c7290100185b95da96f7", + "Name": "loud ff3 mp7a2", + "Root": "67d0c72fb49d7d0788048186", + "Items": [ + { + "_id": "67d0c72fb49d7d0788048186", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c72fb49d7d0788048187", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67d0c72fb49d7d0788048186" + }, + { + "_id": "67d0c72fb49d7d0788048188", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67d0c72fb49d7d0788048186" + }, + { + "_id": "67d0c72fb49d7d0788048189", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d0c72fb49d7d0788048186" + }, + { + "_id": "67d0c72fb49d7d078804818a", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c72fb49d7d0788048186" + }, + { + "_id": "67d0c72fb49d7d078804818b", + "_tpl": "5bd704e7209c4d00d7167c31", + "slotId": "mod_stock", + "parentId": "67d0c72fb49d7d0788048186" + }, + { + "_id": "67d0c72fb49d7d078804818c", + "_tpl": "588226dd24597767ad33f789", + "slotId": "mod_foregrip", + "parentId": "67d0c72fb49d7d0788048186" + }, + { + "_id": "67d0c72fb49d7d078804818d", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c72fb49d7d0788048189" + } + ] + }, + { + "Id": "67d0c76a0100185b95c2f30f", + "Name": "supr uh1 mp7a2", + "Root": "67d0c76db49d7d078804902c", + "Items": [ + { + "_id": "67d0c76db49d7d078804902c", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c76db49d7d078804902d", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67d0c76db49d7d078804902c" + }, + { + "_id": "67d0c76db49d7d078804902e", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67d0c76db49d7d078804902c" + }, + { + "_id": "67d0c76db49d7d078804902f", + "_tpl": "5ba26b01d4351e0085325a51", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c76db49d7d078804902c" + }, + { + "_id": "67d0c76db49d7d0788049030", + "_tpl": "5ba26b17d4351e00367f9bdd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c76db49d7d078804902c" + }, + { + "_id": "67d0c76db49d7d0788049031", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c76db49d7d078804902c" + }, + { + "_id": "67d0c76db49d7d0788049032", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c76db49d7d078804902c" + }, + { + "_id": "67d0c76db49d7d0788049033", + "_tpl": "5bd704e7209c4d00d7167c31", + "slotId": "mod_stock", + "parentId": "67d0c76db49d7d078804902c" + }, + { + "_id": "67d0c76db49d7d0788049034", + "_tpl": "5c791e872e2216001219c40a", + "slotId": "mod_foregrip", + "parentId": "67d0c76db49d7d078804902c" + }, + { + "_id": "67d0c76db49d7d0788049035", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67d0c76db49d7d078804902e" + } + ] + }, + { + "Id": "67d0c7940100185b95c4a39d", + "Name": "loud 553 mp7a1", + "Root": "67d0c79bb49d7d078804a007", + "Items": [ + { + "_id": "67d0c79bb49d7d078804a007", + "_tpl": "5ba26383d4351e00334c93d9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c79bb49d7d078804a008", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67d0c79bb49d7d078804a007" + }, + { + "_id": "67d0c79bb49d7d078804a009", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67d0c79bb49d7d078804a007" + }, + { + "_id": "67d0c79bb49d7d078804a00a", + "_tpl": "5ba26b01d4351e0085325a51", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c79bb49d7d078804a007" + }, + { + "_id": "67d0c79bb49d7d078804a00b", + "_tpl": "5ba26b17d4351e00367f9bdd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c79bb49d7d078804a007" + }, + { + "_id": "67d0c79bb49d7d078804a00c", + "_tpl": "570fd6c2d2720bc6458b457f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c79bb49d7d078804a007" + }, + { + "_id": "67d0c79bb49d7d078804a00d", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c79bb49d7d078804a007" + }, + { + "_id": "67d0c79bb49d7d078804a00e", + "_tpl": "5bcf0213d4351e0085327c17", + "slotId": "mod_stock", + "parentId": "67d0c79bb49d7d078804a007" + } + ] + }, + { + "Id": "67d0c7b50100185b95fed776", + "Name": "supr pk06 mp7a1", + "Root": "67d0c7bdb49d7d078804af52", + "Items": [ + { + "_id": "67d0c7bdb49d7d078804af52", + "_tpl": "5ba26383d4351e00334c93d9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c7bdb49d7d078804af53", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67d0c7bdb49d7d078804af52" + }, + { + "_id": "67d0c7bdb49d7d078804af54", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67d0c7bdb49d7d078804af52" + }, + { + "_id": "67d0c7bdb49d7d078804af55", + "_tpl": "5ba26b01d4351e0085325a51", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c7bdb49d7d078804af52" + }, + { + "_id": "67d0c7bdb49d7d078804af56", + "_tpl": "5ba26b17d4351e00367f9bdd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c7bdb49d7d078804af52" + }, + { + "_id": "67d0c7bdb49d7d078804af57", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c7bdb49d7d078804af52" + }, + { + "_id": "67d0c7bdb49d7d078804af58", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c7bdb49d7d078804af52" + }, + { + "_id": "67d0c7bdb49d7d078804af59", + "_tpl": "5bcf0213d4351e0085327c17", + "slotId": "mod_stock", + "parentId": "67d0c7bdb49d7d078804af52" + }, + { + "_id": "67d0c7bdb49d7d078804af5a", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67d0c7bdb49d7d078804af54" + } + ] + }, + { + "Id": "67d0c7c80100185b95b5468a", + "Name": "supr holo mp7a1", + "Root": "67d0c7ceb49d7d078804af5e", + "Items": [ + { + "_id": "67d0c7ceb49d7d078804af5e", + "_tpl": "5ba26383d4351e00334c93d9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c7ceb49d7d078804af5f", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67d0c7ceb49d7d078804af5e" + }, + { + "_id": "67d0c7ceb49d7d078804af60", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67d0c7ceb49d7d078804af5e" + }, + { + "_id": "67d0c7ceb49d7d078804af61", + "_tpl": "5ba26b01d4351e0085325a51", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c7ceb49d7d078804af5e" + }, + { + "_id": "67d0c7ceb49d7d078804af62", + "_tpl": "5ba26b17d4351e00367f9bdd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c7ceb49d7d078804af5e" + }, + { + "_id": "67d0c7ceb49d7d078804af63", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c7ceb49d7d078804af5e" + }, + { + "_id": "67d0c7ceb49d7d078804af64", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c7ceb49d7d078804af5e" + }, + { + "_id": "67d0c7ceb49d7d078804af65", + "_tpl": "5bcf0213d4351e0085327c17", + "slotId": "mod_stock", + "parentId": "67d0c7ceb49d7d078804af5e" + }, + { + "_id": "67d0c7ceb49d7d078804af66", + "_tpl": "5ba26ae8d4351e00367f9bdb", + "slotId": "mod_muzzle", + "parentId": "67d0c7ceb49d7d078804af60" + } + ] + }, + { + "Id": "67d0c7fc0100185b95ad2739", + "Name": "loud mrs mp7a1", + "Root": "67d0c801b49d7d078804be5a", + "Items": [ + { + "_id": "67d0c801b49d7d078804be5a", + "_tpl": "5ba26383d4351e00334c93d9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c801b49d7d078804be5b", + "_tpl": "5ba26586d4351e44f824b340", + "slotId": "mod_magazine", + "parentId": "67d0c801b49d7d078804be5a" + }, + { + "_id": "67d0c801b49d7d078804be5c", + "_tpl": "5ba26acdd4351e003562908e", + "slotId": "mod_muzzle", + "parentId": "67d0c801b49d7d078804be5a" + }, + { + "_id": "67d0c801b49d7d078804be5d", + "_tpl": "5ba26b01d4351e0085325a51", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c801b49d7d078804be5a" + }, + { + "_id": "67d0c801b49d7d078804be5e", + "_tpl": "5ba26b17d4351e00367f9bdd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c801b49d7d078804be5a" + }, + { + "_id": "67d0c801b49d7d078804be5f", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c801b49d7d078804be5a" + }, + { + "_id": "67d0c801b49d7d078804be60", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c801b49d7d078804be5a" + }, + { + "_id": "67d0c801b49d7d078804be61", + "_tpl": "5bcf0213d4351e0085327c17", + "slotId": "mod_stock", + "parentId": "67d0c801b49d7d078804be5a" + } + ] + }, + { + "Id": "67d0c8330100185b95a56f0c", + "Name": "internal supr mrs mp5", + "Root": "67d0c83ab49d7d078804cdb7", + "Items": [ + { + "_id": "67d0c83ab49d7d078804cdb7", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c83ab49d7d078804cdb8", + "_tpl": "5a351711c4a282000b1521a4", + "slotId": "mod_magazine", + "parentId": "67d0c83ab49d7d078804cdb7" + }, + { + "_id": "67d0c83ab49d7d078804cdb9", + "_tpl": "5926f2e086f7745aae644231", + "slotId": "mod_reciever", + "parentId": "67d0c83ab49d7d078804cdb7" + }, + { + "_id": "67d0c83ab49d7d078804cdba", + "_tpl": "5926c32286f774616e42de99", + "slotId": "mod_charge", + "parentId": "67d0c83ab49d7d078804cdb7" + }, + { + "_id": "67d0c83ab49d7d078804cdbb", + "_tpl": "5926f34786f77469195bfe92", + "slotId": "mod_handguard", + "parentId": "67d0c83ab49d7d078804cdb9" + }, + { + "_id": "67d0c83ab49d7d078804cdbc", + "_tpl": "5926d2be86f774134d668e4e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c83ab49d7d078804cdb9" + }, + { + "_id": "67d0c83ab49d7d078804cdbd", + "_tpl": "5926d3c686f77410de68ebc8", + "slotId": "mod_stock", + "parentId": "67d0c83ab49d7d078804cdb9" + }, + { + "_id": "67d0c83ab49d7d078804cdbe", + "_tpl": "5926d33d86f77410de68ebc0", + "slotId": "mod_muzzle", + "parentId": "67d0c83ab49d7d078804cdb9" + }, + { + "_id": "67d0c83ab49d7d078804cdbf", + "_tpl": "5926dad986f7741f82604363", + "slotId": "mod_mount", + "parentId": "67d0c83ab49d7d078804cdb9" + }, + { + "_id": "67d0c83ab49d7d078804cdc0", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c83ab49d7d078804cdbf" + } + ] + }, + { + "Id": "67d0c9540100185b953d702f", + "Name": "loud mrs ump", + "Root": "67d0c95db49d7d07880518ed", + "Items": [ + { + "_id": "67d0c95db49d7d07880518ed", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c95db49d7d07880518ee", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67d0c95db49d7d07880518ed" + }, + { + "_id": "67d0c95db49d7d07880518ef", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c95db49d7d07880518ed" + }, + { + "_id": "67d0c95db49d7d07880518f0", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67d0c95db49d7d07880518ed" + }, + { + "_id": "67d0c95db49d7d07880518f1", + "_tpl": "5fc3e4a27283c4046c5814ab", + "slotId": "mod_barrel", + "parentId": "67d0c95db49d7d07880518ed" + }, + { + "_id": "67d0c95db49d7d07880518f2", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67d0c95db49d7d07880518ed" + }, + { + "_id": "67d0c95db49d7d07880518f3", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67d0c95db49d7d07880518ed" + }, + { + "_id": "67d0c95db49d7d07880518f4", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67d0c95db49d7d07880518ed" + }, + { + "_id": "67d0c95db49d7d07880518f5", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d0c95db49d7d07880518f2" + }, + { + "_id": "67d0c95db49d7d07880518f6", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c95db49d7d07880518f4" + } + ] + }, + { + "Id": "67d0c96a0100185b95ce7e18", + "Name": "supr mrs ump", + "Root": "67d0c96db49d7d0788051939", + "Items": [ + { + "_id": "67d0c96db49d7d0788051939", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c96db49d7d078805193a", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67d0c96db49d7d0788051939" + }, + { + "_id": "67d0c96db49d7d078805193b", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c96db49d7d0788051939" + }, + { + "_id": "67d0c96db49d7d078805193c", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67d0c96db49d7d0788051939" + }, + { + "_id": "67d0c96db49d7d078805193d", + "_tpl": "5fc3e4a27283c4046c5814ab", + "slotId": "mod_barrel", + "parentId": "67d0c96db49d7d0788051939" + }, + { + "_id": "67d0c96db49d7d078805193e", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67d0c96db49d7d0788051939" + }, + { + "_id": "67d0c96db49d7d078805193f", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67d0c96db49d7d0788051939" + }, + { + "_id": "67d0c96db49d7d0788051940", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67d0c96db49d7d0788051939" + }, + { + "_id": "67d0c96db49d7d0788051941", + "_tpl": "6130c4d51cb55961fa0fd49f", + "slotId": "mod_muzzle", + "parentId": "67d0c96db49d7d078805193d" + }, + { + "_id": "67d0c96db49d7d0788051942", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d0c96db49d7d078805193e" + }, + { + "_id": "67d0c96db49d7d0788051943", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c96db49d7d0788051940" + } + ] + }, + { + "Id": "67d0c97b0100185b95a510ae", + "Name": "supr holo ump", + "Root": "67d0c97fb49d7d078805277e", + "Items": [ + { + "_id": "67d0c97fb49d7d078805277e", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c97fb49d7d078805277f", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67d0c97fb49d7d078805277e" + }, + { + "_id": "67d0c97fb49d7d0788052780", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c97fb49d7d078805277e" + }, + { + "_id": "67d0c97fb49d7d0788052781", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67d0c97fb49d7d078805277e" + }, + { + "_id": "67d0c97fb49d7d0788052782", + "_tpl": "5fc3e4a27283c4046c5814ab", + "slotId": "mod_barrel", + "parentId": "67d0c97fb49d7d078805277e" + }, + { + "_id": "67d0c97fb49d7d0788052783", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67d0c97fb49d7d078805277e" + }, + { + "_id": "67d0c97fb49d7d0788052784", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67d0c97fb49d7d078805277e" + }, + { + "_id": "67d0c97fb49d7d0788052785", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67d0c97fb49d7d078805277e" + }, + { + "_id": "67d0c97fb49d7d0788052786", + "_tpl": "6130c4d51cb55961fa0fd49f", + "slotId": "mod_muzzle", + "parentId": "67d0c97fb49d7d0788052782" + }, + { + "_id": "67d0c97fb49d7d0788052787", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0c97fb49d7d0788052783" + }, + { + "_id": "67d0c97fb49d7d0788052788", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c97fb49d7d0788052785" + } + ] + }, + { + "Id": "67d0c9a60100185b952531f6", + "Name": "loud holo ump", + "Root": "67d0c9aab49d7d07880535e4", + "Items": [ + { + "_id": "67d0c9aab49d7d07880535e4", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c9aab49d7d07880535e5", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67d0c9aab49d7d07880535e4" + }, + { + "_id": "67d0c9aab49d7d07880535e6", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c9aab49d7d07880535e4" + }, + { + "_id": "67d0c9aab49d7d07880535e7", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67d0c9aab49d7d07880535e4" + }, + { + "_id": "67d0c9aab49d7d07880535e8", + "_tpl": "5fc3e4a27283c4046c5814ab", + "slotId": "mod_barrel", + "parentId": "67d0c9aab49d7d07880535e4" + }, + { + "_id": "67d0c9aab49d7d07880535e9", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67d0c9aab49d7d07880535e4" + }, + { + "_id": "67d0c9aab49d7d07880535ea", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67d0c9aab49d7d07880535e4" + }, + { + "_id": "67d0c9aab49d7d07880535eb", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67d0c9aab49d7d07880535e4" + }, + { + "_id": "67d0c9aab49d7d07880535ec", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0c9aab49d7d07880535e9" + }, + { + "_id": "67d0c9aab49d7d07880535ed", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c9aab49d7d07880535ea" + } + ] + }, + { + "Id": "67d0c9bc0100185b9588b98e", + "Name": "supr hhs ump", + "Root": "67d0c9bfb49d7d07880535ee", + "Items": [ + { + "_id": "67d0c9bfb49d7d07880535ee", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c9bfb49d7d07880535ef", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67d0c9bfb49d7d07880535ee" + }, + { + "_id": "67d0c9bfb49d7d07880535f0", + "_tpl": "5c07dd120db834001c39092d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c9bfb49d7d07880535ee" + }, + { + "_id": "67d0c9bfb49d7d07880535f1", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67d0c9bfb49d7d07880535ee" + }, + { + "_id": "67d0c9bfb49d7d07880535f2", + "_tpl": "5fc3e4a27283c4046c5814ab", + "slotId": "mod_barrel", + "parentId": "67d0c9bfb49d7d07880535ee" + }, + { + "_id": "67d0c9bfb49d7d07880535f3", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67d0c9bfb49d7d07880535ee" + }, + { + "_id": "67d0c9bfb49d7d07880535f4", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67d0c9bfb49d7d07880535ee" + }, + { + "_id": "67d0c9bfb49d7d07880535f5", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67d0c9bfb49d7d07880535ee" + }, + { + "_id": "67d0c9bfb49d7d07880535f6", + "_tpl": "6130c4d51cb55961fa0fd49f", + "slotId": "mod_muzzle", + "parentId": "67d0c9bfb49d7d07880535f2" + }, + { + "_id": "67d0c9bfb49d7d07880535f7", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0c9bfb49d7d07880535f3" + }, + { + "_id": "67d0c9bfb49d7d07880535f8", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0c9bfb49d7d07880535f5" + } + ] + }, + { + "Id": "67d0c9de0100185b95c9471d", + "Name": "loud ekp ump", + "Root": "67d0c9e3b49d7d078805443b", + "Items": [ + { + "_id": "67d0c9e3b49d7d078805443b", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0c9e3b49d7d078805443c", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67d0c9e3b49d7d078805443b" + }, + { + "_id": "67d0c9e3b49d7d078805443d", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0c9e3b49d7d078805443b" + }, + { + "_id": "67d0c9e3b49d7d078805443e", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67d0c9e3b49d7d078805443b" + }, + { + "_id": "67d0c9e3b49d7d078805443f", + "_tpl": "5fc3e4a27283c4046c5814ab", + "slotId": "mod_barrel", + "parentId": "67d0c9e3b49d7d078805443b" + }, + { + "_id": "67d0c9e3b49d7d0788054440", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67d0c9e3b49d7d078805443b" + }, + { + "_id": "67d0c9e3b49d7d0788054441", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67d0c9e3b49d7d078805443b" + }, + { + "_id": "67d0c9e3b49d7d0788054442", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67d0c9e3b49d7d078805443b" + }, + { + "_id": "67d0c9e3b49d7d0788054443", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d0c9e3b49d7d0788054440" + } + ] + }, + { + "Id": "67d0ca090100185b9553a29b", + "Name": "supr 2x ump", + "Root": "67d0ca0bb49d7d0788055373", + "Items": [ + { + "_id": "67d0ca0bb49d7d0788055373", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0ca0bb49d7d0788055374", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67d0ca0bb49d7d0788055373" + }, + { + "_id": "67d0ca0bb49d7d0788055375", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ca0bb49d7d0788055373" + }, + { + "_id": "67d0ca0bb49d7d0788055376", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67d0ca0bb49d7d0788055373" + }, + { + "_id": "67d0ca0bb49d7d0788055377", + "_tpl": "5fc3e4a27283c4046c5814ab", + "slotId": "mod_barrel", + "parentId": "67d0ca0bb49d7d0788055373" + }, + { + "_id": "67d0ca0bb49d7d0788055378", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67d0ca0bb49d7d0788055373" + }, + { + "_id": "67d0ca0bb49d7d0788055379", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67d0ca0bb49d7d0788055373" + }, + { + "_id": "67d0ca0bb49d7d078805537a", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67d0ca0bb49d7d0788055373" + }, + { + "_id": "67d0ca0bb49d7d078805537b", + "_tpl": "6130c4d51cb55961fa0fd49f", + "slotId": "mod_muzzle", + "parentId": "67d0ca0bb49d7d0788055377" + }, + { + "_id": "67d0ca0bb49d7d078805537c", + "_tpl": "58c157c886f774032749fb06", + "slotId": "mod_foregrip", + "parentId": "67d0ca0bb49d7d0788055378" + }, + { + "_id": "67d0ca0bb49d7d078805537d", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0ca0bb49d7d078805537a" + } + ] + }, + { + "Id": "67d0ca3b0100185b953ae8ec", + "Name": "loud hco ump", + "Root": "67d0ca3fb49d7d07880561fe", + "Items": [ + { + "_id": "67d0ca3fb49d7d07880561fe", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0ca3fb49d7d07880561ff", + "_tpl": "5fc3e466187fea44d52eda90", + "slotId": "mod_magazine", + "parentId": "67d0ca3fb49d7d07880561fe" + }, + { + "_id": "67d0ca3fb49d7d0788056200", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ca3fb49d7d07880561fe" + }, + { + "_id": "67d0ca3fb49d7d0788056201", + "_tpl": "5fc3e4ee7283c4046c5814af", + "slotId": "mod_stock", + "parentId": "67d0ca3fb49d7d07880561fe" + }, + { + "_id": "67d0ca3fb49d7d0788056202", + "_tpl": "5fc3e4a27283c4046c5814ab", + "slotId": "mod_barrel", + "parentId": "67d0ca3fb49d7d07880561fe" + }, + { + "_id": "67d0ca3fb49d7d0788056203", + "_tpl": "5fc53954f8b6a877a729eaeb", + "slotId": "mod_mount_000", + "parentId": "67d0ca3fb49d7d07880561fe" + }, + { + "_id": "67d0ca3fb49d7d0788056204", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_001", + "parentId": "67d0ca3fb49d7d07880561fe" + }, + { + "_id": "67d0ca3fb49d7d0788056205", + "_tpl": "5fc5396e900b1d5091531e72", + "slotId": "mod_mount_002", + "parentId": "67d0ca3fb49d7d07880561fe" + }, + { + "_id": "67d0ca3fb49d7d0788056206", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67d0ca3fb49d7d0788056203" + }, + { + "_id": "67d0ca3fb49d7d0788056207", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0ca3fb49d7d0788056205" + } + ] + }, + { + "Id": "67d0cae70100185b95fe4693", + "Name": "supr holo uzi", + "Root": "67d0caeeb49d7d0788059134", + "Items": [ + { + "_id": "67d0caeeb49d7d0788059134", + "_tpl": "66992b349950f5f4cd06029f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0caeeb49d7d0788059135", + "_tpl": "669927203c4fda6471005cbe", + "slotId": "mod_magazine", + "parentId": "67d0caeeb49d7d0788059134" + }, + { + "_id": "67d0caeeb49d7d0788059136", + "_tpl": "6698c8ab29e062525d0ad8ab", + "slotId": "mod_barrel", + "parentId": "67d0caeeb49d7d0788059134" + }, + { + "_id": "67d0caeeb49d7d0788059137", + "_tpl": "6699249f3c4fda6471005cba", + "slotId": "mod_stock", + "parentId": "67d0caeeb49d7d0788059134" + }, + { + "_id": "67d0caeeb49d7d0788059138", + "_tpl": "6698c90829e062525d0ad8ad", + "slotId": "mod_mount_000", + "parentId": "67d0caeeb49d7d0788059134" + }, + { + "_id": "67d0caeeb49d7d0788059139", + "_tpl": "66993149558c59581e03c028", + "slotId": "mod_handguard", + "parentId": "67d0caeeb49d7d0788059134" + }, + { + "_id": "67d0caeeb49d7d078805913a", + "_tpl": "669946c157df3e2b4e0a0dc5", + "slotId": "mod_pistol_grip", + "parentId": "67d0caeeb49d7d0788059134" + }, + { + "_id": "67d0caeeb49d7d078805913b", + "_tpl": "66993733f74fef4dfd0b04ff", + "slotId": "mod_muzzle", + "parentId": "67d0caeeb49d7d0788059136" + }, + { + "_id": "67d0caeeb49d7d078805913c", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0caeeb49d7d0788059138" + } + ] + }, + { + "Id": "67d0cafe0100185b95325704", + "Name": "supr ff3 uzi", + "Root": "67d0cb02b49d7d0788059140", + "Items": [ + { + "_id": "67d0cb02b49d7d0788059140", + "_tpl": "66992b349950f5f4cd06029f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cb02b49d7d0788059141", + "_tpl": "669927203c4fda6471005cbe", + "slotId": "mod_magazine", + "parentId": "67d0cb02b49d7d0788059140" + }, + { + "_id": "67d0cb02b49d7d0788059142", + "_tpl": "6698c8ab29e062525d0ad8ab", + "slotId": "mod_barrel", + "parentId": "67d0cb02b49d7d0788059140" + }, + { + "_id": "67d0cb02b49d7d0788059143", + "_tpl": "6699249f3c4fda6471005cba", + "slotId": "mod_stock", + "parentId": "67d0cb02b49d7d0788059140" + }, + { + "_id": "67d0cb02b49d7d0788059144", + "_tpl": "6698c90829e062525d0ad8ad", + "slotId": "mod_mount_000", + "parentId": "67d0cb02b49d7d0788059140" + }, + { + "_id": "67d0cb02b49d7d0788059145", + "_tpl": "66993149558c59581e03c028", + "slotId": "mod_handguard", + "parentId": "67d0cb02b49d7d0788059140" + }, + { + "_id": "67d0cb02b49d7d0788059146", + "_tpl": "669946c157df3e2b4e0a0dc5", + "slotId": "mod_pistol_grip", + "parentId": "67d0cb02b49d7d0788059140" + }, + { + "_id": "67d0cb02b49d7d0788059147", + "_tpl": "66993733f74fef4dfd0b04ff", + "slotId": "mod_muzzle", + "parentId": "67d0cb02b49d7d0788059142" + }, + { + "_id": "67d0cb02b49d7d0788059148", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d0cb02b49d7d0788059144" + }, + { + "_id": "67d0cb02b49d7d0788059149", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cb02b49d7d0788059148" + } + ] + }, + { + "Id": "67d0cb190100185b9581303c", + "Name": "supr stock uzi", + "Root": "67d0cb1eb49d7d078805a126", + "Items": [ + { + "_id": "67d0cb1eb49d7d078805a126", + "_tpl": "66992b349950f5f4cd06029f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cb1eb49d7d078805a127", + "_tpl": "669927203c4fda6471005cbe", + "slotId": "mod_magazine", + "parentId": "67d0cb1eb49d7d078805a126" + }, + { + "_id": "67d0cb1eb49d7d078805a128", + "_tpl": "6698c8ab29e062525d0ad8ab", + "slotId": "mod_barrel", + "parentId": "67d0cb1eb49d7d078805a126" + }, + { + "_id": "67d0cb1eb49d7d078805a129", + "_tpl": "6699249f3c4fda6471005cba", + "slotId": "mod_stock", + "parentId": "67d0cb1eb49d7d078805a126" + }, + { + "_id": "67d0cb1eb49d7d078805a12a", + "_tpl": "66993149558c59581e03c028", + "slotId": "mod_handguard", + "parentId": "67d0cb1eb49d7d078805a126" + }, + { + "_id": "67d0cb1eb49d7d078805a12b", + "_tpl": "669946c157df3e2b4e0a0dc5", + "slotId": "mod_pistol_grip", + "parentId": "67d0cb1eb49d7d078805a126" + }, + { + "_id": "67d0cb1eb49d7d078805a12c", + "_tpl": "66993733f74fef4dfd0b04ff", + "slotId": "mod_muzzle", + "parentId": "67d0cb1eb49d7d078805a128" + }, + { + "_id": "67d0cb1eb49d7d078805a12d", + "_tpl": "6698c8f4710a4525fe0e9e57", + "slotId": "mod_mount_000", + "parentId": "67d0cb1eb49d7d078805a12a" + }, + { + "_id": "67d0cb1eb49d7d078805a12e", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0cb1eb49d7d078805a12d" + } + ] + }, + { + "Id": "67d0cb3a0100185b9591df17", + "Name": "loud holo uzi", + "Root": "67d0cb3eb49d7d078805b0bc", + "Items": [ + { + "_id": "67d0cb3eb49d7d078805b0bc", + "_tpl": "66992b349950f5f4cd06029f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cb3eb49d7d078805b0bd", + "_tpl": "669927203c4fda6471005cbe", + "slotId": "mod_magazine", + "parentId": "67d0cb3eb49d7d078805b0bc" + }, + { + "_id": "67d0cb3eb49d7d078805b0be", + "_tpl": "6698c8ab29e062525d0ad8ab", + "slotId": "mod_barrel", + "parentId": "67d0cb3eb49d7d078805b0bc" + }, + { + "_id": "67d0cb3eb49d7d078805b0bf", + "_tpl": "6699249f3c4fda6471005cba", + "slotId": "mod_stock", + "parentId": "67d0cb3eb49d7d078805b0bc" + }, + { + "_id": "67d0cb3eb49d7d078805b0c0", + "_tpl": "6698c90829e062525d0ad8ad", + "slotId": "mod_mount_000", + "parentId": "67d0cb3eb49d7d078805b0bc" + }, + { + "_id": "67d0cb3eb49d7d078805b0c1", + "_tpl": "66993149558c59581e03c028", + "slotId": "mod_handguard", + "parentId": "67d0cb3eb49d7d078805b0bc" + }, + { + "_id": "67d0cb3eb49d7d078805b0c2", + "_tpl": "669946c157df3e2b4e0a0dc5", + "slotId": "mod_pistol_grip", + "parentId": "67d0cb3eb49d7d078805b0bc" + }, + { + "_id": "67d0cb3eb49d7d078805b0c3", + "_tpl": "6699370c57df3e2b4e0a0dab", + "slotId": "mod_muzzle", + "parentId": "67d0cb3eb49d7d078805b0be" + }, + { + "_id": "67d0cb3eb49d7d078805b0c4", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cb3eb49d7d078805b0c0" + }, + { + "_id": "67d0cb3eb49d7d078805b0c5", + "_tpl": "6698c8f4710a4525fe0e9e57", + "slotId": "mod_mount_001", + "parentId": "67d0cb3eb49d7d078805b0c1" + }, + { + "_id": "67d0cb3eb49d7d078805b0c6", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0cb3eb49d7d078805b0c5" + } + ] + }, + { + "Id": "67d0cb8d0100185b95540a59", + "Name": "loud 553 uzipro", + "Root": "67d0cb95b49d7d078805c0bd", + "Items": [ + { + "_id": "67d0cb95b49d7d078805c0bd", + "_tpl": "668e71a8dadf42204c032ce1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cb95b49d7d078805c0be", + "_tpl": "66866f622a2296a8d9099639", + "slotId": "mod_magazine", + "parentId": "67d0cb95b49d7d078805c0bd" + }, + { + "_id": "67d0cb95b49d7d078805c0bf", + "_tpl": "668670e3fb75ee4a5e02eb16", + "slotId": "mod_muzzle_000", + "parentId": "67d0cb95b49d7d078805c0bd" + }, + { + "_id": "67d0cb95b49d7d078805c0c0", + "_tpl": "668032ba74b8f2050c0b917d", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d0cb95b49d7d078805c0bd" + }, + { + "_id": "67d0cb95b49d7d078805c0c1", + "_tpl": "6680326874b8f2050c0b9178", + "slotId": "mod_reciever", + "parentId": "67d0cb95b49d7d078805c0bd" + }, + { + "_id": "67d0cb95b49d7d078805c0c2", + "_tpl": "6686700a2b934a68630a7fe6", + "slotId": "mod_barrel", + "parentId": "67d0cb95b49d7d078805c0bd" + }, + { + "_id": "67d0cb95b49d7d078805c0c3", + "_tpl": "668ea3f68117e4968b0cff4a", + "slotId": "mod_mount_000", + "parentId": "67d0cb95b49d7d078805c0bd" + }, + { + "_id": "67d0cb95b49d7d078805c0c4", + "_tpl": "570fd6c2d2720bc6458b457f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cb95b49d7d078805c0c1" + }, + { + "_id": "67d0cb95b49d7d078805c0c5", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0cb95b49d7d078805c0c3" + } + ] + }, + { + "Id": "67d0cbac0100185b951af235", + "Name": "loud okp uzipro", + "Root": "67d0cbdbb49d7d078805e280", + "Items": [ + { + "_id": "67d0cbdbb49d7d078805e280", + "_tpl": "668e71a8dadf42204c032ce1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cbdbb49d7d078805e281", + "_tpl": "66866f622a2296a8d9099639", + "slotId": "mod_magazine", + "parentId": "67d0cbdbb49d7d078805e280" + }, + { + "_id": "67d0cbdbb49d7d078805e282", + "_tpl": "668670e3fb75ee4a5e02eb16", + "slotId": "mod_muzzle_000", + "parentId": "67d0cbdbb49d7d078805e280" + }, + { + "_id": "67d0cbdbb49d7d078805e283", + "_tpl": "66867310f3734a938b077f79", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d0cbdbb49d7d078805e280" + }, + { + "_id": "67d0cbdbb49d7d078805e284", + "_tpl": "6680326874b8f2050c0b9178", + "slotId": "mod_reciever", + "parentId": "67d0cbdbb49d7d078805e280" + }, + { + "_id": "67d0cbdbb49d7d078805e285", + "_tpl": "668670432b934a68630a7fe8", + "slotId": "mod_barrel", + "parentId": "67d0cbdbb49d7d078805e280" + }, + { + "_id": "67d0cbdbb49d7d078805e286", + "_tpl": "668ea3f68117e4968b0cff4a", + "slotId": "mod_mount_000", + "parentId": "67d0cbdbb49d7d078805e280" + }, + { + "_id": "67d0cbdbb49d7d078805e287", + "_tpl": "570fd79bd2720bc7458b4583", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cbdbb49d7d078805e284" + }, + { + "_id": "67d0cbdbb49d7d078805e288", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0cbdbb49d7d078805e286" + } + ] + }, + { + "Id": "67d0ccc40100185b95be904c", + "Name": "supr holo uzipropistol", + "Root": "67d0ccccb49d7d0788062f48", + "Items": [ + { + "_id": "67d0ccccb49d7d0788062f48", + "_tpl": "6680304edadb7aa61d00cef0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0ccccb49d7d0788062f49", + "_tpl": "66866f622a2296a8d9099639", + "slotId": "mod_magazine", + "parentId": "67d0ccccb49d7d0788062f48" + }, + { + "_id": "67d0ccccb49d7d0788062f4a", + "_tpl": "668670e3fb75ee4a5e02eb16", + "slotId": "mod_muzzle_000", + "parentId": "67d0ccccb49d7d0788062f48" + }, + { + "_id": "67d0ccccb49d7d0788062f4b", + "_tpl": "66867310f3734a938b077f79", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d0ccccb49d7d0788062f48" + }, + { + "_id": "67d0ccccb49d7d0788062f4c", + "_tpl": "6680326874b8f2050c0b9178", + "slotId": "mod_reciever", + "parentId": "67d0ccccb49d7d0788062f48" + }, + { + "_id": "67d0ccccb49d7d0788062f4d", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0ccccb49d7d0788062f48" + }, + { + "_id": "67d0ccccb49d7d0788062f4e", + "_tpl": "668031705014e211b4078046", + "slotId": "mod_barrel", + "parentId": "67d0ccccb49d7d0788062f48" + }, + { + "_id": "67d0ccccb49d7d0788062f4f", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ccccb49d7d0788062f4c" + }, + { + "_id": "67d0ccccb49d7d0788062f50", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle_001", + "parentId": "67d0ccccb49d7d0788062f4e" + } + ] + }, + { + "Id": "67d0ccdf0100185b95da606c", + "Name": "supr ekp uzipropistol", + "Root": "67d0cce4b49d7d0788063d19", + "Items": [ + { + "_id": "67d0cce4b49d7d0788063d19", + "_tpl": "6680304edadb7aa61d00cef0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cce4b49d7d0788063d1a", + "_tpl": "66866f622a2296a8d9099639", + "slotId": "mod_magazine", + "parentId": "67d0cce4b49d7d0788063d19" + }, + { + "_id": "67d0cce4b49d7d0788063d1b", + "_tpl": "668670e3fb75ee4a5e02eb16", + "slotId": "mod_muzzle_000", + "parentId": "67d0cce4b49d7d0788063d19" + }, + { + "_id": "67d0cce4b49d7d0788063d1c", + "_tpl": "66867310f3734a938b077f79", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d0cce4b49d7d0788063d19" + }, + { + "_id": "67d0cce4b49d7d0788063d1d", + "_tpl": "6680326874b8f2050c0b9178", + "slotId": "mod_reciever", + "parentId": "67d0cce4b49d7d0788063d19" + }, + { + "_id": "67d0cce4b49d7d0788063d1e", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0cce4b49d7d0788063d19" + }, + { + "_id": "67d0cce4b49d7d0788063d1f", + "_tpl": "668031705014e211b4078046", + "slotId": "mod_barrel", + "parentId": "67d0cce4b49d7d0788063d19" + }, + { + "_id": "67d0cce4b49d7d0788063d20", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cce4b49d7d0788063d1d" + }, + { + "_id": "67d0cce4b49d7d0788063d21", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle_001", + "parentId": "67d0cce4b49d7d0788063d1f" + } + ] + }, + { + "Id": "67d0ccf30100185b95f403fc", + "Name": "loud holo uzipropistol", + "Root": "67d0cd03b49d7d0788064b8e", + "Items": [ + { + "_id": "67d0cd03b49d7d0788064b8e", + "_tpl": "6680304edadb7aa61d00cef0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cd03b49d7d0788064b8f", + "_tpl": "66866f622a2296a8d9099639", + "slotId": "mod_magazine", + "parentId": "67d0cd03b49d7d0788064b8e" + }, + { + "_id": "67d0cd03b49d7d0788064b90", + "_tpl": "668670e3fb75ee4a5e02eb16", + "slotId": "mod_muzzle_000", + "parentId": "67d0cd03b49d7d0788064b8e" + }, + { + "_id": "67d0cd03b49d7d0788064b91", + "_tpl": "66867310f3734a938b077f79", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d0cd03b49d7d0788064b8e" + }, + { + "_id": "67d0cd03b49d7d0788064b92", + "_tpl": "6680326874b8f2050c0b9178", + "slotId": "mod_reciever", + "parentId": "67d0cd03b49d7d0788064b8e" + }, + { + "_id": "67d0cd03b49d7d0788064b93", + "_tpl": "661e52415be02310ed07a07a", + "slotId": "mod_foregrip", + "parentId": "67d0cd03b49d7d0788064b8e" + }, + { + "_id": "67d0cd03b49d7d0788064b94", + "_tpl": "668031705014e211b4078046", + "slotId": "mod_barrel", + "parentId": "67d0cd03b49d7d0788064b8e" + }, + { + "_id": "67d0cd03b49d7d0788064b95", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cd03b49d7d0788064b92" + }, + { + "_id": "67d0cd03b49d7d0788064b96", + "_tpl": "5cf6935bd7f00c06585fb791", + "slotId": "mod_muzzle_001", + "parentId": "67d0cd03b49d7d0788064b94" + } + ] + }, + { + "Id": "67d0cd100100185b95278dd9", + "Name": "loud mrs uzipropistol", + "Root": "67d0cd14b49d7d0788064b9c", + "Items": [ + { + "_id": "67d0cd14b49d7d0788064b9c", + "_tpl": "6680304edadb7aa61d00cef0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cd14b49d7d0788064b9d", + "_tpl": "66866f622a2296a8d9099639", + "slotId": "mod_magazine", + "parentId": "67d0cd14b49d7d0788064b9c" + }, + { + "_id": "67d0cd14b49d7d0788064b9e", + "_tpl": "668670e3fb75ee4a5e02eb16", + "slotId": "mod_muzzle_000", + "parentId": "67d0cd14b49d7d0788064b9c" + }, + { + "_id": "67d0cd14b49d7d0788064b9f", + "_tpl": "66867310f3734a938b077f79", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d0cd14b49d7d0788064b9c" + }, + { + "_id": "67d0cd14b49d7d0788064ba0", + "_tpl": "6680326874b8f2050c0b9178", + "slotId": "mod_reciever", + "parentId": "67d0cd14b49d7d0788064b9c" + }, + { + "_id": "67d0cd14b49d7d0788064ba1", + "_tpl": "661e52415be02310ed07a07a", + "slotId": "mod_foregrip", + "parentId": "67d0cd14b49d7d0788064b9c" + }, + { + "_id": "67d0cd14b49d7d0788064ba2", + "_tpl": "668031705014e211b4078046", + "slotId": "mod_barrel", + "parentId": "67d0cd14b49d7d0788064b9c" + }, + { + "_id": "67d0cd14b49d7d0788064ba3", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cd14b49d7d0788064ba0" + }, + { + "_id": "67d0cd14b49d7d0788064ba4", + "_tpl": "5cf6935bd7f00c06585fb791", + "slotId": "mod_muzzle_001", + "parentId": "67d0cd14b49d7d0788064ba2" + } + ] + }, + { + "Id": "67d0cd270100185b95d5a50b", + "Name": "supr uh1 uzipropistol", + "Root": "67d0cd2bb49d7d0788065ab9", + "Items": [ + { + "_id": "67d0cd2bb49d7d0788065ab9", + "_tpl": "6680304edadb7aa61d00cef0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cd2bb49d7d0788065aba", + "_tpl": "66866f622a2296a8d9099639", + "slotId": "mod_magazine", + "parentId": "67d0cd2bb49d7d0788065ab9" + }, + { + "_id": "67d0cd2bb49d7d0788065abb", + "_tpl": "668670e3fb75ee4a5e02eb16", + "slotId": "mod_muzzle_000", + "parentId": "67d0cd2bb49d7d0788065ab9" + }, + { + "_id": "67d0cd2bb49d7d0788065abc", + "_tpl": "66867310f3734a938b077f79", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d0cd2bb49d7d0788065ab9" + }, + { + "_id": "67d0cd2bb49d7d0788065abd", + "_tpl": "6680326874b8f2050c0b9178", + "slotId": "mod_reciever", + "parentId": "67d0cd2bb49d7d0788065ab9" + }, + { + "_id": "67d0cd2bb49d7d0788065abe", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0cd2bb49d7d0788065ab9" + }, + { + "_id": "67d0cd2bb49d7d0788065abf", + "_tpl": "668031705014e211b4078046", + "slotId": "mod_barrel", + "parentId": "67d0cd2bb49d7d0788065ab9" + }, + { + "_id": "67d0cd2bb49d7d0788065ac0", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cd2bb49d7d0788065abd" + }, + { + "_id": "67d0cd2bb49d7d0788065ac1", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle_001", + "parentId": "67d0cd2bb49d7d0788065abf" + } + ] + }, + { + "Id": "67d0cecf0100185b95d41e9f", + "Name": "supr ekp pp19", + "Root": "67d0ced7b49d7d078806fb67", + "Items": [ + { + "_id": "67d0ced7b49d7d078806fb67", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0ced7b49d7d078806fb68", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67d0ced7b49d7d078806fb67" + }, + { + "_id": "67d0ced7b49d7d078806fb69", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67d0ced7b49d7d078806fb67" + }, + { + "_id": "67d0ced7b49d7d078806fb6a", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d0ced7b49d7d078806fb67" + }, + { + "_id": "67d0ced7b49d7d078806fb6b", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d0ced7b49d7d078806fb67" + }, + { + "_id": "67d0ced7b49d7d078806fb6c", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle", + "parentId": "67d0ced7b49d7d078806fb67" + }, + { + "_id": "67d0ced7b49d7d078806fb6d", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d0ced7b49d7d078806fb67" + }, + { + "_id": "67d0ced7b49d7d078806fb6e", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ced7b49d7d078806fb67" + }, + { + "_id": "67d0ced7b49d7d078806fb6f", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d0ced7b49d7d078806fb67" + }, + { + "_id": "67d0ced7b49d7d078806fb70", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67d0ced7b49d7d078806fb69" + }, + { + "_id": "67d0ced7b49d7d078806fb71", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0ced7b49d7d078806fb6d" + }, + { + "_id": "67d0ced7b49d7d078806fb72", + "_tpl": "5d4aaa73a4b9365392071175", + "slotId": "mod_handguard", + "parentId": "67d0ced7b49d7d078806fb6f" + }, + { + "_id": "67d0ced7b49d7d078806fb73", + "_tpl": "57cffcd624597763133760c5", + "slotId": "mod_foregrip", + "parentId": "67d0ced7b49d7d078806fb72" + } + ] + }, + { + "Id": "67d0cef50100185b958f3eca", + "Name": "supr ekp pp19 v2", + "Root": "67d0cef9b49d7d0788070bdb", + "Items": [ + { + "_id": "67d0cef9b49d7d0788070bdb", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cef9b49d7d0788070bdc", + "_tpl": "5e2192a498a36665e8337386", + "slotId": "mod_pistol_grip", + "parentId": "67d0cef9b49d7d0788070bdb" + }, + { + "_id": "67d0cef9b49d7d0788070bdd", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67d0cef9b49d7d0788070bdb" + }, + { + "_id": "67d0cef9b49d7d0788070bde", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d0cef9b49d7d0788070bdb" + }, + { + "_id": "67d0cef9b49d7d0788070bdf", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d0cef9b49d7d0788070bdb" + }, + { + "_id": "67d0cef9b49d7d0788070be0", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d0cef9b49d7d0788070bdb" + }, + { + "_id": "67d0cef9b49d7d0788070be1", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d0cef9b49d7d0788070bdb" + }, + { + "_id": "67d0cef9b49d7d0788070be2", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cef9b49d7d0788070bdb" + }, + { + "_id": "67d0cef9b49d7d0788070be3", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d0cef9b49d7d0788070bdb" + }, + { + "_id": "67d0cef9b49d7d0788070be4", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67d0cef9b49d7d0788070bdd" + }, + { + "_id": "67d0cef9b49d7d0788070be5", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cef9b49d7d0788070be1" + }, + { + "_id": "67d0cef9b49d7d0788070be6", + "_tpl": "5d4aaa54a4b9365392071170", + "slotId": "mod_handguard", + "parentId": "67d0cef9b49d7d0788070be3" + }, + { + "_id": "67d0cef9b49d7d0788070be7", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d0cef9b49d7d0788070be6" + }, + { + "_id": "67d0cef9b49d7d0788070be8", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67d0cef9b49d7d0788070be6" + }, + { + "_id": "67d0cef9b49d7d0788070be9", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d0cef9b49d7d0788070be7" + }, + { + "_id": "67d0cef9b49d7d0788070bea", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0cef9b49d7d0788070be8" + } + ] + }, + { + "Id": "67d0cf1d0100185b95d9afb9", + "Name": "supr mrs pp19", + "Root": "67d0cf24b49d7d0788071ae4", + "Items": [ + { + "_id": "67d0cf24b49d7d0788071ae4", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cf24b49d7d0788071ae5", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67d0cf24b49d7d0788071ae4" + }, + { + "_id": "67d0cf24b49d7d0788071ae6", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67d0cf24b49d7d0788071ae4" + }, + { + "_id": "67d0cf24b49d7d0788071ae7", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d0cf24b49d7d0788071ae4" + }, + { + "_id": "67d0cf24b49d7d0788071ae8", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d0cf24b49d7d0788071ae4" + }, + { + "_id": "67d0cf24b49d7d0788071ae9", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle", + "parentId": "67d0cf24b49d7d0788071ae4" + }, + { + "_id": "67d0cf24b49d7d0788071aea", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d0cf24b49d7d0788071ae4" + }, + { + "_id": "67d0cf24b49d7d0788071aeb", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cf24b49d7d0788071ae4" + }, + { + "_id": "67d0cf24b49d7d0788071aec", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d0cf24b49d7d0788071ae4" + }, + { + "_id": "67d0cf24b49d7d0788071aed", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67d0cf24b49d7d0788071ae6" + }, + { + "_id": "67d0cf24b49d7d0788071aee", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cf24b49d7d0788071aea" + }, + { + "_id": "67d0cf24b49d7d0788071aef", + "_tpl": "5648ae314bdc2d3d1c8b457f", + "slotId": "mod_handguard", + "parentId": "67d0cf24b49d7d0788071aec" + }, + { + "_id": "67d0cf24b49d7d0788071af0", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d0cf24b49d7d0788071aef" + }, + { + "_id": "67d0cf24b49d7d0788071af1", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0cf24b49d7d0788071aef" + } + ] + }, + { + "Id": "67d0cf440100185b95369b63", + "Name": "loud 553 pp19", + "Root": "67d0cf4ab49d7d07880728ce", + "Items": [ + { + "_id": "67d0cf4ab49d7d07880728ce", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cf4ab49d7d07880728cf", + "_tpl": "5998517986f7746017232f7e", + "slotId": "mod_pistol_grip", + "parentId": "67d0cf4ab49d7d07880728ce" + }, + { + "_id": "67d0cf4ab49d7d07880728d0", + "_tpl": "599851db86f77467372f0a18", + "slotId": "mod_stock", + "parentId": "67d0cf4ab49d7d07880728ce" + }, + { + "_id": "67d0cf4ab49d7d07880728d1", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d0cf4ab49d7d07880728ce" + }, + { + "_id": "67d0cf4ab49d7d07880728d2", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d0cf4ab49d7d07880728ce" + }, + { + "_id": "67d0cf4ab49d7d07880728d3", + "_tpl": "5998598e86f7740b3f498a86", + "slotId": "mod_muzzle", + "parentId": "67d0cf4ab49d7d07880728ce" + }, + { + "_id": "67d0cf4ab49d7d07880728d4", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d0cf4ab49d7d07880728ce" + }, + { + "_id": "67d0cf4ab49d7d07880728d5", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cf4ab49d7d07880728ce" + }, + { + "_id": "67d0cf4ab49d7d07880728d6", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d0cf4ab49d7d07880728ce" + }, + { + "_id": "67d0cf4ab49d7d07880728d7", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67d0cf4ab49d7d07880728d0" + }, + { + "_id": "67d0cf4ab49d7d07880728d8", + "_tpl": "570fd6c2d2720bc6458b457f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cf4ab49d7d07880728d4" + }, + { + "_id": "67d0cf4ab49d7d07880728d9", + "_tpl": "5c617a5f2e2216000f1e81b3", + "slotId": "mod_handguard", + "parentId": "67d0cf4ab49d7d07880728d6" + }, + { + "_id": "67d0cf4ab49d7d07880728da", + "_tpl": "591af28e86f77414a27a9e1d", + "slotId": "mod_foregrip", + "parentId": "67d0cf4ab49d7d07880728d9" + }, + { + "_id": "67d0cf4ab49d7d07880728db", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0cf4ab49d7d07880728d9" + } + ] + }, + { + "Id": "67d0cf730100185b9503427e", + "Name": "loud ekp pp19", + "Root": "67d0cf76b49d7d07880728ed", + "Items": [ + { + "_id": "67d0cf76b49d7d07880728ed", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cf76b49d7d07880728ee", + "_tpl": "5998517986f7746017232f7e", + "slotId": "mod_pistol_grip", + "parentId": "67d0cf76b49d7d07880728ed" + }, + { + "_id": "67d0cf76b49d7d07880728ef", + "_tpl": "599851db86f77467372f0a18", + "slotId": "mod_stock", + "parentId": "67d0cf76b49d7d07880728ed" + }, + { + "_id": "67d0cf76b49d7d07880728f0", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d0cf76b49d7d07880728ed" + }, + { + "_id": "67d0cf76b49d7d07880728f1", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d0cf76b49d7d07880728ed" + }, + { + "_id": "67d0cf76b49d7d07880728f2", + "_tpl": "5998598e86f7740b3f498a86", + "slotId": "mod_muzzle", + "parentId": "67d0cf76b49d7d07880728ed" + }, + { + "_id": "67d0cf76b49d7d07880728f3", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d0cf76b49d7d07880728ed" + }, + { + "_id": "67d0cf76b49d7d07880728f4", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cf76b49d7d07880728ed" + }, + { + "_id": "67d0cf76b49d7d07880728f5", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d0cf76b49d7d07880728ed" + }, + { + "_id": "67d0cf76b49d7d07880728f6", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67d0cf76b49d7d07880728ef" + }, + { + "_id": "67d0cf76b49d7d07880728f7", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cf76b49d7d07880728f3" + }, + { + "_id": "67d0cf76b49d7d07880728f8", + "_tpl": "5c617a5f2e2216000f1e81b3", + "slotId": "mod_handguard", + "parentId": "67d0cf76b49d7d07880728f5" + }, + { + "_id": "67d0cf76b49d7d07880728f9", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d0cf76b49d7d07880728f8" + }, + { + "_id": "67d0cf76b49d7d07880728fa", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d0cf76b49d7d07880728f8" + } + ] + }, + { + "Id": "67d0cfaf0100185b951e38fd", + "Name": "dupr dp pp19", + "Root": "67d0cfb3b49d7d078807382b", + "Items": [ + { + "_id": "67d0cfb3b49d7d078807382b", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cfb3b49d7d078807382c", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67d0cfb3b49d7d078807382b" + }, + { + "_id": "67d0cfb3b49d7d078807382d", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67d0cfb3b49d7d078807382b" + }, + { + "_id": "67d0cfb3b49d7d078807382e", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d0cfb3b49d7d078807382b" + }, + { + "_id": "67d0cfb3b49d7d078807382f", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d0cfb3b49d7d078807382b" + }, + { + "_id": "67d0cfb3b49d7d0788073830", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d0cfb3b49d7d078807382b" + }, + { + "_id": "67d0cfb3b49d7d0788073831", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cfb3b49d7d078807382b" + }, + { + "_id": "67d0cfb3b49d7d0788073832", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d0cfb3b49d7d078807382b" + }, + { + "_id": "67d0cfb3b49d7d0788073833", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67d0cfb3b49d7d078807382d" + }, + { + "_id": "67d0cfb3b49d7d0788073834", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d0cfb3b49d7d0788073830" + }, + { + "_id": "67d0cfb3b49d7d0788073835", + "_tpl": "647dba3142c479dde701b654", + "slotId": "mod_handguard", + "parentId": "67d0cfb3b49d7d0788073832" + }, + { + "_id": "67d0cfb3b49d7d0788073836", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cfb3b49d7d0788073834" + }, + { + "_id": "67d0cfb3b49d7d0788073837", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67d0cfb3b49d7d0788073835" + } + ] + }, + { + "Id": "67d0cfd50100185b9533ac95", + "Name": "dupr holo pp19", + "Root": "67d0cfdcb49d7d0788074862", + "Items": [ + { + "_id": "67d0cfdcb49d7d0788074862", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0cfdcb49d7d0788074863", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67d0cfdcb49d7d0788074862" + }, + { + "_id": "67d0cfdcb49d7d0788074864", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67d0cfdcb49d7d0788074862" + }, + { + "_id": "67d0cfdcb49d7d0788074865", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d0cfdcb49d7d0788074862" + }, + { + "_id": "67d0cfdcb49d7d0788074866", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d0cfdcb49d7d0788074862" + }, + { + "_id": "67d0cfdcb49d7d0788074867", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d0cfdcb49d7d0788074862" + }, + { + "_id": "67d0cfdcb49d7d0788074868", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cfdcb49d7d0788074862" + }, + { + "_id": "67d0cfdcb49d7d0788074869", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d0cfdcb49d7d0788074862" + }, + { + "_id": "67d0cfdcb49d7d078807486a", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67d0cfdcb49d7d0788074864" + }, + { + "_id": "67d0cfdcb49d7d078807486b", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d0cfdcb49d7d0788074867" + }, + { + "_id": "67d0cfdcb49d7d078807486c", + "_tpl": "647dba3142c479dde701b654", + "slotId": "mod_handguard", + "parentId": "67d0cfdcb49d7d0788074869" + }, + { + "_id": "67d0cfdcb49d7d078807486d", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67d0cfdcb49d7d078807486c" + } + ] + }, + { + "Id": "67d0d00c0100185b959f76eb", + "Name": "stock kedrb", + "Root": "67d0d013b49d7d0788075838", + "Items": [ + { + "_id": "67d0d013b49d7d0788075838", + "_tpl": "57f3c6bd24597738e730fa2f", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0d013b49d7d0788075839", + "_tpl": "57d152ec245977144076ccdf", + "slotId": "mod_pistol_grip", + "parentId": "67d0d013b49d7d0788075838" + }, + { + "_id": "67d0d013b49d7d078807583a", + "_tpl": "57f3c7e024597738ea4ba286", + "slotId": "mod_muzzle", + "parentId": "67d0d013b49d7d0788075838" + }, + { + "_id": "67d0d013b49d7d078807583b", + "_tpl": "57d1519e24597714373db79d", + "slotId": "mod_magazine", + "parentId": "67d0d013b49d7d0788075838" + }, + { + "_id": "67d0d013b49d7d078807583c", + "_tpl": "57f3c8cc2459773ec4480328", + "slotId": "mod_muzzle", + "parentId": "67d0d013b49d7d078807583a" + } + ] + }, + { + "Id": "67d0d01b0100185b95e437a2", + "Name": "stock kedrb 2", + "Root": "67d0d01eb49d7d078807583d", + "Items": [ + { + "_id": "67d0d01eb49d7d078807583d", + "_tpl": "57f3c6bd24597738e730fa2f", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0d01eb49d7d078807583e", + "_tpl": "57d152ec245977144076ccdf", + "slotId": "mod_pistol_grip", + "parentId": "67d0d01eb49d7d078807583d" + }, + { + "_id": "67d0d01eb49d7d078807583f", + "_tpl": "57f3c7e024597738ea4ba286", + "slotId": "mod_muzzle", + "parentId": "67d0d01eb49d7d078807583d" + }, + { + "_id": "67d0d01eb49d7d0788075840", + "_tpl": "57d1519e24597714373db79d", + "slotId": "mod_magazine", + "parentId": "67d0d01eb49d7d078807583d" + }, + { + "_id": "67d0d01eb49d7d0788075841", + "_tpl": "57f3c8cc2459773ec4480328", + "slotId": "mod_muzzle", + "parentId": "67d0d01eb49d7d078807583f" + } + ] + }, + { + "Id": "67d0d02a0100185b95aa2ed6", + "Name": "stock kedrb 3", + "Root": "67d0d02cb49d7d0788075842", + "Items": [ + { + "_id": "67d0d02cb49d7d0788075842", + "_tpl": "57f3c6bd24597738e730fa2f", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d0d02cb49d7d0788075843", + "_tpl": "57d152ec245977144076ccdf", + "slotId": "mod_pistol_grip", + "parentId": "67d0d02cb49d7d0788075842" + }, + { + "_id": "67d0d02cb49d7d0788075844", + "_tpl": "57f3c7e024597738ea4ba286", + "slotId": "mod_muzzle", + "parentId": "67d0d02cb49d7d0788075842" + }, + { + "_id": "67d0d02cb49d7d0788075845", + "_tpl": "57d1519e24597714373db79d", + "slotId": "mod_magazine", + "parentId": "67d0d02cb49d7d0788075842" + }, + { + "_id": "67d0d02cb49d7d0788075846", + "_tpl": "57f3c8cc2459773ec4480328", + "slotId": "mod_muzzle", + "parentId": "67d0d02cb49d7d0788075844" + } + ] + }, + { + "Id": "67d10f050100185b95091055", + "Name": "loud dp klin", + "Root": "67d10f0f1cd676504c037cc2", + "Items": [ + { + "_id": "67d10f0f1cd676504c037cc2", + "_tpl": "57f4c844245977379d5c14d1", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d10f0f1cd676504c037cc3", + "_tpl": "57d152ec245977144076ccdf", + "slotId": "mod_pistol_grip", + "parentId": "67d10f0f1cd676504c037cc2" + }, + { + "_id": "67d10f0f1cd676504c037cc4", + "_tpl": "57d1519e24597714373db79d", + "slotId": "mod_magazine", + "parentId": "67d10f0f1cd676504c037cc2" + }, + { + "_id": "67d10f0f1cd676504c037cc5", + "_tpl": "57ee59b42459771c7b045da5", + "slotId": "mod_mount", + "parentId": "67d10f0f1cd676504c037cc2" + }, + { + "_id": "67d10f0f1cd676504c037cc6", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d10f0f1cd676504c037cc5" + }, + { + "_id": "67d10f0f1cd676504c037cc7", + "_tpl": "5b07dd285acfc4001754240d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d10f0f1cd676504c037cc5" + }, + { + "_id": "67d10f0f1cd676504c037cc8", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d10f0f1cd676504c037cc6" + } + ] + }, + { + "Id": "67d10f2f0100185b9594d57e", + "Name": "loud rmr klin", + "Root": "67d10f381cd676504c037ccd", + "Items": [ + { + "_id": "67d10f381cd676504c037ccd", + "_tpl": "57f4c844245977379d5c14d1", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d10f381cd676504c037cce", + "_tpl": "57d152ec245977144076ccdf", + "slotId": "mod_pistol_grip", + "parentId": "67d10f381cd676504c037ccd" + }, + { + "_id": "67d10f381cd676504c037ccf", + "_tpl": "57d1519e24597714373db79d", + "slotId": "mod_magazine", + "parentId": "67d10f381cd676504c037ccd" + }, + { + "_id": "67d10f381cd676504c037cd0", + "_tpl": "57ee59b42459771c7b045da5", + "slotId": "mod_mount", + "parentId": "67d10f381cd676504c037ccd" + }, + { + "_id": "67d10f381cd676504c037cd1", + "_tpl": "5a33b2c9c4a282000c5a9511", + "slotId": "mod_scope", + "parentId": "67d10f381cd676504c037cd0" + }, + { + "_id": "67d10f381cd676504c037cd2", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d10f381cd676504c037cd0" + }, + { + "_id": "67d10f381cd676504c037cd3", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d10f381cd676504c037cd1" + } + ] + }, + { + "Id": "67d10f4b0100185b95fad795", + "Name": "loud ff3 klin", + "Root": "67d10f501cd676504c037cd7", + "Items": [ + { + "_id": "67d10f501cd676504c037cd7", + "_tpl": "57f4c844245977379d5c14d1", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d10f501cd676504c037cd8", + "_tpl": "57d152ec245977144076ccdf", + "slotId": "mod_pistol_grip", + "parentId": "67d10f501cd676504c037cd7" + }, + { + "_id": "67d10f501cd676504c037cd9", + "_tpl": "57d1519e24597714373db79d", + "slotId": "mod_magazine", + "parentId": "67d10f501cd676504c037cd7" + }, + { + "_id": "67d10f501cd676504c037cda", + "_tpl": "57ee59b42459771c7b045da5", + "slotId": "mod_mount", + "parentId": "67d10f501cd676504c037cd7" + }, + { + "_id": "67d10f501cd676504c037cdb", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d10f501cd676504c037cda" + }, + { + "_id": "67d10f501cd676504c037cdc", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d10f501cd676504c037cda" + }, + { + "_id": "67d10f501cd676504c037cdd", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d10f501cd676504c037cdb" + } + ] + }, + { + "Id": "67d10f7a0100185b9566af46", + "Name": "loud pk06 kedr", + "Root": "67d10f841cd676504c037ce1", + "Items": [ + { + "_id": "67d10f841cd676504c037ce1", + "_tpl": "57d14d2524597714373db789", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d10f841cd676504c037ce2", + "_tpl": "57d152ec245977144076ccdf", + "slotId": "mod_pistol_grip", + "parentId": "67d10f841cd676504c037ce1" + }, + { + "_id": "67d10f841cd676504c037ce3", + "_tpl": "57d1519e24597714373db79d", + "slotId": "mod_magazine", + "parentId": "67d10f841cd676504c037ce1" + }, + { + "_id": "67d10f841cd676504c037ce4", + "_tpl": "57ee59b42459771c7b045da5", + "slotId": "mod_mount", + "parentId": "67d10f841cd676504c037ce1" + }, + { + "_id": "67d10f841cd676504c037ce5", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d10f841cd676504c037ce4" + }, + { + "_id": "67d10f841cd676504c037ce6", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d10f841cd676504c037ce4" + } + ] + }, + { + "Id": "67d10f970100185b95538b88", + "Name": "loud dp kedr", + "Root": "67d10f9a1cd676504c037d10", + "Items": [ + { + "_id": "67d10f9a1cd676504c037d10", + "_tpl": "57d14d2524597714373db789", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d10f9a1cd676504c037d11", + "_tpl": "57d152ec245977144076ccdf", + "slotId": "mod_pistol_grip", + "parentId": "67d10f9a1cd676504c037d10" + }, + { + "_id": "67d10f9a1cd676504c037d12", + "_tpl": "57d1519e24597714373db79d", + "slotId": "mod_magazine", + "parentId": "67d10f9a1cd676504c037d10" + }, + { + "_id": "67d10f9a1cd676504c037d13", + "_tpl": "57ee59b42459771c7b045da5", + "slotId": "mod_mount", + "parentId": "67d10f9a1cd676504c037d10" + }, + { + "_id": "67d10f9a1cd676504c037d14", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d10f9a1cd676504c037d13" + }, + { + "_id": "67d10f9a1cd676504c037d15", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d10f9a1cd676504c037d13" + }, + { + "_id": "67d10f9a1cd676504c037d16", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d10f9a1cd676504c037d14" + } + ] + }, + { + "Id": "67d10fb00100185b95707caa", + "Name": "loud ff3 kedr", + "Root": "67d10fb41cd676504c037d1a", + "Items": [ + { + "_id": "67d10fb41cd676504c037d1a", + "_tpl": "57d14d2524597714373db789", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d10fb41cd676504c037d1b", + "_tpl": "57d152ec245977144076ccdf", + "slotId": "mod_pistol_grip", + "parentId": "67d10fb41cd676504c037d1a" + }, + { + "_id": "67d10fb41cd676504c037d1c", + "_tpl": "57d1519e24597714373db79d", + "slotId": "mod_magazine", + "parentId": "67d10fb41cd676504c037d1a" + }, + { + "_id": "67d10fb41cd676504c037d1d", + "_tpl": "57ee59b42459771c7b045da5", + "slotId": "mod_mount", + "parentId": "67d10fb41cd676504c037d1a" + }, + { + "_id": "67d10fb41cd676504c037d1e", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d10fb41cd676504c037d1d" + }, + { + "_id": "67d10fb41cd676504c037d1f", + "_tpl": "560d657b4bdc2da74d8b4572", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d10fb41cd676504c037d1d" + }, + { + "_id": "67d10fb41cd676504c037d20", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d10fb41cd676504c037d1e" + } + ] + }, + { + "Id": "67d110980100185b957f98cd", + "Name": "loud okp saiga9", + "Root": "67d110a01cd676504c038d17", + "Items": [ + { + "_id": "67d110a01cd676504c038d17", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d110a01cd676504c038d18", + "_tpl": "5998517986f7746017232f7e", + "slotId": "mod_pistol_grip", + "parentId": "67d110a01cd676504c038d17" + }, + { + "_id": "67d110a01cd676504c038d19", + "_tpl": "599851db86f77467372f0a18", + "slotId": "mod_stock", + "parentId": "67d110a01cd676504c038d17" + }, + { + "_id": "67d110a01cd676504c038d1a", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d110a01cd676504c038d17" + }, + { + "_id": "67d110a01cd676504c038d1b", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d110a01cd676504c038d17" + }, + { + "_id": "67d110a01cd676504c038d1c", + "_tpl": "5998597786f77414ea6da093", + "slotId": "mod_muzzle", + "parentId": "67d110a01cd676504c038d17" + }, + { + "_id": "67d110a01cd676504c038d1d", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d110a01cd676504c038d17" + }, + { + "_id": "67d110a01cd676504c038d1e", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d110a01cd676504c038d17" + }, + { + "_id": "67d110a01cd676504c038d1f", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d110a01cd676504c038d17" + }, + { + "_id": "67d110a01cd676504c038d20", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67d110a01cd676504c038d19" + }, + { + "_id": "67d110a01cd676504c038d21", + "_tpl": "570fd79bd2720bc7458b4583", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d110a01cd676504c038d1d" + }, + { + "_id": "67d110a01cd676504c038d22", + "_tpl": "5d1b198cd7ad1a604869ad72", + "slotId": "mod_handguard", + "parentId": "67d110a01cd676504c038d1f" + }, + { + "_id": "67d110a01cd676504c038d23", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d110a01cd676504c038d22" + } + ] + }, + { + "Id": "67d110be0100185b95cc5130", + "Name": "supr pk06 saiga9", + "Root": "67d110c81cd676504c039cbd", + "Items": [ + { + "_id": "67d110c81cd676504c039cbd", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d110c81cd676504c039cbe", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67d110c81cd676504c039cbd" + }, + { + "_id": "67d110c81cd676504c039cbf", + "_tpl": "599851db86f77467372f0a18", + "slotId": "mod_stock", + "parentId": "67d110c81cd676504c039cbd" + }, + { + "_id": "67d110c81cd676504c039cc0", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d110c81cd676504c039cbd" + }, + { + "_id": "67d110c81cd676504c039cc1", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d110c81cd676504c039cbd" + }, + { + "_id": "67d110c81cd676504c039cc2", + "_tpl": "59bfc5c886f7743bf6794e62", + "slotId": "mod_muzzle", + "parentId": "67d110c81cd676504c039cbd" + }, + { + "_id": "67d110c81cd676504c039cc3", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d110c81cd676504c039cbd" + }, + { + "_id": "67d110c81cd676504c039cc4", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d110c81cd676504c039cbd" + }, + { + "_id": "67d110c81cd676504c039cc5", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d110c81cd676504c039cbd" + }, + { + "_id": "67d110c81cd676504c039cc6", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67d110c81cd676504c039cbf" + }, + { + "_id": "67d110c81cd676504c039cc7", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d110c81cd676504c039cc3" + }, + { + "_id": "67d110c81cd676504c039cc8", + "_tpl": "5d1b198cd7ad1a604869ad72", + "slotId": "mod_handguard", + "parentId": "67d110c81cd676504c039cc5" + }, + { + "_id": "67d110c81cd676504c039cc9", + "_tpl": "651a8bf3a8520e48047bf708", + "slotId": "mod_foregrip", + "parentId": "67d110c81cd676504c039cc8" + }, + { + "_id": "67d110c81cd676504c039cca", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_001", + "parentId": "67d110c81cd676504c039cc8" + }, + { + "_id": "67d110c81cd676504c039ccb", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d110c81cd676504c039cca" + } + ] + }, + { + "Id": "67d110ec0100185b95da53c9", + "Name": "supr srs saiga9", + "Root": "67d110f21cd676504c039cd6", + "Items": [ + { + "_id": "67d110f21cd676504c039cd6", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d110f21cd676504c039cd7", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67d110f21cd676504c039cd6" + }, + { + "_id": "67d110f21cd676504c039cd8", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67d110f21cd676504c039cd6" + }, + { + "_id": "67d110f21cd676504c039cd9", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d110f21cd676504c039cd6" + }, + { + "_id": "67d110f21cd676504c039cda", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d110f21cd676504c039cd6" + }, + { + "_id": "67d110f21cd676504c039cdb", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d110f21cd676504c039cd6" + }, + { + "_id": "67d110f21cd676504c039cdc", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d110f21cd676504c039cd6" + }, + { + "_id": "67d110f21cd676504c039cdd", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d110f21cd676504c039cd6" + }, + { + "_id": "67d110f21cd676504c039cde", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d110f21cd676504c039cd6" + }, + { + "_id": "67d110f21cd676504c039cdf", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67d110f21cd676504c039cd8" + }, + { + "_id": "67d110f21cd676504c039ce0", + "_tpl": "5d2da1e948f035477b1ce2ba", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d110f21cd676504c039cdc" + }, + { + "_id": "67d110f21cd676504c039ce1", + "_tpl": "5d4aaa54a4b9365392071170", + "slotId": "mod_handguard", + "parentId": "67d110f21cd676504c039cde" + }, + { + "_id": "67d110f21cd676504c039ce2", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d110f21cd676504c039ce1" + } + ] + }, + { + "Id": "67d111210100185b952e9b4c", + "Name": "supr holo saiga9", + "Root": "67d111241cd676504c03ab85", + "Items": [ + { + "_id": "67d111241cd676504c03ab85", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d111241cd676504c03ab86", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67d111241cd676504c03ab85" + }, + { + "_id": "67d111241cd676504c03ab87", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67d111241cd676504c03ab85" + }, + { + "_id": "67d111241cd676504c03ab88", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d111241cd676504c03ab85" + }, + { + "_id": "67d111241cd676504c03ab89", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d111241cd676504c03ab85" + }, + { + "_id": "67d111241cd676504c03ab8a", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d111241cd676504c03ab85" + }, + { + "_id": "67d111241cd676504c03ab8b", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d111241cd676504c03ab85" + }, + { + "_id": "67d111241cd676504c03ab8c", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d111241cd676504c03ab85" + }, + { + "_id": "67d111241cd676504c03ab8d", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d111241cd676504c03ab85" + }, + { + "_id": "67d111241cd676504c03ab8e", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67d111241cd676504c03ab87" + }, + { + "_id": "67d111241cd676504c03ab8f", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d111241cd676504c03ab8b" + }, + { + "_id": "67d111241cd676504c03ab90", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "slotId": "mod_handguard", + "parentId": "67d111241cd676504c03ab8d" + }, + { + "_id": "67d111241cd676504c03ab91", + "_tpl": "591af28e86f77414a27a9e1d", + "slotId": "mod_foregrip", + "parentId": "67d111241cd676504c03ab90" + }, + { + "_id": "67d111241cd676504c03ab92", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d111241cd676504c03ab90" + } + ] + }, + { + "Id": "67d111660100185b956ab949", + "Name": "supr 553 saiga9", + "Root": "67d1116c1cd676504c03baaa", + "Items": [ + { + "_id": "67d1116c1cd676504c03baaa", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1116c1cd676504c03baab", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67d1116c1cd676504c03baaa" + }, + { + "_id": "67d1116c1cd676504c03baac", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67d1116c1cd676504c03baaa" + }, + { + "_id": "67d1116c1cd676504c03baad", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d1116c1cd676504c03baaa" + }, + { + "_id": "67d1116c1cd676504c03baae", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d1116c1cd676504c03baaa" + }, + { + "_id": "67d1116c1cd676504c03baaf", + "_tpl": "59985a8086f77414ec448d1a", + "slotId": "mod_reciever", + "parentId": "67d1116c1cd676504c03baaa" + }, + { + "_id": "67d1116c1cd676504c03bab0", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1116c1cd676504c03baaa" + }, + { + "_id": "67d1116c1cd676504c03bab1", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d1116c1cd676504c03baaa" + }, + { + "_id": "67d1116c1cd676504c03bab2", + "_tpl": "5b222d405acfc400153af4fe", + "slotId": "mod_stock", + "parentId": "67d1116c1cd676504c03baac" + }, + { + "_id": "67d1116c1cd676504c03bab3", + "_tpl": "5a9d56c8a2750c0032157146", + "slotId": "mod_handguard", + "parentId": "67d1116c1cd676504c03bab1" + }, + { + "_id": "67d1116c1cd676504c03bab4", + "_tpl": "570fd6c2d2720bc6458b457f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1116c1cd676504c03bab3" + }, + { + "_id": "67d1116c1cd676504c03bab5", + "_tpl": "5fc0f9b5d724d907e2077d82", + "slotId": "mod_mount_000", + "parentId": "67d1116c1cd676504c03bab3" + } + ] + }, + { + "Id": "67d111880100185b95cb2e19", + "Name": "supr ekp saiga9", + "Root": "67d111931cd676504c03c9db", + "Items": [ + { + "_id": "67d111931cd676504c03c9db", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d111931cd676504c03c9dc", + "_tpl": "5b30ac585acfc433000eb79c", + "slotId": "mod_pistol_grip", + "parentId": "67d111931cd676504c03c9db" + }, + { + "_id": "67d111931cd676504c03c9dd", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67d111931cd676504c03c9db" + }, + { + "_id": "67d111931cd676504c03c9de", + "_tpl": "599860ac86f77436b225ed1a", + "slotId": "mod_magazine", + "parentId": "67d111931cd676504c03c9db" + }, + { + "_id": "67d111931cd676504c03c9df", + "_tpl": "59bfc5c886f7743bf6794e62", + "slotId": "mod_muzzle", + "parentId": "67d111931cd676504c03c9db" + }, + { + "_id": "67d111931cd676504c03c9e0", + "_tpl": "59985a6c86f77414ec448d17", + "slotId": "mod_reciever", + "parentId": "67d111931cd676504c03c9db" + }, + { + "_id": "67d111931cd676504c03c9e1", + "_tpl": "599860e986f7743bb57573a6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d111931cd676504c03c9db" + }, + { + "_id": "67d111931cd676504c03c9e2", + "_tpl": "59ccd11386f77428f24a488f", + "slotId": "mod_gas_block", + "parentId": "67d111931cd676504c03c9db" + }, + { + "_id": "67d111931cd676504c03c9e3", + "_tpl": "5b222d405acfc400153af4fe", + "slotId": "mod_stock", + "parentId": "67d111931cd676504c03c9dd" + }, + { + "_id": "67d111931cd676504c03c9e4", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d111931cd676504c03c9e0" + }, + { + "_id": "67d111931cd676504c03c9e5", + "_tpl": "5a9d56c8a2750c0032157146", + "slotId": "mod_handguard", + "parentId": "67d111931cd676504c03c9e2" + }, + { + "_id": "67d111931cd676504c03c9e6", + "_tpl": "5fc0f9b5d724d907e2077d82", + "slotId": "mod_mount_000", + "parentId": "67d111931cd676504c03c9e5" + }, + { + "_id": "67d111931cd676504c03c9e7", + "_tpl": "5a9d6d00a2750c5c985b5305", + "slotId": "mod_mount_002", + "parentId": "67d111931cd676504c03c9e5" + }, + { + "_id": "67d111931cd676504c03c9e8", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d111931cd676504c03c9e7" + } + ] + }, + { + "Id": "67d111ba0100185b95045aef", + "Name": "stock ppsh", + "Root": "67d111bf1cd676504c03c9f2", + "Items": [ + { + "_id": "67d111bf1cd676504c03c9f2", + "_tpl": "5ea03f7400685063ec28bfa8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d111bf1cd676504c03c9f3", + "_tpl": "5ea03e9400685063ec28bfa4", + "slotId": "mod_stock", + "parentId": "67d111bf1cd676504c03c9f2" + }, + { + "_id": "67d111bf1cd676504c03c9f4", + "_tpl": "5ea034f65aad6446a939737e", + "slotId": "mod_magazine", + "parentId": "67d111bf1cd676504c03c9f2" + }, + { + "_id": "67d111bf1cd676504c03c9f5", + "_tpl": "5ea03e5009aa976f2e7a514b", + "slotId": "mod_reciever", + "parentId": "67d111bf1cd676504c03c9f2" + }, + { + "_id": "67d111bf1cd676504c03c9f6", + "_tpl": "5ea02bb600685063ec28bfa1", + "slotId": "mod_barrel", + "parentId": "67d111bf1cd676504c03c9f2" + } + ] + }, + { + "Id": "67d111ca0100185b95f4df81", + "Name": "stock ppsh 2", + "Root": "67d111cd1cd676504c03c9f8", + "Items": [ + { + "_id": "67d111cd1cd676504c03c9f8", + "_tpl": "5ea03f7400685063ec28bfa8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d111cd1cd676504c03c9f9", + "_tpl": "5ea03e9400685063ec28bfa4", + "slotId": "mod_stock", + "parentId": "67d111cd1cd676504c03c9f8" + }, + { + "_id": "67d111cd1cd676504c03c9fa", + "_tpl": "5ea034f65aad6446a939737e", + "slotId": "mod_magazine", + "parentId": "67d111cd1cd676504c03c9f8" + }, + { + "_id": "67d111cd1cd676504c03c9fb", + "_tpl": "5ea03e5009aa976f2e7a514b", + "slotId": "mod_reciever", + "parentId": "67d111cd1cd676504c03c9f8" + }, + { + "_id": "67d111cd1cd676504c03c9fc", + "_tpl": "5ea02bb600685063ec28bfa1", + "slotId": "mod_barrel", + "parentId": "67d111cd1cd676504c03c9f8" + } + ] + }, + { + "Id": "67d111d60100185b95a4ceb2", + "Name": "stock ppsh 3", + "Root": "67d111d81cd676504c03c9fe", + "Items": [ + { + "_id": "67d111d81cd676504c03c9fe", + "_tpl": "5ea03f7400685063ec28bfa8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d111d81cd676504c03c9ff", + "_tpl": "5ea03e9400685063ec28bfa4", + "slotId": "mod_stock", + "parentId": "67d111d81cd676504c03c9fe" + }, + { + "_id": "67d111d81cd676504c03ca00", + "_tpl": "5ea034f65aad6446a939737e", + "slotId": "mod_magazine", + "parentId": "67d111d81cd676504c03c9fe" + }, + { + "_id": "67d111d81cd676504c03ca01", + "_tpl": "5ea03e5009aa976f2e7a514b", + "slotId": "mod_reciever", + "parentId": "67d111d81cd676504c03c9fe" + }, + { + "_id": "67d111d81cd676504c03ca02", + "_tpl": "5ea02bb600685063ec28bfa1", + "slotId": "mod_barrel", + "parentId": "67d111d81cd676504c03c9fe" + } + ] + }, + { + "Id": "67d111ea0100185b959e5d60", + "Name": "stock ppsh 4", + "Root": "67d111ed1cd676504c03d977", + "Items": [ + { + "_id": "67d111ed1cd676504c03d977", + "_tpl": "5ea03f7400685063ec28bfa8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d111ed1cd676504c03d978", + "_tpl": "5ea03e9400685063ec28bfa4", + "slotId": "mod_stock", + "parentId": "67d111ed1cd676504c03d977" + }, + { + "_id": "67d111ed1cd676504c03d979", + "_tpl": "5ea034f65aad6446a939737e", + "slotId": "mod_magazine", + "parentId": "67d111ed1cd676504c03d977" + }, + { + "_id": "67d111ed1cd676504c03d97a", + "_tpl": "5ea03e5009aa976f2e7a514b", + "slotId": "mod_reciever", + "parentId": "67d111ed1cd676504c03d977" + }, + { + "_id": "67d111ed1cd676504c03d97b", + "_tpl": "5ea02bb600685063ec28bfa1", + "slotId": "mod_barrel", + "parentId": "67d111ed1cd676504c03d977" + } + ] + }, + { + "Id": "67d113290100185b958a2966", + "Name": "supr ekp sr2m", + "Root": "67d113301cd676504c0413b1", + "Items": [ + { + "_id": "67d113301cd676504c0413b1", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d113301cd676504c0413b2", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "slotId": "mod_magazine", + "parentId": "67d113301cd676504c0413b1" + }, + { + "_id": "67d113301cd676504c0413b3", + "_tpl": "62e2a7138e1ac9380579c122", + "slotId": "mod_muzzle", + "parentId": "67d113301cd676504c0413b1" + }, + { + "_id": "67d113301cd676504c0413b4", + "_tpl": "62e292e7b6c0ee2f230cee00", + "slotId": "mod_stock", + "parentId": "67d113301cd676504c0413b1" + }, + { + "_id": "67d113301cd676504c0413b5", + "_tpl": "62e27a7865f0b1592a49e17b", + "slotId": "mod_reciever", + "parentId": "67d113301cd676504c0413b1" + }, + { + "_id": "67d113301cd676504c0413b6", + "_tpl": "62e15547db1a5c41971c1b5e", + "slotId": "mod_handguard", + "parentId": "67d113301cd676504c0413b1" + }, + { + "_id": "67d113301cd676504c0413b7", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "slotId": "mod_pistolgrip", + "parentId": "67d113301cd676504c0413b1" + }, + { + "_id": "67d113301cd676504c0413b8", + "_tpl": "62ff9920fe938a24c90c10d2", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d113301cd676504c0413b5" + }, + { + "_id": "67d113301cd676504c0413b9", + "_tpl": "62ed189fb3608410ef5a2bfc", + "slotId": "mod_mount_000", + "parentId": "67d113301cd676504c0413b6" + }, + { + "_id": "67d113301cd676504c0413ba", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d113301cd676504c0413b9" + } + ] + }, + { + "Id": "67d1133e0100185b9542c603", + "Name": "supr ekp sr2m 2", + "Root": "67d113421cd676504c0413be", + "Items": [ + { + "_id": "67d113421cd676504c0413be", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d113421cd676504c0413bf", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "slotId": "mod_magazine", + "parentId": "67d113421cd676504c0413be" + }, + { + "_id": "67d113421cd676504c0413c0", + "_tpl": "62e2a7138e1ac9380579c122", + "slotId": "mod_muzzle", + "parentId": "67d113421cd676504c0413be" + }, + { + "_id": "67d113421cd676504c0413c1", + "_tpl": "62e292e7b6c0ee2f230cee00", + "slotId": "mod_stock", + "parentId": "67d113421cd676504c0413be" + }, + { + "_id": "67d113421cd676504c0413c2", + "_tpl": "62e27a7865f0b1592a49e17b", + "slotId": "mod_reciever", + "parentId": "67d113421cd676504c0413be" + }, + { + "_id": "67d113421cd676504c0413c3", + "_tpl": "62e15547db1a5c41971c1b5e", + "slotId": "mod_handguard", + "parentId": "67d113421cd676504c0413be" + }, + { + "_id": "67d113421cd676504c0413c4", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "slotId": "mod_pistolgrip", + "parentId": "67d113421cd676504c0413be" + }, + { + "_id": "67d113421cd676504c0413c5", + "_tpl": "62ff9920fe938a24c90c10d2", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d113421cd676504c0413c2" + }, + { + "_id": "67d113421cd676504c0413c6", + "_tpl": "62ed189fb3608410ef5a2bfc", + "slotId": "mod_mount_000", + "parentId": "67d113421cd676504c0413c3" + }, + { + "_id": "67d113421cd676504c0413c7", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d113421cd676504c0413c6" + } + ] + }, + { + "Id": "67d113530100185b95c99f99", + "Name": "loud ekp sr2m", + "Root": "67d113571cd676504c042326", + "Items": [ + { + "_id": "67d113571cd676504c042326", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d113571cd676504c042327", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "slotId": "mod_magazine", + "parentId": "67d113571cd676504c042326" + }, + { + "_id": "67d113571cd676504c042328", + "_tpl": "62e2a754b6c0ee2f230cee0f", + "slotId": "mod_muzzle", + "parentId": "67d113571cd676504c042326" + }, + { + "_id": "67d113571cd676504c042329", + "_tpl": "62e292e7b6c0ee2f230cee00", + "slotId": "mod_stock", + "parentId": "67d113571cd676504c042326" + }, + { + "_id": "67d113571cd676504c04232a", + "_tpl": "62e27a7865f0b1592a49e17b", + "slotId": "mod_reciever", + "parentId": "67d113571cd676504c042326" + }, + { + "_id": "67d113571cd676504c04232b", + "_tpl": "62e15547db1a5c41971c1b5e", + "slotId": "mod_handguard", + "parentId": "67d113571cd676504c042326" + }, + { + "_id": "67d113571cd676504c04232c", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "slotId": "mod_pistolgrip", + "parentId": "67d113571cd676504c042326" + }, + { + "_id": "67d113571cd676504c04232d", + "_tpl": "62ff9920fe938a24c90c10d2", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d113571cd676504c04232a" + }, + { + "_id": "67d113571cd676504c04232e", + "_tpl": "62ed189fb3608410ef5a2bfc", + "slotId": "mod_mount_000", + "parentId": "67d113571cd676504c04232b" + }, + { + "_id": "67d113571cd676504c04232f", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d113571cd676504c04232e" + } + ] + }, + { + "Id": "67d1136a0100185b95de1ccb", + "Name": "supr holo sr2m", + "Root": "67d1136d1cd676504c042361", + "Items": [ + { + "_id": "67d1136d1cd676504c042361", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1136d1cd676504c042362", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "slotId": "mod_magazine", + "parentId": "67d1136d1cd676504c042361" + }, + { + "_id": "67d1136d1cd676504c042363", + "_tpl": "62e2a7138e1ac9380579c122", + "slotId": "mod_muzzle", + "parentId": "67d1136d1cd676504c042361" + }, + { + "_id": "67d1136d1cd676504c042364", + "_tpl": "62e292e7b6c0ee2f230cee00", + "slotId": "mod_stock", + "parentId": "67d1136d1cd676504c042361" + }, + { + "_id": "67d1136d1cd676504c042365", + "_tpl": "62e27a7865f0b1592a49e17b", + "slotId": "mod_reciever", + "parentId": "67d1136d1cd676504c042361" + }, + { + "_id": "67d1136d1cd676504c042366", + "_tpl": "62e15547db1a5c41971c1b5e", + "slotId": "mod_handguard", + "parentId": "67d1136d1cd676504c042361" + }, + { + "_id": "67d1136d1cd676504c042367", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "slotId": "mod_pistolgrip", + "parentId": "67d1136d1cd676504c042361" + }, + { + "_id": "67d1136d1cd676504c042368", + "_tpl": "62e281349ecd3f493f6df954", + "slotId": "mod_mount", + "parentId": "67d1136d1cd676504c042365" + }, + { + "_id": "67d1136d1cd676504c042369", + "_tpl": "62ed189fb3608410ef5a2bfc", + "slotId": "mod_mount_000", + "parentId": "67d1136d1cd676504c042366" + }, + { + "_id": "67d1136d1cd676504c04236a", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1136d1cd676504c042368" + }, + { + "_id": "67d1136d1cd676504c04236b", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1136d1cd676504c042369" + } + ] + }, + { + "Id": "67d113850100185b950d6707", + "Name": "supr uh1 sr2m", + "Root": "67d113881cd676504c04236f", + "Items": [ + { + "_id": "67d113881cd676504c04236f", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d113881cd676504c042370", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "slotId": "mod_magazine", + "parentId": "67d113881cd676504c04236f" + }, + { + "_id": "67d113881cd676504c042371", + "_tpl": "62e2a7138e1ac9380579c122", + "slotId": "mod_muzzle", + "parentId": "67d113881cd676504c04236f" + }, + { + "_id": "67d113881cd676504c042372", + "_tpl": "62e292e7b6c0ee2f230cee00", + "slotId": "mod_stock", + "parentId": "67d113881cd676504c04236f" + }, + { + "_id": "67d113881cd676504c042373", + "_tpl": "62e27a7865f0b1592a49e17b", + "slotId": "mod_reciever", + "parentId": "67d113881cd676504c04236f" + }, + { + "_id": "67d113881cd676504c042374", + "_tpl": "62e15547db1a5c41971c1b5e", + "slotId": "mod_handguard", + "parentId": "67d113881cd676504c04236f" + }, + { + "_id": "67d113881cd676504c042375", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "slotId": "mod_pistolgrip", + "parentId": "67d113881cd676504c04236f" + }, + { + "_id": "67d113881cd676504c042376", + "_tpl": "62e281349ecd3f493f6df954", + "slotId": "mod_mount", + "parentId": "67d113881cd676504c042373" + }, + { + "_id": "67d113881cd676504c042377", + "_tpl": "62ed189fb3608410ef5a2bfc", + "slotId": "mod_mount_000", + "parentId": "67d113881cd676504c042374" + }, + { + "_id": "67d113881cd676504c042378", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d113881cd676504c042376" + }, + { + "_id": "67d113881cd676504c042379", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d113881cd676504c042377" + } + ] + }, + { + "Id": "67d113a30100185b95a3483a", + "Name": "supr dp sr2m", + "Root": "67d113a61cd676504c043337", + "Items": [ + { + "_id": "67d113a61cd676504c043337", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d113a61cd676504c043338", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "slotId": "mod_magazine", + "parentId": "67d113a61cd676504c043337" + }, + { + "_id": "67d113a61cd676504c043339", + "_tpl": "62e2a7138e1ac9380579c122", + "slotId": "mod_muzzle", + "parentId": "67d113a61cd676504c043337" + }, + { + "_id": "67d113a61cd676504c04333a", + "_tpl": "62e292e7b6c0ee2f230cee00", + "slotId": "mod_stock", + "parentId": "67d113a61cd676504c043337" + }, + { + "_id": "67d113a61cd676504c04333b", + "_tpl": "62e27a7865f0b1592a49e17b", + "slotId": "mod_reciever", + "parentId": "67d113a61cd676504c043337" + }, + { + "_id": "67d113a61cd676504c04333c", + "_tpl": "62e15547db1a5c41971c1b5e", + "slotId": "mod_handguard", + "parentId": "67d113a61cd676504c043337" + }, + { + "_id": "67d113a61cd676504c04333d", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "slotId": "mod_pistolgrip", + "parentId": "67d113a61cd676504c043337" + }, + { + "_id": "67d113a61cd676504c04333e", + "_tpl": "62e281349ecd3f493f6df954", + "slotId": "mod_mount", + "parentId": "67d113a61cd676504c04333b" + }, + { + "_id": "67d113a61cd676504c04333f", + "_tpl": "62ed189fb3608410ef5a2bfc", + "slotId": "mod_mount_000", + "parentId": "67d113a61cd676504c04333c" + }, + { + "_id": "67d113a61cd676504c043340", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d113a61cd676504c04333e" + }, + { + "_id": "67d113a61cd676504c043341", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d113a61cd676504c043340" + }, + { + "_id": "67d113a61cd676504c043342", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d113a61cd676504c04333f" + } + ] + }, + { + "Id": "67d113d00100185b950119b7", + "Name": "supr pk06 sr2m", + "Root": "67d113da1cd676504c0442ff", + "Items": [ + { + "_id": "67d113da1cd676504c0442ff", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d113da1cd676504c044300", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "slotId": "mod_magazine", + "parentId": "67d113da1cd676504c0442ff" + }, + { + "_id": "67d113da1cd676504c044301", + "_tpl": "62e2a7138e1ac9380579c122", + "slotId": "mod_muzzle", + "parentId": "67d113da1cd676504c0442ff" + }, + { + "_id": "67d113da1cd676504c044302", + "_tpl": "62e292e7b6c0ee2f230cee00", + "slotId": "mod_stock", + "parentId": "67d113da1cd676504c0442ff" + }, + { + "_id": "67d113da1cd676504c044303", + "_tpl": "62e27a7865f0b1592a49e17b", + "slotId": "mod_reciever", + "parentId": "67d113da1cd676504c0442ff" + }, + { + "_id": "67d113da1cd676504c044304", + "_tpl": "62e15547db1a5c41971c1b5e", + "slotId": "mod_handguard", + "parentId": "67d113da1cd676504c0442ff" + }, + { + "_id": "67d113da1cd676504c044305", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "slotId": "mod_pistolgrip", + "parentId": "67d113da1cd676504c0442ff" + }, + { + "_id": "67d113da1cd676504c044306", + "_tpl": "62e281349ecd3f493f6df954", + "slotId": "mod_mount", + "parentId": "67d113da1cd676504c044303" + }, + { + "_id": "67d113da1cd676504c044307", + "_tpl": "62ed189fb3608410ef5a2bfc", + "slotId": "mod_mount_000", + "parentId": "67d113da1cd676504c044304" + }, + { + "_id": "67d113da1cd676504c044308", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d113da1cd676504c044306" + }, + { + "_id": "67d113da1cd676504c044309", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d113da1cd676504c044307" + } + ] + }, + { + "Id": "67d114bf0100185b959b50e7", + "Name": "loud holo mpx", + "Root": "67d116261cd676504c04c94a", + "Items": [ + { + "_id": "67d116261cd676504c04c94a", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d116261cd676504c04c94b", + "_tpl": "5894a51286f77426d13baf02", + "slotId": "mod_pistol_grip", + "parentId": "67d116261cd676504c04c94a" + }, + { + "_id": "67d116261cd676504c04c94c", + "_tpl": "5c5db6742e2216000f1b2852", + "slotId": "mod_magazine", + "parentId": "67d116261cd676504c04c94a" + }, + { + "_id": "67d116261cd676504c04c94d", + "_tpl": "5894a5b586f77426d2590767", + "slotId": "mod_reciever", + "parentId": "67d116261cd676504c04c94a" + }, + { + "_id": "67d116261cd676504c04c94e", + "_tpl": "5894a13e86f7742405482982", + "slotId": "mod_stock", + "parentId": "67d116261cd676504c04c94a" + }, + { + "_id": "67d116261cd676504c04c94f", + "_tpl": "58949edd86f77409483e16a9", + "slotId": "mod_charge", + "parentId": "67d116261cd676504c04c94a" + }, + { + "_id": "67d116261cd676504c04c950", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d116261cd676504c04c94d" + }, + { + "_id": "67d116261cd676504c04c951", + "_tpl": "5894a2c386f77427140b8342", + "slotId": "mod_barrel", + "parentId": "67d116261cd676504c04c94d" + }, + { + "_id": "67d116261cd676504c04c952", + "_tpl": "5894a42086f77426d2590762", + "slotId": "mod_handguard", + "parentId": "67d116261cd676504c04c94d" + }, + { + "_id": "67d116261cd676504c04c953", + "_tpl": "5894a81786f77427140b8347", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d116261cd676504c04c94d" + }, + { + "_id": "67d116261cd676504c04c954", + "_tpl": "5cf6935bd7f00c06585fb791", + "slotId": "mod_muzzle", + "parentId": "67d116261cd676504c04c951" + }, + { + "_id": "67d116261cd676504c04c955", + "_tpl": "5894a73486f77426d259076c", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d116261cd676504c04c952" + }, + { + "_id": "67d116261cd676504c04c956", + "_tpl": "58a56f8d86f774651579314c", + "slotId": "mod_mount_000", + "parentId": "67d116261cd676504c04c952" + }, + { + "_id": "67d116261cd676504c04c957", + "_tpl": "58a5c12e86f7745d585a2b9e", + "slotId": "mod_mount_001", + "parentId": "67d116261cd676504c04c952" + }, + { + "_id": "67d116261cd676504c04c958", + "_tpl": "58a56f8d86f774651579314c", + "slotId": "mod_mount_002", + "parentId": "67d116261cd676504c04c952" + }, + { + "_id": "67d116261cd676504c04c959", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d116261cd676504c04c956" + }, + { + "_id": "67d116261cd676504c04c95a", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d116261cd676504c04c957" + } + ] + }, + { + "Id": "67d114db0100185b95d6b1d5", + "Name": "supr holo mpx", + "Root": "67d114dd1cd676504c047d57", + "Items": [ + { + "_id": "67d114dd1cd676504c047d57", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d114dd1cd676504c047d58", + "_tpl": "5894a51286f77426d13baf02", + "slotId": "mod_pistol_grip", + "parentId": "67d114dd1cd676504c047d57" + }, + { + "_id": "67d114dd1cd676504c047d59", + "_tpl": "5894a05586f774094708ef75", + "slotId": "mod_magazine", + "parentId": "67d114dd1cd676504c047d57" + }, + { + "_id": "67d114dd1cd676504c047d5a", + "_tpl": "5894a5b586f77426d2590767", + "slotId": "mod_reciever", + "parentId": "67d114dd1cd676504c047d57" + }, + { + "_id": "67d114dd1cd676504c047d5b", + "_tpl": "5894a13e86f7742405482982", + "slotId": "mod_stock", + "parentId": "67d114dd1cd676504c047d57" + }, + { + "_id": "67d114dd1cd676504c047d5c", + "_tpl": "58949edd86f77409483e16a9", + "slotId": "mod_charge", + "parentId": "67d114dd1cd676504c047d57" + }, + { + "_id": "67d114dd1cd676504c047d5d", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d114dd1cd676504c047d5a" + }, + { + "_id": "67d114dd1cd676504c047d5e", + "_tpl": "5894a2c386f77427140b8342", + "slotId": "mod_barrel", + "parentId": "67d114dd1cd676504c047d5a" + }, + { + "_id": "67d114dd1cd676504c047d5f", + "_tpl": "5894a42086f77426d2590762", + "slotId": "mod_handguard", + "parentId": "67d114dd1cd676504c047d5a" + }, + { + "_id": "67d114dd1cd676504c047d60", + "_tpl": "5894a81786f77427140b8347", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d114dd1cd676504c047d5a" + }, + { + "_id": "67d114dd1cd676504c047d61", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle", + "parentId": "67d114dd1cd676504c047d5e" + }, + { + "_id": "67d114dd1cd676504c047d62", + "_tpl": "5894a73486f77426d259076c", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d114dd1cd676504c047d5f" + }, + { + "_id": "67d114dd1cd676504c047d63", + "_tpl": "58a56f8d86f774651579314c", + "slotId": "mod_mount_000", + "parentId": "67d114dd1cd676504c047d5f" + }, + { + "_id": "67d114dd1cd676504c047d64", + "_tpl": "58a5c12e86f7745d585a2b9e", + "slotId": "mod_mount_001", + "parentId": "67d114dd1cd676504c047d5f" + }, + { + "_id": "67d114dd1cd676504c047d65", + "_tpl": "58a56f8d86f774651579314c", + "slotId": "mod_mount_002", + "parentId": "67d114dd1cd676504c047d5f" + }, + { + "_id": "67d114dd1cd676504c047d66", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d114dd1cd676504c047d63" + }, + { + "_id": "67d114dd1cd676504c047d67", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d114dd1cd676504c047d64" + } + ] + }, + { + "Id": "67d115210100185b95ffbd00", + "Name": "supr hamr long mpx", + "Root": "67d115501cd676504c048c90", + "Items": [ + { + "_id": "67d115501cd676504c048c90", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d115501cd676504c048c91", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67d115501cd676504c048c90" + }, + { + "_id": "67d115501cd676504c048c92", + "_tpl": "5894a05586f774094708ef75", + "slotId": "mod_magazine", + "parentId": "67d115501cd676504c048c90" + }, + { + "_id": "67d115501cd676504c048c93", + "_tpl": "5894a5b586f77426d2590767", + "slotId": "mod_reciever", + "parentId": "67d115501cd676504c048c90" + }, + { + "_id": "67d115501cd676504c048c94", + "_tpl": "5894a13e86f7742405482982", + "slotId": "mod_stock", + "parentId": "67d115501cd676504c048c90" + }, + { + "_id": "67d115501cd676504c048c95", + "_tpl": "58949edd86f77409483e16a9", + "slotId": "mod_charge", + "parentId": "67d115501cd676504c048c90" + }, + { + "_id": "67d115501cd676504c048c96", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d115501cd676504c048c93" + }, + { + "_id": "67d115501cd676504c048c97", + "_tpl": "5c5db5c62e22160012542255", + "slotId": "mod_barrel", + "parentId": "67d115501cd676504c048c93" + }, + { + "_id": "67d115501cd676504c048c98", + "_tpl": "5c5db6302e2216000e5e47f0", + "slotId": "mod_handguard", + "parentId": "67d115501cd676504c048c93" + }, + { + "_id": "67d115501cd676504c048c99", + "_tpl": "5894a81786f77427140b8347", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d115501cd676504c048c93" + }, + { + "_id": "67d115501cd676504c048c9a", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d115501cd676504c048c96" + }, + { + "_id": "67d115501cd676504c048c9b", + "_tpl": "5c7e8fab2e22165df16b889b", + "slotId": "mod_muzzle", + "parentId": "67d115501cd676504c048c97" + }, + { + "_id": "67d115501cd676504c048c9c", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67d115501cd676504c048c98" + }, + { + "_id": "67d115501cd676504c048c9d", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d115501cd676504c048c98" + }, + { + "_id": "67d115501cd676504c048c9e", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d115501cd676504c048c9c" + }, + { + "_id": "67d115501cd676504c048c9f", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d115501cd676504c048c9d" + } + ] + }, + { + "Id": "67d1159f0100185b952b2665", + "Name": "supr spectr long mpx", + "Root": "67d115a31cd676504c04a9f8", + "Items": [ + { + "_id": "67d115a31cd676504c04a9f8", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d115a31cd676504c04a9f9", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67d115a31cd676504c04a9f8" + }, + { + "_id": "67d115a31cd676504c04a9fa", + "_tpl": "5894a05586f774094708ef75", + "slotId": "mod_magazine", + "parentId": "67d115a31cd676504c04a9f8" + }, + { + "_id": "67d115a31cd676504c04a9fb", + "_tpl": "5894a5b586f77426d2590767", + "slotId": "mod_reciever", + "parentId": "67d115a31cd676504c04a9f8" + }, + { + "_id": "67d115a31cd676504c04a9fc", + "_tpl": "5894a13e86f7742405482982", + "slotId": "mod_stock", + "parentId": "67d115a31cd676504c04a9f8" + }, + { + "_id": "67d115a31cd676504c04a9fd", + "_tpl": "58949edd86f77409483e16a9", + "slotId": "mod_charge", + "parentId": "67d115a31cd676504c04a9f8" + }, + { + "_id": "67d115a31cd676504c04a9fe", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d115a31cd676504c04a9fb" + }, + { + "_id": "67d115a31cd676504c04a9ff", + "_tpl": "5c5db5c62e22160012542255", + "slotId": "mod_barrel", + "parentId": "67d115a31cd676504c04a9fb" + }, + { + "_id": "67d115a31cd676504c04aa00", + "_tpl": "5c5db6302e2216000e5e47f0", + "slotId": "mod_handguard", + "parentId": "67d115a31cd676504c04a9fb" + }, + { + "_id": "67d115a31cd676504c04aa01", + "_tpl": "5894a81786f77427140b8347", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d115a31cd676504c04a9fb" + }, + { + "_id": "67d115a31cd676504c04aa02", + "_tpl": "5c7e8fab2e22165df16b889b", + "slotId": "mod_muzzle", + "parentId": "67d115a31cd676504c04a9ff" + }, + { + "_id": "67d115a31cd676504c04aa03", + "_tpl": "5b7be47f5acfc400170e2dd2", + "slotId": "mod_mount_000", + "parentId": "67d115a31cd676504c04aa00" + }, + { + "_id": "67d115a31cd676504c04aa04", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d115a31cd676504c04aa00" + }, + { + "_id": "67d115a31cd676504c04aa05", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d115a31cd676504c04aa03" + }, + { + "_id": "67d115a31cd676504c04aa06", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67d115a31cd676504c04aa04" + } + ] + }, + { + "Id": "67d115cc0100185b9596f0ea", + "Name": "supr dp mpx", + "Root": "67d115d31cd676504c04b960", + "Items": [ + { + "_id": "67d115d31cd676504c04b960", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d115d31cd676504c04b961", + "_tpl": "5cc9bcaed7f00c011c04e179", + "slotId": "mod_pistol_grip", + "parentId": "67d115d31cd676504c04b960" + }, + { + "_id": "67d115d31cd676504c04b962", + "_tpl": "5894a05586f774094708ef75", + "slotId": "mod_magazine", + "parentId": "67d115d31cd676504c04b960" + }, + { + "_id": "67d115d31cd676504c04b963", + "_tpl": "5894a5b586f77426d2590767", + "slotId": "mod_reciever", + "parentId": "67d115d31cd676504c04b960" + }, + { + "_id": "67d115d31cd676504c04b964", + "_tpl": "5894a13e86f7742405482982", + "slotId": "mod_stock", + "parentId": "67d115d31cd676504c04b960" + }, + { + "_id": "67d115d31cd676504c04b965", + "_tpl": "58949edd86f77409483e16a9", + "slotId": "mod_charge", + "parentId": "67d115d31cd676504c04b960" + }, + { + "_id": "67d115d31cd676504c04b966", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d115d31cd676504c04b963" + }, + { + "_id": "67d115d31cd676504c04b967", + "_tpl": "5894a2c386f77427140b8342", + "slotId": "mod_barrel", + "parentId": "67d115d31cd676504c04b963" + }, + { + "_id": "67d115d31cd676504c04b968", + "_tpl": "5894a42086f77426d2590762", + "slotId": "mod_handguard", + "parentId": "67d115d31cd676504c04b963" + }, + { + "_id": "67d115d31cd676504c04b969", + "_tpl": "5bc09a18d4351e003562b68e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d115d31cd676504c04b963" + }, + { + "_id": "67d115d31cd676504c04b96a", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d115d31cd676504c04b966" + }, + { + "_id": "67d115d31cd676504c04b96b", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d115d31cd676504c04b967" + }, + { + "_id": "67d115d31cd676504c04b96c", + "_tpl": "5bc09a30d4351e00367fb7c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d115d31cd676504c04b968" + }, + { + "_id": "67d115d31cd676504c04b96d", + "_tpl": "58a56f8d86f774651579314c", + "slotId": "mod_mount_000", + "parentId": "67d115d31cd676504c04b968" + }, + { + "_id": "67d115d31cd676504c04b96e", + "_tpl": "58a5c12e86f7745d585a2b9e", + "slotId": "mod_mount_001", + "parentId": "67d115d31cd676504c04b968" + }, + { + "_id": "67d115d31cd676504c04b96f", + "_tpl": "58a56f8d86f774651579314c", + "slotId": "mod_mount_002", + "parentId": "67d115d31cd676504c04b968" + }, + { + "_id": "67d115d31cd676504c04b970", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d115d31cd676504c04b96d" + }, + { + "_id": "67d115d31cd676504c04b971", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d115d31cd676504c04b96e" + } + ] + }, + { + "Id": "67d117600100185b9522b3f8", + "Name": "loud holo vector", + "Root": "67d1176b09a1c068b4036b92", + "Items": [ + { + "_id": "67d1176b09a1c068b4036b92", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1176b09a1c068b4036b93", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67d1176b09a1c068b4036b92" + }, + { + "_id": "67d1176b09a1c068b4036b94", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1176b09a1c068b4036b92" + }, + { + "_id": "67d1176b09a1c068b4036b95", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1176b09a1c068b4036b92" + }, + { + "_id": "67d1176b09a1c068b4036b96", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1176b09a1c068b4036b92" + }, + { + "_id": "67d1176b09a1c068b4036b97", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "slotId": "mod_stock", + "parentId": "67d1176b09a1c068b4036b92" + }, + { + "_id": "67d1176b09a1c068b4036b98", + "_tpl": "5fbbc366ca32ed67276c1557", + "slotId": "mod_barrel", + "parentId": "67d1176b09a1c068b4036b92" + }, + { + "_id": "67d1176b09a1c068b4036b99", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67d1176b09a1c068b4036b92" + }, + { + "_id": "67d1176b09a1c068b4036b9a", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67d1176b09a1c068b4036b92" + }, + { + "_id": "67d1176b09a1c068b4036b9b", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67d1176b09a1c068b4036b92" + }, + { + "_id": "67d1176b09a1c068b4036b9c", + "_tpl": "5cf6935bd7f00c06585fb791", + "slotId": "mod_muzzle", + "parentId": "67d1176b09a1c068b4036b98" + }, + { + "_id": "67d1176b09a1c068b4036b9d", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d1176b09a1c068b4036b99" + }, + { + "_id": "67d1176b09a1c068b4036b9e", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1176b09a1c068b4036b9a" + } + ] + }, + { + "Id": "67d1178a0100185b9501d207", + "Name": "supr holo vector", + "Root": "67d1179109a1c068b4036ba4", + "Items": [ + { + "_id": "67d1179109a1c068b4036ba4", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1179109a1c068b4036ba5", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67d1179109a1c068b4036ba4" + }, + { + "_id": "67d1179109a1c068b4036ba6", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1179109a1c068b4036ba4" + }, + { + "_id": "67d1179109a1c068b4036ba7", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1179109a1c068b4036ba4" + }, + { + "_id": "67d1179109a1c068b4036ba8", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1179109a1c068b4036ba4" + }, + { + "_id": "67d1179109a1c068b4036ba9", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "slotId": "mod_stock", + "parentId": "67d1179109a1c068b4036ba4" + }, + { + "_id": "67d1179109a1c068b4036baa", + "_tpl": "5fbbc366ca32ed67276c1557", + "slotId": "mod_barrel", + "parentId": "67d1179109a1c068b4036ba4" + }, + { + "_id": "67d1179109a1c068b4036bab", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67d1179109a1c068b4036ba4" + }, + { + "_id": "67d1179109a1c068b4036bac", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67d1179109a1c068b4036ba4" + }, + { + "_id": "67d1179109a1c068b4036bad", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67d1179109a1c068b4036ba4" + }, + { + "_id": "67d1179109a1c068b4036bae", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d1179109a1c068b4036baa" + }, + { + "_id": "67d1179109a1c068b4036baf", + "_tpl": "5c791e872e2216001219c40a", + "slotId": "mod_foregrip", + "parentId": "67d1179109a1c068b4036bab" + }, + { + "_id": "67d1179109a1c068b4036bb0", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1179109a1c068b4036bac" + } + ] + }, + { + "Id": "67d117af0100185b9517f273", + "Name": "supr dp vector", + "Root": "67d117b209a1c068b4036bb6", + "Items": [ + { + "_id": "67d117b209a1c068b4036bb6", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d117b209a1c068b4036bb7", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67d117b209a1c068b4036bb6" + }, + { + "_id": "67d117b209a1c068b4036bb8", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d117b209a1c068b4036bb6" + }, + { + "_id": "67d117b209a1c068b4036bb9", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d117b209a1c068b4036bb6" + }, + { + "_id": "67d117b209a1c068b4036bba", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d117b209a1c068b4036bb6" + }, + { + "_id": "67d117b209a1c068b4036bbb", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "slotId": "mod_stock", + "parentId": "67d117b209a1c068b4036bb6" + }, + { + "_id": "67d117b209a1c068b4036bbc", + "_tpl": "5fbbc366ca32ed67276c1557", + "slotId": "mod_barrel", + "parentId": "67d117b209a1c068b4036bb6" + }, + { + "_id": "67d117b209a1c068b4036bbd", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67d117b209a1c068b4036bb6" + }, + { + "_id": "67d117b209a1c068b4036bbe", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67d117b209a1c068b4036bb6" + }, + { + "_id": "67d117b209a1c068b4036bbf", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67d117b209a1c068b4036bb6" + }, + { + "_id": "67d117b209a1c068b4036bc0", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d117b209a1c068b4036bba" + }, + { + "_id": "67d117b209a1c068b4036bc1", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle", + "parentId": "67d117b209a1c068b4036bbc" + }, + { + "_id": "67d117b209a1c068b4036bc2", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67d117b209a1c068b4036bbd" + }, + { + "_id": "67d117b209a1c068b4036bc3", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d117b209a1c068b4036bbe" + } + ] + }, + { + "Id": "67d117e40100185b95b39f3e", + "Name": "loud pk06 vector", + "Root": "67d117ed09a1c068b4036bd3", + "Items": [ + { + "_id": "67d117ed09a1c068b4036bd3", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d117ed09a1c068b4036bd4", + "_tpl": "5a7ad2e851dfba0016153692", + "slotId": "mod_magazine", + "parentId": "67d117ed09a1c068b4036bd3" + }, + { + "_id": "67d117ed09a1c068b4036bd5", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d117ed09a1c068b4036bd3" + }, + { + "_id": "67d117ed09a1c068b4036bd6", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d117ed09a1c068b4036bd3" + }, + { + "_id": "67d117ed09a1c068b4036bd7", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d117ed09a1c068b4036bd3" + }, + { + "_id": "67d117ed09a1c068b4036bd8", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "slotId": "mod_stock", + "parentId": "67d117ed09a1c068b4036bd3" + }, + { + "_id": "67d117ed09a1c068b4036bd9", + "_tpl": "5fbbc366ca32ed67276c1557", + "slotId": "mod_barrel", + "parentId": "67d117ed09a1c068b4036bd3" + }, + { + "_id": "67d117ed09a1c068b4036bda", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67d117ed09a1c068b4036bd3" + }, + { + "_id": "67d117ed09a1c068b4036bdb", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67d117ed09a1c068b4036bd3" + }, + { + "_id": "67d117ed09a1c068b4036bdc", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67d117ed09a1c068b4036bd3" + }, + { + "_id": "67d117ed09a1c068b4036bdd", + "_tpl": "5cf6935bd7f00c06585fb791", + "slotId": "mod_muzzle", + "parentId": "67d117ed09a1c068b4036bd9" + }, + { + "_id": "67d117ed09a1c068b4036bde", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67d117ed09a1c068b4036bda" + }, + { + "_id": "67d117ed09a1c068b4036bdf", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d117ed09a1c068b4036bdb" + } + ] + }, + { + "Id": "67d119250100185b95c347c5", + "Name": "supr HCO vector", + "Root": "67d1192ed7f01861a403825d", + "Items": [ + { + "_id": "67d1192ed7f01861a403825d", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1192ed7f01861a403825e", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67d1192ed7f01861a403825d" + }, + { + "_id": "67d1192ed7f01861a403825f", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1192ed7f01861a403825d" + }, + { + "_id": "67d1192ed7f01861a4038260", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1192ed7f01861a403825d" + }, + { + "_id": "67d1192ed7f01861a4038261", + "_tpl": "64785e7c19d732620e045e15", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1192ed7f01861a403825d" + }, + { + "_id": "67d1192ed7f01861a4038262", + "_tpl": "5fb655b748c711690e3a8d5a", + "slotId": "mod_stock", + "parentId": "67d1192ed7f01861a403825d" + }, + { + "_id": "67d1192ed7f01861a4038263", + "_tpl": "5fbbc366ca32ed67276c1557", + "slotId": "mod_barrel", + "parentId": "67d1192ed7f01861a403825d" + }, + { + "_id": "67d1192ed7f01861a4038264", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67d1192ed7f01861a403825d" + }, + { + "_id": "67d1192ed7f01861a4038265", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67d1192ed7f01861a403825d" + }, + { + "_id": "67d1192ed7f01861a4038266", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67d1192ed7f01861a403825d" + }, + { + "_id": "67d1192ed7f01861a4038267", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_000", + "parentId": "67d1192ed7f01861a4038262" + }, + { + "_id": "67d1192ed7f01861a4038268", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d1192ed7f01861a4038263" + }, + { + "_id": "67d1192ed7f01861a4038269", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d1192ed7f01861a4038264" + }, + { + "_id": "67d1192ed7f01861a403826a", + "_tpl": "6272370ee4013c5d7e31f418", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1192ed7f01861a4038265" + }, + { + "_id": "67d1192ed7f01861a403826b", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d1192ed7f01861a4038267" + }, + { + "_id": "67d1192ed7f01861a403826c", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d1192ed7f01861a403826b" + } + ] + }, + { + "Id": "67d120640100185b95392e29", + "Name": "supr uh1 vector45", + "Root": "67d1206d66684323780384ca", + "Items": [ + { + "_id": "67d1206d66684323780384ca", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1206d66684323780384cb", + "_tpl": "5fb651dc85f90547f674b6f4", + "slotId": "mod_magazine", + "parentId": "67d1206d66684323780384ca" + }, + { + "_id": "67d1206d66684323780384cc", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1206d66684323780384ca" + }, + { + "_id": "67d1206d66684323780384cd", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1206d66684323780384ca" + }, + { + "_id": "67d1206d66684323780384ce", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1206d66684323780384ca" + }, + { + "_id": "67d1206d66684323780384cf", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "slotId": "mod_stock", + "parentId": "67d1206d66684323780384ca" + }, + { + "_id": "67d1206d66684323780384d0", + "_tpl": "5fb65363d1409e5ca04b54f5", + "slotId": "mod_barrel", + "parentId": "67d1206d66684323780384ca" + }, + { + "_id": "67d1206d66684323780384d1", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67d1206d66684323780384ca" + }, + { + "_id": "67d1206d66684323780384d2", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67d1206d66684323780384ca" + }, + { + "_id": "67d1206d66684323780384d3", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67d1206d66684323780384ca" + }, + { + "_id": "67d1206d66684323780384d4", + "_tpl": "5fc4b992187fea44d52edaa9", + "slotId": "mod_muzzle", + "parentId": "67d1206d66684323780384d0" + }, + { + "_id": "67d1206d66684323780384d5", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d1206d66684323780384d1" + }, + { + "_id": "67d1206d66684323780384d6", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1206d66684323780384d3" + }, + { + "_id": "67d1206d66684323780384d7", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d1206d66684323780384d4" + } + ] + }, + { + "Id": "67d1207f0100185b95d9b5ef", + "Name": "supr holo vector45", + "Root": "67d1208266684323780384de", + "Items": [ + { + "_id": "67d1208266684323780384de", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1208266684323780384df", + "_tpl": "5fb651dc85f90547f674b6f4", + "slotId": "mod_magazine", + "parentId": "67d1208266684323780384de" + }, + { + "_id": "67d1208266684323780384e0", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1208266684323780384de" + }, + { + "_id": "67d1208266684323780384e1", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1208266684323780384de" + }, + { + "_id": "67d1208266684323780384e2", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1208266684323780384de" + }, + { + "_id": "67d1208266684323780384e3", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "slotId": "mod_stock", + "parentId": "67d1208266684323780384de" + }, + { + "_id": "67d1208266684323780384e4", + "_tpl": "5fb65363d1409e5ca04b54f5", + "slotId": "mod_barrel", + "parentId": "67d1208266684323780384de" + }, + { + "_id": "67d1208266684323780384e5", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67d1208266684323780384de" + }, + { + "_id": "67d1208266684323780384e6", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67d1208266684323780384de" + }, + { + "_id": "67d1208266684323780384e7", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67d1208266684323780384de" + }, + { + "_id": "67d1208266684323780384e8", + "_tpl": "5fc4b992187fea44d52edaa9", + "slotId": "mod_muzzle", + "parentId": "67d1208266684323780384e4" + }, + { + "_id": "67d1208266684323780384e9", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "slotId": "mod_foregrip", + "parentId": "67d1208266684323780384e5" + }, + { + "_id": "67d1208266684323780384ea", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1208266684323780384e7" + }, + { + "_id": "67d1208266684323780384eb", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d1208266684323780384e8" + } + ] + }, + { + "Id": "67d1209d0100185b95e780aa", + "Name": "loud holo vector45", + "Root": "67d120a166684323780384fb", + "Items": [ + { + "_id": "67d120a166684323780384fb", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d120a166684323780384fc", + "_tpl": "5fb651dc85f90547f674b6f4", + "slotId": "mod_magazine", + "parentId": "67d120a166684323780384fb" + }, + { + "_id": "67d120a166684323780384fd", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d120a166684323780384fb" + }, + { + "_id": "67d120a166684323780384fe", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d120a166684323780384fb" + }, + { + "_id": "67d120a166684323780384ff", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d120a166684323780384fb" + }, + { + "_id": "67d120a16668432378038500", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "slotId": "mod_stock", + "parentId": "67d120a166684323780384fb" + }, + { + "_id": "67d120a16668432378038501", + "_tpl": "5fb65363d1409e5ca04b54f5", + "slotId": "mod_barrel", + "parentId": "67d120a166684323780384fb" + }, + { + "_id": "67d120a16668432378038502", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67d120a166684323780384fb" + }, + { + "_id": "67d120a16668432378038503", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67d120a166684323780384fb" + }, + { + "_id": "67d120a16668432378038504", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67d120a166684323780384fb" + }, + { + "_id": "67d120a16668432378038505", + "_tpl": "5fb65424956329274326f316", + "slotId": "mod_muzzle", + "parentId": "67d120a16668432378038501" + }, + { + "_id": "67d120a16668432378038506", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67d120a16668432378038502" + }, + { + "_id": "67d120a16668432378038507", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d120a16668432378038504" + } + ] + }, + { + "Id": "67d120b40100185b95154362", + "Name": "loud mrs vector45", + "Root": "67d120b8666843237803850c", + "Items": [ + { + "_id": "67d120b8666843237803850c", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d120b8666843237803850d", + "_tpl": "5fb651dc85f90547f674b6f4", + "slotId": "mod_magazine", + "parentId": "67d120b8666843237803850c" + }, + { + "_id": "67d120b8666843237803850e", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d120b8666843237803850c" + }, + { + "_id": "67d120b8666843237803850f", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d120b8666843237803850c" + }, + { + "_id": "67d120b86668432378038510", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d120b8666843237803850c" + }, + { + "_id": "67d120b86668432378038511", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "slotId": "mod_stock", + "parentId": "67d120b8666843237803850c" + }, + { + "_id": "67d120b86668432378038512", + "_tpl": "5fb65363d1409e5ca04b54f5", + "slotId": "mod_barrel", + "parentId": "67d120b8666843237803850c" + }, + { + "_id": "67d120b86668432378038513", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67d120b8666843237803850c" + }, + { + "_id": "67d120b86668432378038514", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67d120b8666843237803850c" + }, + { + "_id": "67d120b86668432378038515", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67d120b8666843237803850c" + }, + { + "_id": "67d120b86668432378038516", + "_tpl": "5fb65424956329274326f316", + "slotId": "mod_muzzle", + "parentId": "67d120b86668432378038512" + }, + { + "_id": "67d120b86668432378038517", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d120b86668432378038513" + }, + { + "_id": "67d120b86668432378038518", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d120b86668432378038515" + } + ] + }, + { + "Id": "67d121020100185b953a9109", + "Name": "supr dp vector45", + "Root": "67d12105666843237803852d", + "Items": [ + { + "_id": "67d12105666843237803852d", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12105666843237803852e", + "_tpl": "5fb651dc85f90547f674b6f4", + "slotId": "mod_magazine", + "parentId": "67d12105666843237803852d" + }, + { + "_id": "67d12105666843237803852f", + "_tpl": "5fb6567747ce63734e3fa1dc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12105666843237803852d" + }, + { + "_id": "67d121056668432378038530", + "_tpl": "5fb6564947ce63734e3fa1da", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12105666843237803852d" + }, + { + "_id": "67d121056668432378038531", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d12105666843237803852d" + }, + { + "_id": "67d121056668432378038532", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "slotId": "mod_stock", + "parentId": "67d12105666843237803852d" + }, + { + "_id": "67d121056668432378038533", + "_tpl": "5fb65363d1409e5ca04b54f5", + "slotId": "mod_barrel", + "parentId": "67d12105666843237803852d" + }, + { + "_id": "67d121056668432378038534", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "slotId": "mod_mount", + "parentId": "67d12105666843237803852d" + }, + { + "_id": "67d121056668432378038535", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_001", + "parentId": "67d12105666843237803852d" + }, + { + "_id": "67d121056668432378038536", + "_tpl": "5fce0f9b55375d18a253eff2", + "slotId": "mod_mount_002", + "parentId": "67d12105666843237803852d" + }, + { + "_id": "67d121056668432378038537", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d121056668432378038531" + }, + { + "_id": "67d121056668432378038538", + "_tpl": "5fc4b992187fea44d52edaa9", + "slotId": "mod_muzzle", + "parentId": "67d121056668432378038533" + }, + { + "_id": "67d121056668432378038539", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d121056668432378038534" + }, + { + "_id": "67d12105666843237803853a", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d121056668432378038536" + }, + { + "_id": "67d12105666843237803853b", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d121056668432378038538" + } + ] + }, + { + "Id": "67d121640100185b9591e6ff", + "Name": "loud holo stm9", + "Root": "67d1216a666843237803857e", + "Items": [ + { + "_id": "67d1216a666843237803857e", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1216a666843237803857f", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67d1216a666843237803857e" + }, + { + "_id": "67d1216a6668432378038580", + "_tpl": "5a7ad2e851dfba0016153692", + "slotId": "mod_magazine", + "parentId": "67d1216a666843237803857e" + }, + { + "_id": "67d1216a6668432378038581", + "_tpl": "602e63fb6335467b0c5ac94d", + "slotId": "mod_reciever", + "parentId": "67d1216a666843237803857e" + }, + { + "_id": "67d1216a6668432378038582", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock_001", + "parentId": "67d1216a666843237803857e" + }, + { + "_id": "67d1216a6668432378038583", + "_tpl": "6033749e88382f4fab3fd2c5", + "slotId": "mod_charge", + "parentId": "67d1216a666843237803857e" + }, + { + "_id": "67d1216a6668432378038584", + "_tpl": "602f85fd9b513876d4338d9c", + "slotId": "mod_tactical_000", + "parentId": "67d1216a666843237803857e" + }, + { + "_id": "67d1216a6668432378038585", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1216a6668432378038581" + }, + { + "_id": "67d1216a6668432378038586", + "_tpl": "603372b4da11d6478d5a07ff", + "slotId": "mod_barrel", + "parentId": "67d1216a6668432378038581" + }, + { + "_id": "67d1216a6668432378038587", + "_tpl": "6034e3cb0ddce744014cb870", + "slotId": "mod_handguard", + "parentId": "67d1216a6668432378038581" + }, + { + "_id": "67d1216a6668432378038588", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d1216a6668432378038582" + }, + { + "_id": "67d1216a6668432378038589", + "_tpl": "5fbbc3324e8a554c40648348", + "slotId": "mod_muzzle", + "parentId": "67d1216a6668432378038586" + }, + { + "_id": "67d1216a666843237803858a", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_001", + "parentId": "67d1216a6668432378038587" + }, + { + "_id": "67d1216a666843237803858b", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d1216a6668432378038587" + }, + { + "_id": "67d1216a666843237803858c", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1216a666843237803858a" + }, + { + "_id": "67d1216a666843237803858d", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d1216a6668432378038588" + } + ] + }, + { + "Id": "67d1217a0100185b954c9dd1", + "Name": "supr holo stm9", + "Root": "67d1217d6668432378038596", + "Items": [ + { + "_id": "67d1217d6668432378038596", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1217d6668432378038597", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67d1217d6668432378038596" + }, + { + "_id": "67d1217d6668432378038598", + "_tpl": "5a7ad2e851dfba0016153692", + "slotId": "mod_magazine", + "parentId": "67d1217d6668432378038596" + }, + { + "_id": "67d1217d6668432378038599", + "_tpl": "602e63fb6335467b0c5ac94d", + "slotId": "mod_reciever", + "parentId": "67d1217d6668432378038596" + }, + { + "_id": "67d1217d666843237803859a", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock_001", + "parentId": "67d1217d6668432378038596" + }, + { + "_id": "67d1217d666843237803859b", + "_tpl": "6033749e88382f4fab3fd2c5", + "slotId": "mod_charge", + "parentId": "67d1217d6668432378038596" + }, + { + "_id": "67d1217d666843237803859c", + "_tpl": "602f85fd9b513876d4338d9c", + "slotId": "mod_tactical_000", + "parentId": "67d1217d6668432378038596" + }, + { + "_id": "67d1217d666843237803859d", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1217d6668432378038599" + }, + { + "_id": "67d1217d666843237803859e", + "_tpl": "603372b4da11d6478d5a07ff", + "slotId": "mod_barrel", + "parentId": "67d1217d6668432378038599" + }, + { + "_id": "67d1217d666843237803859f", + "_tpl": "6034e3cb0ddce744014cb870", + "slotId": "mod_handguard", + "parentId": "67d1217d6668432378038599" + }, + { + "_id": "67d1217d66684323780385a0", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d1217d666843237803859a" + }, + { + "_id": "67d1217d66684323780385a1", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle", + "parentId": "67d1217d666843237803859e" + }, + { + "_id": "67d1217d66684323780385a2", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_001", + "parentId": "67d1217d666843237803859f" + }, + { + "_id": "67d1217d66684323780385a3", + "_tpl": "665d5d9e338229cfd6078da1", + "slotId": "mod_foregrip", + "parentId": "67d1217d666843237803859f" + }, + { + "_id": "67d1217d66684323780385a4", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1217d66684323780385a2" + }, + { + "_id": "67d1217d66684323780385a5", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d1217d66684323780385a0" + } + ] + }, + { + "Id": "67d121b40100185b9504a08a", + "Name": "supr hamr stm9", + "Root": "67d121bc66684323780385ae", + "Items": [ + { + "_id": "67d121bc66684323780385ae", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d121bc66684323780385af", + "_tpl": "602e71bd53a60014f9705bfa", + "slotId": "mod_pistol_grip", + "parentId": "67d121bc66684323780385ae" + }, + { + "_id": "67d121bc66684323780385b0", + "_tpl": "5a7ad2e851dfba0016153692", + "slotId": "mod_magazine", + "parentId": "67d121bc66684323780385ae" + }, + { + "_id": "67d121bc66684323780385b1", + "_tpl": "602e63fb6335467b0c5ac94d", + "slotId": "mod_reciever", + "parentId": "67d121bc66684323780385ae" + }, + { + "_id": "67d121bc66684323780385b2", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67d121bc66684323780385ae" + }, + { + "_id": "67d121bc66684323780385b3", + "_tpl": "6033749e88382f4fab3fd2c5", + "slotId": "mod_charge", + "parentId": "67d121bc66684323780385ae" + }, + { + "_id": "67d121bc66684323780385b4", + "_tpl": "602f85fd9b513876d4338d9c", + "slotId": "mod_tactical_000", + "parentId": "67d121bc66684323780385ae" + }, + { + "_id": "67d121bc66684323780385b5", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d121bc66684323780385b1" + }, + { + "_id": "67d121bc66684323780385b6", + "_tpl": "603373004e02ce1eaa358814", + "slotId": "mod_barrel", + "parentId": "67d121bc66684323780385b1" + }, + { + "_id": "67d121bc66684323780385b7", + "_tpl": "6034e3d953a60014f970617b", + "slotId": "mod_handguard", + "parentId": "67d121bc66684323780385b1" + }, + { + "_id": "67d121bc66684323780385b8", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d121bc66684323780385b2" + }, + { + "_id": "67d121bc66684323780385b9", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d121bc66684323780385b5" + }, + { + "_id": "67d121bc66684323780385ba", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle", + "parentId": "67d121bc66684323780385b6" + }, + { + "_id": "67d121bc66684323780385bb", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_002", + "parentId": "67d121bc66684323780385b7" + }, + { + "_id": "67d121bc66684323780385bc", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d121bc66684323780385b7" + }, + { + "_id": "67d121bc66684323780385bd", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d121bc66684323780385bb" + }, + { + "_id": "67d121bc66684323780385be", + "_tpl": "5c1bc5fb2e221602b1779b32", + "slotId": "mod_foregrip", + "parentId": "67d121bc66684323780385bc" + }, + { + "_id": "67d121bc66684323780385bf", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d121bc66684323780385b8" + } + ] + }, + { + "Id": "67d121f10100185b95f4dd58", + "Name": "supr 2x stm9", + "Root": "67d121f4666843237803942b", + "Items": [ + { + "_id": "67d121f4666843237803942b", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d121f4666843237803942c", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67d121f4666843237803942b" + }, + { + "_id": "67d121f4666843237803942d", + "_tpl": "5a7ad2e851dfba0016153692", + "slotId": "mod_magazine", + "parentId": "67d121f4666843237803942b" + }, + { + "_id": "67d121f4666843237803942e", + "_tpl": "602e63fb6335467b0c5ac94d", + "slotId": "mod_reciever", + "parentId": "67d121f4666843237803942b" + }, + { + "_id": "67d121f4666843237803942f", + "_tpl": "5c793fb92e221644f31bfb64", + "slotId": "mod_stock_001", + "parentId": "67d121f4666843237803942b" + }, + { + "_id": "67d121f46668432378039430", + "_tpl": "6033749e88382f4fab3fd2c5", + "slotId": "mod_charge", + "parentId": "67d121f4666843237803942b" + }, + { + "_id": "67d121f46668432378039431", + "_tpl": "602f85fd9b513876d4338d9c", + "slotId": "mod_tactical_000", + "parentId": "67d121f4666843237803942b" + }, + { + "_id": "67d121f46668432378039432", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d121f4666843237803942e" + }, + { + "_id": "67d121f46668432378039433", + "_tpl": "603373004e02ce1eaa358814", + "slotId": "mod_barrel", + "parentId": "67d121f4666843237803942e" + }, + { + "_id": "67d121f46668432378039434", + "_tpl": "6034e3d953a60014f970617b", + "slotId": "mod_handguard", + "parentId": "67d121f4666843237803942e" + }, + { + "_id": "67d121f46668432378039435", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d121f4666843237803942f" + }, + { + "_id": "67d121f46668432378039436", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d121f46668432378039433" + }, + { + "_id": "67d121f46668432378039437", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_002", + "parentId": "67d121f46668432378039434" + }, + { + "_id": "67d121f46668432378039438", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d121f46668432378039434" + }, + { + "_id": "67d121f46668432378039439", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d121f46668432378039437" + }, + { + "_id": "67d121f4666843237803943a", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67d121f46668432378039438" + }, + { + "_id": "67d121f4666843237803943b", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d121f46668432378039435" + } + ] + }, + { + "Id": "67d1220b0100185b950c48de", + "Name": "loud mrs stm9", + "Root": "67d12221666843237803948e", + "Items": [ + { + "_id": "67d12221666843237803948e", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12221666843237803948f", + "_tpl": "57c55efc2459772d2c6271e7", + "slotId": "mod_pistol_grip", + "parentId": "67d12221666843237803948e" + }, + { + "_id": "67d122216668432378039490", + "_tpl": "5a7ad2e851dfba0016153692", + "slotId": "mod_magazine", + "parentId": "67d12221666843237803948e" + }, + { + "_id": "67d122216668432378039491", + "_tpl": "602e63fb6335467b0c5ac94d", + "slotId": "mod_reciever", + "parentId": "67d12221666843237803948e" + }, + { + "_id": "67d122216668432378039492", + "_tpl": "602e3f1254072b51b239f713", + "slotId": "mod_stock_001", + "parentId": "67d12221666843237803948e" + }, + { + "_id": "67d122216668432378039493", + "_tpl": "6033749e88382f4fab3fd2c5", + "slotId": "mod_charge", + "parentId": "67d12221666843237803948e" + }, + { + "_id": "67d122216668432378039494", + "_tpl": "602f85fd9b513876d4338d9c", + "slotId": "mod_tactical_000", + "parentId": "67d12221666843237803948e" + }, + { + "_id": "67d122216668432378039495", + "_tpl": "570fd721d2720bc5458b4596", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d122216668432378039491" + }, + { + "_id": "67d122216668432378039496", + "_tpl": "603372b4da11d6478d5a07ff", + "slotId": "mod_barrel", + "parentId": "67d122216668432378039491" + }, + { + "_id": "67d122216668432378039497", + "_tpl": "6034e3cb0ddce744014cb870", + "slotId": "mod_handguard", + "parentId": "67d122216668432378039491" + }, + { + "_id": "67d122216668432378039498", + "_tpl": "602e620f9b513876d4338d9a", + "slotId": "mod_stock_000", + "parentId": "67d122216668432378039492" + }, + { + "_id": "67d122216668432378039499", + "_tpl": "60337f5dce399e10262255d1", + "slotId": "mod_muzzle", + "parentId": "67d122216668432378039496" + }, + { + "_id": "67d12221666843237803949a", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_001", + "parentId": "67d122216668432378039497" + }, + { + "_id": "67d12221666843237803949b", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d122216668432378039497" + }, + { + "_id": "67d12221666843237803949c", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12221666843237803949a" + } + ] + }, + { + "Id": "67d122b50100185b9560f7e4", + "Name": "supr dp stm9", + "Root": "67d122bd666843237803bff6", + "Items": [ + { + "_id": "67d122bd666843237803bff6", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d122bd666843237803bff7", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67d122bd666843237803bff6" + }, + { + "_id": "67d122bd666843237803bff8", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67d122bd666843237803bff6" + }, + { + "_id": "67d122bd666843237803bff9", + "_tpl": "602e63fb6335467b0c5ac94d", + "slotId": "mod_reciever", + "parentId": "67d122bd666843237803bff6" + }, + { + "_id": "67d122bd666843237803bffa", + "_tpl": "5649be884bdc2d79388b4577", + "slotId": "mod_stock_001", + "parentId": "67d122bd666843237803bff6" + }, + { + "_id": "67d122bd666843237803bffb", + "_tpl": "6033749e88382f4fab3fd2c5", + "slotId": "mod_charge", + "parentId": "67d122bd666843237803bff6" + }, + { + "_id": "67d122bd666843237803bffc", + "_tpl": "602f85fd9b513876d4338d9c", + "slotId": "mod_tactical_000", + "parentId": "67d122bd666843237803bff6" + }, + { + "_id": "67d122bd666843237803bffd", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d122bd666843237803bff9" + }, + { + "_id": "67d122bd666843237803bffe", + "_tpl": "603372b4da11d6478d5a07ff", + "slotId": "mod_barrel", + "parentId": "67d122bd666843237803bff9" + }, + { + "_id": "67d122bd666843237803bfff", + "_tpl": "6034e3cb0ddce744014cb870", + "slotId": "mod_handguard", + "parentId": "67d122bd666843237803bff9" + }, + { + "_id": "67d122bd666843237803c000", + "_tpl": "58d2947e86f77447aa070d53", + "slotId": "mod_stock_000", + "parentId": "67d122bd666843237803bffa" + }, + { + "_id": "67d122bd666843237803c001", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d122bd666843237803bffd" + }, + { + "_id": "67d122bd666843237803c002", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d122bd666843237803bffe" + }, + { + "_id": "67d122bd666843237803c003", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_001", + "parentId": "67d122bd666843237803bfff" + }, + { + "_id": "67d122bd666843237803c004", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d122bd666843237803bfff" + }, + { + "_id": "67d122bd666843237803c005", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d122bd666843237803c003" + }, + { + "_id": "67d122bd666843237803c006", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d122bd666843237803c004" + }, + { + "_id": "67d122bd666843237803c007", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d122bd666843237803c000" + } + ] + }, + { + "Id": "67d122ea0100185b95dd904f", + "Name": "loud pk06 stm9", + "Root": "67d122f0666843237803c01f", + "Items": [ + { + "_id": "67d122f0666843237803c01f", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d122f0666843237803c020", + "_tpl": "59db3acc86f7742a2c4ab912", + "slotId": "mod_pistol_grip", + "parentId": "67d122f0666843237803c01f" + }, + { + "_id": "67d122f0666843237803c021", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67d122f0666843237803c01f" + }, + { + "_id": "67d122f0666843237803c022", + "_tpl": "602e63fb6335467b0c5ac94d", + "slotId": "mod_reciever", + "parentId": "67d122f0666843237803c01f" + }, + { + "_id": "67d122f0666843237803c023", + "_tpl": "5d120a10d7ad1a4e1026ba85", + "slotId": "mod_stock_001", + "parentId": "67d122f0666843237803c01f" + }, + { + "_id": "67d122f0666843237803c024", + "_tpl": "6033749e88382f4fab3fd2c5", + "slotId": "mod_charge", + "parentId": "67d122f0666843237803c01f" + }, + { + "_id": "67d122f0666843237803c025", + "_tpl": "602f85fd9b513876d4338d9c", + "slotId": "mod_tactical_000", + "parentId": "67d122f0666843237803c01f" + }, + { + "_id": "67d122f0666843237803c026", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d122f0666843237803c022" + }, + { + "_id": "67d122f0666843237803c027", + "_tpl": "603372b4da11d6478d5a07ff", + "slotId": "mod_barrel", + "parentId": "67d122f0666843237803c022" + }, + { + "_id": "67d122f0666843237803c028", + "_tpl": "6034e3cb0ddce744014cb870", + "slotId": "mod_handguard", + "parentId": "67d122f0666843237803c022" + }, + { + "_id": "67d122f0666843237803c029", + "_tpl": "60337f5dce399e10262255d1", + "slotId": "mod_muzzle", + "parentId": "67d122f0666843237803c027" + }, + { + "_id": "67d122f0666843237803c02a", + "_tpl": "6269220d70b6c02e665f2635", + "slotId": "mod_mount_001", + "parentId": "67d122f0666843237803c028" + }, + { + "_id": "67d122f0666843237803c02b", + "_tpl": "5b7be4895acfc400170e2dd5", + "slotId": "mod_foregrip", + "parentId": "67d122f0666843237803c028" + }, + { + "_id": "67d122f0666843237803c02c", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d122f0666843237803c02a" + }, + { + "_id": "67d122f0666843237803c02d", + "_tpl": "5c791e872e2216001219c40a", + "slotId": "mod_foregrip", + "parentId": "67d122f0666843237803c02b" + } + ] + }, + { + "Id": "67d123840100185b95d69de5", + "Name": "loud ekp 153 8r", + "Root": "67d12391666843237803ddfb", + "Items": [ + { + "_id": "67d12391666843237803ddfb", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12391666843237803ddfc", + "_tpl": "56deec93d2720bec348b4568", + "slotId": "mod_barrel", + "parentId": "67d12391666843237803ddfb" + }, + { + "_id": "67d12391666843237803ddfd", + "_tpl": "56deed6ed2720b4c698b4583", + "slotId": "mod_handguard", + "parentId": "67d12391666843237803ddfb" + }, + { + "_id": "67d12391666843237803ddfe", + "_tpl": "55d485804bdc2d8c2f8b456b", + "slotId": "mod_magazine", + "parentId": "67d12391666843237803ddfb" + }, + { + "_id": "67d12391666843237803ddff", + "_tpl": "56083be64bdc2d20478b456f", + "slotId": "mod_stock", + "parentId": "67d12391666843237803ddfb" + }, + { + "_id": "67d12391666843237803de00", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount", + "parentId": "67d12391666843237803ddfb" + }, + { + "_id": "67d12391666843237803de01", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "slotId": "mod_mount_000", + "parentId": "67d12391666843237803ddfb" + }, + { + "_id": "67d12391666843237803de02", + "_tpl": "560838c94bdc2d77798b4569", + "slotId": "mod_muzzle", + "parentId": "67d12391666843237803ddfc" + }, + { + "_id": "67d12391666843237803de03", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12391666843237803de00" + }, + { + "_id": "67d12391666843237803de04", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12391666843237803de01" + } + ] + }, + { + "Id": "67d1239f0100185b95b4c382", + "Name": "supr ekp 153 8r", + "Root": "67d123a3666843237803ec2b", + "Items": [ + { + "_id": "67d123a3666843237803ec2b", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d123a3666843237803ec2c", + "_tpl": "56deec93d2720bec348b4568", + "slotId": "mod_barrel", + "parentId": "67d123a3666843237803ec2b" + }, + { + "_id": "67d123a3666843237803ec2d", + "_tpl": "56deed6ed2720b4c698b4583", + "slotId": "mod_handguard", + "parentId": "67d123a3666843237803ec2b" + }, + { + "_id": "67d123a3666843237803ec2e", + "_tpl": "55d485804bdc2d8c2f8b456b", + "slotId": "mod_magazine", + "parentId": "67d123a3666843237803ec2b" + }, + { + "_id": "67d123a3666843237803ec2f", + "_tpl": "56083be64bdc2d20478b456f", + "slotId": "mod_stock", + "parentId": "67d123a3666843237803ec2b" + }, + { + "_id": "67d123a3666843237803ec30", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount", + "parentId": "67d123a3666843237803ec2b" + }, + { + "_id": "67d123a3666843237803ec31", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "slotId": "mod_mount_000", + "parentId": "67d123a3666843237803ec2b" + }, + { + "_id": "67d123a3666843237803ec32", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "slotId": "mod_muzzle", + "parentId": "67d123a3666843237803ec2c" + }, + { + "_id": "67d123a3666843237803ec33", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d123a3666843237803ec30" + }, + { + "_id": "67d123a3666843237803ec34", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d123a3666843237803ec31" + }, + { + "_id": "67d123a3666843237803ec35", + "_tpl": "5b363dd25acfc4001a598fd2", + "slotId": "mod_muzzle", + "parentId": "67d123a3666843237803ec32" + } + ] + }, + { + "Id": "67d123b70100185b95d9b99a", + "Name": "supr holo 153 8r", + "Root": "67d123bc666843237803ec3c", + "Items": [ + { + "_id": "67d123bc666843237803ec3c", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d123bc666843237803ec3d", + "_tpl": "56deec93d2720bec348b4568", + "slotId": "mod_barrel", + "parentId": "67d123bc666843237803ec3c" + }, + { + "_id": "67d123bc666843237803ec3e", + "_tpl": "56deed6ed2720b4c698b4583", + "slotId": "mod_handguard", + "parentId": "67d123bc666843237803ec3c" + }, + { + "_id": "67d123bc666843237803ec3f", + "_tpl": "55d485804bdc2d8c2f8b456b", + "slotId": "mod_magazine", + "parentId": "67d123bc666843237803ec3c" + }, + { + "_id": "67d123bc666843237803ec40", + "_tpl": "56083be64bdc2d20478b456f", + "slotId": "mod_stock", + "parentId": "67d123bc666843237803ec3c" + }, + { + "_id": "67d123bc666843237803ec41", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount", + "parentId": "67d123bc666843237803ec3c" + }, + { + "_id": "67d123bc666843237803ec42", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "slotId": "mod_mount_000", + "parentId": "67d123bc666843237803ec3c" + }, + { + "_id": "67d123bc666843237803ec43", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "slotId": "mod_muzzle", + "parentId": "67d123bc666843237803ec3d" + }, + { + "_id": "67d123bc666843237803ec44", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d123bc666843237803ec41" + }, + { + "_id": "67d123bc666843237803ec45", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d123bc666843237803ec42" + }, + { + "_id": "67d123bc666843237803ec46", + "_tpl": "5b363dd25acfc4001a598fd2", + "slotId": "mod_muzzle", + "parentId": "67d123bc666843237803ec43" + } + ] + }, + { + "Id": "67d123ca0100185b95698199", + "Name": "loud holo 153 8r", + "Root": "67d123ce666843237803ec4c", + "Items": [ + { + "_id": "67d123ce666843237803ec4c", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d123ce666843237803ec4d", + "_tpl": "56deec93d2720bec348b4568", + "slotId": "mod_barrel", + "parentId": "67d123ce666843237803ec4c" + }, + { + "_id": "67d123ce666843237803ec4e", + "_tpl": "56deed6ed2720b4c698b4583", + "slotId": "mod_handguard", + "parentId": "67d123ce666843237803ec4c" + }, + { + "_id": "67d123ce666843237803ec4f", + "_tpl": "55d485804bdc2d8c2f8b456b", + "slotId": "mod_magazine", + "parentId": "67d123ce666843237803ec4c" + }, + { + "_id": "67d123ce666843237803ec50", + "_tpl": "56083be64bdc2d20478b456f", + "slotId": "mod_stock", + "parentId": "67d123ce666843237803ec4c" + }, + { + "_id": "67d123ce666843237803ec51", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount", + "parentId": "67d123ce666843237803ec4c" + }, + { + "_id": "67d123ce666843237803ec52", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "slotId": "mod_mount_000", + "parentId": "67d123ce666843237803ec4c" + }, + { + "_id": "67d123ce666843237803ec53", + "_tpl": "560838c94bdc2d77798b4569", + "slotId": "mod_muzzle", + "parentId": "67d123ce666843237803ec4d" + }, + { + "_id": "67d123ce666843237803ec54", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d123ce666843237803ec51" + }, + { + "_id": "67d123ce666843237803ec55", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d123ce666843237803ec52" + } + ] + }, + { + "Id": "67d123eb0100185b956b5f51", + "Name": "supr targetring 153 6r", + "Root": "67d1240b666843237803fa4f", + "Items": [ + { + "_id": "67d1240b666843237803fa4f", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1240b666843237803fa50", + "_tpl": "588200af24597742fa221dfb", + "slotId": "mod_barrel", + "parentId": "67d1240b666843237803fa4f" + }, + { + "_id": "67d1240b666843237803fa51", + "_tpl": "56deed6ed2720b4c698b4583", + "slotId": "mod_handguard", + "parentId": "67d1240b666843237803fa4f" + }, + { + "_id": "67d1240b666843237803fa52", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "slotId": "mod_magazine", + "parentId": "67d1240b666843237803fa4f" + }, + { + "_id": "67d1240b666843237803fa53", + "_tpl": "56083a334bdc2dc8488b4571", + "slotId": "mod_stock", + "parentId": "67d1240b666843237803fa4f" + }, + { + "_id": "67d1240b666843237803fa54", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "slotId": "mod_mount_000", + "parentId": "67d1240b666843237803fa4f" + }, + { + "_id": "67d1240b666843237803fa55", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "slotId": "mod_muzzle", + "parentId": "67d1240b666843237803fa50" + }, + { + "_id": "67d1240b666843237803fa56", + "_tpl": "609b9e31506cf869cf3eaf41", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1240b666843237803fa50" + }, + { + "_id": "67d1240b666843237803fa57", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1240b666843237803fa54" + }, + { + "_id": "67d1240b666843237803fa58", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1240b666843237803fa54" + }, + { + "_id": "67d1240b666843237803fa59", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1240b666843237803fa54" + }, + { + "_id": "67d1240b666843237803fa5a", + "_tpl": "5b363dd25acfc4001a598fd2", + "slotId": "mod_muzzle", + "parentId": "67d1240b666843237803fa55" + } + ] + }, + { + "Id": "67d1242d0100185b95114c50", + "Name": "loud pk06 153 6r", + "Root": "67d12434666843237804082f", + "Items": [ + { + "_id": "67d12434666843237804082f", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d124346668432378040830", + "_tpl": "588200af24597742fa221dfb", + "slotId": "mod_barrel", + "parentId": "67d12434666843237804082f" + }, + { + "_id": "67d124346668432378040831", + "_tpl": "56deed6ed2720b4c698b4583", + "slotId": "mod_handguard", + "parentId": "67d12434666843237804082f" + }, + { + "_id": "67d124346668432378040832", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "slotId": "mod_magazine", + "parentId": "67d12434666843237804082f" + }, + { + "_id": "67d124346668432378040833", + "_tpl": "56083a334bdc2dc8488b4571", + "slotId": "mod_stock", + "parentId": "67d12434666843237804082f" + }, + { + "_id": "67d124346668432378040834", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "slotId": "mod_mount_000", + "parentId": "67d12434666843237804082f" + }, + { + "_id": "67d124346668432378040835", + "_tpl": "560838c94bdc2d77798b4569", + "slotId": "mod_muzzle", + "parentId": "67d124346668432378040830" + }, + { + "_id": "67d124346668432378040836", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d124346668432378040833" + }, + { + "_id": "67d124346668432378040837", + "_tpl": "5b07dd285acfc4001754240d", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d124346668432378040834" + } + ] + }, + { + "Id": "67d124680100185b9590af34", + "Name": "loud dp 153 8r", + "Root": "67d1246e666843237804167e", + "Items": [ + { + "_id": "67d1246e666843237804167e", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1246e666843237804167f", + "_tpl": "56deec93d2720bec348b4568", + "slotId": "mod_barrel", + "parentId": "67d1246e666843237804167e" + }, + { + "_id": "67d1246e6668432378041680", + "_tpl": "56deed6ed2720b4c698b4583", + "slotId": "mod_handguard", + "parentId": "67d1246e666843237804167e" + }, + { + "_id": "67d1246e6668432378041681", + "_tpl": "55d485804bdc2d8c2f8b456b", + "slotId": "mod_magazine", + "parentId": "67d1246e666843237804167e" + }, + { + "_id": "67d1246e6668432378041682", + "_tpl": "56083be64bdc2d20478b456f", + "slotId": "mod_stock", + "parentId": "67d1246e666843237804167e" + }, + { + "_id": "67d1246e6668432378041683", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount", + "parentId": "67d1246e666843237804167e" + }, + { + "_id": "67d1246e6668432378041684", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "slotId": "mod_mount_000", + "parentId": "67d1246e666843237804167e" + }, + { + "_id": "67d1246e6668432378041685", + "_tpl": "5c0111ab0db834001966914d", + "slotId": "mod_muzzle", + "parentId": "67d1246e666843237804167f" + }, + { + "_id": "67d1246e6668432378041686", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d1246e6668432378041683" + }, + { + "_id": "67d1246e6668432378041687", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1246e6668432378041684" + }, + { + "_id": "67d1246e6668432378041688", + "_tpl": "58272d7f2459774f6311ddfd", + "slotId": "mod_muzzle", + "parentId": "67d1246e6668432378041685" + }, + { + "_id": "67d1246e6668432378041689", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1246e6668432378041686" + } + ] + }, + { + "Id": "67d124ab0100185b954c3f46", + "Name": "supr holo 153 long 8r", + "Root": "67d124b8666843237804258c", + "Items": [ + { + "_id": "67d124b8666843237804258c", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d124b8666843237804258d", + "_tpl": "588200af24597742fa221dfb", + "slotId": "mod_barrel", + "parentId": "67d124b8666843237804258c" + }, + { + "_id": "67d124b8666843237804258e", + "_tpl": "56deed6ed2720b4c698b4583", + "slotId": "mod_handguard", + "parentId": "67d124b8666843237804258c" + }, + { + "_id": "67d124b8666843237804258f", + "_tpl": "55d485804bdc2d8c2f8b456b", + "slotId": "mod_magazine", + "parentId": "67d124b8666843237804258c" + }, + { + "_id": "67d124b86668432378042590", + "_tpl": "5bfe7fb30db8340018089fed", + "slotId": "mod_stock", + "parentId": "67d124b8666843237804258c" + }, + { + "_id": "67d124b86668432378042591", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount", + "parentId": "67d124b8666843237804258c" + }, + { + "_id": "67d124b86668432378042592", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "slotId": "mod_mount_000", + "parentId": "67d124b8666843237804258c" + }, + { + "_id": "67d124b86668432378042593", + "_tpl": "5c0111ab0db834001966914d", + "slotId": "mod_muzzle", + "parentId": "67d124b8666843237804258d" + }, + { + "_id": "67d124b86668432378042594", + "_tpl": "5bfe86a20db834001d23e8f7", + "slotId": "mod_stock", + "parentId": "67d124b86668432378042590" + }, + { + "_id": "67d124b86668432378042595", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d124b86668432378042591" + }, + { + "_id": "67d124b86668432378042596", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d124b86668432378042592" + }, + { + "_id": "67d124b86668432378042597", + "_tpl": "59c0ec5b86f77435b128bfca", + "slotId": "mod_muzzle", + "parentId": "67d124b86668432378042593" + }, + { + "_id": "67d124b86668432378042598", + "_tpl": "5bfe89510db834001808a127", + "slotId": "mod_stock", + "parentId": "67d124b86668432378042594" + }, + { + "_id": "67d124b86668432378042599", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67d124b86668432378042598" + }, + { + "_id": "67d124b8666843237804259a", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d124b86668432378042599" + } + ] + }, + { + "Id": "67d124ef0100185b9531c04a", + "Name": "loud dp 153 long 8r", + "Root": "67d124f56668432378043540", + "Items": [ + { + "_id": "67d124f56668432378043540", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d124f56668432378043541", + "_tpl": "588200af24597742fa221dfb", + "slotId": "mod_barrel", + "parentId": "67d124f56668432378043540" + }, + { + "_id": "67d124f56668432378043542", + "_tpl": "56deed6ed2720b4c698b4583", + "slotId": "mod_handguard", + "parentId": "67d124f56668432378043540" + }, + { + "_id": "67d124f56668432378043543", + "_tpl": "55d485804bdc2d8c2f8b456b", + "slotId": "mod_magazine", + "parentId": "67d124f56668432378043540" + }, + { + "_id": "67d124f56668432378043544", + "_tpl": "5bfe7fb30db8340018089fed", + "slotId": "mod_stock", + "parentId": "67d124f56668432378043540" + }, + { + "_id": "67d124f56668432378043545", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount", + "parentId": "67d124f56668432378043540" + }, + { + "_id": "67d124f56668432378043546", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "slotId": "mod_mount_000", + "parentId": "67d124f56668432378043540" + }, + { + "_id": "67d124f56668432378043547", + "_tpl": "5c0111ab0db834001966914d", + "slotId": "mod_muzzle", + "parentId": "67d124f56668432378043541" + }, + { + "_id": "67d124f56668432378043548", + "_tpl": "5bfe86a20db834001d23e8f7", + "slotId": "mod_stock", + "parentId": "67d124f56668432378043544" + }, + { + "_id": "67d124f56668432378043549", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d124f56668432378043545" + }, + { + "_id": "67d124f5666843237804354a", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d124f56668432378043546" + }, + { + "_id": "67d124f5666843237804354b", + "_tpl": "59fb137a86f7740adb646af1", + "slotId": "mod_muzzle", + "parentId": "67d124f56668432378043547" + }, + { + "_id": "67d124f5666843237804354c", + "_tpl": "5bfe89510db834001808a127", + "slotId": "mod_stock", + "parentId": "67d124f56668432378043548" + }, + { + "_id": "67d124f5666843237804354d", + "_tpl": "56eabf3bd2720b75698b4569", + "slotId": "mod_stock_000", + "parentId": "67d124f5666843237804354c" + }, + { + "_id": "67d124f5666843237804354e", + "_tpl": "58d2912286f7744e27117493", + "slotId": "mod_stock", + "parentId": "67d124f5666843237804354d" + }, + { + "_id": "67d124f5666843237804354f", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d124f56668432378043549" + } + ] + }, + { + "Id": "67d125480100185b9587cd7c", + "Name": "loud dp 133 6r", + "Root": "67d125516668432378044532", + "Items": [ + { + "_id": "67d125516668432378044532", + "_tpl": "54491c4f4bdc2db1078b4568", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d125516668432378044533", + "_tpl": "55d4491a4bdc2d882f8b456e", + "slotId": "mod_barrel", + "parentId": "67d125516668432378044532" + }, + { + "_id": "67d125516668432378044534", + "_tpl": "55d45f484bdc2d972f8b456d", + "slotId": "mod_handguard", + "parentId": "67d125516668432378044532" + }, + { + "_id": "67d125516668432378044535", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "slotId": "mod_magazine", + "parentId": "67d125516668432378044532" + }, + { + "_id": "67d125516668432378044536", + "_tpl": "56083cba4bdc2de22e8b456f", + "slotId": "mod_stock", + "parentId": "67d125516668432378044532" + }, + { + "_id": "67d125516668432378044537", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount_001", + "parentId": "67d125516668432378044532" + }, + { + "_id": "67d125516668432378044538", + "_tpl": "560838c94bdc2d77798b4569", + "slotId": "mod_muzzle", + "parentId": "67d125516668432378044533" + }, + { + "_id": "67d125516668432378044539", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d125516668432378044534" + }, + { + "_id": "67d12551666843237804453a", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d125516668432378044534" + }, + { + "_id": "67d12551666843237804453b", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d125516668432378044537" + }, + { + "_id": "67d12551666843237804453c", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12551666843237804453b" + } + ] + }, + { + "Id": "67d1256d0100185b95fd1d69", + "Name": "supr dp 133 6r", + "Root": "67d125706668432378044548", + "Items": [ + { + "_id": "67d125706668432378044548", + "_tpl": "54491c4f4bdc2db1078b4568", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d125706668432378044549", + "_tpl": "55d4491a4bdc2d882f8b456e", + "slotId": "mod_barrel", + "parentId": "67d125706668432378044548" + }, + { + "_id": "67d12570666843237804454a", + "_tpl": "55d45f484bdc2d972f8b456d", + "slotId": "mod_handguard", + "parentId": "67d125706668432378044548" + }, + { + "_id": "67d12570666843237804454b", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "slotId": "mod_magazine", + "parentId": "67d125706668432378044548" + }, + { + "_id": "67d12570666843237804454c", + "_tpl": "56083cba4bdc2de22e8b456f", + "slotId": "mod_stock", + "parentId": "67d125706668432378044548" + }, + { + "_id": "67d12570666843237804454d", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount_001", + "parentId": "67d125706668432378044548" + }, + { + "_id": "67d12570666843237804454e", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "slotId": "mod_muzzle", + "parentId": "67d125706668432378044549" + }, + { + "_id": "67d12570666843237804454f", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d12570666843237804454a" + }, + { + "_id": "67d125706668432378044550", + "_tpl": "5a5f1ce64f39f90b401987bc", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12570666843237804454a" + }, + { + "_id": "67d125706668432378044551", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d12570666843237804454d" + }, + { + "_id": "67d125706668432378044552", + "_tpl": "5b363dd25acfc4001a598fd2", + "slotId": "mod_muzzle", + "parentId": "67d12570666843237804454e" + }, + { + "_id": "67d125706668432378044553", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d125706668432378044551" + } + ] + }, + { + "Id": "67d125880100185b95385b0f", + "Name": "supr holo 133 6r", + "Root": "67d1258e666843237804552a", + "Items": [ + { + "_id": "67d1258e666843237804552a", + "_tpl": "54491c4f4bdc2db1078b4568", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1258e666843237804552b", + "_tpl": "55d4491a4bdc2d882f8b456e", + "slotId": "mod_barrel", + "parentId": "67d1258e666843237804552a" + }, + { + "_id": "67d1258e666843237804552c", + "_tpl": "55d45f484bdc2d972f8b456d", + "slotId": "mod_handguard", + "parentId": "67d1258e666843237804552a" + }, + { + "_id": "67d1258e666843237804552d", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "slotId": "mod_magazine", + "parentId": "67d1258e666843237804552a" + }, + { + "_id": "67d1258e666843237804552e", + "_tpl": "56083cba4bdc2de22e8b456f", + "slotId": "mod_stock", + "parentId": "67d1258e666843237804552a" + }, + { + "_id": "67d1258e666843237804552f", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount_001", + "parentId": "67d1258e666843237804552a" + }, + { + "_id": "67d1258e6668432378045530", + "_tpl": "5c0111ab0db834001966914d", + "slotId": "mod_muzzle", + "parentId": "67d1258e666843237804552b" + }, + { + "_id": "67d1258e6668432378045531", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d1258e666843237804552c" + }, + { + "_id": "67d1258e6668432378045532", + "_tpl": "5a5f1ce64f39f90b401987bc", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1258e666843237804552c" + }, + { + "_id": "67d1258e6668432378045533", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1258e666843237804552f" + }, + { + "_id": "67d1258e6668432378045534", + "_tpl": "59c0ec5b86f77435b128bfca", + "slotId": "mod_muzzle", + "parentId": "67d1258e6668432378045530" + } + ] + }, + { + "Id": "67d125a70100185b958acd5f", + "Name": "supr okp 133 6r", + "Root": "67d125ab6668432378045541", + "Items": [ + { + "_id": "67d125ab6668432378045541", + "_tpl": "54491c4f4bdc2db1078b4568", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d125ab6668432378045542", + "_tpl": "55d4491a4bdc2d882f8b456e", + "slotId": "mod_barrel", + "parentId": "67d125ab6668432378045541" + }, + { + "_id": "67d125ab6668432378045543", + "_tpl": "55d45f484bdc2d972f8b456d", + "slotId": "mod_handguard", + "parentId": "67d125ab6668432378045541" + }, + { + "_id": "67d125ab6668432378045544", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "slotId": "mod_magazine", + "parentId": "67d125ab6668432378045541" + }, + { + "_id": "67d125ab6668432378045545", + "_tpl": "56083cba4bdc2de22e8b456f", + "slotId": "mod_stock", + "parentId": "67d125ab6668432378045541" + }, + { + "_id": "67d125ab6668432378045546", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount_001", + "parentId": "67d125ab6668432378045541" + }, + { + "_id": "67d125ab6668432378045547", + "_tpl": "5c0111ab0db834001966914d", + "slotId": "mod_muzzle", + "parentId": "67d125ab6668432378045542" + }, + { + "_id": "67d125ab6668432378045548", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d125ab6668432378045543" + }, + { + "_id": "67d125ab6668432378045549", + "_tpl": "5a5f1ce64f39f90b401987bc", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d125ab6668432378045543" + }, + { + "_id": "67d125ab666843237804554a", + "_tpl": "570fd79bd2720bc7458b4583", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d125ab6668432378045546" + }, + { + "_id": "67d125ab666843237804554b", + "_tpl": "59c0ec5b86f77435b128bfca", + "slotId": "mod_muzzle", + "parentId": "67d125ab6668432378045547" + } + ] + }, + { + "Id": "67d125be0100185b9506bfc8", + "Name": "supr okp 133 6r v2", + "Root": "67d125c4666843237804637b", + "Items": [ + { + "_id": "67d125c4666843237804637b", + "_tpl": "54491c4f4bdc2db1078b4568", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d125c4666843237804637c", + "_tpl": "55d4491a4bdc2d882f8b456e", + "slotId": "mod_barrel", + "parentId": "67d125c4666843237804637b" + }, + { + "_id": "67d125c4666843237804637d", + "_tpl": "55d45f484bdc2d972f8b456d", + "slotId": "mod_handguard", + "parentId": "67d125c4666843237804637b" + }, + { + "_id": "67d125c4666843237804637e", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "slotId": "mod_magazine", + "parentId": "67d125c4666843237804637b" + }, + { + "_id": "67d125c4666843237804637f", + "_tpl": "56083be64bdc2d20478b456f", + "slotId": "mod_stock", + "parentId": "67d125c4666843237804637b" + }, + { + "_id": "67d125c46668432378046380", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount_001", + "parentId": "67d125c4666843237804637b" + }, + { + "_id": "67d125c46668432378046381", + "_tpl": "5c0111ab0db834001966914d", + "slotId": "mod_muzzle", + "parentId": "67d125c4666843237804637c" + }, + { + "_id": "67d125c46668432378046382", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d125c4666843237804637d" + }, + { + "_id": "67d125c46668432378046383", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d125c4666843237804637d" + }, + { + "_id": "67d125c46668432378046384", + "_tpl": "570fd79bd2720bc7458b4583", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d125c46668432378046380" + }, + { + "_id": "67d125c46668432378046385", + "_tpl": "59c0ec5b86f77435b128bfca", + "slotId": "mod_muzzle", + "parentId": "67d125c46668432378046381" + } + ] + }, + { + "Id": "67d125d50100185b9548d51d", + "Name": "supr uh1 133 6r", + "Root": "67d125db66684323780463c3", + "Items": [ + { + "_id": "67d125db66684323780463c3", + "_tpl": "54491c4f4bdc2db1078b4568", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d125db66684323780463c4", + "_tpl": "55d4491a4bdc2d882f8b456e", + "slotId": "mod_barrel", + "parentId": "67d125db66684323780463c3" + }, + { + "_id": "67d125db66684323780463c5", + "_tpl": "55d45f484bdc2d972f8b456d", + "slotId": "mod_handguard", + "parentId": "67d125db66684323780463c3" + }, + { + "_id": "67d125db66684323780463c6", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "slotId": "mod_magazine", + "parentId": "67d125db66684323780463c3" + }, + { + "_id": "67d125db66684323780463c7", + "_tpl": "56083be64bdc2d20478b456f", + "slotId": "mod_stock", + "parentId": "67d125db66684323780463c3" + }, + { + "_id": "67d125db66684323780463c8", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "slotId": "mod_mount_001", + "parentId": "67d125db66684323780463c3" + }, + { + "_id": "67d125db66684323780463c9", + "_tpl": "5c0111ab0db834001966914d", + "slotId": "mod_muzzle", + "parentId": "67d125db66684323780463c4" + }, + { + "_id": "67d125db66684323780463ca", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67d125db66684323780463c5" + }, + { + "_id": "67d125db66684323780463cb", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d125db66684323780463c5" + }, + { + "_id": "67d125db66684323780463cc", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d125db66684323780463c8" + }, + { + "_id": "67d125db66684323780463cd", + "_tpl": "59c0ec5b86f77435b128bfca", + "slotId": "mod_muzzle", + "parentId": "67d125db66684323780463c9" + } + ] + }, + { + "Id": "67d126450100185b95c66950", + "Name": "stock 133", + "Root": "67d1264a6668432378048240", + "Items": [ + { + "_id": "67d1264a6668432378048240", + "_tpl": "54491c4f4bdc2db1078b4568", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1264a6668432378048241", + "_tpl": "55d4491a4bdc2d882f8b456e", + "slotId": "mod_barrel", + "parentId": "67d1264a6668432378048240" + }, + { + "_id": "67d1264a6668432378048242", + "_tpl": "55d45d3f4bdc2d972f8b456c", + "slotId": "mod_handguard", + "parentId": "67d1264a6668432378048240" + }, + { + "_id": "67d1264a6668432378048243", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "slotId": "mod_magazine", + "parentId": "67d1264a6668432378048240" + }, + { + "_id": "67d1264a6668432378048244", + "_tpl": "56083cba4bdc2de22e8b456f", + "slotId": "mod_stock", + "parentId": "67d1264a6668432378048240" + }, + { + "_id": "67d1264a6668432378048245", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "slotId": "mod_mount_000", + "parentId": "67d1264a6668432378048240" + }, + { + "_id": "67d1264a6668432378048246", + "_tpl": "560838c94bdc2d77798b4569", + "slotId": "mod_muzzle", + "parentId": "67d1264a6668432378048241" + }, + { + "_id": "67d1264a6668432378048247", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1264a6668432378048245" + } + ] + }, + { + "Id": "67d1267d0100185b95d1df5e", + "Name": "loud holo m3 7r", + "Root": "67d1268e666843237804906e", + "Items": [ + { + "_id": "67d1268e666843237804906e", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1268e666843237804906f", + "_tpl": "6259c2c1d714855d182bad85", + "slotId": "mod_barrel", + "parentId": "67d1268e666843237804906e" + }, + { + "_id": "67d1268e6668432378049070", + "_tpl": "6259c4347d6aab70bc23a190", + "slotId": "mod_handguard", + "parentId": "67d1268e666843237804906e" + }, + { + "_id": "67d1268e6668432378049071", + "_tpl": "6259bdcabd28e4721447a2aa", + "slotId": "mod_magazine", + "parentId": "67d1268e666843237804906e" + }, + { + "_id": "67d1268e6668432378049072", + "_tpl": "6259c3387d6aab70bc23a18d", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d1268e666843237804906e" + }, + { + "_id": "67d1268e6668432378049073", + "_tpl": "625ed7c64d9b6612df732146", + "slotId": "mod_mount", + "parentId": "67d1268e666843237804906e" + }, + { + "_id": "67d1268e6668432378049074", + "_tpl": "625ebcef6f53af4aa66b44dc", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1268e666843237804906e" + }, + { + "_id": "67d1268e6668432378049075", + "_tpl": "625ec45bb14d7326ac20f572", + "slotId": "mod_charge", + "parentId": "67d1268e666843237804906e" + }, + { + "_id": "67d1268e6668432378049076", + "_tpl": "560838c94bdc2d77798b4569", + "slotId": "mod_muzzle", + "parentId": "67d1268e666843237804906f" + }, + { + "_id": "67d1268e6668432378049077", + "_tpl": "6259c3d8012d6678ec38eeb8", + "slotId": "mod_pistol_grip", + "parentId": "67d1268e6668432378049072" + }, + { + "_id": "67d1268e6668432378049078", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1268e6668432378049073" + } + ] + }, + { + "Id": "67d126a20100185b95a2ab34", + "Name": "supr holo m3 7r", + "Root": "67d126a5666843237804907b", + "Items": [ + { + "_id": "67d126a5666843237804907b", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d126a5666843237804907c", + "_tpl": "6259c2c1d714855d182bad85", + "slotId": "mod_barrel", + "parentId": "67d126a5666843237804907b" + }, + { + "_id": "67d126a5666843237804907d", + "_tpl": "6259c4347d6aab70bc23a190", + "slotId": "mod_handguard", + "parentId": "67d126a5666843237804907b" + }, + { + "_id": "67d126a5666843237804907e", + "_tpl": "6259bdcabd28e4721447a2aa", + "slotId": "mod_magazine", + "parentId": "67d126a5666843237804907b" + }, + { + "_id": "67d126a5666843237804907f", + "_tpl": "6259c3387d6aab70bc23a18d", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d126a5666843237804907b" + }, + { + "_id": "67d126a56668432378049080", + "_tpl": "625ed7c64d9b6612df732146", + "slotId": "mod_mount", + "parentId": "67d126a5666843237804907b" + }, + { + "_id": "67d126a56668432378049081", + "_tpl": "625ebcef6f53af4aa66b44dc", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d126a5666843237804907b" + }, + { + "_id": "67d126a56668432378049082", + "_tpl": "625ec45bb14d7326ac20f572", + "slotId": "mod_charge", + "parentId": "67d126a5666843237804907b" + }, + { + "_id": "67d126a56668432378049083", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "slotId": "mod_muzzle", + "parentId": "67d126a5666843237804907c" + }, + { + "_id": "67d126a56668432378049084", + "_tpl": "6259c3d8012d6678ec38eeb8", + "slotId": "mod_pistol_grip", + "parentId": "67d126a5666843237804907f" + }, + { + "_id": "67d126a56668432378049085", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d126a56668432378049080" + }, + { + "_id": "67d126a56668432378049086", + "_tpl": "5b363dd25acfc4001a598fd2", + "slotId": "mod_muzzle", + "parentId": "67d126a56668432378049083" + } + ] + }, + { + "Id": "67d126bb0100185b95c9b919", + "Name": "supr pixi m3 7r", + "Root": "67d126be6668432378049feb", + "Items": [ + { + "_id": "67d126be6668432378049feb", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d126be6668432378049fec", + "_tpl": "6259c2c1d714855d182bad85", + "slotId": "mod_barrel", + "parentId": "67d126be6668432378049feb" + }, + { + "_id": "67d126be6668432378049fed", + "_tpl": "6259c4347d6aab70bc23a190", + "slotId": "mod_handguard", + "parentId": "67d126be6668432378049feb" + }, + { + "_id": "67d126be6668432378049fee", + "_tpl": "6259bdcabd28e4721447a2aa", + "slotId": "mod_magazine", + "parentId": "67d126be6668432378049feb" + }, + { + "_id": "67d126be6668432378049fef", + "_tpl": "6259c3387d6aab70bc23a18d", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d126be6668432378049feb" + }, + { + "_id": "67d126be6668432378049ff0", + "_tpl": "625ed7c64d9b6612df732146", + "slotId": "mod_mount", + "parentId": "67d126be6668432378049feb" + }, + { + "_id": "67d126be6668432378049ff1", + "_tpl": "625ebcef6f53af4aa66b44dc", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d126be6668432378049feb" + }, + { + "_id": "67d126be6668432378049ff2", + "_tpl": "625ec45bb14d7326ac20f572", + "slotId": "mod_charge", + "parentId": "67d126be6668432378049feb" + }, + { + "_id": "67d126be6668432378049ff3", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "slotId": "mod_muzzle", + "parentId": "67d126be6668432378049fec" + }, + { + "_id": "67d126be6668432378049ff4", + "_tpl": "6259c3d8012d6678ec38eeb8", + "slotId": "mod_pistol_grip", + "parentId": "67d126be6668432378049fef" + }, + { + "_id": "67d126be6668432378049ff5", + "_tpl": "584984812459776a704a82a6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d126be6668432378049ff0" + }, + { + "_id": "67d126be6668432378049ff6", + "_tpl": "5b363dd25acfc4001a598fd2", + "slotId": "mod_muzzle", + "parentId": "67d126be6668432378049ff3" + } + ] + }, + { + "Id": "67d126ce0100185b950501c5", + "Name": "loud dp m3 7r", + "Root": "67d126d1666843237804a034", + "Items": [ + { + "_id": "67d126d1666843237804a034", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d126d1666843237804a035", + "_tpl": "6259c2c1d714855d182bad85", + "slotId": "mod_barrel", + "parentId": "67d126d1666843237804a034" + }, + { + "_id": "67d126d1666843237804a036", + "_tpl": "6259c4347d6aab70bc23a190", + "slotId": "mod_handguard", + "parentId": "67d126d1666843237804a034" + }, + { + "_id": "67d126d1666843237804a037", + "_tpl": "6259bdcabd28e4721447a2aa", + "slotId": "mod_magazine", + "parentId": "67d126d1666843237804a034" + }, + { + "_id": "67d126d1666843237804a038", + "_tpl": "6259c3387d6aab70bc23a18d", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d126d1666843237804a034" + }, + { + "_id": "67d126d1666843237804a039", + "_tpl": "625ed7c64d9b6612df732146", + "slotId": "mod_mount", + "parentId": "67d126d1666843237804a034" + }, + { + "_id": "67d126d1666843237804a03a", + "_tpl": "625ebcef6f53af4aa66b44dc", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d126d1666843237804a034" + }, + { + "_id": "67d126d1666843237804a03b", + "_tpl": "625ec45bb14d7326ac20f572", + "slotId": "mod_charge", + "parentId": "67d126d1666843237804a034" + }, + { + "_id": "67d126d1666843237804a03c", + "_tpl": "560838c94bdc2d77798b4569", + "slotId": "mod_muzzle", + "parentId": "67d126d1666843237804a035" + }, + { + "_id": "67d126d1666843237804a03d", + "_tpl": "6259c3d8012d6678ec38eeb8", + "slotId": "mod_pistol_grip", + "parentId": "67d126d1666843237804a038" + }, + { + "_id": "67d126d1666843237804a03e", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d126d1666843237804a039" + }, + { + "_id": "67d126d1666843237804a03f", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d126d1666843237804a03e" + } + ] + }, + { + "Id": "67d126fd0100185b95e4353f", + "Name": "supr stock m3", + "Root": "67d12705666843237804afa1", + "Items": [ + { + "_id": "67d12705666843237804afa1", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12705666843237804afa2", + "_tpl": "6259c2c1d714855d182bad85", + "slotId": "mod_barrel", + "parentId": "67d12705666843237804afa1" + }, + { + "_id": "67d12705666843237804afa3", + "_tpl": "6259c4347d6aab70bc23a190", + "slotId": "mod_handguard", + "parentId": "67d12705666843237804afa1" + }, + { + "_id": "67d12705666843237804afa4", + "_tpl": "6259bdcabd28e4721447a2aa", + "slotId": "mod_magazine", + "parentId": "67d12705666843237804afa1" + }, + { + "_id": "67d12705666843237804afa5", + "_tpl": "625eb0faa6e3a82193267ad9", + "slotId": "mod_stock", + "parentId": "67d12705666843237804afa1" + }, + { + "_id": "67d12705666843237804afa6", + "_tpl": "625ebcef6f53af4aa66b44dc", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12705666843237804afa1" + }, + { + "_id": "67d12705666843237804afa7", + "_tpl": "625ec45bb14d7326ac20f572", + "slotId": "mod_charge", + "parentId": "67d12705666843237804afa1" + }, + { + "_id": "67d12705666843237804afa8", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "slotId": "mod_muzzle", + "parentId": "67d12705666843237804afa2" + }, + { + "_id": "67d12705666843237804afa9", + "_tpl": "5b363dd25acfc4001a598fd2", + "slotId": "mod_muzzle", + "parentId": "67d12705666843237804afa8" + } + ] + }, + { + "Id": "67d127390100185b9524c993", + "Name": "loud ekp m3 7r", + "Root": "67d1273c666843237804bedb", + "Items": [ + { + "_id": "67d1273c666843237804bedb", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1273c666843237804bedc", + "_tpl": "6259c2c1d714855d182bad85", + "slotId": "mod_barrel", + "parentId": "67d1273c666843237804bedb" + }, + { + "_id": "67d1273c666843237804bedd", + "_tpl": "6259c4347d6aab70bc23a190", + "slotId": "mod_handguard", + "parentId": "67d1273c666843237804bedb" + }, + { + "_id": "67d1273c666843237804bede", + "_tpl": "6259bdcabd28e4721447a2aa", + "slotId": "mod_magazine", + "parentId": "67d1273c666843237804bedb" + }, + { + "_id": "67d1273c666843237804bedf", + "_tpl": "6259c3387d6aab70bc23a18d", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d1273c666843237804bedb" + }, + { + "_id": "67d1273c666843237804bee0", + "_tpl": "625ed7c64d9b6612df732146", + "slotId": "mod_mount", + "parentId": "67d1273c666843237804bedb" + }, + { + "_id": "67d1273c666843237804bee1", + "_tpl": "625ebcef6f53af4aa66b44dc", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1273c666843237804bedb" + }, + { + "_id": "67d1273c666843237804bee2", + "_tpl": "625ec45bb14d7326ac20f572", + "slotId": "mod_charge", + "parentId": "67d1273c666843237804bedb" + }, + { + "_id": "67d1273c666843237804bee3", + "_tpl": "560838c94bdc2d77798b4569", + "slotId": "mod_muzzle", + "parentId": "67d1273c666843237804bedc" + }, + { + "_id": "67d1273c666843237804bee4", + "_tpl": "6259c3d8012d6678ec38eeb8", + "slotId": "mod_pistol_grip", + "parentId": "67d1273c666843237804bedf" + }, + { + "_id": "67d1273c666843237804bee5", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1273c666843237804bee0" + } + ] + }, + { + "Id": "67d127b00100185b951d1bc5", + "Name": "loud holo aa12", + "Root": "67d127b7666843237804df0b", + "Items": [ + { + "_id": "67d127b7666843237804df0b", + "_tpl": "67124dcfa3541f2a1f0e788b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d127b7666843237804df0c", + "_tpl": "66ffac9e316b08f6840a73e6", + "slotId": "mod_stock", + "parentId": "67d127b7666843237804df0b" + }, + { + "_id": "67d127b7666843237804df0d", + "_tpl": "6709133fa532466d5403fb7c", + "slotId": "mod_magazine", + "parentId": "67d127b7666843237804df0b" + }, + { + "_id": "67d127b7666843237804df0e", + "_tpl": "670fd0a8d8d4eae4790c8187", + "slotId": "mod_barrel", + "parentId": "67d127b7666843237804df0b" + }, + { + "_id": "67d127b7666843237804df0f", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d127b7666843237804df0b" + }, + { + "_id": "67d127b7666843237804df10", + "_tpl": "670fd1cc95c92bfc8e0bea39", + "slotId": "mod_muzzle", + "parentId": "67d127b7666843237804df0e" + }, + { + "_id": "67d127b7666843237804df11", + "_tpl": "6710cea62bb09af72f0e6bf8", + "slotId": "mod_mount", + "parentId": "67d127b7666843237804df0e" + }, + { + "_id": "67d127b7666843237804df12", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d127b7666843237804df11" + } + ] + }, + { + "Id": "67d127cc0100185b958e1c16", + "Name": "loud uh1 aa12", + "Root": "67d127d1666843237804df5f", + "Items": [ + { + "_id": "67d127d1666843237804df5f", + "_tpl": "67124dcfa3541f2a1f0e788b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d127d1666843237804df60", + "_tpl": "66ffac9e316b08f6840a73e6", + "slotId": "mod_stock", + "parentId": "67d127d1666843237804df5f" + }, + { + "_id": "67d127d1666843237804df61", + "_tpl": "6709133fa532466d5403fb7c", + "slotId": "mod_magazine", + "parentId": "67d127d1666843237804df5f" + }, + { + "_id": "67d127d1666843237804df62", + "_tpl": "670fd0a8d8d4eae4790c8187", + "slotId": "mod_barrel", + "parentId": "67d127d1666843237804df5f" + }, + { + "_id": "67d127d1666843237804df63", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d127d1666843237804df5f" + }, + { + "_id": "67d127d1666843237804df64", + "_tpl": "670fd1cc95c92bfc8e0bea39", + "slotId": "mod_muzzle", + "parentId": "67d127d1666843237804df62" + }, + { + "_id": "67d127d1666843237804df65", + "_tpl": "6710cea62bb09af72f0e6bf8", + "slotId": "mod_mount", + "parentId": "67d127d1666843237804df62" + }, + { + "_id": "67d127d1666843237804df66", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d127d1666843237804df65" + } + ] + }, + { + "Id": "67d127f20100185b95ac3cd8", + "Name": "loud dp aa12", + "Root": "67d127f5666843237804ef59", + "Items": [ + { + "_id": "67d127f5666843237804ef59", + "_tpl": "67124dcfa3541f2a1f0e788b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d127f5666843237804ef5a", + "_tpl": "66ffac9e316b08f6840a73e6", + "slotId": "mod_stock", + "parentId": "67d127f5666843237804ef59" + }, + { + "_id": "67d127f5666843237804ef5b", + "_tpl": "6709133fa532466d5403fb7c", + "slotId": "mod_magazine", + "parentId": "67d127f5666843237804ef59" + }, + { + "_id": "67d127f5666843237804ef5c", + "_tpl": "670fd0a8d8d4eae4790c8187", + "slotId": "mod_barrel", + "parentId": "67d127f5666843237804ef59" + }, + { + "_id": "67d127f5666843237804ef5d", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d127f5666843237804ef59" + }, + { + "_id": "67d127f5666843237804ef5e", + "_tpl": "670fd1cc95c92bfc8e0bea39", + "slotId": "mod_muzzle", + "parentId": "67d127f5666843237804ef5c" + }, + { + "_id": "67d127f5666843237804ef5f", + "_tpl": "6710cea62bb09af72f0e6bf8", + "slotId": "mod_mount", + "parentId": "67d127f5666843237804ef5c" + }, + { + "_id": "67d127f5666843237804ef60", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d127f5666843237804ef5d" + }, + { + "_id": "67d127f5666843237804ef61", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d127f5666843237804ef5f" + } + ] + }, + { + "Id": "67d128340100185b952d5b43", + "Name": "loud stock aa12", + "Root": "67d1283d666843237804fffd", + "Items": [ + { + "_id": "67d1283d666843237804fffd", + "_tpl": "66ffa9b66e19cc902401c5e8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1283d666843237804fffe", + "_tpl": "670fd23798663bc4b10e911a", + "slotId": "mod_stock", + "parentId": "67d1283d666843237804fffd" + }, + { + "_id": "67d1283d666843237804ffff", + "_tpl": "66ffaab91f7492c901027bb8", + "slotId": "mod_magazine", + "parentId": "67d1283d666843237804fffd" + }, + { + "_id": "67d1283d6668432378050000", + "_tpl": "670fd0a8d8d4eae4790c8187", + "slotId": "mod_barrel", + "parentId": "67d1283d666843237804fffd" + }, + { + "_id": "67d1283d6668432378050001", + "_tpl": "670fd1cc95c92bfc8e0bea39", + "slotId": "mod_muzzle", + "parentId": "67d1283d6668432378050000" + }, + { + "_id": "67d1283d6668432378050002", + "_tpl": "6710cea62bb09af72f0e6bf8", + "slotId": "mod_mount", + "parentId": "67d1283d6668432378050000" + }, + { + "_id": "67d1283d6668432378050003", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1283d6668432378050002" + } + ] + }, + { + "Id": "67d128560100185b9542c331", + "Name": "loud stock drum aa12", + "Root": "67d128666668432378050de5", + "Items": [ + { + "_id": "67d128666668432378050de5", + "_tpl": "66ffa9b66e19cc902401c5e8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d128666668432378050de6", + "_tpl": "66ffac9e316b08f6840a73e6", + "slotId": "mod_stock", + "parentId": "67d128666668432378050de5" + }, + { + "_id": "67d128666668432378050de7", + "_tpl": "6709133fa532466d5403fb7c", + "slotId": "mod_magazine", + "parentId": "67d128666668432378050de5" + }, + { + "_id": "67d128666668432378050de8", + "_tpl": "670fd0a8d8d4eae4790c8187", + "slotId": "mod_barrel", + "parentId": "67d128666668432378050de5" + }, + { + "_id": "67d128666668432378050de9", + "_tpl": "670fd1cc95c92bfc8e0bea39", + "slotId": "mod_muzzle", + "parentId": "67d128666668432378050de8" + } + ] + }, + { + "Id": "67d128750100185b95c0fcce", + "Name": "loud stock drum aa12 v2", + "Root": "67d1287c6668432378050ded", + "Items": [ + { + "_id": "67d1287c6668432378050ded", + "_tpl": "66ffa9b66e19cc902401c5e8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1287c6668432378050dee", + "_tpl": "66ffac9e316b08f6840a73e6", + "slotId": "mod_stock", + "parentId": "67d1287c6668432378050ded" + }, + { + "_id": "67d1287c6668432378050def", + "_tpl": "6709133fa532466d5403fb7c", + "slotId": "mod_magazine", + "parentId": "67d1287c6668432378050ded" + }, + { + "_id": "67d1287c6668432378050df0", + "_tpl": "670fd0a8d8d4eae4790c8187", + "slotId": "mod_barrel", + "parentId": "67d1287c6668432378050ded" + }, + { + "_id": "67d1287c6668432378050df1", + "_tpl": "670fd1cc95c92bfc8e0bea39", + "slotId": "mod_muzzle", + "parentId": "67d1287c6668432378050df0" + }, + { + "_id": "67d1287c6668432378050df2", + "_tpl": "6710cea62bb09af72f0e6bf8", + "slotId": "mod_mount", + "parentId": "67d1287c6668432378050df0" + }, + { + "_id": "67d1287c6668432378050df3", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1287c6668432378050df2" + } + ] + }, + { + "Id": "67d129bf0100185b95491002", + "Name": "stock sawed-off", + "Root": "67d129c56668432378057611", + "Items": [ + { + "_id": "67d129c56668432378057611", + "_tpl": "64748cb8de82c85eaf0a273a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d129c56668432378057612", + "_tpl": "64748d02d1c009260702b526", + "slotId": "mod_barrel", + "parentId": "67d129c56668432378057611" + } + ] + }, + { + "Id": "67d129ca0100185b954aded0", + "Name": "stock sawed-off v2", + "Root": "67d129d06668432378057613", + "Items": [ + { + "_id": "67d129d06668432378057613", + "_tpl": "64748cb8de82c85eaf0a273a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d129d06668432378057614", + "_tpl": "64748d02d1c009260702b526", + "slotId": "mod_barrel", + "parentId": "67d129d06668432378057613" + } + ] + }, + { + "Id": "67d129db0100185b95660d1b", + "Name": "short mp43", + "Root": "67d129e3666843237805853a", + "Items": [ + { + "_id": "67d129e3666843237805853a", + "_tpl": "5580223e4bdc2d1c128b457f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d129e3666843237805853b", + "_tpl": "5580169d4bdc2d9d138b4585", + "slotId": "mod_barrel", + "parentId": "67d129e3666843237805853a" + }, + { + "_id": "67d129e3666843237805853c", + "_tpl": "611a31ce5b7ffe001b4649d1", + "slotId": "mod_stock", + "parentId": "67d129e3666843237805853a" + } + ] + }, + { + "Id": "67d129ef0100185b955e0e40", + "Name": "mid mp43", + "Root": "67d129f3666843237805853e", + "Items": [ + { + "_id": "67d129f3666843237805853e", + "_tpl": "5580223e4bdc2d1c128b457f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d129f3666843237805853f", + "_tpl": "55d447bb4bdc2d892f8b456f", + "slotId": "mod_barrel", + "parentId": "67d129f3666843237805853e" + }, + { + "_id": "67d129f36668432378058540", + "_tpl": "611a31ce5b7ffe001b4649d1", + "slotId": "mod_stock", + "parentId": "67d129f3666843237805853e" + } + ] + }, + { + "Id": "67d12a180100185b95336110", + "Name": "tac30 black mp18", + "Root": "67d12a2266684323780594b8", + "Items": [ + { + "_id": "67d12a2266684323780594b8", + "_tpl": "61f7c9e189e6fb1a5e3ea78d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12a2266684323780594b9", + "_tpl": "61f4012adfc9f01a816adda1", + "slotId": "mod_barrel", + "parentId": "67d12a2266684323780594b8" + }, + { + "_id": "67d12a2266684323780594ba", + "_tpl": "61f803b8ced75b2e852e35f8", + "slotId": "mod_stock", + "parentId": "67d12a2266684323780594b8" + }, + { + "_id": "67d12a2266684323780594bb", + "_tpl": "61f8024263dc1250e26eb029", + "slotId": "mod_handguard", + "parentId": "67d12a2266684323780594b9" + }, + { + "_id": "67d12a2266684323780594bc", + "_tpl": "61f804acfcba9556ea304cb8", + "slotId": "mod_scope", + "parentId": "67d12a2266684323780594b9" + }, + { + "_id": "67d12a2266684323780594bd", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d12a2266684323780594bc" + }, + { + "_id": "67d12a2266684323780594be", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12a2266684323780594bd" + } + ] + }, + { + "Id": "67d12a370100185b95e8bcb6", + "Name": "vudu black mp18", + "Root": "67d12a3c66684323780594d0", + "Items": [ + { + "_id": "67d12a3c66684323780594d0", + "_tpl": "61f7c9e189e6fb1a5e3ea78d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12a3c66684323780594d1", + "_tpl": "61f4012adfc9f01a816adda1", + "slotId": "mod_barrel", + "parentId": "67d12a3c66684323780594d0" + }, + { + "_id": "67d12a3c66684323780594d2", + "_tpl": "61f803b8ced75b2e852e35f8", + "slotId": "mod_stock", + "parentId": "67d12a3c66684323780594d0" + }, + { + "_id": "67d12a3c66684323780594d3", + "_tpl": "61f8024263dc1250e26eb029", + "slotId": "mod_handguard", + "parentId": "67d12a3c66684323780594d1" + }, + { + "_id": "67d12a3c66684323780594d4", + "_tpl": "61f804acfcba9556ea304cb8", + "slotId": "mod_scope", + "parentId": "67d12a3c66684323780594d1" + }, + { + "_id": "67d12a3c66684323780594d5", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d12a3c66684323780594d4" + }, + { + "_id": "67d12a3c66684323780594d6", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12a3c66684323780594d5" + } + ] + }, + { + "Id": "67d12a4c0100185b957d71f3", + "Name": "specter black mp18", + "Root": "67d12a4f666843237805a52c", + "Items": [ + { + "_id": "67d12a4f666843237805a52c", + "_tpl": "61f7c9e189e6fb1a5e3ea78d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12a4f666843237805a52d", + "_tpl": "61f4012adfc9f01a816adda1", + "slotId": "mod_barrel", + "parentId": "67d12a4f666843237805a52c" + }, + { + "_id": "67d12a4f666843237805a52e", + "_tpl": "61f803b8ced75b2e852e35f8", + "slotId": "mod_stock", + "parentId": "67d12a4f666843237805a52c" + }, + { + "_id": "67d12a4f666843237805a52f", + "_tpl": "61f8024263dc1250e26eb029", + "slotId": "mod_handguard", + "parentId": "67d12a4f666843237805a52d" + }, + { + "_id": "67d12a4f666843237805a530", + "_tpl": "61f804acfcba9556ea304cb8", + "slotId": "mod_scope", + "parentId": "67d12a4f666843237805a52d" + }, + { + "_id": "67d12a4f666843237805a531", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12a4f666843237805a530" + } + ] + }, + { + "Id": "67d12a5c0100185b957e82a4", + "Name": "stock mp18", + "Root": "67d12a61666843237805a536", + "Items": [ + { + "_id": "67d12a61666843237805a536", + "_tpl": "61f7c9e189e6fb1a5e3ea78d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12a61666843237805a537", + "_tpl": "61f4012adfc9f01a816adda1", + "slotId": "mod_barrel", + "parentId": "67d12a61666843237805a536" + }, + { + "_id": "67d12a61666843237805a538", + "_tpl": "61f7b234ea4ab34f2f59c3ec", + "slotId": "mod_stock", + "parentId": "67d12a61666843237805a536" + }, + { + "_id": "67d12a61666843237805a539", + "_tpl": "61f7b85367ddd414173fdb36", + "slotId": "mod_handguard", + "parentId": "67d12a61666843237805a537" + }, + { + "_id": "67d12a61666843237805a53a", + "_tpl": "65f05b9d39dab9e9ec049cfd", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12a61666843237805a537" + } + ] + }, + { + "Id": "67d12a710100185b95645b1b", + "Name": "2x mp18", + "Root": "67d12a78666843237805b4a8", + "Items": [ + { + "_id": "67d12a78666843237805b4a8", + "_tpl": "61f7c9e189e6fb1a5e3ea78d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12a78666843237805b4a9", + "_tpl": "61f4012adfc9f01a816adda1", + "slotId": "mod_barrel", + "parentId": "67d12a78666843237805b4a8" + }, + { + "_id": "67d12a78666843237805b4aa", + "_tpl": "61f7b234ea4ab34f2f59c3ec", + "slotId": "mod_stock", + "parentId": "67d12a78666843237805b4a8" + }, + { + "_id": "67d12a78666843237805b4ab", + "_tpl": "61f7b85367ddd414173fdb36", + "slotId": "mod_handguard", + "parentId": "67d12a78666843237805b4a9" + }, + { + "_id": "67d12a78666843237805b4ac", + "_tpl": "61f804acfcba9556ea304cb8", + "slotId": "mod_scope", + "parentId": "67d12a78666843237805b4a9" + }, + { + "_id": "67d12a78666843237805b4ad", + "_tpl": "5d2dc3e548f035404a1a4798", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12a78666843237805b4ac" + } + ] + }, + { + "Id": "67d12ae90100185b9510b7ca", + "Name": "loud holo drum saiga12", + "Root": "67d12af2666843237805d665", + "Items": [ + { + "_id": "67d12af2666843237805d665", + "_tpl": "576165642459773c7a400233", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12af2666843237805d666", + "_tpl": "5827272a24597748c74bdeea", + "slotId": "mod_handguard", + "parentId": "67d12af2666843237805d665" + }, + { + "_id": "67d12af2666843237805d667", + "_tpl": "58272d7f2459774f6311ddfd", + "slotId": "mod_muzzle", + "parentId": "67d12af2666843237805d665" + }, + { + "_id": "67d12af2666843237805d668", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67d12af2666843237805d665" + }, + { + "_id": "67d12af2666843237805d669", + "_tpl": "57616c112459773cce774d66", + "slotId": "mod_reciever", + "parentId": "67d12af2666843237805d665" + }, + { + "_id": "67d12af2666843237805d66a", + "_tpl": "57a9b9ce2459770ee926038d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12af2666843237805d665" + }, + { + "_id": "67d12af2666843237805d66b", + "_tpl": "57616ca52459773c69055192", + "slotId": "mod_stock", + "parentId": "67d12af2666843237805d665" + }, + { + "_id": "67d12af2666843237805d66c", + "_tpl": "5cf8f3b0d7f00c00217872ef", + "slotId": "mod_magazine", + "parentId": "67d12af2666843237805d665" + }, + { + "_id": "67d12af2666843237805d66d", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d12af2666843237805d665" + }, + { + "_id": "67d12af2666843237805d66e", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12af2666843237805d666" + }, + { + "_id": "67d12af2666843237805d66f", + "_tpl": "59fc48e086f77463b1118392", + "slotId": "mod_foregrip", + "parentId": "67d12af2666843237805d666" + }, + { + "_id": "67d12af2666843237805d670", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12af2666843237805d666" + }, + { + "_id": "67d12af2666843237805d671", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67d12af2666843237805d66b" + } + ] + }, + { + "Id": "67d12b310100185b951b51d4", + "Name": "supr holo drum saiga12", + "Root": "67d12b34666843237805e780", + "Items": [ + { + "_id": "67d12b34666843237805e780", + "_tpl": "576165642459773c7a400233", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12b34666843237805e781", + "_tpl": "5827272a24597748c74bdeea", + "slotId": "mod_handguard", + "parentId": "67d12b34666843237805e780" + }, + { + "_id": "67d12b34666843237805e782", + "_tpl": "59c0ec5b86f77435b128bfca", + "slotId": "mod_muzzle", + "parentId": "67d12b34666843237805e780" + }, + { + "_id": "67d12b34666843237805e783", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67d12b34666843237805e780" + }, + { + "_id": "67d12b34666843237805e784", + "_tpl": "57616c112459773cce774d66", + "slotId": "mod_reciever", + "parentId": "67d12b34666843237805e780" + }, + { + "_id": "67d12b34666843237805e785", + "_tpl": "57a9b9ce2459770ee926038d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12b34666843237805e780" + }, + { + "_id": "67d12b34666843237805e786", + "_tpl": "57616ca52459773c69055192", + "slotId": "mod_stock", + "parentId": "67d12b34666843237805e780" + }, + { + "_id": "67d12b34666843237805e787", + "_tpl": "5cf8f3b0d7f00c00217872ef", + "slotId": "mod_magazine", + "parentId": "67d12b34666843237805e780" + }, + { + "_id": "67d12b34666843237805e788", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d12b34666843237805e780" + }, + { + "_id": "67d12b34666843237805e789", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12b34666843237805e781" + }, + { + "_id": "67d12b34666843237805e78a", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d12b34666843237805e781" + }, + { + "_id": "67d12b34666843237805e78b", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12b34666843237805e781" + }, + { + "_id": "67d12b34666843237805e78c", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67d12b34666843237805e786" + } + ] + }, + { + "Id": "67d12b560100185b953bd0c1", + "Name": "loud boss drum saiga12", + "Root": "67d12b5c666843237805f858", + "Items": [ + { + "_id": "67d12b5c666843237805f858", + "_tpl": "576165642459773c7a400233", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12b5c666843237805f859", + "_tpl": "5827272a24597748c74bdeea", + "slotId": "mod_handguard", + "parentId": "67d12b5c666843237805f858" + }, + { + "_id": "67d12b5c666843237805f85a", + "_tpl": "59fb137a86f7740adb646af1", + "slotId": "mod_muzzle", + "parentId": "67d12b5c666843237805f858" + }, + { + "_id": "67d12b5c666843237805f85b", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67d12b5c666843237805f858" + }, + { + "_id": "67d12b5c666843237805f85c", + "_tpl": "57616c112459773cce774d66", + "slotId": "mod_reciever", + "parentId": "67d12b5c666843237805f858" + }, + { + "_id": "67d12b5c666843237805f85d", + "_tpl": "57a9b9ce2459770ee926038d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12b5c666843237805f858" + }, + { + "_id": "67d12b5c666843237805f85e", + "_tpl": "57616ca52459773c69055192", + "slotId": "mod_stock", + "parentId": "67d12b5c666843237805f858" + }, + { + "_id": "67d12b5c666843237805f85f", + "_tpl": "5cf8f3b0d7f00c00217872ef", + "slotId": "mod_magazine", + "parentId": "67d12b5c666843237805f858" + }, + { + "_id": "67d12b5c666843237805f860", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d12b5c666843237805f858" + }, + { + "_id": "67d12b5c666843237805f861", + "_tpl": "655f13e0a246670fb0373245", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12b5c666843237805f859" + }, + { + "_id": "67d12b5c666843237805f862", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d12b5c666843237805f859" + }, + { + "_id": "67d12b5c666843237805f863", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12b5c666843237805f859" + }, + { + "_id": "67d12b5c666843237805f864", + "_tpl": "5a0c59791526d8dba737bba7", + "slotId": "mod_stock", + "parentId": "67d12b5c666843237805f85e" + } + ] + }, + { + "Id": "67d12bcc0100185b95c938a6", + "Name": "loud dp saiga12", + "Root": "67d12bd96668432378062678", + "Items": [ + { + "_id": "67d12bd96668432378062678", + "_tpl": "576165642459773c7a400233", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12bd96668432378062679", + "_tpl": "5f63418ef5750b524b45f116", + "slotId": "mod_handguard", + "parentId": "67d12bd96668432378062678" + }, + { + "_id": "67d12bd9666843237806267a", + "_tpl": "59fb137a86f7740adb646af1", + "slotId": "mod_muzzle", + "parentId": "67d12bd96668432378062678" + }, + { + "_id": "67d12bd9666843237806267b", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistol_grip", + "parentId": "67d12bd96668432378062678" + }, + { + "_id": "67d12bd9666843237806267c", + "_tpl": "57616c112459773cce774d66", + "slotId": "mod_reciever", + "parentId": "67d12bd96668432378062678" + }, + { + "_id": "67d12bd9666843237806267d", + "_tpl": "57a9b9ce2459770ee926038d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12bd96668432378062678" + }, + { + "_id": "67d12bd9666843237806267e", + "_tpl": "5ac78eaf5acfc4001926317a", + "slotId": "mod_stock", + "parentId": "67d12bd96668432378062678" + }, + { + "_id": "67d12bd9666843237806267f", + "_tpl": "5a966f51a2750c00156aacf6", + "slotId": "mod_magazine", + "parentId": "67d12bd96668432378062678" + }, + { + "_id": "67d12bd96668432378062680", + "_tpl": "5648ac824bdc2ded0b8b457d", + "slotId": "mod_charge", + "parentId": "67d12bd96668432378062678" + }, + { + "_id": "67d12bd96668432378062681", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d12bd96668432378062679" + }, + { + "_id": "67d12bd96668432378062682", + "_tpl": "5c1bc4812e22164bef5cfde7", + "slotId": "mod_foregrip", + "parentId": "67d12bd96668432378062679" + }, + { + "_id": "67d12bd96668432378062683", + "_tpl": "5b07dd285acfc4001754240d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12bd96668432378062679" + }, + { + "_id": "67d12bd96668432378062684", + "_tpl": "59ecc3dd86f7746dc827481c", + "slotId": "mod_stock", + "parentId": "67d12bd9666843237806267e" + }, + { + "_id": "67d12bd96668432378062685", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12bd96668432378062681" + } + ] + }, + { + "Id": "67d12c2a0100185b95e3b69d", + "Name": "loud uh1 mossberg", + "Root": "67d12c3266684323780643c6", + "Items": [ + { + "_id": "67d12c3266684323780643c6", + "_tpl": "5e870397991fd70db46995c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12c3266684323780643c7", + "_tpl": "5e87071478f43e51ca2de5e1", + "slotId": "mod_barrel", + "parentId": "67d12c3266684323780643c6" + }, + { + "_id": "67d12c3266684323780643c8", + "_tpl": "5e87076ce2db31558c75a11d", + "slotId": "mod_handguard", + "parentId": "67d12c3266684323780643c6" + }, + { + "_id": "67d12c3266684323780643c9", + "_tpl": "5e87080c81c4ed43e83cefda", + "slotId": "mod_magazine", + "parentId": "67d12c3266684323780643c6" + }, + { + "_id": "67d12c3266684323780643ca", + "_tpl": "5e87116b81c4ed43e83cefdd", + "slotId": "mod_stock", + "parentId": "67d12c3266684323780643c6" + }, + { + "_id": "67d12c3266684323780643cb", + "_tpl": "5eeb2ff5ea4f8b73c827350b", + "slotId": "mod_mount", + "parentId": "67d12c3266684323780643c6" + }, + { + "_id": "67d12c3266684323780643cc", + "_tpl": "5e8708d4ae379e67d22e0102", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12c3266684323780643c7" + }, + { + "_id": "67d12c3266684323780643cd", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12c3266684323780643cb" + }, + { + "_id": "67d12c3266684323780643ce", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12c3266684323780643cb" + } + ] + }, + { + "Id": "67d12c410100185b951e35bd", + "Name": "loud okp mossberg", + "Root": "67d12c4466684323780652ae", + "Items": [ + { + "_id": "67d12c4466684323780652ae", + "_tpl": "5e870397991fd70db46995c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12c4466684323780652af", + "_tpl": "5e87071478f43e51ca2de5e1", + "slotId": "mod_barrel", + "parentId": "67d12c4466684323780652ae" + }, + { + "_id": "67d12c4466684323780652b0", + "_tpl": "5e87076ce2db31558c75a11d", + "slotId": "mod_handguard", + "parentId": "67d12c4466684323780652ae" + }, + { + "_id": "67d12c4466684323780652b1", + "_tpl": "5e87080c81c4ed43e83cefda", + "slotId": "mod_magazine", + "parentId": "67d12c4466684323780652ae" + }, + { + "_id": "67d12c4466684323780652b2", + "_tpl": "5e87116b81c4ed43e83cefdd", + "slotId": "mod_stock", + "parentId": "67d12c4466684323780652ae" + }, + { + "_id": "67d12c4466684323780652b3", + "_tpl": "5eeb2ff5ea4f8b73c827350b", + "slotId": "mod_mount", + "parentId": "67d12c4466684323780652ae" + }, + { + "_id": "67d12c4466684323780652b4", + "_tpl": "5e8708d4ae379e67d22e0102", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12c4466684323780652af" + }, + { + "_id": "67d12c4466684323780652b5", + "_tpl": "570fd79bd2720bc7458b4583", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12c4466684323780652b3" + }, + { + "_id": "67d12c4466684323780652b6", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12c4466684323780652b3" + } + ] + }, + { + "Id": "67d12c660100185b95bab684", + "Name": "loud holo m870", + "Root": "67d12ca16668432378067030", + "Items": [ + { + "_id": "67d12ca16668432378067030", + "_tpl": "5a7828548dc32e5a9c28b516", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12ca16668432378067031", + "_tpl": "5a787f7ac5856700177af660", + "slotId": "mod_barrel", + "parentId": "67d12ca16668432378067030" + }, + { + "_id": "67d12ca16668432378067032", + "_tpl": "5a788031c585673f2b5c1c79", + "slotId": "mod_handguard", + "parentId": "67d12ca16668432378067030" + }, + { + "_id": "67d12ca16668432378067033", + "_tpl": "5a78830bc5856700137e4c90", + "slotId": "mod_magazine", + "parentId": "67d12ca16668432378067030" + }, + { + "_id": "67d12ca16668432378067034", + "_tpl": "5a7880d0c5856700142fdd9d", + "slotId": "mod_stock", + "parentId": "67d12ca16668432378067030" + }, + { + "_id": "67d12ca16668432378067035", + "_tpl": "5a78948ec5856700177b1124", + "slotId": "mod_mount", + "parentId": "67d12ca16668432378067030" + }, + { + "_id": "67d12ca16668432378067036", + "_tpl": "560838c94bdc2d77798b4569", + "slotId": "mod_muzzle", + "parentId": "67d12ca16668432378067031" + }, + { + "_id": "67d12ca16668432378067037", + "_tpl": "5c87ca002e221600114cb150", + "slotId": "mod_foregrip", + "parentId": "67d12ca16668432378067032" + }, + { + "_id": "67d12ca16668432378067038", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12ca16668432378067032" + }, + { + "_id": "67d12ca16668432378067039", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12ca16668432378067035" + } + ] + }, + { + "Id": "67d12c890100185b9538a641", + "Name": "supr dp m870", + "Root": "67d12c94666843237806701d", + "Items": [ + { + "_id": "67d12c94666843237806701d", + "_tpl": "5a7828548dc32e5a9c28b516", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12c94666843237806701e", + "_tpl": "5a787f7ac5856700177af660", + "slotId": "mod_barrel", + "parentId": "67d12c94666843237806701d" + }, + { + "_id": "67d12c94666843237806701f", + "_tpl": "5a788031c585673f2b5c1c79", + "slotId": "mod_handguard", + "parentId": "67d12c94666843237806701d" + }, + { + "_id": "67d12c946668432378067020", + "_tpl": "5a78830bc5856700137e4c90", + "slotId": "mod_magazine", + "parentId": "67d12c94666843237806701d" + }, + { + "_id": "67d12c946668432378067021", + "_tpl": "5a7880d0c5856700142fdd9d", + "slotId": "mod_stock", + "parentId": "67d12c94666843237806701d" + }, + { + "_id": "67d12c946668432378067022", + "_tpl": "5a78948ec5856700177b1124", + "slotId": "mod_mount", + "parentId": "67d12c94666843237806701d" + }, + { + "_id": "67d12c946668432378067023", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "slotId": "mod_muzzle", + "parentId": "67d12c94666843237806701e" + }, + { + "_id": "67d12c946668432378067024", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d12c94666843237806701f" + }, + { + "_id": "67d12c946668432378067025", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12c94666843237806701f" + }, + { + "_id": "67d12c946668432378067026", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d12c946668432378067022" + }, + { + "_id": "67d12c946668432378067027", + "_tpl": "5b363dd25acfc4001a598fd2", + "slotId": "mod_muzzle", + "parentId": "67d12c946668432378067023" + }, + { + "_id": "67d12c946668432378067028", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12c946668432378067026" + } + ] + }, + { + "Id": "67d12cb00100185b95458b0e", + "Name": "supr holo m870", + "Root": "67d12cb46668432378067fd8", + "Items": [ + { + "_id": "67d12cb46668432378067fd8", + "_tpl": "5a7828548dc32e5a9c28b516", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12cb46668432378067fd9", + "_tpl": "5a787f7ac5856700177af660", + "slotId": "mod_barrel", + "parentId": "67d12cb46668432378067fd8" + }, + { + "_id": "67d12cb46668432378067fda", + "_tpl": "5a788031c585673f2b5c1c79", + "slotId": "mod_handguard", + "parentId": "67d12cb46668432378067fd8" + }, + { + "_id": "67d12cb46668432378067fdb", + "_tpl": "5a78830bc5856700137e4c90", + "slotId": "mod_magazine", + "parentId": "67d12cb46668432378067fd8" + }, + { + "_id": "67d12cb46668432378067fdc", + "_tpl": "5a7880d0c5856700142fdd9d", + "slotId": "mod_stock", + "parentId": "67d12cb46668432378067fd8" + }, + { + "_id": "67d12cb46668432378067fdd", + "_tpl": "5a78948ec5856700177b1124", + "slotId": "mod_mount", + "parentId": "67d12cb46668432378067fd8" + }, + { + "_id": "67d12cb46668432378067fde", + "_tpl": "5b363dea5acfc4771e1c5e7e", + "slotId": "mod_muzzle", + "parentId": "67d12cb46668432378067fd9" + }, + { + "_id": "67d12cb46668432378067fdf", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d12cb46668432378067fda" + }, + { + "_id": "67d12cb46668432378067fe0", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d12cb46668432378067fda" + }, + { + "_id": "67d12cb46668432378067fe1", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12cb46668432378067fdd" + }, + { + "_id": "67d12cb46668432378067fe2", + "_tpl": "5b363dd25acfc4001a598fd2", + "slotId": "mod_muzzle", + "parentId": "67d12cb46668432378067fde" + } + ] + }, + { + "Id": "67d12cdf0100185b955ad8ce", + "Name": "loud pk06 mossberg", + "Root": "67d12ce96668432378068f96", + "Items": [ + { + "_id": "67d12ce96668432378068f96", + "_tpl": "5e870397991fd70db46995c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12ce96668432378068f97", + "_tpl": "5e87071478f43e51ca2de5e1", + "slotId": "mod_barrel", + "parentId": "67d12ce96668432378068f96" + }, + { + "_id": "67d12ce96668432378068f98", + "_tpl": "5eea21647547d6330471b3c9", + "slotId": "mod_handguard", + "parentId": "67d12ce96668432378068f96" + }, + { + "_id": "67d12ce96668432378068f99", + "_tpl": "5e87080c81c4ed43e83cefda", + "slotId": "mod_magazine", + "parentId": "67d12ce96668432378068f96" + }, + { + "_id": "67d12ce96668432378068f9a", + "_tpl": "5eea217fc64c5d0dfc05712a", + "slotId": "mod_stock", + "parentId": "67d12ce96668432378068f96" + }, + { + "_id": "67d12ce96668432378068f9b", + "_tpl": "5eeb2ff5ea4f8b73c827350b", + "slotId": "mod_mount", + "parentId": "67d12ce96668432378068f96" + }, + { + "_id": "67d12ce96668432378068f9c", + "_tpl": "5e8708d4ae379e67d22e0102", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12ce96668432378068f97" + }, + { + "_id": "67d12ce96668432378068f9d", + "_tpl": "57cffb66245977632f391a99", + "slotId": "mod_foregrip", + "parentId": "67d12ce96668432378068f98" + }, + { + "_id": "67d12ce96668432378068f9e", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12ce96668432378068f9b" + } + ] + }, + { + "Id": "67d12dd30100185b95457095", + "Name": "ekp toz", + "Root": "67d12dd9666843237806ed8b", + "Items": [ + { + "_id": "67d12dd9666843237806ed8b", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12dd9666843237806ed8c", + "_tpl": "5c6161fb2e221600113fbde5", + "slotId": "mod_magazine", + "parentId": "67d12dd9666843237806ed8b" + }, + { + "_id": "67d12dd9666843237806ed8d", + "_tpl": "5a38ef1fc4a282000b1521f6", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + }, + "parentId": "67d12dd9666843237806ed8b" + }, + { + "_id": "67d12dd9666843237806ed8e", + "_tpl": "5c6162682e22160010261a2b", + "slotId": "mod_mount_000", + "parentId": "67d12dd9666843237806ed8b" + }, + { + "_id": "67d12dd9666843237806ed8f", + "_tpl": "5a38eecdc4a282329a73b512", + "slotId": "mod_pistol_grip", + "parentId": "67d12dd9666843237806ed8d" + }, + { + "_id": "67d12dd9666843237806ed90", + "_tpl": "626a8ae89e664a2e2a75f409", + "slotId": "mod_stock", + "parentId": "67d12dd9666843237806ed8d" + }, + { + "_id": "67d12dd9666843237806ed91", + "_tpl": "5c61627a2e22160012542c55", + "slotId": "mod_mount_000", + "parentId": "67d12dd9666843237806ed8e" + }, + { + "_id": "67d12dd9666843237806ed92", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12dd9666843237806ed91" + } + ] + }, + { + "Id": "67d12dea0100185b95efafb9", + "Name": "ekp toz v2", + "Root": "67d12ded666843237806ed98", + "Items": [ + { + "_id": "67d12ded666843237806ed98", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12ded666843237806ed99", + "_tpl": "5c6161fb2e221600113fbde5", + "slotId": "mod_magazine", + "parentId": "67d12ded666843237806ed98" + }, + { + "_id": "67d12ded666843237806ed9a", + "_tpl": "5c99f3592e221644fc633070", + "slotId": "mod_stock", + "parentId": "67d12ded666843237806ed98" + }, + { + "_id": "67d12ded666843237806ed9b", + "_tpl": "5c6162682e22160010261a2b", + "slotId": "mod_mount_000", + "parentId": "67d12ded666843237806ed98" + }, + { + "_id": "67d12ded666843237806ed9c", + "_tpl": "5c61627a2e22160012542c55", + "slotId": "mod_mount_000", + "parentId": "67d12ded666843237806ed9b" + }, + { + "_id": "67d12ded666843237806ed9d", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12ded666843237806ed9c" + } + ] + }, + { + "Id": "67d12dfd0100185b950ce264", + "Name": "ekp toz v3", + "Root": "67d12e00666843237806fdde", + "Items": [ + { + "_id": "67d12e00666843237806fdde", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12e00666843237806fddf", + "_tpl": "5c6161fb2e221600113fbde5", + "slotId": "mod_magazine", + "parentId": "67d12e00666843237806fdde" + }, + { + "_id": "67d12e00666843237806fde0", + "_tpl": "5adf23995acfc400185c2aeb", + "slotId": "mod_stock", + "parentId": "67d12e00666843237806fdde" + }, + { + "_id": "67d12e00666843237806fde1", + "_tpl": "5c6162682e22160010261a2b", + "slotId": "mod_mount_000", + "parentId": "67d12e00666843237806fdde" + }, + { + "_id": "67d12e00666843237806fde2", + "_tpl": "5c61627a2e22160012542c55", + "slotId": "mod_mount_000", + "parentId": "67d12e00666843237806fde1" + }, + { + "_id": "67d12e00666843237806fde3", + "_tpl": "591c4efa86f7741030027726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12e00666843237806fde2" + } + ] + }, + { + "Id": "67d12e280100185b952ddd28", + "Name": "tac30 toz", + "Root": "67d12e2f6668432378070f11", + "Items": [ + { + "_id": "67d12e2f6668432378070f11", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12e2f6668432378070f12", + "_tpl": "5c6161fb2e221600113fbde5", + "slotId": "mod_magazine", + "parentId": "67d12e2f6668432378070f11" + }, + { + "_id": "67d12e2f6668432378070f13", + "_tpl": "5c99f3592e221644fc633070", + "slotId": "mod_stock", + "parentId": "67d12e2f6668432378070f11" + }, + { + "_id": "67d12e2f6668432378070f14", + "_tpl": "5c6162682e22160010261a2b", + "slotId": "mod_mount_000", + "parentId": "67d12e2f6668432378070f11" + }, + { + "_id": "67d12e2f6668432378070f15", + "_tpl": "5bbde409d4351e003562b036", + "slotId": "mod_stock", + "parentId": "67d12e2f6668432378070f13" + }, + { + "_id": "67d12e2f6668432378070f16", + "_tpl": "5c61627a2e22160012542c55", + "slotId": "mod_mount_000", + "parentId": "67d12e2f6668432378070f14" + }, + { + "_id": "67d12e2f6668432378070f17", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d12e2f6668432378070f16" + }, + { + "_id": "67d12e2f6668432378070f18", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12e2f6668432378070f17" + } + ] + }, + { + "Id": "67d12eb70100185b95ccd337", + "Name": "short ks23", + "Root": "67d12ebe6668432378072d35", + "Items": [ + { + "_id": "67d12ebe6668432378072d35", + "_tpl": "5e848cc2988a8701445df1e8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12ebe6668432378072d36", + "_tpl": "5e848d1c264f7c180b5e35a9", + "slotId": "mod_barrel", + "parentId": "67d12ebe6668432378072d35" + }, + { + "_id": "67d12ebe6668432378072d37", + "_tpl": "5e848d51e4dbc5266a4ec63b", + "slotId": "mod_handguard", + "parentId": "67d12ebe6668432378072d35" + }, + { + "_id": "67d12ebe6668432378072d38", + "_tpl": "5f647d9f8499b57dc40ddb93", + "slotId": "mod_magazine", + "parentId": "67d12ebe6668432378072d35" + }, + { + "_id": "67d12ebe6668432378072d39", + "_tpl": "5e848d99865c0f329958c83b", + "slotId": "mod_stock", + "parentId": "67d12ebe6668432378072d35" + } + ] + }, + { + "Id": "67d12ec90100185b959d7de1", + "Name": "short ks23 v2", + "Root": "67d12ecc6668432378073bfe", + "Items": [ + { + "_id": "67d12ecc6668432378073bfe", + "_tpl": "5e848cc2988a8701445df1e8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12ecc6668432378073bff", + "_tpl": "5e848d1c264f7c180b5e35a9", + "slotId": "mod_barrel", + "parentId": "67d12ecc6668432378073bfe" + }, + { + "_id": "67d12ecc6668432378073c00", + "_tpl": "5e848d51e4dbc5266a4ec63b", + "slotId": "mod_handguard", + "parentId": "67d12ecc6668432378073bfe" + }, + { + "_id": "67d12ecc6668432378073c01", + "_tpl": "5f647d9f8499b57dc40ddb93", + "slotId": "mod_magazine", + "parentId": "67d12ecc6668432378073bfe" + }, + { + "_id": "67d12ecc6668432378073c02", + "_tpl": "5e848d99865c0f329958c83b", + "slotId": "mod_stock", + "parentId": "67d12ecc6668432378073bfe" + } + ] + }, + { + "Id": "67d12ed80100185b953635dd", + "Name": "ks23", + "Root": "67d12edd6668432378073c05", + "Items": [ + { + "_id": "67d12edd6668432378073c05", + "_tpl": "5e848cc2988a8701445df1e8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12edd6668432378073c06", + "_tpl": "5e848d2eea0a7c419c2f9bfd", + "slotId": "mod_barrel", + "parentId": "67d12edd6668432378073c05" + }, + { + "_id": "67d12edd6668432378073c07", + "_tpl": "5e848d51e4dbc5266a4ec63b", + "slotId": "mod_handguard", + "parentId": "67d12edd6668432378073c05" + }, + { + "_id": "67d12edd6668432378073c08", + "_tpl": "5f647d9f8499b57dc40ddb93", + "slotId": "mod_magazine", + "parentId": "67d12edd6668432378073c05" + }, + { + "_id": "67d12edd6668432378073c09", + "_tpl": "5e848db4681bea2ada00daa9", + "slotId": "mod_stock", + "parentId": "67d12edd6668432378073c05" + } + ] + }, + { + "Id": "67d12eee0100185b9543d579", + "Name": "ks23 v2", + "Root": "67d12ef36668432378073c0a", + "Items": [ + { + "_id": "67d12ef36668432378073c0a", + "_tpl": "5e848cc2988a8701445df1e8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12ef36668432378073c0b", + "_tpl": "5e848d2eea0a7c419c2f9bfd", + "slotId": "mod_barrel", + "parentId": "67d12ef36668432378073c0a" + }, + { + "_id": "67d12ef36668432378073c0c", + "_tpl": "5e848d51e4dbc5266a4ec63b", + "slotId": "mod_handguard", + "parentId": "67d12ef36668432378073c0a" + }, + { + "_id": "67d12ef36668432378073c0d", + "_tpl": "5f647d9f8499b57dc40ddb93", + "slotId": "mod_magazine", + "parentId": "67d12ef36668432378073c0a" + }, + { + "_id": "67d12ef36668432378073c0e", + "_tpl": "5e848db4681bea2ada00daa9", + "slotId": "mod_stock", + "parentId": "67d12ef36668432378073c0a" + } + ] + }, + { + "Id": "67d12fb60100185b95e40a5b", + "Name": "stock apb", + "Root": "67d12fba6668432378077a7d", + "Items": [ + { + "_id": "67d12fba6668432378077a7d", + "_tpl": "5abccb7dd8ce87001773e277", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12fba6668432378077a7e", + "_tpl": "5a17fb03fcdbcbcae668728f", + "slotId": "mod_magazine", + "parentId": "67d12fba6668432378077a7d" + }, + { + "_id": "67d12fba6668432378077a7f", + "_tpl": "5a17fb9dfcdbcbcae6687291", + "slotId": "mod_stock", + "parentId": "67d12fba6668432378077a7d" + }, + { + "_id": "67d12fba6668432378077a80", + "_tpl": "5a17fc70fcdbcb0176308b3d", + "slotId": "mod_pistol_grip", + "parentId": "67d12fba6668432378077a7d" + }, + { + "_id": "67d12fba6668432378077a81", + "_tpl": "5aba62f8d8ce87001943946b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12fba6668432378077a7d" + }, + { + "_id": "67d12fba6668432378077a82", + "_tpl": "5aba639ed8ce8700182ece67", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12fba6668432378077a7d" + }, + { + "_id": "67d12fba6668432378077a83", + "_tpl": "5abcc328d8ce8700194394f3", + "slotId": "mod_muzzle", + "parentId": "67d12fba6668432378077a7d" + } + ] + }, + { + "Id": "67d12fc90100185b9590df6b", + "Name": "stock apb v2", + "Root": "67d12fcc6668432378077a84", + "Items": [ + { + "_id": "67d12fcc6668432378077a84", + "_tpl": "5abccb7dd8ce87001773e277", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d12fcc6668432378077a85", + "_tpl": "5a17fb03fcdbcbcae668728f", + "slotId": "mod_magazine", + "parentId": "67d12fcc6668432378077a84" + }, + { + "_id": "67d12fcc6668432378077a86", + "_tpl": "5a17fb9dfcdbcbcae6687291", + "slotId": "mod_stock", + "parentId": "67d12fcc6668432378077a84" + }, + { + "_id": "67d12fcc6668432378077a87", + "_tpl": "5a17fc70fcdbcb0176308b3d", + "slotId": "mod_pistol_grip", + "parentId": "67d12fcc6668432378077a84" + }, + { + "_id": "67d12fcc6668432378077a88", + "_tpl": "5aba62f8d8ce87001943946b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12fcc6668432378077a84" + }, + { + "_id": "67d12fcc6668432378077a89", + "_tpl": "5aba639ed8ce8700182ece67", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d12fcc6668432378077a84" + }, + { + "_id": "67d12fcc6668432378077a8a", + "_tpl": "5abcc328d8ce8700194394f3", + "slotId": "mod_muzzle", + "parentId": "67d12fcc6668432378077a84" + } + ] + }, + { + "Id": "67d12ff10100185b9596b0b9", + "Name": "gold colt45", + "Root": "67d13000666843237807886c", + "Items": [ + { + "_id": "67d13000666843237807886c", + "_tpl": "5f36a0e5fbf956000b716b65", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13000666843237807886d", + "_tpl": "5f3e7801153b8571434a924c", + "slotId": "mod_barrel", + "parentId": "67d13000666843237807886c" + }, + { + "_id": "67d13000666843237807886e", + "_tpl": "5f3e778efcd9b651187d7201", + "slotId": "mod_pistol_grip", + "parentId": "67d13000666843237807886c" + }, + { + "_id": "67d13000666843237807886f", + "_tpl": "5f3e7823ddc4f03b010e2045", + "slotId": "mod_reciever", + "parentId": "67d13000666843237807886c" + }, + { + "_id": "67d130006668432378078870", + "_tpl": "5ef3448ab37dfd6af863525c", + "slotId": "mod_magazine", + "parentId": "67d13000666843237807886c" + }, + { + "_id": "67d130006668432378078871", + "_tpl": "5ef32e4d1c1fd62aea6a150d", + "slotId": "mod_trigger", + "parentId": "67d13000666843237807886c" + }, + { + "_id": "67d130006668432378078872", + "_tpl": "5f3e76d86cda304dcc634054", + "slotId": "mod_hammer", + "parentId": "67d13000666843237807886c" + }, + { + "_id": "67d130006668432378078873", + "_tpl": "5f3e777688ca2d00ad199d25", + "slotId": "mod_catch", + "parentId": "67d13000666843237807886c" + }, + { + "_id": "67d130006668432378078874", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_mount_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13000666843237807886c" + }, + { + "_id": "67d130006668432378078875", + "_tpl": "5f3e7897ddc4f03b010e204a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13000666843237807886f" + }, + { + "_id": "67d130006668432378078876", + "_tpl": "5f3e78a7fbf956000b716b8e", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13000666843237807886f" + }, + { + "_id": "67d130006668432378078877", + "_tpl": "5ef61964ec7f42238c31e0c1", + "slotId": "mod_muzzle", + "parentId": "67d13000666843237807886f" + } + ] + }, + { + "Id": "67d130190100185b951301f4", + "Name": "supr gold colt45", + "Root": "67d130236668432378079652", + "Items": [ + { + "_id": "67d130236668432378079652", + "_tpl": "5f36a0e5fbf956000b716b65", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d130236668432378079653", + "_tpl": "5f3e77f59103d430b93f94c1", + "slotId": "mod_barrel", + "parentId": "67d130236668432378079652" + }, + { + "_id": "67d130236668432378079654", + "_tpl": "5f3e778efcd9b651187d7201", + "slotId": "mod_pistol_grip", + "parentId": "67d130236668432378079652" + }, + { + "_id": "67d130236668432378079655", + "_tpl": "5f3e7823ddc4f03b010e2045", + "slotId": "mod_reciever", + "parentId": "67d130236668432378079652" + }, + { + "_id": "67d130236668432378079656", + "_tpl": "5ef3448ab37dfd6af863525c", + "slotId": "mod_magazine", + "parentId": "67d130236668432378079652" + }, + { + "_id": "67d130236668432378079657", + "_tpl": "5ef32e4d1c1fd62aea6a150d", + "slotId": "mod_trigger", + "parentId": "67d130236668432378079652" + }, + { + "_id": "67d130236668432378079658", + "_tpl": "5f3e76d86cda304dcc634054", + "slotId": "mod_hammer", + "parentId": "67d130236668432378079652" + }, + { + "_id": "67d130236668432378079659", + "_tpl": "5f3e777688ca2d00ad199d25", + "slotId": "mod_catch", + "parentId": "67d130236668432378079652" + }, + { + "_id": "67d13023666843237807965a", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_mount_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d130236668432378079652" + }, + { + "_id": "67d13023666843237807965b", + "_tpl": "5fc4b97bab884124df0cd5e3", + "slotId": "mod_muzzle", + "parentId": "67d130236668432378079653" + }, + { + "_id": "67d13023666843237807965c", + "_tpl": "5f3e7897ddc4f03b010e204a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d130236668432378079655" + }, + { + "_id": "67d13023666843237807965d", + "_tpl": "5f3e78a7fbf956000b716b8e", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d130236668432378079655" + }, + { + "_id": "67d13023666843237807965e", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d13023666843237807965b" + } + ] + }, + { + "Id": "67d1305c0100185b95ad860b", + "Name": "supr black colt45", + "Root": "67d13061666843237807a54c", + "Items": [ + { + "_id": "67d13061666843237807a54c", + "_tpl": "5f36a0e5fbf956000b716b65", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13061666843237807a54d", + "_tpl": "5f3e77f59103d430b93f94c1", + "slotId": "mod_barrel", + "parentId": "67d13061666843237807a54c" + }, + { + "_id": "67d13061666843237807a54e", + "_tpl": "5f3e778efcd9b651187d7201", + "slotId": "mod_pistol_grip", + "parentId": "67d13061666843237807a54c" + }, + { + "_id": "67d13061666843237807a54f", + "_tpl": "5e81edc13397a21db957f6a1", + "slotId": "mod_reciever", + "parentId": "67d13061666843237807a54c" + }, + { + "_id": "67d13061666843237807a550", + "_tpl": "5ef3448ab37dfd6af863525c", + "slotId": "mod_magazine", + "parentId": "67d13061666843237807a54c" + }, + { + "_id": "67d13061666843237807a551", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "slotId": "mod_trigger", + "parentId": "67d13061666843237807a54c" + }, + { + "_id": "67d13061666843237807a552", + "_tpl": "5ef35bc243cb350a955a7ccd", + "slotId": "mod_hammer", + "parentId": "67d13061666843237807a54c" + }, + { + "_id": "67d13061666843237807a553", + "_tpl": "5f3e777688ca2d00ad199d25", + "slotId": "mod_catch", + "parentId": "67d13061666843237807a54c" + }, + { + "_id": "67d13061666843237807a554", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_mount_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13061666843237807a54c" + }, + { + "_id": "67d13061666843237807a555", + "_tpl": "5fc4b97bab884124df0cd5e3", + "slotId": "mod_muzzle", + "parentId": "67d13061666843237807a54d" + }, + { + "_id": "67d13061666843237807a556", + "_tpl": "5e81ee4dcb2b95385c177582", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13061666843237807a54f" + }, + { + "_id": "67d13061666843237807a557", + "_tpl": "5e81ee213397a21db957f6a6", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13061666843237807a54f" + }, + { + "_id": "67d13061666843237807a558", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d13061666843237807a555" + } + ] + }, + { + "Id": "67d1308c0100185b955f4ca1", + "Name": "short black rhino", + "Root": "67d13092666843237807b39f", + "Items": [ + { + "_id": "67d13092666843237807b39f", + "_tpl": "61a4c8884f95bc3b2c5dc96f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13092666843237807b3a0", + "_tpl": "619f54a1d25cbd424731fb99", + "slotId": "mod_magazine", + "parentId": "67d13092666843237807b39f" + }, + { + "_id": "67d13092666843237807b3a1", + "_tpl": "619f4f8c4c58466fe1228439", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13092666843237807b39f" + }, + { + "_id": "67d13092666843237807b3a2", + "_tpl": "619f52454c58466fe122843b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13092666843237807b39f" + }, + { + "_id": "67d13092666843237807b3a3", + "_tpl": "619f4ab2d25cbd424731fb95", + "slotId": "mod_pistol_grip", + "parentId": "67d13092666843237807b39f" + }, + { + "_id": "67d13092666843237807b3a4", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13092666843237807b39f" + } + ] + }, + { + "Id": "67d130a00100185b95a2eb87", + "Name": "short black rhino v2", + "Root": "67d130a3666843237807b3a9", + "Items": [ + { + "_id": "67d130a3666843237807b3a9", + "_tpl": "61a4c8884f95bc3b2c5dc96f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d130a3666843237807b3aa", + "_tpl": "619f54a1d25cbd424731fb99", + "slotId": "mod_magazine", + "parentId": "67d130a3666843237807b3a9" + }, + { + "_id": "67d130a3666843237807b3ab", + "_tpl": "619f4f8c4c58466fe1228439", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d130a3666843237807b3a9" + }, + { + "_id": "67d130a3666843237807b3ac", + "_tpl": "619f52454c58466fe122843b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d130a3666843237807b3a9" + }, + { + "_id": "67d130a3666843237807b3ad", + "_tpl": "619f4ab2d25cbd424731fb95", + "slotId": "mod_pistol_grip", + "parentId": "67d130a3666843237807b3a9" + } + ] + }, + { + "Id": "67d130bc0100185b955f83c7", + "Name": "mini rhino", + "Root": "67d130c5666843237807c14a", + "Items": [ + { + "_id": "67d130c5666843237807c14a", + "_tpl": "624c2e8614da335f1e034d8c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d130c5666843237807c14b", + "_tpl": "624c3074dbbd335e8e6becf3", + "slotId": "mod_magazine", + "parentId": "67d130c5666843237807c14a" + }, + { + "_id": "67d130c5666843237807c14c", + "_tpl": "619f52454c58466fe122843b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d130c5666843237807c14a" + }, + { + "_id": "67d130c5666843237807c14d", + "_tpl": "619f4ab2d25cbd424731fb95", + "slotId": "mod_pistol_grip", + "parentId": "67d130c5666843237807c14a" + } + ] + }, + { + "Id": "67d130fd0100185b95021ccd", + "Name": "supr dp m1911", + "Root": "67d13103666843237807d07c", + "Items": [ + { + "_id": "67d13103666843237807d07c", + "_tpl": "5e81c3cbac2bb513793cdc75", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13103666843237807d07d", + "_tpl": "5f3e77f59103d430b93f94c1", + "slotId": "mod_barrel", + "parentId": "67d13103666843237807d07c" + }, + { + "_id": "67d13103666843237807d07e", + "_tpl": "5ef366938cef260c0642acad", + "slotId": "mod_pistol_grip", + "parentId": "67d13103666843237807d07c" + }, + { + "_id": "67d13103666843237807d07f", + "_tpl": "5e81edc13397a21db957f6a1", + "slotId": "mod_reciever", + "parentId": "67d13103666843237807d07c" + }, + { + "_id": "67d13103666843237807d080", + "_tpl": "5e81c4ca763d9f754677befa", + "slotId": "mod_magazine", + "parentId": "67d13103666843237807d07c" + }, + { + "_id": "67d13103666843237807d081", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "slotId": "mod_trigger", + "parentId": "67d13103666843237807d07c" + }, + { + "_id": "67d13103666843237807d082", + "_tpl": "5e81c550763d9f754677befd", + "slotId": "mod_hammer", + "parentId": "67d13103666843237807d07c" + }, + { + "_id": "67d13103666843237807d083", + "_tpl": "5e81c539cb2b95385c177553", + "slotId": "mod_catch", + "parentId": "67d13103666843237807d07c" + }, + { + "_id": "67d13103666843237807d084", + "_tpl": "5ef369b08cef260c0642acaf", + "slotId": "mod_mount_001", + "parentId": "67d13103666843237807d07c" + }, + { + "_id": "67d13103666843237807d085", + "_tpl": "5fc4b97bab884124df0cd5e3", + "slotId": "mod_muzzle", + "parentId": "67d13103666843237807d07d" + }, + { + "_id": "67d13103666843237807d086", + "_tpl": "5a7b4900e899ef197b331a2a", + "slotId": "mod_tactical", + "parentId": "67d13103666843237807d084" + }, + { + "_id": "67d13103666843237807d087", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d13103666843237807d085" + }, + { + "_id": "67d13103666843237807d088", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d13103666843237807d086" + }, + { + "_id": "67d13103666843237807d089", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13103666843237807d086" + }, + { + "_id": "67d13103666843237807d08a", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13103666843237807d088" + } + ] + }, + { + "Id": "67d1311f0100185b95c33fc9", + "Name": "supr ff3 m1911", + "Root": "67d13127666843237807def9", + "Items": [ + { + "_id": "67d13127666843237807def9", + "_tpl": "5e81c3cbac2bb513793cdc75", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13127666843237807defa", + "_tpl": "5f3e77f59103d430b93f94c1", + "slotId": "mod_barrel", + "parentId": "67d13127666843237807def9" + }, + { + "_id": "67d13127666843237807defb", + "_tpl": "5ef366938cef260c0642acad", + "slotId": "mod_pistol_grip", + "parentId": "67d13127666843237807def9" + }, + { + "_id": "67d13127666843237807defc", + "_tpl": "5e81edc13397a21db957f6a1", + "slotId": "mod_reciever", + "parentId": "67d13127666843237807def9" + }, + { + "_id": "67d13127666843237807defd", + "_tpl": "5e81c4ca763d9f754677befa", + "slotId": "mod_magazine", + "parentId": "67d13127666843237807def9" + }, + { + "_id": "67d13127666843237807defe", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "slotId": "mod_trigger", + "parentId": "67d13127666843237807def9" + }, + { + "_id": "67d13127666843237807deff", + "_tpl": "5e81c550763d9f754677befd", + "slotId": "mod_hammer", + "parentId": "67d13127666843237807def9" + }, + { + "_id": "67d13127666843237807df00", + "_tpl": "5e81c539cb2b95385c177553", + "slotId": "mod_catch", + "parentId": "67d13127666843237807def9" + }, + { + "_id": "67d13127666843237807df01", + "_tpl": "5ef369b08cef260c0642acaf", + "slotId": "mod_mount_001", + "parentId": "67d13127666843237807def9" + }, + { + "_id": "67d13127666843237807df02", + "_tpl": "5fc4b97bab884124df0cd5e3", + "slotId": "mod_muzzle", + "parentId": "67d13127666843237807defa" + }, + { + "_id": "67d13127666843237807df03", + "_tpl": "5a7b4900e899ef197b331a2a", + "slotId": "mod_tactical", + "parentId": "67d13127666843237807df01" + }, + { + "_id": "67d13127666843237807df04", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d13127666843237807df02" + }, + { + "_id": "67d13127666843237807df05", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d13127666843237807df03" + }, + { + "_id": "67d13127666843237807df06", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13127666843237807df05" + } + ] + }, + { + "Id": "67d1314a0100185b95df0678", + "Name": "supr m1911", + "Root": "67d1314d666843237807edcd", + "Items": [ + { + "_id": "67d1314d666843237807edcd", + "_tpl": "5e81c3cbac2bb513793cdc75", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1314d666843237807edce", + "_tpl": "5f3e77f59103d430b93f94c1", + "slotId": "mod_barrel", + "parentId": "67d1314d666843237807edcd" + }, + { + "_id": "67d1314d666843237807edcf", + "_tpl": "5ef366938cef260c0642acad", + "slotId": "mod_pistol_grip", + "parentId": "67d1314d666843237807edcd" + }, + { + "_id": "67d1314d666843237807edd0", + "_tpl": "5e81edc13397a21db957f6a1", + "slotId": "mod_reciever", + "parentId": "67d1314d666843237807edcd" + }, + { + "_id": "67d1314d666843237807edd1", + "_tpl": "5e81c4ca763d9f754677befa", + "slotId": "mod_magazine", + "parentId": "67d1314d666843237807edcd" + }, + { + "_id": "67d1314d666843237807edd2", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "slotId": "mod_trigger", + "parentId": "67d1314d666843237807edcd" + }, + { + "_id": "67d1314d666843237807edd3", + "_tpl": "5e81c550763d9f754677befd", + "slotId": "mod_hammer", + "parentId": "67d1314d666843237807edcd" + }, + { + "_id": "67d1314d666843237807edd4", + "_tpl": "5e81c539cb2b95385c177553", + "slotId": "mod_catch", + "parentId": "67d1314d666843237807edcd" + }, + { + "_id": "67d1314d666843237807edd5", + "_tpl": "5ef369b08cef260c0642acaf", + "slotId": "mod_mount_001", + "parentId": "67d1314d666843237807edcd" + }, + { + "_id": "67d1314d666843237807edd6", + "_tpl": "5fc4b97bab884124df0cd5e3", + "slotId": "mod_muzzle", + "parentId": "67d1314d666843237807edce" + }, + { + "_id": "67d1314d666843237807edd7", + "_tpl": "5e81ee4dcb2b95385c177582", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1314d666843237807edd0" + }, + { + "_id": "67d1314d666843237807edd8", + "_tpl": "5e81ee213397a21db957f6a6", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1314d666843237807edd0" + }, + { + "_id": "67d1314d666843237807edd9", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d1314d666843237807edd6" + } + ] + }, + { + "Id": "67d1319d0100185b95ff8c93", + "Name": "supr m9", + "Root": "67d131b46668432378080ac9", + "Items": [ + { + "_id": "67d131b46668432378080ac9", + "_tpl": "5cadc190ae921500103bb3b6", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d131b46668432378080aca", + "_tpl": "5cadc1c6ae9215000f2775a4", + "slotId": "mod_barrel", + "parentId": "67d131b46668432378080ac9" + }, + { + "_id": "67d131b46668432378080acb", + "_tpl": "5cadc431ae921500113bb8d5", + "slotId": "mod_pistol_grip", + "parentId": "67d131b46668432378080ac9" + }, + { + "_id": "67d131b46668432378080acc", + "_tpl": "5cadc55cae921500103bb3be", + "slotId": "mod_reciever", + "parentId": "67d131b46668432378080ac9" + }, + { + "_id": "67d131b46668432378080acd", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "slotId": "mod_magazine", + "parentId": "67d131b46668432378080ac9" + }, + { + "_id": "67d131b46668432378080ace", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d131b46668432378080ac9" + }, + { + "_id": "67d131b46668432378080acf", + "_tpl": "5c7e8fab2e22165df16b889b", + "slotId": "mod_muzzle", + "parentId": "67d131b46668432378080aca" + }, + { + "_id": "67d131b46668432378080ad0", + "_tpl": "5cadd940ae9215051e1c2316", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d131b46668432378080acc" + }, + { + "_id": "67d131b46668432378080ad1", + "_tpl": "5cadd919ae921500126a77f3", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d131b46668432378080acc" + } + ] + }, + { + "Id": "67d131cd0100185b95a21add", + "Name": "supr dp m9", + "Root": "67d131d36668432378080ad3", + "Items": [ + { + "_id": "67d131d36668432378080ad3", + "_tpl": "5cadc190ae921500103bb3b6", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d131d36668432378080ad4", + "_tpl": "5cadc1c6ae9215000f2775a4", + "slotId": "mod_barrel", + "parentId": "67d131d36668432378080ad3" + }, + { + "_id": "67d131d36668432378080ad5", + "_tpl": "5cadc431ae921500113bb8d5", + "slotId": "mod_pistol_grip", + "parentId": "67d131d36668432378080ad3" + }, + { + "_id": "67d131d36668432378080ad6", + "_tpl": "5cadc55cae921500103bb3be", + "slotId": "mod_reciever", + "parentId": "67d131d36668432378080ad3" + }, + { + "_id": "67d131d36668432378080ad7", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "slotId": "mod_magazine", + "parentId": "67d131d36668432378080ad3" + }, + { + "_id": "67d131d36668432378080ad8", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d131d36668432378080ad3" + }, + { + "_id": "67d131d36668432378080ad9", + "_tpl": "5a32a064c4a28200741e22de", + "slotId": "mod_muzzle", + "parentId": "67d131d36668432378080ad4" + }, + { + "_id": "67d131d36668432378080ada", + "_tpl": "5cadd954ae921500103bb3c2", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d131d36668432378080ad6" + }, + { + "_id": "67d131d36668432378080adb", + "_tpl": "5cadd919ae921500126a77f3", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d131d36668432378080ad6" + }, + { + "_id": "67d131d36668432378080adc", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d131d36668432378080ada" + }, + { + "_id": "67d131d36668432378080add", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d131d36668432378080adc" + } + ] + }, + { + "Id": "67d131fc0100185b955a2bb8", + "Name": "supr dp m9 v2", + "Root": "67d132036668432378081932", + "Items": [ + { + "_id": "67d132036668432378081932", + "_tpl": "5cadc190ae921500103bb3b6", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d132036668432378081933", + "_tpl": "5cadc1c6ae9215000f2775a4", + "slotId": "mod_barrel", + "parentId": "67d132036668432378081932" + }, + { + "_id": "67d132036668432378081934", + "_tpl": "5cadc431ae921500113bb8d5", + "slotId": "mod_pistol_grip", + "parentId": "67d132036668432378081932" + }, + { + "_id": "67d132036668432378081935", + "_tpl": "5cadc55cae921500103bb3be", + "slotId": "mod_reciever", + "parentId": "67d132036668432378081932" + }, + { + "_id": "67d132036668432378081936", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "slotId": "mod_magazine", + "parentId": "67d132036668432378081932" + }, + { + "_id": "67d132036668432378081937", + "_tpl": "5a7b4900e899ef197b331a2a", + "slotId": "mod_tactical", + "parentId": "67d132036668432378081932" + }, + { + "_id": "67d132036668432378081938", + "_tpl": "5c7e8fab2e22165df16b889b", + "slotId": "mod_muzzle", + "parentId": "67d132036668432378081933" + }, + { + "_id": "67d132036668432378081939", + "_tpl": "5cadd954ae921500103bb3c2", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d132036668432378081935" + }, + { + "_id": "67d13203666843237808193a", + "_tpl": "5cadd919ae921500126a77f3", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d132036668432378081935" + }, + { + "_id": "67d13203666843237808193b", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d132036668432378081937" + }, + { + "_id": "67d13203666843237808193c", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d132036668432378081937" + }, + { + "_id": "67d13203666843237808193d", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13203666843237808193b" + } + ] + }, + { + "Id": "67d1321c0100185b952c7a2a", + "Name": "loud ff3 m9", + "Root": "67d1322a66684323780827a8", + "Items": [ + { + "_id": "67d1322a66684323780827a8", + "_tpl": "5cadc190ae921500103bb3b6", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1322a66684323780827a9", + "_tpl": "5cadc1c6ae9215000f2775a4", + "slotId": "mod_barrel", + "parentId": "67d1322a66684323780827a8" + }, + { + "_id": "67d1322a66684323780827aa", + "_tpl": "5cadc431ae921500113bb8d5", + "slotId": "mod_pistol_grip", + "parentId": "67d1322a66684323780827a8" + }, + { + "_id": "67d1322a66684323780827ab", + "_tpl": "5cadc55cae921500103bb3be", + "slotId": "mod_reciever", + "parentId": "67d1322a66684323780827a8" + }, + { + "_id": "67d1322a66684323780827ac", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "slotId": "mod_magazine", + "parentId": "67d1322a66684323780827a8" + }, + { + "_id": "67d1322a66684323780827ad", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1322a66684323780827a8" + }, + { + "_id": "67d1322a66684323780827ae", + "_tpl": "5cadc390ae921500126a77f1", + "slotId": "mod_muzzle", + "parentId": "67d1322a66684323780827a9" + }, + { + "_id": "67d1322a66684323780827af", + "_tpl": "5cadd954ae921500103bb3c2", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1322a66684323780827ab" + }, + { + "_id": "67d1322a66684323780827b0", + "_tpl": "5cadd919ae921500126a77f3", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1322a66684323780827ab" + }, + { + "_id": "67d1322a66684323780827b1", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d1322a66684323780827af" + }, + { + "_id": "67d1322a66684323780827b2", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1322a66684323780827b1" + } + ] + }, + { + "Id": "67d132710100185b95756efd", + "Name": "stock toy gun", + "Root": "67d13276666843237808454e", + "Items": [ + { + "_id": "67d13276666843237808454e", + "_tpl": "66015072e9f84d5680039678", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13276666843237808454f", + "_tpl": "66015dc4aaad2f54cb04c56a", + "slotId": "mod_magazine", + "parentId": "67d13276666843237808454e" + } + ] + }, + { + "Id": "67d132d40100185b95c6e3f9", + "Name": "supr rmr 57", + "Root": "67d132da66684323780864bd", + "Items": [ + { + "_id": "67d132da66684323780864bd", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d132da66684323780864be", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "slotId": "mod_barrel", + "parentId": "67d132da66684323780864bd" + }, + { + "_id": "67d132da66684323780864bf", + "_tpl": "5d3eb44aa4b93650d64e4979", + "slotId": "mod_reciever", + "parentId": "67d132da66684323780864bd" + }, + { + "_id": "67d132da66684323780864c0", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "slotId": "mod_magazine", + "parentId": "67d132da66684323780864bd" + }, + { + "_id": "67d132da66684323780864c1", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d132da66684323780864bd" + }, + { + "_id": "67d132da66684323780864c2", + "_tpl": "5d3ef698a4b9361182109872", + "slotId": "mod_muzzle", + "parentId": "67d132da66684323780864be" + }, + { + "_id": "67d132da66684323780864c3", + "_tpl": "5d7b6bafa4b93652786f4c76", + "slotId": "mod_sight_rear", + "parentId": "67d132da66684323780864bf" + }, + { + "_id": "67d132da66684323780864c4", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d132da66684323780864bf" + }, + { + "_id": "67d132da66684323780864c5", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d132da66684323780864c3" + } + ] + }, + { + "Id": "67d132ee0100185b956c4313", + "Name": "supr rmr 57 v2", + "Root": "67d132f166684323780864d2", + "Items": [ + { + "_id": "67d132f166684323780864d2", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d132f166684323780864d3", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "slotId": "mod_barrel", + "parentId": "67d132f166684323780864d2" + }, + { + "_id": "67d132f166684323780864d4", + "_tpl": "5d3eb44aa4b93650d64e4979", + "slotId": "mod_reciever", + "parentId": "67d132f166684323780864d2" + }, + { + "_id": "67d132f166684323780864d5", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "slotId": "mod_magazine", + "parentId": "67d132f166684323780864d2" + }, + { + "_id": "67d132f166684323780864d6", + "_tpl": "5a800961159bd4315e3a1657", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d132f166684323780864d2" + }, + { + "_id": "67d132f166684323780864d7", + "_tpl": "5d3ef698a4b9361182109872", + "slotId": "mod_muzzle", + "parentId": "67d132f166684323780864d3" + }, + { + "_id": "67d132f166684323780864d8", + "_tpl": "5d7b6bafa4b93652786f4c76", + "slotId": "mod_sight_rear", + "parentId": "67d132f166684323780864d4" + }, + { + "_id": "67d132f166684323780864d9", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d132f166684323780864d4" + }, + { + "_id": "67d132f166684323780864da", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d132f166684323780864d8" + } + ] + }, + { + "Id": "67d133020100185b9593c6ae", + "Name": "supr stock 57", + "Root": "67d133096668432378087453", + "Items": [ + { + "_id": "67d133096668432378087453", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d133096668432378087454", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "slotId": "mod_barrel", + "parentId": "67d133096668432378087453" + }, + { + "_id": "67d133096668432378087455", + "_tpl": "5d3eb44aa4b93650d64e4979", + "slotId": "mod_reciever", + "parentId": "67d133096668432378087453" + }, + { + "_id": "67d133096668432378087456", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "slotId": "mod_magazine", + "parentId": "67d133096668432378087453" + }, + { + "_id": "67d133096668432378087457", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d133096668432378087453" + }, + { + "_id": "67d133096668432378087458", + "_tpl": "5d3ef698a4b9361182109872", + "slotId": "mod_muzzle", + "parentId": "67d133096668432378087454" + }, + { + "_id": "67d133096668432378087459", + "_tpl": "5d3eb4aba4b93650d64e497d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d133096668432378087455" + }, + { + "_id": "67d13309666843237808745a", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d133096668432378087455" + } + ] + }, + { + "Id": "67d133220100185b958f1b17", + "Name": "loud stock 57", + "Root": "67d1332566684323780874ab", + "Items": [ + { + "_id": "67d1332566684323780874ab", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1332566684323780874ac", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "slotId": "mod_barrel", + "parentId": "67d1332566684323780874ab" + }, + { + "_id": "67d1332566684323780874ad", + "_tpl": "5d3eb44aa4b93650d64e4979", + "slotId": "mod_reciever", + "parentId": "67d1332566684323780874ab" + }, + { + "_id": "67d1332566684323780874ae", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "slotId": "mod_magazine", + "parentId": "67d1332566684323780874ab" + }, + { + "_id": "67d1332566684323780874af", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1332566684323780874ab" + }, + { + "_id": "67d1332566684323780874b0", + "_tpl": "5d3eb4aba4b93650d64e497d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1332566684323780874ad" + }, + { + "_id": "67d1332566684323780874b1", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1332566684323780874ad" + } + ] + }, + { + "Id": "67d133360100185b9519f542", + "Name": "loud rmr 57", + "Root": "67d1333b66684323780882c3", + "Items": [ + { + "_id": "67d1333b66684323780882c3", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1333b66684323780882c4", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "slotId": "mod_barrel", + "parentId": "67d1333b66684323780882c3" + }, + { + "_id": "67d1333b66684323780882c5", + "_tpl": "5d3eb44aa4b93650d64e4979", + "slotId": "mod_reciever", + "parentId": "67d1333b66684323780882c3" + }, + { + "_id": "67d1333b66684323780882c6", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "slotId": "mod_magazine", + "parentId": "67d1333b66684323780882c3" + }, + { + "_id": "67d1333b66684323780882c7", + "_tpl": "5d7b6bafa4b93652786f4c76", + "slotId": "mod_sight_rear", + "parentId": "67d1333b66684323780882c5" + }, + { + "_id": "67d1333b66684323780882c8", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1333b66684323780882c5" + }, + { + "_id": "67d1333b66684323780882c9", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1333b66684323780882c7" + } + ] + }, + { + "Id": "67d133540100185b95943ad0", + "Name": "supr stock 57mk2", + "Root": "67d1336366684323780882cc", + "Items": [ + { + "_id": "67d1336366684323780882cc", + "_tpl": "5d67abc1a4b93614ec50137f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1336366684323780882cd", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "slotId": "mod_barrel", + "parentId": "67d1336366684323780882cc" + }, + { + "_id": "67d1336366684323780882ce", + "_tpl": "5d3eb44aa4b93650d64e4979", + "slotId": "mod_reciever", + "parentId": "67d1336366684323780882cc" + }, + { + "_id": "67d1336366684323780882cf", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "slotId": "mod_magazine", + "parentId": "67d1336366684323780882cc" + }, + { + "_id": "67d1336366684323780882d0", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1336366684323780882cc" + }, + { + "_id": "67d1336366684323780882d1", + "_tpl": "5d3ef698a4b9361182109872", + "slotId": "mod_muzzle", + "parentId": "67d1336366684323780882cd" + }, + { + "_id": "67d1336366684323780882d2", + "_tpl": "5d3eb4aba4b93650d64e497d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1336366684323780882ce" + }, + { + "_id": "67d1336366684323780882d3", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1336366684323780882ce" + } + ] + }, + { + "Id": "67d1336f0100185b951f9e0a", + "Name": "supr rmr 57mk2", + "Root": "67d1337666684323780891f1", + "Items": [ + { + "_id": "67d1337666684323780891f1", + "_tpl": "5d67abc1a4b93614ec50137f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1337666684323780891f2", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "slotId": "mod_barrel", + "parentId": "67d1337666684323780891f1" + }, + { + "_id": "67d1337666684323780891f3", + "_tpl": "5d3eb44aa4b93650d64e4979", + "slotId": "mod_reciever", + "parentId": "67d1337666684323780891f1" + }, + { + "_id": "67d1337666684323780891f4", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "slotId": "mod_magazine", + "parentId": "67d1337666684323780891f1" + }, + { + "_id": "67d1337666684323780891f5", + "_tpl": "5d3ef698a4b9361182109872", + "slotId": "mod_muzzle", + "parentId": "67d1337666684323780891f2" + }, + { + "_id": "67d1337666684323780891f6", + "_tpl": "5d7b6bafa4b93652786f4c76", + "slotId": "mod_sight_rear", + "parentId": "67d1337666684323780891f3" + }, + { + "_id": "67d1337666684323780891f7", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1337666684323780891f3" + }, + { + "_id": "67d1337666684323780891f8", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1337666684323780891f6" + } + ] + }, + { + "Id": "67d1338e0100185b958c446b", + "Name": "supr rmr 57mk2 v2", + "Root": "67d133916668432378089203", + "Items": [ + { + "_id": "67d133916668432378089203", + "_tpl": "5d67abc1a4b93614ec50137f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d133916668432378089204", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "slotId": "mod_barrel", + "parentId": "67d133916668432378089203" + }, + { + "_id": "67d133916668432378089205", + "_tpl": "5d3eb44aa4b93650d64e4979", + "slotId": "mod_reciever", + "parentId": "67d133916668432378089203" + }, + { + "_id": "67d133916668432378089206", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "slotId": "mod_magazine", + "parentId": "67d133916668432378089203" + }, + { + "_id": "67d133916668432378089207", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d133916668432378089203" + }, + { + "_id": "67d133916668432378089208", + "_tpl": "5d3ef698a4b9361182109872", + "slotId": "mod_muzzle", + "parentId": "67d133916668432378089204" + }, + { + "_id": "67d133916668432378089209", + "_tpl": "5d7b6bafa4b93652786f4c76", + "slotId": "mod_sight_rear", + "parentId": "67d133916668432378089205" + }, + { + "_id": "67d13391666843237808920a", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d133916668432378089205" + }, + { + "_id": "67d13391666843237808920b", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d133916668432378089209" + } + ] + }, + { + "Id": "67d133ad0100185b956bb42a", + "Name": "supr stock 57 2", + "Root": "67d133b1666843237808a121", + "Items": [ + { + "_id": "67d133b1666843237808a121", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d133b1666843237808a122", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "slotId": "mod_barrel", + "parentId": "67d133b1666843237808a121" + }, + { + "_id": "67d133b1666843237808a123", + "_tpl": "5d3eb44aa4b93650d64e4979", + "slotId": "mod_reciever", + "parentId": "67d133b1666843237808a121" + }, + { + "_id": "67d133b1666843237808a124", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "slotId": "mod_magazine", + "parentId": "67d133b1666843237808a121" + }, + { + "_id": "67d133b1666843237808a125", + "_tpl": "5d3ef698a4b9361182109872", + "slotId": "mod_muzzle", + "parentId": "67d133b1666843237808a122" + }, + { + "_id": "67d133b1666843237808a126", + "_tpl": "5d3eb4aba4b93650d64e497d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d133b1666843237808a123" + }, + { + "_id": "67d133b1666843237808a127", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d133b1666843237808a123" + } + ] + }, + { + "Id": "67d1342a0100185b95410c1c", + "Name": "supr stock usp", + "Root": "67d13430666843237808c002", + "Items": [ + { + "_id": "67d13430666843237808c002", + "_tpl": "6193a720f8ee7e52e42109ed", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13430666843237808c003", + "_tpl": "6194efe07c6c7b169525f11b", + "slotId": "mod_barrel", + "parentId": "67d13430666843237808c002" + }, + { + "_id": "67d13430666843237808c004", + "_tpl": "6193d382ed0429009f543e65", + "slotId": "mod_reciever", + "parentId": "67d13430666843237808c002" + }, + { + "_id": "67d13430666843237808c005", + "_tpl": "6193d338de3cdf1d2614a6fc", + "slotId": "mod_magazine", + "parentId": "67d13430666843237808c002" + }, + { + "_id": "67d13430666843237808c006", + "_tpl": "6193d3cded0429009f543e6a", + "slotId": "mod_trigger", + "parentId": "67d13430666843237808c002" + }, + { + "_id": "67d13430666843237808c007", + "_tpl": "6193d3be7c6c7b169525f0da", + "slotId": "mod_hammer", + "parentId": "67d13430666843237808c002" + }, + { + "_id": "67d13430666843237808c008", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "slotId": "mod_catch", + "parentId": "67d13430666843237808c002" + }, + { + "_id": "67d13430666843237808c009", + "_tpl": "6196255558ef8c428c287d1c", + "slotId": "mod_mount_000", + "parentId": "67d13430666843237808c002" + }, + { + "_id": "67d13430666843237808c00a", + "_tpl": "5fc4b97bab884124df0cd5e3", + "slotId": "mod_muzzle", + "parentId": "67d13430666843237808c003" + }, + { + "_id": "67d13430666843237808c00b", + "_tpl": "6194f2912d2c397d6600348d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13430666843237808c004" + }, + { + "_id": "67d13430666843237808c00c", + "_tpl": "6194f35c18a3974e5e7421e6", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13430666843237808c004" + }, + { + "_id": "67d13430666843237808c00d", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13430666843237808c009" + }, + { + "_id": "67d13430666843237808c00e", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d13430666843237808c00a" + } + ] + }, + { + "Id": "67d134450100185b95635c34", + "Name": "supr ff3 usp", + "Root": "67d1344e666843237808cf90", + "Items": [ + { + "_id": "67d1344e666843237808cf90", + "_tpl": "6193a720f8ee7e52e42109ed", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1344e666843237808cf91", + "_tpl": "6194efe07c6c7b169525f11b", + "slotId": "mod_barrel", + "parentId": "67d1344e666843237808cf90" + }, + { + "_id": "67d1344e666843237808cf92", + "_tpl": "6193d382ed0429009f543e65", + "slotId": "mod_reciever", + "parentId": "67d1344e666843237808cf90" + }, + { + "_id": "67d1344e666843237808cf93", + "_tpl": "6193d3149fb0c665d5490e32", + "slotId": "mod_magazine", + "parentId": "67d1344e666843237808cf90" + }, + { + "_id": "67d1344e666843237808cf94", + "_tpl": "6193d3cded0429009f543e6a", + "slotId": "mod_trigger", + "parentId": "67d1344e666843237808cf90" + }, + { + "_id": "67d1344e666843237808cf95", + "_tpl": "6193d3be7c6c7b169525f0da", + "slotId": "mod_hammer", + "parentId": "67d1344e666843237808cf90" + }, + { + "_id": "67d1344e666843237808cf96", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "slotId": "mod_catch", + "parentId": "67d1344e666843237808cf90" + }, + { + "_id": "67d1344e666843237808cf97", + "_tpl": "6196255558ef8c428c287d1c", + "slotId": "mod_mount_000", + "parentId": "67d1344e666843237808cf90" + }, + { + "_id": "67d1344e666843237808cf98", + "_tpl": "5fc4b97bab884124df0cd5e3", + "slotId": "mod_muzzle", + "parentId": "67d1344e666843237808cf91" + }, + { + "_id": "67d1344e666843237808cf99", + "_tpl": "61963a852d2c397d660036ad", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1344e666843237808cf92" + }, + { + "_id": "67d1344e666843237808cf9a", + "_tpl": "6194f35c18a3974e5e7421e6", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1344e666843237808cf92" + }, + { + "_id": "67d1344e666843237808cf9b", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1344e666843237808cf97" + }, + { + "_id": "67d1344e666843237808cf9c", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d1344e666843237808cf98" + }, + { + "_id": "67d1344e666843237808cf9d", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1344e666843237808cf99" + } + ] + }, + { + "Id": "67d134670100185b9529c876", + "Name": "supr stock usp v2", + "Root": "67d1346d666843237808de68", + "Items": [ + { + "_id": "67d1346d666843237808de68", + "_tpl": "6193a720f8ee7e52e42109ed", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1346d666843237808de69", + "_tpl": "6194efe07c6c7b169525f11b", + "slotId": "mod_barrel", + "parentId": "67d1346d666843237808de68" + }, + { + "_id": "67d1346d666843237808de6a", + "_tpl": "6193d382ed0429009f543e65", + "slotId": "mod_reciever", + "parentId": "67d1346d666843237808de68" + }, + { + "_id": "67d1346d666843237808de6b", + "_tpl": "6193d338de3cdf1d2614a6fc", + "slotId": "mod_magazine", + "parentId": "67d1346d666843237808de68" + }, + { + "_id": "67d1346d666843237808de6c", + "_tpl": "6193d3cded0429009f543e6a", + "slotId": "mod_trigger", + "parentId": "67d1346d666843237808de68" + }, + { + "_id": "67d1346d666843237808de6d", + "_tpl": "6193d3be7c6c7b169525f0da", + "slotId": "mod_hammer", + "parentId": "67d1346d666843237808de68" + }, + { + "_id": "67d1346d666843237808de6e", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "slotId": "mod_catch", + "parentId": "67d1346d666843237808de68" + }, + { + "_id": "67d1346d666843237808de6f", + "_tpl": "6196255558ef8c428c287d1c", + "slotId": "mod_mount_000", + "parentId": "67d1346d666843237808de68" + }, + { + "_id": "67d1346d666843237808de70", + "_tpl": "5fc4b97bab884124df0cd5e3", + "slotId": "mod_muzzle", + "parentId": "67d1346d666843237808de69" + }, + { + "_id": "67d1346d666843237808de71", + "_tpl": "6194f2df645b5d229654ad77", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1346d666843237808de6a" + }, + { + "_id": "67d1346d666843237808de72", + "_tpl": "6194f3286db0f2477964e67d", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1346d666843237808de6a" + }, + { + "_id": "67d1346d666843237808de73", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1346d666843237808de6f" + }, + { + "_id": "67d1346d666843237808de74", + "_tpl": "5fc4b9b17283c4046c5814d7", + "slotId": "mod_muzzle", + "parentId": "67d1346d666843237808de70" + } + ] + }, + { + "Id": "67d1349c0100185b95374794", + "Name": "loud spartan rmr glock17", + "Root": "67d134a8666843237808ecd3", + "Items": [ + { + "_id": "67d134a8666843237808ecd3", + "_tpl": "5a7ae0c351dfba0017554310", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d134a8666843237808ecd4", + "_tpl": "5a6b5f868dc32e000a311389", + "slotId": "mod_barrel", + "parentId": "67d134a8666843237808ecd3" + }, + { + "_id": "67d134a8666843237808ecd5", + "_tpl": "5a7b4960e899ef197b331a2d", + "slotId": "mod_pistol_grip", + "parentId": "67d134a8666843237808ecd3" + }, + { + "_id": "67d134a8666843237808ecd6", + "_tpl": "5a71e4f48dc32e001207fb26", + "slotId": "mod_reciever", + "parentId": "67d134a8666843237808ecd3" + }, + { + "_id": "67d134a8666843237808ecd7", + "_tpl": "5a7ad2e851dfba0016153692", + "slotId": "mod_magazine", + "parentId": "67d134a8666843237808ecd3" + }, + { + "_id": "67d134a8666843237808ecd8", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d134a8666843237808ecd3" + }, + { + "_id": "67d134a8666843237808ecd9", + "_tpl": "5d1c702ad7ad1a632267f429", + "slotId": "mod_stock", + "parentId": "67d134a8666843237808ecd3" + }, + { + "_id": "67d134a8666843237808ecda", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d134a8666843237808ecd6" + }, + { + "_id": "67d134a8666843237808ecdb", + "_tpl": "5a7b32a2e899ef00135e345a", + "slotId": "mod_muzzle", + "parentId": "67d134a8666843237808ecd6" + } + ] + }, + { + "Id": "67d134c40100185b950d1207", + "Name": "loud motocut circle glock17", + "Root": "67d134d7666843237808fd38", + "Items": [ + { + "_id": "67d134d7666843237808fd38", + "_tpl": "5a7ae0c351dfba0017554310", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d134d7666843237808fd39", + "_tpl": "5a6b5f868dc32e000a311389", + "slotId": "mod_barrel", + "parentId": "67d134d7666843237808fd38" + }, + { + "_id": "67d134d7666843237808fd3a", + "_tpl": "5a7b4960e899ef197b331a2d", + "slotId": "mod_pistol_grip", + "parentId": "67d134d7666843237808fd38" + }, + { + "_id": "67d134d7666843237808fd3b", + "_tpl": "5a9685b1a2750c0032157104", + "slotId": "mod_reciever", + "parentId": "67d134d7666843237808fd38" + }, + { + "_id": "67d134d7666843237808fd3c", + "_tpl": "5a7ad2e851dfba0016153692", + "slotId": "mod_magazine", + "parentId": "67d134d7666843237808fd38" + }, + { + "_id": "67d134d7666843237808fd3d", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d134d7666843237808fd38" + }, + { + "_id": "67d134d7666843237808fd3e", + "_tpl": "5d1c702ad7ad1a632267f429", + "slotId": "mod_stock", + "parentId": "67d134d7666843237808fd38" + }, + { + "_id": "67d134d7666843237808fd3f", + "_tpl": "5a7d9122159bd4001438dbf4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d134d7666843237808fd3b" + }, + { + "_id": "67d134d7666843237808fd40", + "_tpl": "5a7d9104159bd400134c8c21", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d134d7666843237808fd3b" + }, + { + "_id": "67d134d7666843237808fd41", + "_tpl": "5a7b32a2e899ef00135e345a", + "slotId": "mod_muzzle", + "parentId": "67d134d7666843237808fd3b" + } + ] + }, + { + "Id": "67d134f10100185b95a034c7", + "Name": "supr spartan rmr glock17", + "Root": "67d134f5666843237808fd49", + "Items": [ + { + "_id": "67d134f5666843237808fd49", + "_tpl": "5a7ae0c351dfba0017554310", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d134f5666843237808fd4a", + "_tpl": "5a6b5e468dc32e001207faf5", + "slotId": "mod_barrel", + "parentId": "67d134f5666843237808fd49" + }, + { + "_id": "67d134f5666843237808fd4b", + "_tpl": "5a7b4960e899ef197b331a2d", + "slotId": "mod_pistol_grip", + "parentId": "67d134f5666843237808fd49" + }, + { + "_id": "67d134f5666843237808fd4c", + "_tpl": "5a71e4f48dc32e001207fb26", + "slotId": "mod_reciever", + "parentId": "67d134f5666843237808fd49" + }, + { + "_id": "67d134f5666843237808fd4d", + "_tpl": "5a7ad2e851dfba0016153692", + "slotId": "mod_magazine", + "parentId": "67d134f5666843237808fd49" + }, + { + "_id": "67d134f5666843237808fd4e", + "_tpl": "5a7b483fe899ef0016170d15", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d134f5666843237808fd49" + }, + { + "_id": "67d134f5666843237808fd4f", + "_tpl": "5d1c702ad7ad1a632267f429", + "slotId": "mod_stock", + "parentId": "67d134f5666843237808fd49" + }, + { + "_id": "67d134f5666843237808fd50", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d134f5666843237808fd4a" + }, + { + "_id": "67d134f5666843237808fd51", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d134f5666843237808fd4c" + } + ] + }, + { + "Id": "67d135360100185b95d7e899", + "Name": "supr vipercut circle glock17", + "Root": "67d1353f6668432378091ce3", + "Items": [ + { + "_id": "67d1353f6668432378091ce3", + "_tpl": "5a7ae0c351dfba0017554310", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1353f6668432378091ce4", + "_tpl": "5a6b5e468dc32e001207faf5", + "slotId": "mod_barrel", + "parentId": "67d1353f6668432378091ce3" + }, + { + "_id": "67d1353f6668432378091ce5", + "_tpl": "5a7b4960e899ef197b331a2d", + "slotId": "mod_pistol_grip", + "parentId": "67d1353f6668432378091ce3" + }, + { + "_id": "67d1353f6668432378091ce6", + "_tpl": "5a6f5f078dc32e00094b97dd", + "slotId": "mod_reciever", + "parentId": "67d1353f6668432378091ce3" + }, + { + "_id": "67d1353f6668432378091ce7", + "_tpl": "5a7ad2e851dfba0016153692", + "slotId": "mod_magazine", + "parentId": "67d1353f6668432378091ce3" + }, + { + "_id": "67d1353f6668432378091ce8", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1353f6668432378091ce3" + }, + { + "_id": "67d1353f6668432378091ce9", + "_tpl": "5d1c702ad7ad1a632267f429", + "slotId": "mod_stock", + "parentId": "67d1353f6668432378091ce3" + }, + { + "_id": "67d1353f6668432378091cea", + "_tpl": "5c7e8fab2e22165df16b889b", + "slotId": "mod_muzzle", + "parentId": "67d1353f6668432378091ce4" + }, + { + "_id": "67d1353f6668432378091ceb", + "_tpl": "5a7d9122159bd4001438dbf4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1353f6668432378091ce6" + }, + { + "_id": "67d1353f6668432378091cec", + "_tpl": "5a7d9104159bd400134c8c21", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1353f6668432378091ce6" + } + ] + }, + { + "Id": "67d138030100185b9599a3e9", + "Name": "loud ff3 glock18", + "Root": "67d13815278cd36158037c3f", + "Items": [ + { + "_id": "67d13815278cd36158037c3f", + "_tpl": "5b1fa9b25acfc40018633c01", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13815278cd36158037c40", + "_tpl": "5b1fa9ea5acfc40018633c0a", + "slotId": "mod_barrel", + "parentId": "67d13815278cd36158037c3f" + }, + { + "_id": "67d13815278cd36158037c41", + "_tpl": "5a7b4960e899ef197b331a2d", + "slotId": "mod_pistol_grip", + "parentId": "67d13815278cd36158037c3f" + }, + { + "_id": "67d13815278cd36158037c42", + "_tpl": "5b1faa0f5acfc40dc528aeb5", + "slotId": "mod_reciever", + "parentId": "67d13815278cd36158037c3f" + }, + { + "_id": "67d13815278cd36158037c43", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67d13815278cd36158037c3f" + }, + { + "_id": "67d13815278cd36158037c44", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13815278cd36158037c3f" + }, + { + "_id": "67d13815278cd36158037c45", + "_tpl": "5a7ad55551dfba0015068f42", + "slotId": "mod_mount", + "parentId": "67d13815278cd36158037c3f" + }, + { + "_id": "67d13815278cd36158037c46", + "_tpl": "5d1c702ad7ad1a632267f429", + "slotId": "mod_stock", + "parentId": "67d13815278cd36158037c3f" + }, + { + "_id": "67d13815278cd36158037c47", + "_tpl": "5a6f5d528dc32e00094b97d9", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13815278cd36158037c42" + }, + { + "_id": "67d13815278cd36158037c48", + "_tpl": "5a6f58f68dc32e000a311390", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13815278cd36158037c42" + }, + { + "_id": "67d13815278cd36158037c49", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d13815278cd36158037c45" + }, + { + "_id": "67d13815278cd36158037c4a", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13815278cd36158037c49" + } + ] + }, + { + "Id": "67d138420100185b95b8ba26", + "Name": "loud dp glock18", + "Root": "67d1384c278cd36158037c5a", + "Items": [ + { + "_id": "67d1384c278cd36158037c5a", + "_tpl": "5b1fa9b25acfc40018633c01", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1384c278cd36158037c5b", + "_tpl": "5b1fa9ea5acfc40018633c0a", + "slotId": "mod_barrel", + "parentId": "67d1384c278cd36158037c5a" + }, + { + "_id": "67d1384c278cd36158037c5c", + "_tpl": "5a7b4960e899ef197b331a2d", + "slotId": "mod_pistol_grip", + "parentId": "67d1384c278cd36158037c5a" + }, + { + "_id": "67d1384c278cd36158037c5d", + "_tpl": "5b1faa0f5acfc40dc528aeb5", + "slotId": "mod_reciever", + "parentId": "67d1384c278cd36158037c5a" + }, + { + "_id": "67d1384c278cd36158037c5e", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67d1384c278cd36158037c5a" + }, + { + "_id": "67d1384c278cd36158037c5f", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1384c278cd36158037c5a" + }, + { + "_id": "67d1384c278cd36158037c60", + "_tpl": "5a7ad55551dfba0015068f42", + "slotId": "mod_mount", + "parentId": "67d1384c278cd36158037c5a" + }, + { + "_id": "67d1384c278cd36158037c61", + "_tpl": "5d1c702ad7ad1a632267f429", + "slotId": "mod_stock", + "parentId": "67d1384c278cd36158037c5a" + }, + { + "_id": "67d1384c278cd36158037c62", + "_tpl": "5a6f5d528dc32e00094b97d9", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1384c278cd36158037c5d" + }, + { + "_id": "67d1384c278cd36158037c63", + "_tpl": "5a6f58f68dc32e000a311390", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1384c278cd36158037c5d" + }, + { + "_id": "67d1384c278cd36158037c64", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d1384c278cd36158037c60" + }, + { + "_id": "67d1384c278cd36158037c65", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1384c278cd36158037c64" + } + ] + }, + { + "Id": "67d1386a0100185b950fa5f5", + "Name": "loud circle glock18", + "Root": "67d13871278cd36158037ca3", + "Items": [ + { + "_id": "67d13871278cd36158037ca3", + "_tpl": "5b1fa9b25acfc40018633c01", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13871278cd36158037ca4", + "_tpl": "5b1fa9ea5acfc40018633c0a", + "slotId": "mod_barrel", + "parentId": "67d13871278cd36158037ca3" + }, + { + "_id": "67d13871278cd36158037ca5", + "_tpl": "5a7b4960e899ef197b331a2d", + "slotId": "mod_pistol_grip", + "parentId": "67d13871278cd36158037ca3" + }, + { + "_id": "67d13871278cd36158037ca6", + "_tpl": "5b1faa0f5acfc40dc528aeb5", + "slotId": "mod_reciever", + "parentId": "67d13871278cd36158037ca3" + }, + { + "_id": "67d13871278cd36158037ca7", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67d13871278cd36158037ca3" + }, + { + "_id": "67d13871278cd36158037ca8", + "_tpl": "5d1c702ad7ad1a632267f429", + "slotId": "mod_stock", + "parentId": "67d13871278cd36158037ca3" + }, + { + "_id": "67d13871278cd36158037ca9", + "_tpl": "5a7d9122159bd4001438dbf4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13871278cd36158037ca6" + }, + { + "_id": "67d13871278cd36158037caa", + "_tpl": "5a7d9104159bd400134c8c21", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13871278cd36158037ca6" + } + ] + }, + { + "Id": "67d138870100185b953dfa96", + "Name": "loud pk06 glock18", + "Root": "67d1388b278cd36158037cad", + "Items": [ + { + "_id": "67d1388b278cd36158037cad", + "_tpl": "5b1fa9b25acfc40018633c01", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1388b278cd36158037cae", + "_tpl": "5b1fa9ea5acfc40018633c0a", + "slotId": "mod_barrel", + "parentId": "67d1388b278cd36158037cad" + }, + { + "_id": "67d1388b278cd36158037caf", + "_tpl": "5a7b4960e899ef197b331a2d", + "slotId": "mod_pistol_grip", + "parentId": "67d1388b278cd36158037cad" + }, + { + "_id": "67d1388b278cd36158037cb0", + "_tpl": "5b1faa0f5acfc40dc528aeb5", + "slotId": "mod_reciever", + "parentId": "67d1388b278cd36158037cad" + }, + { + "_id": "67d1388b278cd36158037cb1", + "_tpl": "5a718f958dc32e00094b97e7", + "slotId": "mod_magazine", + "parentId": "67d1388b278cd36158037cad" + }, + { + "_id": "67d1388b278cd36158037cb2", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d1388b278cd36158037cad" + }, + { + "_id": "67d1388b278cd36158037cb3", + "_tpl": "5a7ad55551dfba0015068f42", + "slotId": "mod_mount", + "parentId": "67d1388b278cd36158037cad" + }, + { + "_id": "67d1388b278cd36158037cb4", + "_tpl": "5d1c702ad7ad1a632267f429", + "slotId": "mod_stock", + "parentId": "67d1388b278cd36158037cad" + }, + { + "_id": "67d1388b278cd36158037cb5", + "_tpl": "5a6f5d528dc32e00094b97d9", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1388b278cd36158037cb0" + }, + { + "_id": "67d1388b278cd36158037cb6", + "_tpl": "5a6f58f68dc32e000a311390", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1388b278cd36158037cb0" + }, + { + "_id": "67d1388b278cd36158037cb7", + "_tpl": "57ae0171245977343c27bfcf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1388b278cd36158037cb3" + } + ] + }, + { + "Id": "67d139070100185b95e8d039", + "Name": "holo deaglel6", + "Root": "67d13914278cd36158037cf1", + "Items": [ + { + "_id": "67d13914278cd36158037cf1", + "_tpl": "669fa39b48fc9f8db6035a0c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13914278cd36158037cf2", + "_tpl": "669fa47da0bab4e8510d9526", + "slotId": "mod_barrel", + "parentId": "67d13914278cd36158037cf1" + }, + { + "_id": "67d13914278cd36158037cf3", + "_tpl": "668fe5d42a0f85eea407cc16", + "slotId": "mod_pistolgrip", + "parentId": "67d13914278cd36158037cf1" + }, + { + "_id": "67d13914278cd36158037cf4", + "_tpl": "669fa4d97a09bc295603b496", + "slotId": "mod_reciever", + "parentId": "67d13914278cd36158037cf1" + }, + { + "_id": "67d13914278cd36158037cf5", + "_tpl": "668fe5c5f35310705d02b696", + "slotId": "mod_magazine", + "parentId": "67d13914278cd36158037cf1" + }, + { + "_id": "67d13914278cd36158037cf6", + "_tpl": "57d17e212459775a1179a0f5", + "slotId": "mod_tactical", + "parentId": "67d13914278cd36158037cf1" + }, + { + "_id": "67d13914278cd36158037cf7", + "_tpl": "668fe5ec4315934ba10c6f96", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13914278cd36158037cf2" + }, + { + "_id": "67d13914278cd36158037cf8", + "_tpl": "584924ec24597768f12ae244", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13914278cd36158037cf2" + }, + { + "_id": "67d13914278cd36158037cf9", + "_tpl": "668fe5e1800f0244f9036e46", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13914278cd36158037cf4" + }, + { + "_id": "67d13914278cd36158037cfa", + "_tpl": "57d17c5e2459775a5c57d17d", + "slotId": "mod_flashlight", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13914278cd36158037cf6" + } + ] + }, + { + "Id": "67d1392a0100185b95576e5b", + "Name": "stock deaglel5", + "Root": "67d13930278cd36158038c96", + "Items": [ + { + "_id": "67d13930278cd36158038c96", + "_tpl": "669fa3f88abd2662d80eee77", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13930278cd36158038c97", + "_tpl": "669fa4ba1bd4416eaa09b3c6", + "slotId": "mod_barrel", + "parentId": "67d13930278cd36158038c96" + }, + { + "_id": "67d13930278cd36158038c98", + "_tpl": "66a0da76b6f47fcfeb025e96", + "slotId": "mod_pistolgrip", + "parentId": "67d13930278cd36158038c96" + }, + { + "_id": "67d13930278cd36158038c99", + "_tpl": "669fa5019aa2a422600442f6", + "slotId": "mod_reciever", + "parentId": "67d13930278cd36158038c96" + }, + { + "_id": "67d13930278cd36158038c9a", + "_tpl": "668fe5c5f35310705d02b696", + "slotId": "mod_magazine", + "parentId": "67d13930278cd36158038c96" + }, + { + "_id": "67d13930278cd36158038c9b", + "_tpl": "668fe5ec4315934ba10c6f96", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13930278cd36158038c97" + }, + { + "_id": "67d13930278cd36158038c9c", + "_tpl": "668fe5e1800f0244f9036e46", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13930278cd36158038c99" + } + ] + }, + { + "Id": "67d1393b0100185b95bff287", + "Name": "stock deaglel5 357", + "Root": "67d13942278cd36158038c9d", + "Items": [ + { + "_id": "67d13942278cd36158038c9d", + "_tpl": "669fa409933e898cce0c2166", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13942278cd36158038c9e", + "_tpl": "669fa4c61bd4416eaa09b3ca", + "slotId": "mod_barrel", + "parentId": "67d13942278cd36158038c9d" + }, + { + "_id": "67d13942278cd36158038c9f", + "_tpl": "66a0da76b6f47fcfeb025e96", + "slotId": "mod_pistolgrip", + "parentId": "67d13942278cd36158038c9d" + }, + { + "_id": "67d13942278cd36158038ca0", + "_tpl": "669fa5127a09bc295603b499", + "slotId": "mod_reciever", + "parentId": "67d13942278cd36158038c9d" + }, + { + "_id": "67d13942278cd36158038ca1", + "_tpl": "669fa435803b94fb5d0e3a76", + "slotId": "mod_magazine", + "parentId": "67d13942278cd36158038c9d" + }, + { + "_id": "67d13942278cd36158038ca2", + "_tpl": "668fe5ec4315934ba10c6f96", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13942278cd36158038c9e" + }, + { + "_id": "67d13942278cd36158038ca3", + "_tpl": "668fe5e1800f0244f9036e46", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13942278cd36158038ca0" + } + ] + }, + { + "Id": "67d139470100185b95fcc20d", + "Name": "stock deagleXiX 50", + "Root": "67d13954278cd36158038ce8", + "Items": [ + { + "_id": "67d13954278cd36158038ce8", + "_tpl": "668fe5a998b5ad715703ddd6", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13954278cd36158038ce9", + "_tpl": "668fe5f62a0f85eea407cc18", + "slotId": "mod_barrel", + "parentId": "67d13954278cd36158038ce8" + }, + { + "_id": "67d13954278cd36158038cea", + "_tpl": "668fe5d42a0f85eea407cc16", + "slotId": "mod_pistolgrip", + "parentId": "67d13954278cd36158038ce8" + }, + { + "_id": "67d13954278cd36158038ceb", + "_tpl": "668fe60b56984d93550462c6", + "slotId": "mod_reciever", + "parentId": "67d13954278cd36158038ce8" + }, + { + "_id": "67d13954278cd36158038cec", + "_tpl": "668fe5c5f35310705d02b696", + "slotId": "mod_magazine", + "parentId": "67d13954278cd36158038ce8" + }, + { + "_id": "67d13954278cd36158038ced", + "_tpl": "668fe5ec4315934ba10c6f96", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13954278cd36158038ce9" + }, + { + "_id": "67d13954278cd36158038cee", + "_tpl": "668fe5e1800f0244f9036e46", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13954278cd36158038ceb" + } + ] + }, + { + "Id": "67d1395d0100185b95e110e1", + "Name": "deagle6lAE", + "Root": "67d13966278cd36158038cef", + "Items": [ + { + "_id": "67d13966278cd36158038cef", + "_tpl": "669fa3d876116c89840b1217", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13966278cd36158038cf0", + "_tpl": "669fa48fa0bab4e8510d952a", + "slotId": "mod_barrel", + "parentId": "67d13966278cd36158038cef" + }, + { + "_id": "67d13966278cd36158038cf1", + "_tpl": "66a0da76b6f47fcfeb025e96", + "slotId": "mod_pistolgrip", + "parentId": "67d13966278cd36158038cef" + }, + { + "_id": "67d13966278cd36158038cf2", + "_tpl": "669fa5271bd4416eaa09b3ce", + "slotId": "mod_reciever", + "parentId": "67d13966278cd36158038cef" + }, + { + "_id": "67d13966278cd36158038cf3", + "_tpl": "668fe5c5f35310705d02b696", + "slotId": "mod_magazine", + "parentId": "67d13966278cd36158038cef" + }, + { + "_id": "67d13966278cd36158038cf4", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13966278cd36158038cef" + }, + { + "_id": "67d13966278cd36158038cf5", + "_tpl": "668fe5ec4315934ba10c6f96", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13966278cd36158038cf0" + }, + { + "_id": "67d13966278cd36158038cf6", + "_tpl": "668fe5e1800f0244f9036e46", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13966278cd36158038cf2" + } + ] + }, + { + "Id": "67d139800100185b95fef87d", + "Name": "supr stock pl15", + "Root": "67d13985278cd36158039c2d", + "Items": [ + { + "_id": "67d13985278cd36158039c2d", + "_tpl": "602a9740da11d6478d5a06dc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13985278cd36158039c2e", + "_tpl": "602a95fe4e02ce1eaa358729", + "slotId": "mod_barrel", + "parentId": "67d13985278cd36158039c2d" + }, + { + "_id": "67d13985278cd36158039c2f", + "_tpl": "60228924961b8d75ee233c32", + "slotId": "mod_reciever", + "parentId": "67d13985278cd36158039c2d" + }, + { + "_id": "67d13985278cd36158039c30", + "_tpl": "602286df23506e50807090c6", + "slotId": "mod_magazine", + "parentId": "67d13985278cd36158039c2d" + }, + { + "_id": "67d13985278cd36158039c31", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13985278cd36158039c2d" + }, + { + "_id": "67d13985278cd36158039c32", + "_tpl": "5c7e8fab2e22165df16b889b", + "slotId": "mod_muzzle", + "parentId": "67d13985278cd36158039c2e" + }, + { + "_id": "67d13985278cd36158039c33", + "_tpl": "60229948cacb6b0506369e27", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13985278cd36158039c2f" + }, + { + "_id": "67d13985278cd36158039c34", + "_tpl": "60228a76d62c9b14ed777a66", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13985278cd36158039c2f" + } + ] + }, + { + "Id": "67d1399c0100185b959fede4", + "Name": "supr dp pl15", + "Root": "67d1399e278cd36158039c38", + "Items": [ + { + "_id": "67d1399e278cd36158039c38", + "_tpl": "602a9740da11d6478d5a06dc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d1399e278cd36158039c39", + "_tpl": "602a95fe4e02ce1eaa358729", + "slotId": "mod_barrel", + "parentId": "67d1399e278cd36158039c38" + }, + { + "_id": "67d1399e278cd36158039c3a", + "_tpl": "60228924961b8d75ee233c32", + "slotId": "mod_reciever", + "parentId": "67d1399e278cd36158039c38" + }, + { + "_id": "67d1399e278cd36158039c3b", + "_tpl": "602286df23506e50807090c6", + "slotId": "mod_magazine", + "parentId": "67d1399e278cd36158039c38" + }, + { + "_id": "67d1399e278cd36158039c3c", + "_tpl": "5a7b4900e899ef197b331a2a", + "slotId": "mod_tactical", + "parentId": "67d1399e278cd36158039c38" + }, + { + "_id": "67d1399e278cd36158039c3d", + "_tpl": "5c7e8fab2e22165df16b889b", + "slotId": "mod_muzzle", + "parentId": "67d1399e278cd36158039c39" + }, + { + "_id": "67d1399e278cd36158039c3e", + "_tpl": "60229948cacb6b0506369e27", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1399e278cd36158039c3a" + }, + { + "_id": "67d1399e278cd36158039c3f", + "_tpl": "60228a76d62c9b14ed777a66", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1399e278cd36158039c3a" + }, + { + "_id": "67d1399e278cd36158039c40", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d1399e278cd36158039c3c" + }, + { + "_id": "67d1399e278cd36158039c41", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d1399e278cd36158039c40" + } + ] + }, + { + "Id": "67d139b10100185b95e7505f", + "Name": "supr ff3 pl15", + "Root": "67d139b5278cd36158039c47", + "Items": [ + { + "_id": "67d139b5278cd36158039c47", + "_tpl": "602a9740da11d6478d5a06dc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d139b5278cd36158039c48", + "_tpl": "602a95fe4e02ce1eaa358729", + "slotId": "mod_barrel", + "parentId": "67d139b5278cd36158039c47" + }, + { + "_id": "67d139b5278cd36158039c49", + "_tpl": "60228924961b8d75ee233c32", + "slotId": "mod_reciever", + "parentId": "67d139b5278cd36158039c47" + }, + { + "_id": "67d139b5278cd36158039c4a", + "_tpl": "602286df23506e50807090c6", + "slotId": "mod_magazine", + "parentId": "67d139b5278cd36158039c47" + }, + { + "_id": "67d139b5278cd36158039c4b", + "_tpl": "5a7b4900e899ef197b331a2a", + "slotId": "mod_tactical", + "parentId": "67d139b5278cd36158039c47" + }, + { + "_id": "67d139b5278cd36158039c4c", + "_tpl": "5c7e8fab2e22165df16b889b", + "slotId": "mod_muzzle", + "parentId": "67d139b5278cd36158039c48" + }, + { + "_id": "67d139b5278cd36158039c4d", + "_tpl": "60229948cacb6b0506369e27", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d139b5278cd36158039c49" + }, + { + "_id": "67d139b5278cd36158039c4e", + "_tpl": "60228a76d62c9b14ed777a66", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d139b5278cd36158039c49" + }, + { + "_id": "67d139b5278cd36158039c4f", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d139b5278cd36158039c4b" + }, + { + "_id": "67d139b5278cd36158039c50", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d139b5278cd36158039c4b" + }, + { + "_id": "67d139b5278cd36158039c51", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d139b5278cd36158039c4f" + } + ] + }, + { + "Id": "67d139f40100185b95adab79", + "Name": "tac30 rsh12", + "Root": "67d139fb278cd3615803aada", + "Items": [ + { + "_id": "67d139fb278cd3615803aada", + "_tpl": "633ec7c2a6918cb895019c6c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d139fb278cd3615803aadb", + "_tpl": "633ec6ee025b096d320a3b15", + "slotId": "mod_magazine", + "parentId": "67d139fb278cd3615803aada" + }, + { + "_id": "67d139fb278cd3615803aadc", + "_tpl": "633ec8e4025b096d320a3b1e", + "slotId": "mod_pistol_grip", + "parentId": "67d139fb278cd3615803aada" + }, + { + "_id": "67d139fb278cd3615803aadd", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d139fb278cd3615803aada" + }, + { + "_id": "67d139fb278cd3615803aade", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d139fb278cd3615803aada" + }, + { + "_id": "67d139fb278cd3615803aadf", + "_tpl": "5b2388675acfc4771e1be0be", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d139fb278cd3615803aade" + } + ] + }, + { + "Id": "67d13a0d0100185b956f5830", + "Name": "vudu rsh12", + "Root": "67d13a10278cd3615803b8a9", + "Items": [ + { + "_id": "67d13a10278cd3615803b8a9", + "_tpl": "633ec7c2a6918cb895019c6c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13a10278cd3615803b8aa", + "_tpl": "633ec6ee025b096d320a3b15", + "slotId": "mod_magazine", + "parentId": "67d13a10278cd3615803b8a9" + }, + { + "_id": "67d13a10278cd3615803b8ab", + "_tpl": "633ec8e4025b096d320a3b1e", + "slotId": "mod_pistol_grip", + "parentId": "67d13a10278cd3615803b8a9" + }, + { + "_id": "67d13a10278cd3615803b8ac", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13a10278cd3615803b8a9" + }, + { + "_id": "67d13a10278cd3615803b8ad", + "_tpl": "57c69dd424597774c03b7bbc", + "slotId": "mod_scope", + "parentId": "67d13a10278cd3615803b8a9" + }, + { + "_id": "67d13a10278cd3615803b8ae", + "_tpl": "5b3b99475acfc432ff4dcbee", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13a10278cd3615803b8ad" + } + ] + }, + { + "Id": "67d13a230100185b95986245", + "Name": "stock mp443", + "Root": "67d13a28278cd3615803b8b1", + "Items": [ + { + "_id": "67d13a28278cd3615803b8b1", + "_tpl": "576a581d2459771e7b1bc4f1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13a28278cd3615803b8b2", + "_tpl": "576a7c512459771e796e0e17", + "slotId": "mod_mount", + "parentId": "67d13a28278cd3615803b8b1" + }, + { + "_id": "67d13a28278cd3615803b8b3", + "_tpl": "576a5ed62459771e9c2096cb", + "slotId": "mod_magazine", + "parentId": "67d13a28278cd3615803b8b1" + }, + { + "_id": "67d13a28278cd3615803b8b4", + "_tpl": "576a63cd2459771e796e0e11", + "slotId": "mod_pistol_grip", + "parentId": "67d13a28278cd3615803b8b1" + }, + { + "_id": "67d13a28278cd3615803b8b5", + "_tpl": "5a5f1ce64f39f90b401987bc", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13a28278cd3615803b8b2" + } + ] + }, + { + "Id": "67d13a4d0100185b9504d9ff", + "Name": "supr dp p226", + "Root": "67d13a52278cd3615803c6cc", + "Items": [ + { + "_id": "67d13a52278cd3615803c6cc", + "_tpl": "56d59856d2720bd8418b456a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13a52278cd3615803c6cd", + "_tpl": "587de4282459771bca0ec90b", + "slotId": "mod_barrel", + "parentId": "67d13a52278cd3615803c6cc" + }, + { + "_id": "67d13a52278cd3615803c6ce", + "_tpl": "5b39ffbd5acfc47a8773fb06", + "slotId": "mod_pistol_grip", + "parentId": "67d13a52278cd3615803c6cc" + }, + { + "_id": "67d13a52278cd3615803c6cf", + "_tpl": "5c0125fc0db834001a669aa3", + "slotId": "mod_reciever", + "parentId": "67d13a52278cd3615803c6cc" + }, + { + "_id": "67d13a52278cd3615803c6d0", + "_tpl": "56d59948d2720bb7418b4582", + "slotId": "mod_magazine", + "parentId": "67d13a52278cd3615803c6cc" + }, + { + "_id": "67d13a52278cd3615803c6d1", + "_tpl": "5a7b4900e899ef197b331a2a", + "slotId": "mod_tactical", + "parentId": "67d13a52278cd3615803c6cc" + }, + { + "_id": "67d13a52278cd3615803c6d2", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d13a52278cd3615803c6cd" + }, + { + "_id": "67d13a52278cd3615803c6d3", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d13a52278cd3615803c6d1" + }, + { + "_id": "67d13a52278cd3615803c6d4", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13a52278cd3615803c6d3" + } + ] + }, + { + "Id": "67d13a6c0100185b957971ae", + "Name": "supr stock p226", + "Root": "67d13a71278cd3615803c6ec", + "Items": [ + { + "_id": "67d13a71278cd3615803c6ec", + "_tpl": "56d59856d2720bd8418b456a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13a71278cd3615803c6ed", + "_tpl": "587de4282459771bca0ec90b", + "slotId": "mod_barrel", + "parentId": "67d13a71278cd3615803c6ec" + }, + { + "_id": "67d13a71278cd3615803c6ee", + "_tpl": "5b39ffbd5acfc47a8773fb06", + "slotId": "mod_pistol_grip", + "parentId": "67d13a71278cd3615803c6ec" + }, + { + "_id": "67d13a71278cd3615803c6ef", + "_tpl": "5c0125fc0db834001a669aa3", + "slotId": "mod_reciever", + "parentId": "67d13a71278cd3615803c6ec" + }, + { + "_id": "67d13a71278cd3615803c6f0", + "_tpl": "56d59948d2720bb7418b4582", + "slotId": "mod_magazine", + "parentId": "67d13a71278cd3615803c6ec" + }, + { + "_id": "67d13a71278cd3615803c6f1", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d13a71278cd3615803c6ed" + }, + { + "_id": "67d13a71278cd3615803c6f2", + "_tpl": "5c07b3850db834002330045b", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13a71278cd3615803c6ef" + }, + { + "_id": "67d13a71278cd3615803c6f3", + "_tpl": "5c07b36c0db834002a1259e9", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13a71278cd3615803c6ef" + } + ] + }, + { + "Id": "67d13a820100185b9582860f", + "Name": "supr ff3 p226", + "Root": "67d13a85278cd3615803c6fa", + "Items": [ + { + "_id": "67d13a85278cd3615803c6fa", + "_tpl": "56d59856d2720bd8418b456a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13a85278cd3615803c6fb", + "_tpl": "587de4282459771bca0ec90b", + "slotId": "mod_barrel", + "parentId": "67d13a85278cd3615803c6fa" + }, + { + "_id": "67d13a85278cd3615803c6fc", + "_tpl": "5b39ffbd5acfc47a8773fb06", + "slotId": "mod_pistol_grip", + "parentId": "67d13a85278cd3615803c6fa" + }, + { + "_id": "67d13a85278cd3615803c6fd", + "_tpl": "5c0125fc0db834001a669aa3", + "slotId": "mod_reciever", + "parentId": "67d13a85278cd3615803c6fa" + }, + { + "_id": "67d13a85278cd3615803c6fe", + "_tpl": "56d59948d2720bb7418b4582", + "slotId": "mod_magazine", + "parentId": "67d13a85278cd3615803c6fa" + }, + { + "_id": "67d13a85278cd3615803c6ff", + "_tpl": "5a7b4900e899ef197b331a2a", + "slotId": "mod_tactical", + "parentId": "67d13a85278cd3615803c6fa" + }, + { + "_id": "67d13a85278cd3615803c700", + "_tpl": "5c6165902e22160010261b28", + "slotId": "mod_muzzle", + "parentId": "67d13a85278cd3615803c6fb" + }, + { + "_id": "67d13a85278cd3615803c701", + "_tpl": "577d128124597739d65d0e56", + "slotId": "mod_scope", + "parentId": "67d13a85278cd3615803c6ff" + }, + { + "_id": "67d13a85278cd3615803c702", + "_tpl": "5cc9c20cd7f00c001336c65d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13a85278cd3615803c6ff" + }, + { + "_id": "67d13a85278cd3615803c703", + "_tpl": "577d141e24597739c5255e01", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13a85278cd3615803c701" + } + ] + }, + { + "Id": "67d13a920100185b95e4dcd2", + "Name": "stock gold tt", + "Root": "67d13a96278cd3615803c70a", + "Items": [ + { + "_id": "67d13a96278cd3615803c70a", + "_tpl": "5b3b713c5acfc4330140bd8d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "67d13a96278cd3615803c70b", + "_tpl": "5b3baf8f5acfc40dc5296692", + "slotId": "mod_barrel", + "parentId": "67d13a96278cd3615803c70a" + }, + { + "_id": "67d13a96278cd3615803c70c", + "_tpl": "5b3cadf35acfc400194776a0", + "slotId": "mod_pistol_grip", + "parentId": "67d13a96278cd3615803c70a" + }, + { + "_id": "67d13a96278cd3615803c70d", + "_tpl": "571a29dc2459771fb2755a6a", + "slotId": "mod_magazine", + "parentId": "67d13a96278cd3615803c70a" + } + ] + }, + { + "Id": "67d13ada0100185b95c5e12f", + "Name": "stock m60e6", + "Root": "67d13adf278cd3615803d685", + "Items": [ + { + "_id": "67d13adf278cd3615803d685", + "_tpl": "661cec09b2c6356b4d0c7a36", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67d13adf278cd3615803d686", + "_tpl": "660ea4453786cc0af808a1be", + "slotId": "mod_magazine", + "parentId": "67d13adf278cd3615803d685" + }, + { + "_id": "67d13adf278cd3615803d687", + "_tpl": "661520fb6f8e1a96340afaa6", + "slotId": "mod_stock", + "parentId": "67d13adf278cd3615803d685" + }, + { + "_id": "67d13adf278cd3615803d688", + "_tpl": "66012788c752a02bbe05e68e", + "slotId": "mod_barrel", + "parentId": "67d13adf278cd3615803d685" + }, + { + "_id": "67d13adf278cd3615803d689", + "_tpl": "661fbe066751ee51930b01f2", + "slotId": "mod_handguard", + "parentId": "67d13adf278cd3615803d685" + }, + { + "_id": "67d13adf278cd3615803d68a", + "_tpl": "6601265f98a610c1aa0ea637", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13adf278cd3615803d685" + }, + { + "_id": "67d13adf278cd3615803d68b", + "_tpl": "66152153a031cbb5570e346f", + "slotId": "mod_pistolgrip_000", + "parentId": "67d13adf278cd3615803d685" + }, + { + "_id": "67d13adf278cd3615803d68c", + "_tpl": "57ac965c24597706be5f975c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13adf278cd3615803d685" + }, + { + "_id": "67d13adf278cd3615803d68d", + "_tpl": "66012a1d3dff5074ed002e2a", + "slotId": "mod_muzzle", + "parentId": "67d13adf278cd3615803d688" + }, + { + "_id": "67d13adf278cd3615803d68e", + "_tpl": "660126a98f2b23af220b27e7", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13adf278cd3615803d688" + }, + { + "_id": "67d13adf278cd3615803d68f", + "_tpl": "6615211ca031cbb5570e346d", + "slotId": "mod_pistolgrip_001", + "parentId": "67d13adf278cd3615803d68b" + } + ] + }, + { + "Id": "67d13af00100185b952459d7", + "Name": "supr uh1 m60", + "Root": "67d13afd278cd3615803e480", + "Items": [ + { + "_id": "67d13afd278cd3615803e480", + "_tpl": "661ceb1b9311543c7104149b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67d13afd278cd3615803e481", + "_tpl": "660ea4453786cc0af808a1be", + "slotId": "mod_magazine", + "parentId": "67d13afd278cd3615803e480" + }, + { + "_id": "67d13afd278cd3615803e482", + "_tpl": "6615202b96461aa8360271eb", + "slotId": "mod_stock", + "parentId": "67d13afd278cd3615803e480" + }, + { + "_id": "67d13afd278cd3615803e483", + "_tpl": "66225d88a1c7e3b81600c76f", + "slotId": "mod_barrel", + "parentId": "67d13afd278cd3615803e480" + }, + { + "_id": "67d13afd278cd3615803e484", + "_tpl": "66012d003dff5074ed002e2c", + "slotId": "mod_handguard", + "parentId": "67d13afd278cd3615803e480" + }, + { + "_id": "67d13afd278cd3615803e485", + "_tpl": "6601265f98a610c1aa0ea637", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13afd278cd3615803e480" + }, + { + "_id": "67d13afd278cd3615803e486", + "_tpl": "6615208aa031cbb5570e346a", + "slotId": "mod_pistolgrip_000", + "parentId": "67d13afd278cd3615803e480" + }, + { + "_id": "67d13afd278cd3615803e487", + "_tpl": "66012d9a3dff5074ed002e33", + "slotId": "mod_bipod", + "parentId": "67d13afd278cd3615803e480" + }, + { + "_id": "67d13afd278cd3615803e488", + "_tpl": "59f9d81586f7744c7506ee62", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13afd278cd3615803e480" + }, + { + "_id": "67d13afd278cd3615803e489", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "slotId": "mod_muzzle", + "parentId": "67d13afd278cd3615803e483" + }, + { + "_id": "67d13afd278cd3615803e48a", + "_tpl": "6601268bc752a02bbe05e686", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13afd278cd3615803e483" + }, + { + "_id": "67d13afd278cd3615803e48b", + "_tpl": "588226d124597767ad33f787", + "slotId": "mod_foregrip", + "parentId": "67d13afd278cd3615803e484" + }, + { + "_id": "67d13afd278cd3615803e48c", + "_tpl": "66152060a031cbb5570e3466", + "slotId": "mod_pistolgrip_001", + "parentId": "67d13afd278cd3615803e486" + } + ] + }, + { + "Id": "67d13b250100185b958b0534", + "Name": "loud hmar m60e4", + "Root": "67d13b2b278cd3615803f298", + "Items": [ + { + "_id": "67d13b2b278cd3615803f298", + "_tpl": "65fb023261d5829b2d090755", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67d13b2b278cd3615803f299", + "_tpl": "660ea4453786cc0af808a1be", + "slotId": "mod_magazine", + "parentId": "67d13b2b278cd3615803f298" + }, + { + "_id": "67d13b2b278cd3615803f29a", + "_tpl": "660126161347bc1a5f0f4dba", + "slotId": "mod_stock", + "parentId": "67d13b2b278cd3615803f298" + }, + { + "_id": "67d13b2b278cd3615803f29b", + "_tpl": "660126f7c752a02bbe05e688", + "slotId": "mod_barrel", + "parentId": "67d13b2b278cd3615803f298" + }, + { + "_id": "67d13b2b278cd3615803f29c", + "_tpl": "66012d64c752a02bbe05e69b", + "slotId": "mod_handguard", + "parentId": "67d13b2b278cd3615803f298" + }, + { + "_id": "67d13b2b278cd3615803f29d", + "_tpl": "6601265f98a610c1aa0ea637", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13b2b278cd3615803f298" + }, + { + "_id": "67d13b2b278cd3615803f29e", + "_tpl": "6601257f1347bc1a5f0f4db6", + "slotId": "mod_pistolgrip_000", + "parentId": "67d13b2b278cd3615803f298" + }, + { + "_id": "67d13b2b278cd3615803f29f", + "_tpl": "66012d9a3dff5074ed002e33", + "slotId": "mod_bipod", + "parentId": "67d13b2b278cd3615803f298" + }, + { + "_id": "67d13b2b278cd3615803f2a0", + "_tpl": "544a3a774bdc2d3a388b4567", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13b2b278cd3615803f298" + }, + { + "_id": "67d13b2b278cd3615803f2a1", + "_tpl": "5c878e9d2e2216000f201903", + "slotId": "mod_muzzle", + "parentId": "67d13b2b278cd3615803f29b" + }, + { + "_id": "67d13b2b278cd3615803f2a2", + "_tpl": "6601268bc752a02bbe05e686", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13b2b278cd3615803f29b" + }, + { + "_id": "67d13b2b278cd3615803f2a3", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67d13b2b278cd3615803f29c" + }, + { + "_id": "67d13b2b278cd3615803f2a4", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13b2b278cd3615803f29c" + }, + { + "_id": "67d13b2b278cd3615803f2a5", + "_tpl": "660125bf1d087a96c60a54db", + "slotId": "mod_pistolgrip_001", + "parentId": "67d13b2b278cd3615803f29e" + }, + { + "_id": "67d13b2b278cd3615803f2a6", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13b2b278cd3615803f2a0" + } + ] + }, + { + "Id": "67d13b5c0100185b95d4b4f0", + "Name": "supr holo m60e4", + "Root": "67d13b62278cd3615803f2e3", + "Items": [ + { + "_id": "67d13b62278cd3615803f2e3", + "_tpl": "65fb023261d5829b2d090755", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67d13b62278cd3615803f2e4", + "_tpl": "660ea4453786cc0af808a1be", + "slotId": "mod_magazine", + "parentId": "67d13b62278cd3615803f2e3" + }, + { + "_id": "67d13b62278cd3615803f2e5", + "_tpl": "660126161347bc1a5f0f4dba", + "slotId": "mod_stock", + "parentId": "67d13b62278cd3615803f2e3" + }, + { + "_id": "67d13b62278cd3615803f2e6", + "_tpl": "6601279cc752a02bbe05e692", + "slotId": "mod_barrel", + "parentId": "67d13b62278cd3615803f2e3" + }, + { + "_id": "67d13b62278cd3615803f2e7", + "_tpl": "66012d64c752a02bbe05e69b", + "slotId": "mod_handguard", + "parentId": "67d13b62278cd3615803f2e3" + }, + { + "_id": "67d13b62278cd3615803f2e8", + "_tpl": "6601265f98a610c1aa0ea637", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13b62278cd3615803f2e3" + }, + { + "_id": "67d13b62278cd3615803f2e9", + "_tpl": "6601257f1347bc1a5f0f4db6", + "slotId": "mod_pistolgrip_000", + "parentId": "67d13b62278cd3615803f2e3" + }, + { + "_id": "67d13b62278cd3615803f2ea", + "_tpl": "66012d9a3dff5074ed002e33", + "slotId": "mod_bipod", + "parentId": "67d13b62278cd3615803f2e3" + }, + { + "_id": "67d13b62278cd3615803f2eb", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13b62278cd3615803f2e3" + }, + { + "_id": "67d13b62278cd3615803f2ec", + "_tpl": "6130c43c67085e45ef1405a1", + "slotId": "mod_muzzle", + "parentId": "67d13b62278cd3615803f2e6" + }, + { + "_id": "67d13b62278cd3615803f2ed", + "_tpl": "59f8a37386f7747af3328f06", + "slotId": "mod_foregrip", + "parentId": "67d13b62278cd3615803f2e7" + }, + { + "_id": "67d13b62278cd3615803f2ee", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13b62278cd3615803f2e7" + }, + { + "_id": "67d13b62278cd3615803f2ef", + "_tpl": "660125bf1d087a96c60a54db", + "slotId": "mod_pistolgrip_001", + "parentId": "67d13b62278cd3615803f2e9" + }, + { + "_id": "67d13b62278cd3615803f2f0", + "_tpl": "5dfa3d2b0dee1b22f862eade", + "slotId": "mod_muzzle", + "parentId": "67d13b62278cd3615803f2ec" + } + ] + }, + { + "Id": "67d13b780100185b952800a1", + "Name": "stock rpd", + "Root": "67d13b7b278cd361580401a6", + "Items": [ + { + "_id": "67d13b7b278cd361580401a6", + "_tpl": "6513ef33e06849f06c0957ca", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67d13b7b278cd361580401a7", + "_tpl": "6513f0a194c72326990a3868", + "slotId": "mod_magazine", + "parentId": "67d13b7b278cd361580401a6" + }, + { + "_id": "67d13b7b278cd361580401a8", + "_tpl": "6513f1798cb24472490ee331", + "slotId": "mod_stock", + "parentId": "67d13b7b278cd361580401a6" + }, + { + "_id": "67d13b7b278cd361580401a9", + "_tpl": "6513eff1e06849f06c0957d4", + "slotId": "mod_barrel", + "parentId": "67d13b7b278cd361580401a6" + }, + { + "_id": "67d13b7b278cd361580401aa", + "_tpl": "6513f05a94c72326990a3866", + "slotId": "mod_handguard", + "parentId": "67d13b7b278cd361580401a6" + }, + { + "_id": "67d13b7b278cd361580401ab", + "_tpl": "6513f153e63f29908d0ffaba", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13b7b278cd361580401a6" + }, + { + "_id": "67d13b7b278cd361580401ac", + "_tpl": "6513f13a8cb24472490ee32f", + "slotId": "mod_pistolgrip", + "parentId": "67d13b7b278cd361580401a8" + }, + { + "_id": "67d13b7b278cd361580401ad", + "_tpl": "6513f037e06849f06c0957d7", + "slotId": "mod_bipod", + "parentId": "67d13b7b278cd361580401a9" + }, + { + "_id": "67d13b7b278cd361580401ae", + "_tpl": "6513f0f5e63f29908d0ffab8", + "slotId": "mod_muzzle", + "parentId": "67d13b7b278cd361580401a9" + } + ] + }, + { + "Id": "67d13b9d0100185b95766ed9", + "Name": "loud dp kpk", + "Root": "67d13ba3278cd361580401af", + "Items": [ + { + "_id": "67d13ba3278cd361580401af", + "_tpl": "64ca3d3954fc657e230529cc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67d13ba3278cd361580401b0", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistolgrip", + "parentId": "67d13ba3278cd361580401af" + }, + { + "_id": "67d13ba3278cd361580401b1", + "_tpl": "646372518610c40fc20204e8", + "slotId": "mod_magazine", + "parentId": "67d13ba3278cd361580401af" + }, + { + "_id": "67d13ba3278cd361580401b2", + "_tpl": "6492e3a97df7d749100e29ee", + "slotId": "mod_stock", + "parentId": "67d13ba3278cd361580401af" + }, + { + "_id": "67d13ba3278cd361580401b3", + "_tpl": "64639a9aab86f8fd4300146c", + "slotId": "mod_barrel", + "parentId": "67d13ba3278cd361580401af" + }, + { + "_id": "67d13ba3278cd361580401b4", + "_tpl": "6491c6f6ef312a876705191b", + "slotId": "mod_handguard", + "parentId": "67d13ba3278cd361580401af" + }, + { + "_id": "67d13ba3278cd361580401b5", + "_tpl": "6492fb8253acae0af00a29b6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13ba3278cd361580401af" + }, + { + "_id": "67d13ba3278cd361580401b6", + "_tpl": "638db77630c4240f9e06f8b6", + "slotId": "mod_scope", + "parentId": "67d13ba3278cd361580401af" + }, + { + "_id": "67d13ba3278cd361580401b7", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13ba3278cd361580401b4" + }, + { + "_id": "67d13ba3278cd361580401b8", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67d13ba3278cd361580401b4" + }, + { + "_id": "67d13ba3278cd361580401b9", + "_tpl": "58d2664f86f7747fec5834f6", + "slotId": "mod_scope", + "parentId": "67d13ba3278cd361580401b6" + }, + { + "_id": "67d13ba3278cd361580401ba", + "_tpl": "58d268fc86f774111273f8c2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13ba3278cd361580401b9" + } + ] + }, + { + "Id": "67d13bd30100185b95fc3b81", + "Name": "loud holo kpk", + "Root": "67d13bd8278cd36158041001", + "Items": [ + { + "_id": "67d13bd8278cd36158041001", + "_tpl": "64ca3d3954fc657e230529cc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67d13bd8278cd36158041002", + "_tpl": "5947f92f86f77427344a76b1", + "slotId": "mod_pistolgrip", + "parentId": "67d13bd8278cd36158041001" + }, + { + "_id": "67d13bd8278cd36158041003", + "_tpl": "646372518610c40fc20204e8", + "slotId": "mod_magazine", + "parentId": "67d13bd8278cd36158041001" + }, + { + "_id": "67d13bd8278cd36158041004", + "_tpl": "6492e3a97df7d749100e29ee", + "slotId": "mod_stock", + "parentId": "67d13bd8278cd36158041001" + }, + { + "_id": "67d13bd8278cd36158041005", + "_tpl": "64639a9aab86f8fd4300146c", + "slotId": "mod_barrel", + "parentId": "67d13bd8278cd36158041001" + }, + { + "_id": "67d13bd8278cd36158041006", + "_tpl": "6491c6f6ef312a876705191b", + "slotId": "mod_handguard", + "parentId": "67d13bd8278cd36158041001" + }, + { + "_id": "67d13bd8278cd36158041007", + "_tpl": "6492fb8253acae0af00a29b6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13bd8278cd36158041001" + }, + { + "_id": "67d13bd8278cd36158041008", + "_tpl": "591ee00d86f774592f7b841e", + "slotId": "mod_scope", + "parentId": "67d13bd8278cd36158041001" + }, + { + "_id": "67d13bd8278cd36158041009", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13bd8278cd36158041006" + }, + { + "_id": "67d13bd8278cd3615804100a", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67d13bd8278cd36158041006" + }, + { + "_id": "67d13bd8278cd3615804100b", + "_tpl": "58491f3324597764bc48fa02", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13bd8278cd36158041008" + } + ] + }, + { + "Id": "67d13bff0100185b9576a0e6", + "Name": "loud stock pkm", + "Root": "67d13c06278cd36158041e6e", + "Items": [ + { + "_id": "67d13c06278cd36158041e6e", + "_tpl": "64637076203536ad5600c990", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67d13c06278cd36158041e6f", + "_tpl": "5649ae4a4bdc2d1b2b8b4588", + "slotId": "mod_pistolgrip", + "parentId": "67d13c06278cd36158041e6e" + }, + { + "_id": "67d13c06278cd36158041e70", + "_tpl": "646372518610c40fc20204e8", + "slotId": "mod_magazine", + "parentId": "67d13c06278cd36158041e6e" + }, + { + "_id": "67d13c06278cd36158041e71", + "_tpl": "6492e3a97df7d749100e29ee", + "slotId": "mod_stock", + "parentId": "67d13c06278cd36158041e6e" + }, + { + "_id": "67d13c06278cd36158041e72", + "_tpl": "646371faf2404ab67905c8e9", + "slotId": "mod_barrel", + "parentId": "67d13c06278cd36158041e6e" + }, + { + "_id": "67d13c06278cd36158041e73", + "_tpl": "6464d870bb2c580352070cc4", + "slotId": "mod_bipod", + "parentId": "67d13c06278cd36158041e6e" + }, + { + "_id": "67d13c06278cd36158041e74", + "_tpl": "6492fb8253acae0af00a29b6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13c06278cd36158041e6e" + }, + { + "_id": "67d13c06278cd36158041e75", + "_tpl": "6492ef63cfcf7c89e701abf1", + "slotId": "mod_muzzle", + "parentId": "67d13c06278cd36158041e72" + } + ] + }, + { + "Id": "67d13c2c0100185b95e01072", + "Name": "loud stock pkm v2", + "Root": "67d13c30278cd36158041eac", + "Items": [ + { + "_id": "67d13c30278cd36158041eac", + "_tpl": "64637076203536ad5600c990", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67d13c30278cd36158041ead", + "_tpl": "6087e663132d4d12c81fd96b", + "slotId": "mod_pistolgrip", + "parentId": "67d13c30278cd36158041eac" + }, + { + "_id": "67d13c30278cd36158041eae", + "_tpl": "646372518610c40fc20204e8", + "slotId": "mod_magazine", + "parentId": "67d13c30278cd36158041eac" + }, + { + "_id": "67d13c30278cd36158041eaf", + "_tpl": "6492d7847363b8a52206bc52", + "slotId": "mod_stock", + "parentId": "67d13c30278cd36158041eac" + }, + { + "_id": "67d13c30278cd36158041eb0", + "_tpl": "646371faf2404ab67905c8e9", + "slotId": "mod_barrel", + "parentId": "67d13c30278cd36158041eac" + }, + { + "_id": "67d13c30278cd36158041eb1", + "_tpl": "6491c6f6ef312a876705191b", + "slotId": "mod_handguard", + "parentId": "67d13c30278cd36158041eac" + }, + { + "_id": "67d13c30278cd36158041eb2", + "_tpl": "6492fb8253acae0af00a29b6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13c30278cd36158041eac" + }, + { + "_id": "67d13c30278cd36158041eb3", + "_tpl": "6492ef63cfcf7c89e701abf1", + "slotId": "mod_muzzle", + "parentId": "67d13c30278cd36158041eb0" + }, + { + "_id": "67d13c30278cd36158041eb4", + "_tpl": "56def37dd2720bec348b456a", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + }, + "parentId": "67d13c30278cd36158041eb1" + }, + { + "_id": "67d13c30278cd36158041eb5", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "slotId": "mod_foregrip", + "parentId": "67d13c30278cd36158041eb1" + } + ] + }, + { + "Id": "67d13c470100185b95b0b318", + "Name": "stock rpd 2", + "Root": "67d13c4f278cd36158042e67", + "Items": [ + { + "_id": "67d13c4f278cd36158042e67", + "_tpl": "6513ef33e06849f06c0957ca", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "67d13c4f278cd36158042e68", + "_tpl": "6513f0a194c72326990a3868", + "slotId": "mod_magazine", + "parentId": "67d13c4f278cd36158042e67" + }, + { + "_id": "67d13c4f278cd36158042e69", + "_tpl": "6513f1798cb24472490ee331", + "slotId": "mod_stock", + "parentId": "67d13c4f278cd36158042e67" + }, + { + "_id": "67d13c4f278cd36158042e6a", + "_tpl": "6513eff1e06849f06c0957d4", + "slotId": "mod_barrel", + "parentId": "67d13c4f278cd36158042e67" + }, + { + "_id": "67d13c4f278cd36158042e6b", + "_tpl": "6513f05a94c72326990a3866", + "slotId": "mod_handguard", + "parentId": "67d13c4f278cd36158042e67" + }, + { + "_id": "67d13c4f278cd36158042e6c", + "_tpl": "6513f153e63f29908d0ffaba", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0, + "ScopeZoomValue": 0 + } + }, + "parentId": "67d13c4f278cd36158042e67" + }, + { + "_id": "67d13c4f278cd36158042e6d", + "_tpl": "6513f13a8cb24472490ee32f", + "slotId": "mod_pistolgrip", + "parentId": "67d13c4f278cd36158042e69" + }, + { + "_id": "67d13c4f278cd36158042e6e", + "_tpl": "6513f037e06849f06c0957d7", + "slotId": "mod_bipod", + "parentId": "67d13c4f278cd36158042e6a" + }, + { + "_id": "67d13c4f278cd36158042e6f", + "_tpl": "6513f0f5e63f29908d0ffab8", + "slotId": "mod_muzzle", + "parentId": "67d13c4f278cd36158042e6a" + } + ] + } + ], + [ // _scav + { + "Id": "6690507c0100152820b5b011", + "Name": "Bambi Punisher", + "Root": "9cdec051ec16623c41d3582b", + "Items": [ + { + "_id": "9cdec051ec16623c41d3582b", + "_tpl": "59e6152586f77473dc057aa1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "860001afde794c4209a73bcf", + "_tpl": "59e649f986f77411d949b246", + "parentId": "9cdec051ec16623c41d3582b", + "slotId": "mod_gas_block" + }, + { + "_id": "8fb65584f9b1f5e8215dcc04", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "9cdec051ec16623c41d3582b", + "slotId": "mod_muzzle" + }, + { + "_id": "c1106cf9296f73ab4ee2c5b4", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "9cdec051ec16623c41d3582b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "b6b39aa9f0e7ae8e86b333a9", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "9cdec051ec16623c41d3582b", + "slotId": "mod_reciever" + }, + { + "_id": "f6826d5c63adf416d4948750", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "9cdec051ec16623c41d3582b", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7ddc85756621d285354fad1c", + "_tpl": "59e6227d86f77440d64f5dc2", + "parentId": "9cdec051ec16623c41d3582b", + "slotId": "mod_stock" + }, + { + "_id": "36f65728eec7ce13edc8a2f0", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "9cdec051ec16623c41d3582b", + "slotId": "mod_magazine" + }, + { + "_id": "e5bc80a76f7c7e87e1a8454d", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "9cdec051ec16623c41d3582b", + "slotId": "mod_charge" + }, + { + "_id": "2dba96f073f68b0c797944a1", + "_tpl": "5a9d56c8a2750c0032157146", + "parentId": "860001afde794c4209a73bcf", + "slotId": "mod_handguard" + }, + { + "_id": "71c644eb9e1bc65eb3151721", + "_tpl": "5b30b0dc5acfc400153b7124", + "parentId": "b6b39aa9f0e7ae8e86b333a9", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "669050e00100152820f1e63e", + "Name": "Little Squeker", + "Root": "4d963396445620161bd9e555", + "Items": [ + { + "_id": "4d963396445620161bd9e555", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "4b5c04694c863881c068163d", + "_tpl": "651580dc71a4f10aec4b6056", + "parentId": "4d963396445620161bd9e555", + "slotId": "mod_pistol_grip" + }, + { + "_id": "636f4c86e3d5a463d0828494", + "_tpl": "599851db86f77467372f0a18", + "parentId": "4d963396445620161bd9e555", + "slotId": "mod_stock" + }, + { + "_id": "984568a49477547c7032addc", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "4d963396445620161bd9e555", + "slotId": "mod_charge" + }, + { + "_id": "0cd92468b781b9aced4b5eaf", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "4d963396445620161bd9e555", + "slotId": "mod_magazine" + }, + { + "_id": "625717c13040bb699fc09878", + "_tpl": "59bfc5c886f7743bf6794e62", + "parentId": "4d963396445620161bd9e555", + "slotId": "mod_muzzle" + }, + { + "_id": "889c7bc8024f96fb91ae7b12", + "_tpl": "59985a6c86f77414ec448d17", + "parentId": "4d963396445620161bd9e555", + "slotId": "mod_reciever" + }, + { + "_id": "c01ca6bb5396d2c4e10cc28e", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "4d963396445620161bd9e555", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ff49fa2aa32a509e7ed0d1dc", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "4d963396445620161bd9e555", + "slotId": "mod_gas_block" + }, + { + "_id": "3d67519ce6e40e0f52b52956", + "_tpl": "6494094948796d891603e59f", + "parentId": "636f4c86e3d5a463d0828494", + "slotId": "mod_stock" + }, + { + "_id": "c2d1e283f3d03eb217bb5b31", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "889c7bc8024f96fb91ae7b12", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "10a098c88c748a73c7ceceb1", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "ff49fa2aa32a509e7ed0d1dc", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "6690514201001528208ca9b5", + "Name": "Pickle Muncher", + "Root": "2f0246d6e225496577368ffc", + "Items": [ + { + "_id": "2f0246d6e225496577368ffc", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "9e6312ba3fa198488a1cf41b", + "_tpl": "5998517986f7746017232f7e", + "parentId": "2f0246d6e225496577368ffc", + "slotId": "mod_pistol_grip" + }, + { + "_id": "e6ca7a38ccf8c78da5d8ebd7", + "_tpl": "599851db86f77467372f0a18", + "parentId": "2f0246d6e225496577368ffc", + "slotId": "mod_stock" + }, + { + "_id": "257f54892a74a58db7310d9e", + "_tpl": "5c0672ed0db834001b7353f3", + "parentId": "2f0246d6e225496577368ffc", + "slotId": "mod_magazine" + }, + { + "_id": "8a7cd4134b947ef307fca79e", + "_tpl": "5998597786f77414ea6da093", + "parentId": "2f0246d6e225496577368ffc", + "slotId": "mod_muzzle" + }, + { + "_id": "d1a478dfecaa4c822767528a", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "2f0246d6e225496577368ffc", + "slotId": "mod_reciever" + }, + { + "_id": "b5fe2698891e002bf3e4e044", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "2f0246d6e225496577368ffc", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c9a0af2b561d750a152438cc", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "2f0246d6e225496577368ffc", + "slotId": "mod_gas_block" + }, + { + "_id": "bbf42e4a4a7dc239491ac30c", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "e6ca7a38ccf8c78da5d8ebd7", + "slotId": "mod_stock" + }, + { + "_id": "68908378fd98d3585d449c7f", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "parentId": "c9a0af2b561d750a152438cc", + "slotId": "mod_handguard" + }, + { + "_id": "f9c8051ed05f0d3157bb5757", + "_tpl": "5c87ca002e221600114cb150", + "parentId": "68908378fd98d3585d449c7f", + "slotId": "mod_foregrip" + }, + { + "_id": "7cfb2b7cba761040e6b24f71", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "68908378fd98d3585d449c7f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "52790b79dc116876a4076a1f", + "_tpl": "5a5f1ce64f39f90b401987bc", + "parentId": "68908378fd98d3585d449c7f", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "6690520b01001528206b67cf", + "Name": "Scav Harvest", + "Root": "15807decdddd05c8ae848ca6", + "Items": [ + { + "_id": "15807decdddd05c8ae848ca6", + "_tpl": "59ff346386f77477562ff5e2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1d0036be99b01ff7479fb700", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "15807decdddd05c8ae848ca6", + "slotId": "mod_gas_block" + }, + { + "_id": "0c7beb94ab5ddfe72740f08a", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "15807decdddd05c8ae848ca6", + "slotId": "mod_muzzle" + }, + { + "_id": "adc6c93e76c73c347ebb8460", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "15807decdddd05c8ae848ca6", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "fe6ed2e0f1d40c7ac10b7056", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "15807decdddd05c8ae848ca6", + "slotId": "mod_reciever" + }, + { + "_id": "225d7597412c9025ab7405ca", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "15807decdddd05c8ae848ca6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "df0dc78b78fced3fc836f2c3", + "_tpl": "59ff3b6a86f77477562ff5ed", + "parentId": "15807decdddd05c8ae848ca6", + "slotId": "mod_stock_akms" + }, + { + "_id": "2006456b6c9ad743102f064b", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "15807decdddd05c8ae848ca6", + "slotId": "mod_magazine" + }, + { + "_id": "8a1de003d4695e21bbe4d9a5", + "_tpl": "5d4aaa73a4b9365392071175", + "parentId": "1d0036be99b01ff7479fb700", + "slotId": "mod_handguard" + }, + { + "_id": "abc9006bc4dc3087dc0ef4c7", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "df0dc78b78fced3fc836f2c3", + "slotId": "mod_stock" + }, + { + "_id": "2cf7852e88d548c5f8d1684b", + "_tpl": "651a8bf3a8520e48047bf708", + "parentId": "8a1de003d4695e21bbe4d9a5", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "669052470100152820692a61", + "Name": "Scav Muncher", + "Root": "1b4da91fafd1c59e7213c97f", + "Items": [ + { + "_id": "1b4da91fafd1c59e7213c97f", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5b457e42958a98818d73ba1a", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "parentId": "1b4da91fafd1c59e7213c97f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "2d18cc3c976a7ec5018141ac", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "parentId": "1b4da91fafd1c59e7213c97f", + "slotId": "mod_magazine" + }, + { + "_id": "6f7c8e7d51584d47aa924b5c", + "_tpl": "5c0e2f26d174af02a9625114", + "parentId": "1b4da91fafd1c59e7213c97f", + "slotId": "mod_reciever" + }, + { + "_id": "5424be3b02905d3926512aa0", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "1b4da91fafd1c59e7213c97f", + "slotId": "mod_stock" + }, + { + "_id": "253f91cdc77b2eb459fd0b59", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "1b4da91fafd1c59e7213c97f", + "slotId": "mod_charge" + }, + { + "_id": "30a7d68edb46a71de7ca9e43", + "_tpl": "5c0a2cec0db834001b7ce47d", + "parentId": "6f7c8e7d51584d47aa924b5c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "31a06b61fc19c7c606b3bc45", + "_tpl": "5c0e2f94d174af029f650d56", + "parentId": "6f7c8e7d51584d47aa924b5c", + "slotId": "mod_barrel" + }, + { + "_id": "5c1773ff6ada81325068b6d3", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "parentId": "6f7c8e7d51584d47aa924b5c", + "slotId": "mod_handguard" + }, + { + "_id": "688418608d765ddcb56522b9", + "_tpl": "5c0fafb6d174af02a96260ba", + "parentId": "31a06b61fc19c7c606b3bc45", + "slotId": "mod_muzzle" + }, + { + "_id": "6b903e1e9f5594d45cb39148", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "31a06b61fc19c7c606b3bc45", + "slotId": "mod_gas_block" + } + ] + }, + { + "Id": "669052760100152820b351c2", + "Name": "Secret Scav Punisher", + "Root": "e5d997742285ee82236ed5c8", + "Items": [ + { + "_id": "e5d997742285ee82236ed5c8", + "_tpl": "5a7ae0c351dfba0017554310", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "8d47fb535b45f0bf7c35f8f3", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "e5d997742285ee82236ed5c8", + "slotId": "mod_barrel" + }, + { + "_id": "75fb8b80c61c01db2999dcf9", + "_tpl": "5a7afa25e899ef00135e31b0", + "parentId": "e5d997742285ee82236ed5c8", + "slotId": "mod_reciever" + }, + { + "_id": "87619d40648f87fc5d0e832d", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "e5d997742285ee82236ed5c8", + "slotId": "mod_magazine" + }, + { + "_id": "a0cb9a7412c369f06372bc44", + "_tpl": "5a7d9122159bd4001438dbf4", + "parentId": "75fb8b80c61c01db2999dcf9", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "07e5ee93111aa8e94e5052cd", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "75fb8b80c61c01db2999dcf9", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "dd42a7f969a02c4527afb08c", + "_tpl": "5a7b32a2e899ef00135e345a", + "parentId": "75fb8b80c61c01db2999dcf9", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "669053180100152820021947", + "Name": "Silent Murder", + "Root": "567158f6c1887bc1e6754b5f", + "Items": [ + { + "_id": "567158f6c1887bc1e6754b5f", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "a0d8d42b9f9fff8f58dd567b", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "567158f6c1887bc1e6754b5f", + "slotId": "mod_magazine" + }, + { + "_id": "e9ac54be6c0b5003b81b2013", + "_tpl": "5bfd35380db83400232fe5cc", + "parentId": "567158f6c1887bc1e6754b5f", + "slotId": "mod_stock" + }, + { + "_id": "8c3cedccf364cd07c5e54acc", + "_tpl": "5ae09bff5acfc4001562219d", + "parentId": "567158f6c1887bc1e6754b5f", + "slotId": "mod_barrel" + }, + { + "_id": "d5001c6f64fa52cd5a4c854a", + "_tpl": "5bbde409d4351e003562b036", + "parentId": "e9ac54be6c0b5003b81b2013", + "slotId": "mod_stock" + }, + { + "_id": "68587af5c6b6cd3f383b65d7", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "8c3cedccf364cd07c5e54acc", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0093545c5303185f149a755b", + "_tpl": "5ae099925acfc4001a5fc7b3", + "parentId": "8c3cedccf364cd07c5e54acc", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "909927df98203b484415e966", + "_tpl": "5b86a0e586f7745b600ccb23", + "parentId": "8c3cedccf364cd07c5e54acc", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "6690534801001528200ee0bc", + "Name": "Long Boi", + "Root": "6688a2ba2d49028f0b9a7278", + "Items": [ + { + "_id": "6688a2ba2d49028f0b9a7278", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "25f29cd58557d19b4a8f0a24", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "6688a2ba2d49028f0b9a7278", + "slotId": "mod_magazine" + }, + { + "_id": "c99fc0e3c9d6ea3945e21113", + "_tpl": "5bfd36ad0db834001c38ef66", + "parentId": "6688a2ba2d49028f0b9a7278", + "slotId": "mod_stock" + }, + { + "_id": "0d217f43c4d13934d492b700", + "_tpl": "5bfd4cbe0db834001b73449f", + "parentId": "6688a2ba2d49028f0b9a7278", + "slotId": "mod_barrel" + }, + { + "_id": "fec51a55a2c68a1fa1000192", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "0d217f43c4d13934d492b700", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "43d3b4a902dc8b0e9600adbb", + "_tpl": "5bfd4c980db834001b73449d", + "parentId": "0d217f43c4d13934d492b700", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d423c3e17c4ae32fa3275485", + "_tpl": "5bbdb83fd4351e44f824c44b", + "parentId": "0d217f43c4d13934d492b700", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "669053c30100152820288faf", + "Name": "Baby Killer", + "Root": "faec78e1552dd23a84e0fafe", + "Items": [ + { + "_id": "faec78e1552dd23a84e0fafe", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "d439a2d7efd7c2d07fdb9573", + "_tpl": "5de8eac42a78646d96665d91", + "parentId": "faec78e1552dd23a84e0fafe", + "slotId": "mod_magazine" + }, + { + "_id": "aa19b3c69c9a711e71c14a41", + "_tpl": "5de8f237bbaf010b10528a70", + "parentId": "faec78e1552dd23a84e0fafe", + "slotId": "mod_muzzle" + }, + { + "_id": "8d42f4d077649acc022265c7", + "_tpl": "5de910da8b6c4240ba2651b5", + "parentId": "faec78e1552dd23a84e0fafe", + "slotId": "mod_stock" + }, + { + "_id": "aed8d04bf9cabc6dd08e2f93", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "parentId": "faec78e1552dd23a84e0fafe", + "slotId": "mod_foregrip" + }, + { + "_id": "ae30c0bf7ea8c63893753d30", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "parentId": "faec78e1552dd23a84e0fafe", + "slotId": "mod_reciever" + }, + { + "_id": "ae875b0c72a72c9e8a6648bc", + "_tpl": "5de922d4b11454561e39239f", + "parentId": "faec78e1552dd23a84e0fafe", + "slotId": "mod_charge" + }, + { + "_id": "9441545100c74cc5b48f146c", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "aa19b3c69c9a711e71c14a41", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "2e97d8488305c9a3e2686ec1", + "_tpl": "591c4efa86f7741030027726", + "parentId": "ae30c0bf7ea8c63893753d30", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "150bf19e47b04f4f14e46479", + "_tpl": "5de8fb539f98ac2bc659513a", + "parentId": "ae30c0bf7ea8c63893753d30", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7409023bda9c0d004e436d8c", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "parentId": "ae30c0bf7ea8c63893753d30", + "slotId": "mod_mount" + } + ] + }, + { + "Id": "669053e30100152820c53ad6", + "Name": "Low Tier God", + "Root": "e1c70a29e685b71f11df7948", + "Items": [ + { + "_id": "e1c70a29e685b71f11df7948", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5fc6ad7069ca736bf97ade08", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "e1c70a29e685b71f11df7948", + "slotId": "mod_magazine" + }, + { + "_id": "7e12f935c34531a2ea5c7c4f", + "_tpl": "5c0505e00db834001b735073", + "parentId": "e1c70a29e685b71f11df7948", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e493ae312da59431d92204fb", + "_tpl": "5fc3e4ee7283c4046c5814af", + "parentId": "e1c70a29e685b71f11df7948", + "slotId": "mod_stock" + }, + { + "_id": "406ce931568e9949f7ccae08", + "_tpl": "5fc3e4a27283c4046c5814ab", + "parentId": "e1c70a29e685b71f11df7948", + "slotId": "mod_barrel" + }, + { + "_id": "da5289a161679be06c18c5ab", + "_tpl": "5fc53954f8b6a877a729eaeb", + "parentId": "e1c70a29e685b71f11df7948", + "slotId": "mod_mount_000" + }, + { + "_id": "b79fc5030985a0f678093b69", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "e1c70a29e685b71f11df7948", + "slotId": "mod_mount_001" + }, + { + "_id": "b114c2689eae365229fd1bc9", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "e1c70a29e685b71f11df7948", + "slotId": "mod_mount_002" + }, + { + "_id": "0ce2265431901a1758bd97f9", + "_tpl": "5c791e872e2216001219c40a", + "parentId": "da5289a161679be06c18c5ab", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "669053f80100152820372f54", + "Name": "Silent Cartographer", + "Root": "6a0257c5559fea2e5a61d82e", + "Items": [ + { + "_id": "6a0257c5559fea2e5a61d82e", + "_tpl": "57f3c6bd24597738e730fa2f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "413bea450e98350e48fddd76", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "6a0257c5559fea2e5a61d82e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "f9b7824b9680a7b8ac8174cd", + "_tpl": "57f3c7e024597738ea4ba286", + "parentId": "6a0257c5559fea2e5a61d82e", + "slotId": "mod_muzzle" + }, + { + "_id": "d6964742991cd69d6e0da457", + "_tpl": "57d1519e24597714373db79d", + "parentId": "6a0257c5559fea2e5a61d82e", + "slotId": "mod_magazine" + }, + { + "_id": "1ecc7e50b8cfc0206e65fee9", + "_tpl": "57f3c8cc2459773ec4480328", + "parentId": "f9b7824b9680a7b8ac8174cd", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66905426010015282033c562", + "Name": "Elo Generator", + "Root": "30bd2e90ca1c4ade821d5c6d", + "Items": [ + { + "_id": "30bd2e90ca1c4ade821d5c6d", + "_tpl": "5cadc190ae921500103bb3b6", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "dc832698d8979ba3044a3222", + "_tpl": "5cadc1c6ae9215000f2775a4", + "parentId": "30bd2e90ca1c4ade821d5c6d", + "slotId": "mod_barrel" + }, + { + "_id": "a1081b5b8e1b26fdbfd98bc6", + "_tpl": "5cadc431ae921500113bb8d5", + "parentId": "30bd2e90ca1c4ade821d5c6d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "261ea0d9869d6fcf170a95c8", + "_tpl": "5cadc55cae921500103bb3be", + "parentId": "30bd2e90ca1c4ade821d5c6d", + "slotId": "mod_reciever" + }, + { + "_id": "641939dca4e99aa0246404b4", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "30bd2e90ca1c4ade821d5c6d", + "slotId": "mod_magazine" + }, + { + "_id": "f2737a3d65f7c274e130cd06", + "_tpl": "5c6165902e22160010261b28", + "parentId": "dc832698d8979ba3044a3222", + "slotId": "mod_muzzle" + }, + { + "_id": "3f1b42b997a4f3c17d006ac3", + "_tpl": "5cadd954ae921500103bb3c2", + "parentId": "261ea0d9869d6fcf170a95c8", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5289783ded80754c9ecdeef6", + "_tpl": "5cadd919ae921500126a77f3", + "parentId": "261ea0d9869d6fcf170a95c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e221abbef1b5a05995e05255", + "_tpl": "577d128124597739d65d0e56", + "parentId": "3f1b42b997a4f3c17d006ac3", + "slotId": "mod_scope" + }, + { + "_id": "79a50adb38cbc3e04921373e", + "_tpl": "577d141e24597739c5255e01", + "parentId": "e221abbef1b5a05995e05255", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66905446010015282012b556", + "Name": "Low Tier John Wick", + "Root": "486ee86a3e555ba1414e5963", + "Items": [ + { + "_id": "486ee86a3e555ba1414e5963", + "_tpl": "5abccb7dd8ce87001773e277", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "db78f56ea041da9bc8e7cd68", + "_tpl": "5a17fb03fcdbcbcae668728f", + "parentId": "486ee86a3e555ba1414e5963", + "slotId": "mod_magazine" + }, + { + "_id": "7282cc8c114dd1d22c72ea1d", + "_tpl": "5a17fb9dfcdbcbcae6687291", + "parentId": "486ee86a3e555ba1414e5963", + "slotId": "mod_stock" + }, + { + "_id": "da819c1056e27ed59130e646", + "_tpl": "5a17fc70fcdbcb0176308b3d", + "parentId": "486ee86a3e555ba1414e5963", + "slotId": "mod_pistol_grip" + }, + { + "_id": "440d1e1572927653f0ab9793", + "_tpl": "5aba62f8d8ce87001943946b", + "parentId": "486ee86a3e555ba1414e5963", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "20306e9465179d9f46ba6bfb", + "_tpl": "5aba639ed8ce8700182ece67", + "parentId": "486ee86a3e555ba1414e5963", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "91b0dca376e1bc8d033dad8d", + "_tpl": "5abcc328d8ce8700194394f3", + "parentId": "486ee86a3e555ba1414e5963", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "669054660100152820c44ff8", + "Name": "Golden Shower", + "Root": "d066ea59fc2ee78829084515", + "Items": [ + { + "_id": "d066ea59fc2ee78829084515", + "_tpl": "5b3b713c5acfc4330140bd8d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "86b6e8ec4e7c55e60b939fee", + "_tpl": "5b3baf8f5acfc40dc5296692", + "parentId": "d066ea59fc2ee78829084515", + "slotId": "mod_barrel" + }, + { + "_id": "34ce30d7a7cb213009486f5e", + "_tpl": "5b3cadf35acfc400194776a0", + "parentId": "d066ea59fc2ee78829084515", + "slotId": "mod_pistol_grip" + }, + { + "_id": "35d3408d8dca96ce5190a880", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "d066ea59fc2ee78829084515", + "slotId": "mod_magazine" + }, + { + "_id": "0a1e9242a70a3073990ead13", + "_tpl": "5bffd7ed0db834001d23ebf9", + "parentId": "d066ea59fc2ee78829084515", + "slotId": "mod_muzzle" + }, + { + "_id": "c784ce11f29528a20faa35b0", + "_tpl": "5c079ed60db834001a66b372", + "parentId": "d066ea59fc2ee78829084515", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "669061ea010015282042759f", + "Name": "Scav Scrammer", + "Root": "5dc43929927f7164b1914d71", + "Items": [ + { + "_id": "5dc43929927f7164b1914d71", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "8cc33068de18001601f1f12f", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "parentId": "5dc43929927f7164b1914d71", + "slotId": "mod_magazine" + }, + { + "_id": "5324b37ccf465fe1249c21d8", + "_tpl": "62e2a754b6c0ee2f230cee0f", + "parentId": "5dc43929927f7164b1914d71", + "slotId": "mod_muzzle" + }, + { + "_id": "24bdbb69ff88396da3c791f7", + "_tpl": "62e292e7b6c0ee2f230cee00", + "parentId": "5dc43929927f7164b1914d71", + "slotId": "mod_stock" + }, + { + "_id": "c3bd174c89271f82e29e8195", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "5dc43929927f7164b1914d71", + "slotId": "mod_reciever" + }, + { + "_id": "43574f54eb47cafd8bda6677", + "_tpl": "62e15547db1a5c41971c1b5e", + "parentId": "5dc43929927f7164b1914d71", + "slotId": "mod_handguard" + }, + { + "_id": "1c85b4aa4aa4370599f2c69f", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "parentId": "5dc43929927f7164b1914d71", + "slotId": "mod_pistolgrip" + }, + { + "_id": "6e27d8101568b42089eb7449", + "_tpl": "62ff9920fe938a24c90c10d2", + "parentId": "c3bd174c89271f82e29e8195", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ddadebbede178cefde824228", + "_tpl": "62ed189fb3608410ef5a2bfc", + "parentId": "43574f54eb47cafd8bda6677", + "slotId": "mod_mount_001" + } + ] + }, + { + "Id": "6690620e010015282057fcfb", + "Name": "Money Moves", + "Root": "23c9190d5a21d3846be3087c", + "Items": [ + { + "_id": "23c9190d5a21d3846be3087c", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "46de5892b53ea0bb505cb84a", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "23c9190d5a21d3846be3087c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "f48be902467ac878d63304dd", + "_tpl": "599851db86f77467372f0a18", + "parentId": "23c9190d5a21d3846be3087c", + "slotId": "mod_stock" + }, + { + "_id": "14a01fd36dd2cdf789df98a1", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "23c9190d5a21d3846be3087c", + "slotId": "mod_charge" + }, + { + "_id": "16ad3bc50a2cd117b3886991", + "_tpl": "5998529a86f774647f44f421", + "parentId": "23c9190d5a21d3846be3087c", + "slotId": "mod_magazine" + }, + { + "_id": "6cf1025b1f0e54d8c04a608a", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "23c9190d5a21d3846be3087c", + "slotId": "mod_muzzle" + }, + { + "_id": "c549af5e03b215ea14e305b9", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "23c9190d5a21d3846be3087c", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "2368e6455eb8f274cfa69739", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "23c9190d5a21d3846be3087c", + "slotId": "mod_gas_block" + }, + { + "_id": "e391a74f1d3f7b34d12d0b06", + "_tpl": "647dba3142c479dde701b654", + "parentId": "2368e6455eb8f274cfa69739", + "slotId": "mod_handguard" + }, + { + "_id": "334a2a7730b9ce1ec5bdd496", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "e391a74f1d3f7b34d12d0b06", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ac1be12b08e34cd1ef1b8ac0", + "_tpl": "5cda9bcfd7f00c0c0b53e900", + "parentId": "e391a74f1d3f7b34d12d0b06", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "669062340100152820d75345", + "Name": "Pocket Money Moves", + "Root": "62efa2d23a3c88392f7a87cf", + "Items": [ + { + "_id": "62efa2d23a3c88392f7a87cf", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "dc5e44feed79776bfe5f781a", + "_tpl": "588200af24597742fa221dfb", + "parentId": "62efa2d23a3c88392f7a87cf", + "slotId": "mod_barrel" + }, + { + "_id": "9da6d4637da1fcae94c81178", + "_tpl": "56deed6ed2720b4c698b4583", + "parentId": "62efa2d23a3c88392f7a87cf", + "slotId": "mod_handguard" + }, + { + "_id": "87160a25f77634f825c0e186", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "62efa2d23a3c88392f7a87cf", + "slotId": "mod_magazine" + }, + { + "_id": "a21cb9afc78d9deba4abbbf5", + "_tpl": "56083a334bdc2dc8488b4571", + "parentId": "62efa2d23a3c88392f7a87cf", + "slotId": "mod_stock" + }, + { + "_id": "66e338a80a1b1f6e53df8261", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "parentId": "62efa2d23a3c88392f7a87cf", + "slotId": "mod_mount_000" + }, + { + "_id": "af11f48ca5aaf4ba5d155e48", + "_tpl": "560838c94bdc2d77798b4569", + "parentId": "dc5e44feed79776bfe5f781a", + "slotId": "mod_muzzle" + }, + { + "_id": "83bc3901e43a064b210be645", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "a21cb9afc78d9deba4abbbf5", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "6c71fc799a43aa8954321617", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "66e338a80a1b1f6e53df8261", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "6690625801001528206f7b30", + "Name": "Scav Juicer", + "Root": "78dbb50ade8b723e0a1d2e68", + "Items": [ + { + "_id": "78dbb50ade8b723e0a1d2e68", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "eabb2e70ad0e75313abb8f72", + "_tpl": "5998517986f7746017232f7e", + "parentId": "78dbb50ade8b723e0a1d2e68", + "slotId": "mod_pistol_grip" + }, + { + "_id": "9c572ba5b4cde27f581c10c7", + "_tpl": "599851db86f77467372f0a18", + "parentId": "78dbb50ade8b723e0a1d2e68", + "slotId": "mod_stock" + }, + { + "_id": "e5319ccd2d59902efdea72e7", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "78dbb50ade8b723e0a1d2e68", + "slotId": "mod_magazine" + }, + { + "_id": "904df8cf2718bd7277baffed", + "_tpl": "5998597786f77414ea6da093", + "parentId": "78dbb50ade8b723e0a1d2e68", + "slotId": "mod_muzzle" + }, + { + "_id": "50697d3044ff23b51928438c", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "78dbb50ade8b723e0a1d2e68", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "704d55ee322ea4a86f75d1b8", + "_tpl": "5947db3f86f77447880cf76f", + "parentId": "78dbb50ade8b723e0a1d2e68", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "b1528423df65dfe60703659c", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "78dbb50ade8b723e0a1d2e68", + "slotId": "mod_gas_block" + }, + { + "_id": "7b48769498b215f29492f142", + "_tpl": "5d2c829448f0353a5c7d6674", + "parentId": "b1528423df65dfe60703659c", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "6690627701001528200a6ed8", + "Name": "Ol Reliable", + "Root": "3ad3de3b233994a744fe7ff2", + "Items": [ + { + "_id": "3ad3de3b233994a744fe7ff2", + "_tpl": "57f4c844245977379d5c14d1", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "ac65172ed8960f508d43cd63", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "3ad3de3b233994a744fe7ff2", + "slotId": "mod_pistol_grip" + }, + { + "_id": "48e0bdae2d850f7dcb6f8f53", + "_tpl": "57d1519e24597714373db79d", + "parentId": "3ad3de3b233994a744fe7ff2", + "slotId": "mod_magazine" + }, + { + "_id": "824aedbb2786d5a333ba0544", + "_tpl": "57ee59b42459771c7b045da5", + "parentId": "3ad3de3b233994a744fe7ff2", + "slotId": "mod_mount" + }, + { + "_id": "0560ef1dd70d5d6b4d30cfa6", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "824aedbb2786d5a333ba0544", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "669062950100152820458d8f", + "Name": "Lucky Dragger", + "Root": "5b4ab2fba5f30ce4bd11f5c2", + "Items": [ + { + "_id": "5b4ab2fba5f30ce4bd11f5c2", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1e2fae7c99090fd55a8b6380", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "parentId": "5b4ab2fba5f30ce4bd11f5c2", + "slotId": "mod_pistol_grip" + }, + { + "_id": "009ee29fe136cbb7bf00970f", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "5b4ab2fba5f30ce4bd11f5c2", + "slotId": "mod_magazine" + }, + { + "_id": "4d51070a8470a2ec10ff1653", + "_tpl": "5c0e2f26d174af02a9625114", + "parentId": "5b4ab2fba5f30ce4bd11f5c2", + "slotId": "mod_reciever" + }, + { + "_id": "257e771f1796ec468540edcc", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "5b4ab2fba5f30ce4bd11f5c2", + "slotId": "mod_stock" + }, + { + "_id": "78dc7ade7fde2034663b0ae3", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "5b4ab2fba5f30ce4bd11f5c2", + "slotId": "mod_charge" + }, + { + "_id": "54fee8f7278327c400b2ca4c", + "_tpl": "57aca93d2459771f2c7e26db", + "parentId": "4d51070a8470a2ec10ff1653", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d489e76005bfcf83a57a51d4", + "_tpl": "5c0e2f94d174af029f650d56", + "parentId": "4d51070a8470a2ec10ff1653", + "slotId": "mod_barrel" + }, + { + "_id": "0a081d7d8b58e5869d73ccc9", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "parentId": "4d51070a8470a2ec10ff1653", + "slotId": "mod_handguard" + }, + { + "_id": "cf535ed24717c1186a1a3255", + "_tpl": "5c0fafb6d174af02a96260ba", + "parentId": "d489e76005bfcf83a57a51d4", + "slotId": "mod_muzzle" + }, + { + "_id": "a2aa47d27ed4d6a26d805767", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "d489e76005bfcf83a57a51d4", + "slotId": "mod_gas_block" + } + ] + }, + { + "Id": "669062ad01001528209976a7", + "Name": "The Telescope", + "Root": "cccc12aeef154b397ac44354", + "Items": [ + { + "_id": "cccc12aeef154b397ac44354", + "_tpl": "5a0ec13bfcdbcb00165aa685", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "7e3aa43cee19d60c62b4361f", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "cccc12aeef154b397ac44354", + "slotId": "mod_gas_block" + }, + { + "_id": "39edd6f1bd9c8922a2057e3a", + "_tpl": "59e61eb386f77440d64f5daf", + "parentId": "cccc12aeef154b397ac44354", + "slotId": "mod_muzzle" + }, + { + "_id": "5d6f32562c304dfb445f748c", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "cccc12aeef154b397ac44354", + "slotId": "mod_pistol_grip" + }, + { + "_id": "b33d078c0789563c6e7572ed", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "cccc12aeef154b397ac44354", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d27c2f065e68618079b0e8ef", + "_tpl": "59e89d0986f77427600d226e", + "parentId": "cccc12aeef154b397ac44354", + "slotId": "mod_stock" + }, + { + "_id": "910ba4756f48b23286207229", + "_tpl": "59e5f5a486f7746c530b3ce2", + "parentId": "cccc12aeef154b397ac44354", + "slotId": "mod_magazine" + }, + { + "_id": "c7308747ee381c60d8e6bf33", + "_tpl": "5a7c74b3e899ef0014332c29", + "parentId": "cccc12aeef154b397ac44354", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c44446ab24287ed6e7c63010", + "_tpl": "5d2c829448f0353a5c7d6674", + "parentId": "7e3aa43cee19d60c62b4361f", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "669062c40100152820206486", + "Name": "RUN THEM POCKETS BOI", + "Root": "b13c19ecdbbc5d85fb5d000f", + "Items": [ + { + "_id": "b13c19ecdbbc5d85fb5d000f", + "_tpl": "5a7ae0c351dfba0017554310", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "48cdd1b27a2c103ce9737f55", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "b13c19ecdbbc5d85fb5d000f", + "slotId": "mod_barrel" + }, + { + "_id": "870d875636fef452f74162e6", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "b13c19ecdbbc5d85fb5d000f", + "slotId": "mod_reciever" + }, + { + "_id": "f1302e1355109922e5fc034b", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "b13c19ecdbbc5d85fb5d000f", + "slotId": "mod_magazine" + }, + { + "_id": "60ef15ca5071413f32ec3cfe", + "_tpl": "5a7d912f159bd400165484f3", + "parentId": "870d875636fef452f74162e6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "8ada760c4c9c8d025e4914a0", + "_tpl": "5a7d90eb159bd400165484f1", + "parentId": "870d875636fef452f74162e6", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "669062da01001528208f48c5", + "Name": "Unlimited Power", + "Root": "7a9880827813f64ed4572cc2", + "Items": [ + { + "_id": "7a9880827813f64ed4572cc2", + "_tpl": "56e0598dd2720bb5668b45a6", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6b105d3aa73385148c527e3b", + "_tpl": "55d485be4bdc2d962f8b456f", + "parentId": "7a9880827813f64ed4572cc2", + "slotId": "mod_magazine" + }, + { + "_id": "71f556a50512a89963c94e5d", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "7a9880827813f64ed4572cc2", + "slotId": "mod_muzzle" + }, + { + "_id": "661a1bba6356529cbc54754d", + "_tpl": "56e05a6ed2720bd0748b4567", + "parentId": "7a9880827813f64ed4572cc2", + "slotId": "mod_pistolgrip" + } + ] + }, + { + "Id": "669062f10100152820c8eee3", + "Name": "Ancient Technology", + "Root": "87713df8cbeb800e687b0975", + "Items": [ + { + "_id": "87713df8cbeb800e687b0975", + "_tpl": "59ff346386f77477562ff5e2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6bc8cf9b775897d31c5e61a5", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "87713df8cbeb800e687b0975", + "slotId": "mod_gas_block" + }, + { + "_id": "0f3fe044f169eedbb89320c2", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "87713df8cbeb800e687b0975", + "slotId": "mod_muzzle" + }, + { + "_id": "c653a1b09f791d06541a0a05", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "87713df8cbeb800e687b0975", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "cd22dd1081e02bc953731e15", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "87713df8cbeb800e687b0975", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "497d363c035fe2d8f29baec9", + "_tpl": "59ff3b6a86f77477562ff5ed", + "parentId": "87713df8cbeb800e687b0975", + "slotId": "mod_stock_akms" + }, + { + "_id": "ca0d562fa5ad8c1786b6bfa4", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "87713df8cbeb800e687b0975", + "slotId": "mod_magazine" + }, + { + "_id": "e13c17a41a60858982cbc40f", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "6bc8cf9b775897d31c5e61a5", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "6690630d01001528208e22d9", + "Name": "She Bites", + "Root": "6449a95ee8fdedbb1489bdce", + "Items": [ + { + "_id": "6449a95ee8fdedbb1489bdce", + "_tpl": "5abcbc27d8ce8700182eceeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "254b42bc277700a80a79601b", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "6449a95ee8fdedbb1489bdce", + "slotId": "mod_gas_block" + }, + { + "_id": "076d18558b21a78987a57957", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "6449a95ee8fdedbb1489bdce", + "slotId": "mod_muzzle" + }, + { + "_id": "b336cdaf281821eeb2d506fd", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "6449a95ee8fdedbb1489bdce", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "deac7bf0c3f8af3fda5054ed", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "6449a95ee8fdedbb1489bdce", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "34d378efea76b05120adc860", + "_tpl": "5abcd472d8ce8700166032ae", + "parentId": "6449a95ee8fdedbb1489bdce", + "slotId": "mod_stock_akms" + }, + { + "_id": "2f24a101191cf7c540c04c48", + "_tpl": "5cbdc23eae9215001136a407", + "parentId": "6449a95ee8fdedbb1489bdce", + "slotId": "mod_magazine" + }, + { + "_id": "404081b1312701753754fe6a", + "_tpl": "59e898ee86f77427614bd225", + "parentId": "254b42bc277700a80a79601b", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "6690632401001528202725db", + "Name": "Madness", + "Root": "c078ba0ddf0b5697303ae0c5", + "Items": [ + { + "_id": "c078ba0ddf0b5697303ae0c5", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "8c5a6f49ad3a711eeb6bd60c", + "_tpl": "59e649f986f77411d949b246", + "parentId": "c078ba0ddf0b5697303ae0c5", + "slotId": "mod_gas_block" + }, + { + "_id": "0f777822ae3928a269c337e3", + "_tpl": "59e8a00d86f7742ad93b569c", + "parentId": "c078ba0ddf0b5697303ae0c5", + "slotId": "mod_muzzle" + }, + { + "_id": "6a7022babe329c84428c290a", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "c078ba0ddf0b5697303ae0c5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6b24f56b72b0779cab182b82", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "c078ba0ddf0b5697303ae0c5", + "slotId": "mod_reciever" + }, + { + "_id": "073092b877f59b3da3489e0b", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "c078ba0ddf0b5697303ae0c5", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7e77f27b082875579e63db6a", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "c078ba0ddf0b5697303ae0c5", + "slotId": "mod_stock" + }, + { + "_id": "5ff07e7f8ce2254087322205", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "c078ba0ddf0b5697303ae0c5", + "slotId": "mod_magazine" + }, + { + "_id": "d5a4d28750a87b313cb9b2a8", + "_tpl": "5a0f096dfcdbcb0176308b15", + "parentId": "c078ba0ddf0b5697303ae0c5", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f7640ff3d671af1829d9f118", + "_tpl": "5d4aaa73a4b9365392071175", + "parentId": "8c5a6f49ad3a711eeb6bd60c", + "slotId": "mod_handguard" + }, + { + "_id": "90faee23fbd3b91ee6ab186a", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "073092b877f59b3da3489e0b", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d1e3746e65beb520fc27ba88", + "_tpl": "57cffce524597763b31685d8", + "parentId": "f7640ff3d671af1829d9f118", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "669063470100152820daedd3", + "Name": "Prideful Killer", + "Root": "59a4ea2e82dea5c8fa26d603", + "Items": [ + { + "_id": "59a4ea2e82dea5c8fa26d603", + "_tpl": "59e6152586f77473dc057aa1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1ace63b81a09330f087bc1aa", + "_tpl": "59e649f986f77411d949b246", + "parentId": "59a4ea2e82dea5c8fa26d603", + "slotId": "mod_gas_block" + }, + { + "_id": "550487a392bf05fa0c98fe99", + "_tpl": "5a9fbacda2750c00141e080f", + "parentId": "59a4ea2e82dea5c8fa26d603", + "slotId": "mod_muzzle" + }, + { + "_id": "0efe954fc653fbd448466236", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "59a4ea2e82dea5c8fa26d603", + "slotId": "mod_pistol_grip" + }, + { + "_id": "a204e343429347db36b5f764", + "_tpl": "628a665a86cbd9750d2ff5e5", + "parentId": "59a4ea2e82dea5c8fa26d603", + "slotId": "mod_reciever" + }, + { + "_id": "92e5259a953d5131d8d219df", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "59a4ea2e82dea5c8fa26d603", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "04d7adc1eea27bef5492ef75", + "_tpl": "59e6227d86f77440d64f5dc2", + "parentId": "59a4ea2e82dea5c8fa26d603", + "slotId": "mod_stock" + }, + { + "_id": "21a73d343cf4fe4400dc7ddd", + "_tpl": "59d625f086f774661516605d", + "parentId": "59a4ea2e82dea5c8fa26d603", + "slotId": "mod_magazine" + }, + { + "_id": "657499bf116e1d0cea0ea862", + "_tpl": "647dba3142c479dde701b654", + "parentId": "1ace63b81a09330f087bc1aa", + "slotId": "mod_handguard" + }, + { + "_id": "af57a3b9d70735f593f15cef", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "04d7adc1eea27bef5492ef75", + "slotId": "mod_stock" + }, + { + "_id": "6d364831afea993a1e5d374b", + "_tpl": "5c7fc87d2e221644f31c0298", + "parentId": "657499bf116e1d0cea0ea862", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "6690635c0100152820a35b0c", + "Name": "Give Em The Business", + "Root": "8b2f687565bbb9c4fa15dd17", + "Items": [ + { + "_id": "8b2f687565bbb9c4fa15dd17", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "a481d8102dec74dc7a3c70f4", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "8b2f687565bbb9c4fa15dd17", + "slotId": "mod_pistol_grip" + }, + { + "_id": "008043595d217b24fe78719c", + "_tpl": "5c05413a0db834001c390617", + "parentId": "8b2f687565bbb9c4fa15dd17", + "slotId": "mod_magazine" + }, + { + "_id": "e23da539776fb3f27ba5a0bd", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "8b2f687565bbb9c4fa15dd17", + "slotId": "mod_reciever" + }, + { + "_id": "5fa0d53149742bae302ba05d", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "8b2f687565bbb9c4fa15dd17", + "slotId": "mod_stock" + }, + { + "_id": "0f8caaf8d22ef6f5e9ea2134", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "8b2f687565bbb9c4fa15dd17", + "slotId": "mod_charge" + }, + { + "_id": "f93bea7d9ebc4a3097847d24", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "e23da539776fb3f27ba5a0bd", + "slotId": "mod_barrel" + }, + { + "_id": "45d89032bbaaa11e1efff7b0", + "_tpl": "55d459824bdc2d892f8b4573", + "parentId": "e23da539776fb3f27ba5a0bd", + "slotId": "mod_handguard" + }, + { + "_id": "487e49db46c936c9410adc40", + "_tpl": "5ae30bad5acfc400185c2dc4", + "parentId": "e23da539776fb3f27ba5a0bd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "fac1b1b0672291e9e4300688", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "5fa0d53149742bae302ba05d", + "slotId": "mod_stock_000" + }, + { + "_id": "08fadb197d82866de1b21d9d", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "f93bea7d9ebc4a3097847d24", + "slotId": "mod_muzzle" + }, + { + "_id": "1b12f97c658a45a98a2478bf", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "f93bea7d9ebc4a3097847d24", + "slotId": "mod_gas_block" + }, + { + "_id": "af44667719b7a82be2a15b99", + "_tpl": "637f57b78d137b27f70c496a", + "parentId": "45d89032bbaaa11e1efff7b0", + "slotId": "mod_handguard" + }, + { + "_id": "7b2298e6bc3fe50218431fa1", + "_tpl": "5c05293e0db83400232fff80", + "parentId": "487e49db46c936c9410adc40", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c8fbc25d164a7bdce66502a1", + "_tpl": "638612b607dfed1ccb7206ba", + "parentId": "08fadb197d82866de1b21d9d", + "slotId": "mod_muzzle" + }, + { + "_id": "8742c050e12e545028125b02", + "_tpl": "5c87ca002e221600114cb150", + "parentId": "af44667719b7a82be2a15b99", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "6690638c01001528208f0e62", + "Name": "Scav Lover", + "Root": "aec2943a16dffa92186217c8", + "Items": [ + { + "_id": "aec2943a16dffa92186217c8", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b8d6c184054a342977305a85", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "aec2943a16dffa92186217c8", + "slotId": "mod_gas_block" + }, + { + "_id": "9b288bd3c44f54319bfdb537", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "aec2943a16dffa92186217c8", + "slotId": "mod_muzzle" + }, + { + "_id": "e6755b6c0a894e320cbd6cb2", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "aec2943a16dffa92186217c8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "40318896cf7997a5ff05e766", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "aec2943a16dffa92186217c8", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "9cf067cc9413458881ae4998", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "aec2943a16dffa92186217c8", + "slotId": "mod_stock" + }, + { + "_id": "cdcf81a5dcc05dcf5adf831b", + "_tpl": "5a01c29586f77474660c694c", + "parentId": "aec2943a16dffa92186217c8", + "slotId": "mod_magazine" + }, + { + "_id": "30a9d9eaf6e87cd901fe9f05", + "_tpl": "5a0f096dfcdbcb0176308b15", + "parentId": "aec2943a16dffa92186217c8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "6715e5a035b4fa3657ce12a3", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "b8d6c184054a342977305a85", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "669063a30100152820a8174c", + "Name": "It Was Just A Puppy", + "Root": "000036a27801de8763d5e3f1", + "Items": [ + { + "_id": "000036a27801de8763d5e3f1", + "_tpl": "571a12c42459771f627b58a0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "3c78d9b8dd56468b2e2ade37", + "_tpl": "571a279b24597720b4066566", + "parentId": "000036a27801de8763d5e3f1", + "slotId": "mod_barrel" + }, + { + "_id": "3a9bb3def2ef2f92424eed46", + "_tpl": "5b3cadf35acfc400194776a0", + "parentId": "000036a27801de8763d5e3f1", + "slotId": "mod_pistol_grip" + }, + { + "_id": "ed83a0788678e293df5db0ed", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "000036a27801de8763d5e3f1", + "slotId": "mod_magazine" + }, + { + "_id": "1efd23f20039f3fb9723d650", + "_tpl": "571a28e524597720b4066567", + "parentId": "3c78d9b8dd56468b2e2ade37", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "669063ce01001528206583f4", + "Name": "Everythings Got A Price", + "Root": "20b27b9644fc8f073218925d", + "Items": [ + { + "_id": "20b27b9644fc8f073218925d", + "_tpl": "56d59856d2720bd8418b456a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "014bf5fcadc1fadeb10fdf36", + "_tpl": "587de4282459771bca0ec90b", + "parentId": "20b27b9644fc8f073218925d", + "slotId": "mod_barrel" + }, + { + "_id": "a6fc26dc5e14c179c9bbae7f", + "_tpl": "57c9a89124597704ee6faec1", + "parentId": "20b27b9644fc8f073218925d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "2a837758b5aabac3ef64ca42", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "20b27b9644fc8f073218925d", + "slotId": "mod_reciever" + }, + { + "_id": "afd6413a0d6d31a71fde6a83", + "_tpl": "5c920e902e221644f31c3c99", + "parentId": "20b27b9644fc8f073218925d", + "slotId": "mod_magazine" + }, + { + "_id": "372c9952cde923cfcda70fa8", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "20b27b9644fc8f073218925d", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "dced612b2d0adfe8979d3784", + "_tpl": "5c6beec32e221601da3578f2", + "parentId": "014bf5fcadc1fadeb10fdf36", + "slotId": "mod_muzzle" + }, + { + "_id": "177ece3bb7e7734f366ba037", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "2a837758b5aabac3ef64ca42", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "8141da700892a2646df9767e", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "2a837758b5aabac3ef64ca42", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "669064f7010015282047f472", + "Name": "Cheap Headshots", + "Root": "4c48599e56fe58bf1599f280", + "Items": [ + { + "_id": "4c48599e56fe58bf1599f280", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b39afbb7ce5084e24277f17f", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "parentId": "4c48599e56fe58bf1599f280", + "slotId": "mod_magazine" + }, + { + "_id": "58a7ee8268ed3f6270b5e191", + "_tpl": "5de655be4a9f347bc92edb88", + "parentId": "4c48599e56fe58bf1599f280", + "slotId": "mod_stock" + }, + { + "_id": "a7821a1fec658aa03158718f", + "_tpl": "5de65547883dde217541644b", + "parentId": "4c48599e56fe58bf1599f280", + "slotId": "mod_barrel" + }, + { + "_id": "8d18cf4b90e680059f6a8f7f", + "_tpl": "5de6558e9f98ac2bc65950fc", + "parentId": "4c48599e56fe58bf1599f280", + "slotId": "mod_mount" + }, + { + "_id": "b1eb8bc60d91cbf1aed848ce", + "_tpl": "5de6556a205ddc616a6bc4f7", + "parentId": "a7821a1fec658aa03158718f", + "slotId": "mod_muzzle" + }, + { + "_id": "078ea19f716dbc77b9262801", + "_tpl": "5dff77c759400025ea5150cf", + "parentId": "8d18cf4b90e680059f6a8f7f", + "slotId": "mod_scope" + }, + { + "_id": "5b9944104461bd8dc0781c32", + "_tpl": "5dff772da3651922b360bf91", + "parentId": "078ea19f716dbc77b9262801", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a2eef00100152820d72ac3", + "Name": "Scav Headhunter", + "Root": "212263451435e06ed6d68b86", + "Items": [ + { + "_id": "212263451435e06ed6d68b86", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "4e5504ad82072f5204fca323", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "parentId": "212263451435e06ed6d68b86", + "slotId": "mod_magazine" + }, + { + "_id": "f4f90e43b4ab868f0267b008", + "_tpl": "5de655be4a9f347bc92edb88", + "parentId": "212263451435e06ed6d68b86", + "slotId": "mod_stock" + }, + { + "_id": "c689737015d728448d5e4e7d", + "_tpl": "5de65547883dde217541644b", + "parentId": "212263451435e06ed6d68b86", + "slotId": "mod_barrel" + }, + { + "_id": "bc2b4e475b7573ff0c5066be", + "_tpl": "5de6558e9f98ac2bc65950fc", + "parentId": "212263451435e06ed6d68b86", + "slotId": "mod_mount" + }, + { + "_id": "271710507cd54a1455da39f4", + "_tpl": "5a9fbb74a2750c0032157181", + "parentId": "c689737015d728448d5e4e7d", + "slotId": "mod_muzzle" + }, + { + "_id": "56642e9100ed41cae4f22009", + "_tpl": "57c69dd424597774c03b7bbc", + "parentId": "bc2b4e475b7573ff0c5066be", + "slotId": "mod_scope" + }, + { + "_id": "dea64199d10805ac2377c255", + "_tpl": "5b2388675acfc4771e1be0be", + "parentId": "56642e9100ed41cae4f22009", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a2ef86010015282093ef1f", + "Name": "Tan Wanna be", + "Root": "76d00dc7496bd4a4efd59c7c", + "Items": [ + { + "_id": "76d00dc7496bd4a4efd59c7c", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "bf6c516ba96331c052500073", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "76d00dc7496bd4a4efd59c7c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "e62c4252e951f2cdc41b7608", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "parentId": "76d00dc7496bd4a4efd59c7c", + "slotId": "mod_magazine" + }, + { + "_id": "3de3d36c13b512a19d2e0246", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "76d00dc7496bd4a4efd59c7c", + "slotId": "mod_reciever" + }, + { + "_id": "956b8c975854d56d3a358def", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "76d00dc7496bd4a4efd59c7c", + "slotId": "mod_stock" + }, + { + "_id": "7d7a74823a8b69554204d466", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "76d00dc7496bd4a4efd59c7c", + "slotId": "mod_charge" + }, + { + "_id": "179598d84cb8602f8a6c335d", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "3de3d36c13b512a19d2e0246", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0a112c443c42bacc6ff42010", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "3de3d36c13b512a19d2e0246", + "slotId": "mod_barrel" + }, + { + "_id": "e685d4b14559f829c99269dc", + "_tpl": "5c78f2792e221600106f4683", + "parentId": "3de3d36c13b512a19d2e0246", + "slotId": "mod_handguard" + }, + { + "_id": "f1f9c887e6446b6bb4214b49", + "_tpl": "58d2946386f774496974c37e", + "parentId": "956b8c975854d56d3a358def", + "slotId": "mod_stock_000" + }, + { + "_id": "0ba90ef918a3580fd8697506", + "_tpl": "5a9fbb84a2750c00137fa685", + "parentId": "0a112c443c42bacc6ff42010", + "slotId": "mod_muzzle" + }, + { + "_id": "ea815b5e93da39e65d6c743c", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "0a112c443c42bacc6ff42010", + "slotId": "mod_gas_block" + } + ] + }, + { + "Id": "66a2f0030100152820b5db06", + "Name": "punk", + "Root": "b43f9d69ff727ad8743f9f57", + "Items": [ + { + "_id": "b43f9d69ff727ad8743f9f57", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b50b6a81dd84226b811fcf11", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "b43f9d69ff727ad8743f9f57", + "slotId": "mod_pistol_grip" + }, + { + "_id": "ebd7bb3682df48a8cf6cddda", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "b43f9d69ff727ad8743f9f57", + "slotId": "mod_magazine" + }, + { + "_id": "510177eacbf80f2c574dc51b", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "b43f9d69ff727ad8743f9f57", + "slotId": "mod_reciever" + }, + { + "_id": "c5473b10351516052d2612fb", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "b43f9d69ff727ad8743f9f57", + "slotId": "mod_stock" + }, + { + "_id": "7518b71bdf75c7b940fb8eed", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "b43f9d69ff727ad8743f9f57", + "slotId": "mod_charge" + }, + { + "_id": "8cd1b61542c65050c7f7c663", + "_tpl": "558022b54bdc2dac148b458d", + "parentId": "510177eacbf80f2c574dc51b", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "58bb140bd59f4b8c5d28128f", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "510177eacbf80f2c574dc51b", + "slotId": "mod_barrel" + }, + { + "_id": "1c63f064a40e772e62959362", + "_tpl": "5c9a26332e2216001219ea70", + "parentId": "510177eacbf80f2c574dc51b", + "slotId": "mod_handguard" + }, + { + "_id": "66c667eb8d6012ee439f6389", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "c5473b10351516052d2612fb", + "slotId": "mod_stock_000" + }, + { + "_id": "c68b22894ce04fb634af83bc", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "58bb140bd59f4b8c5d28128f", + "slotId": "mod_muzzle" + }, + { + "_id": "2db4be413a246ae1c1366007", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "58bb140bd59f4b8c5d28128f", + "slotId": "mod_gas_block" + }, + { + "_id": "fd3b7122fd5bc898dfbc3caf", + "_tpl": "59fc48e086f77463b1118392", + "parentId": "1c63f064a40e772e62959362", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a2f0650100152820bb3b77", + "Name": "akm silenced", + "Root": "5d0cefff4b8c3b27b0b80fca", + "Items": [ + { + "_id": "5d0cefff4b8c3b27b0b80fca", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6be7a3f39d5fe206375a0f1c", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "5d0cefff4b8c3b27b0b80fca", + "slotId": "mod_gas_block" + }, + { + "_id": "aa6368dde5c2beb75443d876", + "_tpl": "5a0d63621526d8dba31fe3bf", + "parentId": "5d0cefff4b8c3b27b0b80fca", + "slotId": "mod_muzzle" + }, + { + "_id": "377984a4a2588b46b47dd3f3", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "5d0cefff4b8c3b27b0b80fca", + "slotId": "mod_pistol_grip" + }, + { + "_id": "fd81053e5041e92926dfae4a", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "5d0cefff4b8c3b27b0b80fca", + "slotId": "mod_reciever" + }, + { + "_id": "2677fb9270e713405273f75e", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "5d0cefff4b8c3b27b0b80fca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0cb984d1aac430b8bdff849d", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "5d0cefff4b8c3b27b0b80fca", + "slotId": "mod_stock" + }, + { + "_id": "f32581d37129d62fd00001e6", + "_tpl": "59d625f086f774661516605d", + "parentId": "5d0cefff4b8c3b27b0b80fca", + "slotId": "mod_magazine" + }, + { + "_id": "75188eb31987a4ec330e7802", + "_tpl": "5a9d56c8a2750c0032157146", + "parentId": "6be7a3f39d5fe206375a0f1c", + "slotId": "mod_handguard" + }, + { + "_id": "3ac3ebe14a2ba13e761a725a", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "0cb984d1aac430b8bdff849d", + "slotId": "mod_stock" + }, + { + "_id": "2eb35712740ab095043de84b", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "75188eb31987a4ec330e7802", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "39515c908d34933d157d2287", + "_tpl": "5fc0f9cbd6fa9c00c571bb90", + "parentId": "75188eb31987a4ec330e7802", + "slotId": "mod_mount_000" + } + ] + }, + { + "Id": "66a2f0a70100152820fcd388", + "Name": "Russia Lover", + "Root": "2ffa8547577413a3205f2bfa", + "Items": [ + { + "_id": "2ffa8547577413a3205f2bfa", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "2397df6ffa961f2bca12ed5b", + "_tpl": "59ccfdba86f7747f2109a587", + "parentId": "2ffa8547577413a3205f2bfa", + "slotId": "mod_gas_block" + }, + { + "_id": "c973fbccf964bd4be43caf93", + "_tpl": "5cc9ad73d7f00c000e2579d4", + "parentId": "2ffa8547577413a3205f2bfa", + "slotId": "mod_muzzle" + }, + { + "_id": "b256afc4196af381d014543b", + "_tpl": "628a664bccaab13006640e47", + "parentId": "2ffa8547577413a3205f2bfa", + "slotId": "mod_pistol_grip" + }, + { + "_id": "cbc9f6da19b9e67e4439ba07", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "2ffa8547577413a3205f2bfa", + "slotId": "mod_reciever" + }, + { + "_id": "2299d5306645b5d8efb19283", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "2ffa8547577413a3205f2bfa", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0eea26b8751882d8945aa91d", + "_tpl": "5649b0fc4bdc2d17108b4588", + "parentId": "2ffa8547577413a3205f2bfa", + "slotId": "mod_stock" + }, + { + "_id": "f8a6cf40bc0ad89e3084759c", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "2ffa8547577413a3205f2bfa", + "slotId": "mod_magazine" + }, + { + "_id": "7c56560d0ebc3c45ed3806e9", + "_tpl": "5d2da1e948f035477b1ce2ba", + "parentId": "2397df6ffa961f2bca12ed5b", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "97dc8306de360318be231426", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "0eea26b8751882d8945aa91d", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a2f1170100152820b21159", + "Name": "Russian Guitar", + "Root": "44120552d8a5b4323bdcf845", + "Items": [ + { + "_id": "44120552d8a5b4323bdcf845", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "f47549438abf39c32a554218", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "44120552d8a5b4323bdcf845", + "slotId": "mod_gas_block" + }, + { + "_id": "712258442765769a917dda29", + "_tpl": "5a9fbb74a2750c0032157181", + "parentId": "44120552d8a5b4323bdcf845", + "slotId": "mod_muzzle" + }, + { + "_id": "794a8e36145a2d26a872beb5", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "44120552d8a5b4323bdcf845", + "slotId": "mod_pistol_grip" + }, + { + "_id": "335988f56fb78b04c4570a09", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "44120552d8a5b4323bdcf845", + "slotId": "mod_reciever" + }, + { + "_id": "5c12f45f673d60cce8fd72ca", + "_tpl": "59e8977386f77415a553c453", + "parentId": "44120552d8a5b4323bdcf845", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "05a7f27e1e929b0f5893779f", + "_tpl": "59e89d0986f77427600d226e", + "parentId": "44120552d8a5b4323bdcf845", + "slotId": "mod_stock" + }, + { + "_id": "4f0aaf30794ae3b43ba79fd7", + "_tpl": "5cbdc23eae9215001136a407", + "parentId": "44120552d8a5b4323bdcf845", + "slotId": "mod_magazine" + }, + { + "_id": "e903be80fcf84d8264e3d4ab", + "_tpl": "5d4aaa54a4b9365392071170", + "parentId": "f47549438abf39c32a554218", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a2f1650100152820fa2f21", + "Name": "Greatness Is Ahead", + "Root": "7ecf99764daa71ffcdc91f4b", + "Items": [ + { + "_id": "7ecf99764daa71ffcdc91f4b", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "094d3ee91cbda1a98b5beb56", + "_tpl": "59e649f986f77411d949b246", + "parentId": "7ecf99764daa71ffcdc91f4b", + "slotId": "mod_gas_block" + }, + { + "_id": "c7df1d8ccff6a798769eb4e9", + "_tpl": "59e8a00d86f7742ad93b569c", + "parentId": "7ecf99764daa71ffcdc91f4b", + "slotId": "mod_muzzle" + }, + { + "_id": "b826071188a1555dd8088900", + "_tpl": "628a664bccaab13006640e47", + "parentId": "7ecf99764daa71ffcdc91f4b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "ffd86d3f8ad310b8879a11f1", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "7ecf99764daa71ffcdc91f4b", + "slotId": "mod_reciever" + }, + { + "_id": "a05e81a5e1197da3618c6786", + "_tpl": "59e8977386f77415a553c453", + "parentId": "7ecf99764daa71ffcdc91f4b", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "3315ab5e82d65c6e3be35299", + "_tpl": "59e89d0986f77427600d226e", + "parentId": "7ecf99764daa71ffcdc91f4b", + "slotId": "mod_stock" + }, + { + "_id": "1d0d194f2aa72a50aa696b4e", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "7ecf99764daa71ffcdc91f4b", + "slotId": "mod_magazine" + }, + { + "_id": "b6367f688c9d722eb144f237", + "_tpl": "5c617a5f2e2216000f1e81b3", + "parentId": "094d3ee91cbda1a98b5beb56", + "slotId": "mod_handguard" + }, + { + "_id": "d3b9ff7e744e9ce0e1221273", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "ffd86d3f8ad310b8879a11f1", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "73eb496609dfc611a3d880ad", + "_tpl": "5c1bc7752e221602b1779b34", + "parentId": "b6367f688c9d722eb144f237", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a2f1d20100152820b3d5f7", + "Name": "Loud Technology", + "Root": "1d5768f3e67c9623b5a46d8b", + "Items": [ + { + "_id": "1d5768f3e67c9623b5a46d8b", + "_tpl": "59ff346386f77477562ff5e2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "324886cc09083a4913c39384", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "1d5768f3e67c9623b5a46d8b", + "slotId": "mod_gas_block" + }, + { + "_id": "8d65c313bea46822cfc364e5", + "_tpl": "64942bfc6ee699f6890dff95", + "parentId": "1d5768f3e67c9623b5a46d8b", + "slotId": "mod_muzzle" + }, + { + "_id": "22b89c49639ff0a121022ecd", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "1d5768f3e67c9623b5a46d8b", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "a5a81c54efaa9316a53f7a1b", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "1d5768f3e67c9623b5a46d8b", + "slotId": "mod_reciever" + }, + { + "_id": "553df00fb241dbaaafc9fe7c", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "1d5768f3e67c9623b5a46d8b", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "83242ae918d36f1b0def8db1", + "_tpl": "59ff3b6a86f77477562ff5ed", + "parentId": "1d5768f3e67c9623b5a46d8b", + "slotId": "mod_stock_akms" + }, + { + "_id": "fc3f1800e3cac954e178bdd1", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "1d5768f3e67c9623b5a46d8b", + "slotId": "mod_magazine" + }, + { + "_id": "07072a43c7b9ad374e75e3b9", + "_tpl": "5d4aaa73a4b9365392071175", + "parentId": "324886cc09083a4913c39384", + "slotId": "mod_handguard" + }, + { + "_id": "8db07b7b71681bf0fb9a3ce0", + "_tpl": "584984812459776a704a82a6", + "parentId": "553df00fb241dbaaafc9fe7c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "9120eba9db22335a8daef8f0", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "83242ae918d36f1b0def8db1", + "slotId": "mod_stock" + }, + { + "_id": "9adc5368b423be80db6dcd6e", + "_tpl": "651a8bf3a8520e48047bf708", + "parentId": "07072a43c7b9ad374e75e3b9", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a2f2160100152820c24c3d", + "Name": "Scav Wife Beater", + "Root": "b78b047f8899743ead831aa0", + "Items": [ + { + "_id": "b78b047f8899743ead831aa0", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "07f25f56d87c5822b6a001d2", + "_tpl": "62e153bcdb1a5c41971c1b5b", + "parentId": "b78b047f8899743ead831aa0", + "slotId": "mod_magazine" + }, + { + "_id": "c48a60e5ddd02fcd2fd24707", + "_tpl": "62e2a754b6c0ee2f230cee0f", + "parentId": "b78b047f8899743ead831aa0", + "slotId": "mod_muzzle" + }, + { + "_id": "c82749876cd45cd1ec365095", + "_tpl": "62e292e7b6c0ee2f230cee00", + "parentId": "b78b047f8899743ead831aa0", + "slotId": "mod_stock" + }, + { + "_id": "4abb7144ca9266c25cd92416", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "b78b047f8899743ead831aa0", + "slotId": "mod_reciever" + }, + { + "_id": "52344851dadd7250e59beb70", + "_tpl": "62e15547db1a5c41971c1b5e", + "parentId": "b78b047f8899743ead831aa0", + "slotId": "mod_handguard" + }, + { + "_id": "7bf5d3d9c8bf17c1692f30cc", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "parentId": "b78b047f8899743ead831aa0", + "slotId": "mod_pistolgrip" + }, + { + "_id": "9d0a774103c0c1fa0bafd3bc", + "_tpl": "62e281349ecd3f493f6df954", + "parentId": "4abb7144ca9266c25cd92416", + "slotId": "mod_mount" + }, + { + "_id": "b20295fb129b3e998fe9fea7", + "_tpl": "62ed189fb3608410ef5a2bfc", + "parentId": "52344851dadd7250e59beb70", + "slotId": "mod_mount_001" + }, + { + "_id": "0057614830e71a13c7b0385f", + "_tpl": "609a63b6e2ff132951242d09", + "parentId": "9d0a774103c0c1fa0bafd3bc", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7d438e80e9bc1fed76117819", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "b20295fb129b3e998fe9fea7", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "66a2f2ef01001528207c0bc1", + "Name": "The Caliber", + "Root": "09cf6355e4362fc2f4650fde", + "Items": [ + { + "_id": "09cf6355e4362fc2f4650fde", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "d4141bc8a2f21e1520de40cc", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "parentId": "09cf6355e4362fc2f4650fde", + "slotId": "mod_pistol_grip" + }, + { + "_id": "bfc759f3f76b23cf6a498935", + "_tpl": "5d1340b3d7ad1a0b52682ed7", + "parentId": "09cf6355e4362fc2f4650fde", + "slotId": "mod_magazine" + }, + { + "_id": "990cac318c6d957aa119c5c9", + "_tpl": "5c0e2f26d174af02a9625114", + "parentId": "09cf6355e4362fc2f4650fde", + "slotId": "mod_reciever" + }, + { + "_id": "87c6e4fcba3c2feb6c4214d6", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "09cf6355e4362fc2f4650fde", + "slotId": "mod_stock" + }, + { + "_id": "33654b5f3d8aa814f9f3847f", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "09cf6355e4362fc2f4650fde", + "slotId": "mod_charge" + }, + { + "_id": "ffa785985daebd74338992ee", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "990cac318c6d957aa119c5c9", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "6c604cb54078bf854be14792", + "_tpl": "5c0e2f94d174af029f650d56", + "parentId": "990cac318c6d957aa119c5c9", + "slotId": "mod_barrel" + }, + { + "_id": "3cc6e9a6147d48b21a73e787", + "_tpl": "5c9a26332e2216001219ea70", + "parentId": "990cac318c6d957aa119c5c9", + "slotId": "mod_handguard" + }, + { + "_id": "b8a91c945be28ac45f0870ce", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "6c604cb54078bf854be14792", + "slotId": "mod_muzzle" + }, + { + "_id": "842855cf666874f39ced2a98", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "6c604cb54078bf854be14792", + "slotId": "mod_gas_block" + }, + { + "_id": "124fba5cee8202184fcbbf1a", + "_tpl": "5fce0cf655375d18a253eff0", + "parentId": "3cc6e9a6147d48b21a73e787", + "slotId": "mod_foregrip" + }, + { + "_id": "6e7e7fa47d1b0852589004a7", + "_tpl": "57dbb57e2459774673234890", + "parentId": "b8a91c945be28ac45f0870ce", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a2f33501001528207bd3b5", + "Name": "No Sight No Fear", + "Root": "0c7c1dc65f751b66b14da32d", + "Items": [ + { + "_id": "0c7c1dc65f751b66b14da32d", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "a779fc80685aa89970bb30f6", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "0c7c1dc65f751b66b14da32d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "1fdeb64882214768cfb4d68a", + "_tpl": "5c05413a0db834001c390617", + "parentId": "0c7c1dc65f751b66b14da32d", + "slotId": "mod_magazine" + }, + { + "_id": "634060f2397a626751b9d41a", + "_tpl": "5c0e2f26d174af02a9625114", + "parentId": "0c7c1dc65f751b66b14da32d", + "slotId": "mod_reciever" + }, + { + "_id": "4ff04050700b995f0919e41e", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "0c7c1dc65f751b66b14da32d", + "slotId": "mod_stock" + }, + { + "_id": "9ce3fe82708c4aaa61e96758", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "0c7c1dc65f751b66b14da32d", + "slotId": "mod_charge" + }, + { + "_id": "336ee140151233be4287268c", + "_tpl": "5c0e2f94d174af029f650d56", + "parentId": "634060f2397a626751b9d41a", + "slotId": "mod_barrel" + }, + { + "_id": "c756c5218aa5599825274259", + "_tpl": "5c78f26f2e221601da3581d1", + "parentId": "634060f2397a626751b9d41a", + "slotId": "mod_handguard" + }, + { + "_id": "d58b5f87f43cb5c7fa841a63", + "_tpl": "5bc09a18d4351e003562b68e", + "parentId": "634060f2397a626751b9d41a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ed10e98da8b283bd2875e244", + "_tpl": "5b39f8db5acfc40016387a1b", + "parentId": "4ff04050700b995f0919e41e", + "slotId": "mod_stock_000" + }, + { + "_id": "455ef66135d05b2679ceebb9", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "336ee140151233be4287268c", + "slotId": "mod_muzzle" + }, + { + "_id": "fc6a32d3f60e44ea1ee5f831", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "336ee140151233be4287268c", + "slotId": "mod_gas_block" + }, + { + "_id": "fd65a37bc7c8baf5004c5423", + "_tpl": "57da93632459771cb65bf83f", + "parentId": "455ef66135d05b2679ceebb9", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a316800100152820741a39", + "Name": "Springfield Guidance", + "Root": "cc37ad7d0474fe60db5bf05e", + "Items": [ + { + "_id": "cc37ad7d0474fe60db5bf05e", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "fc62b9c9fe52182ae757ad01", + "_tpl": "64b9e2037fdfb81df81e3c25", + "parentId": "cc37ad7d0474fe60db5bf05e", + "slotId": "mod_magazine" + }, + { + "_id": "0681135d939c57a7b4d783ba", + "_tpl": "5aaf8e43e5b5b00015693246", + "parentId": "cc37ad7d0474fe60db5bf05e", + "slotId": "mod_stock" + }, + { + "_id": "c6d87123d7e7fdea878c0ee9", + "_tpl": "5aaf9d53e5b5b00015042a52", + "parentId": "cc37ad7d0474fe60db5bf05e", + "slotId": "mod_barrel" + }, + { + "_id": "d0771cb8c0cf052fdb8e06cd", + "_tpl": "5abcbb20d8ce87001773e258", + "parentId": "cc37ad7d0474fe60db5bf05e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "325a7bc18d01b0b0c908f6f3", + "_tpl": "5ab24ef9e5b5b00fe93c9209", + "parentId": "0681135d939c57a7b4d783ba", + "slotId": "mod_mount" + }, + { + "_id": "163f98bbc556f13320a177d6", + "_tpl": "5aafa1c2e5b5b00015042a56", + "parentId": "c6d87123d7e7fdea878c0ee9", + "slotId": "mod_muzzle" + }, + { + "_id": "c46de86d3c1296a1b8ed7b52", + "_tpl": "6165ac8c290d254f5e6b2f6c", + "parentId": "325a7bc18d01b0b0c908f6f3", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0767738e044852c46c945e23", + "_tpl": "5aafa49ae5b5b00015042a58", + "parentId": "163f98bbc556f13320a177d6", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a316cf01001528207581b7", + "Name": "Fire Starter", + "Root": "273e5829025d24a8c62e75dd", + "Items": [ + { + "_id": "273e5829025d24a8c62e75dd", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "2b4b8b9b582e652812cd415e", + "_tpl": "5894a51286f77426d13baf02", + "parentId": "273e5829025d24a8c62e75dd", + "slotId": "mod_pistol_grip" + }, + { + "_id": "981c05973c9c5530ff0c85ab", + "_tpl": "5894a05586f774094708ef75", + "parentId": "273e5829025d24a8c62e75dd", + "slotId": "mod_magazine" + }, + { + "_id": "a403e9ccfd098bf58c091a68", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "273e5829025d24a8c62e75dd", + "slotId": "mod_reciever" + }, + { + "_id": "550a7da4ef31fbcaf80fc5f8", + "_tpl": "5fbcc429900b1d5091531dd7", + "parentId": "273e5829025d24a8c62e75dd", + "slotId": "mod_stock" + }, + { + "_id": "6528808b6436e15ccf03f0c6", + "_tpl": "58949edd86f77409483e16a9", + "parentId": "273e5829025d24a8c62e75dd", + "slotId": "mod_charge" + }, + { + "_id": "4a81dd0a8c15cb538c983bdb", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "a403e9ccfd098bf58c091a68", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f49ef92ef82ce99e5b5d4fa7", + "_tpl": "5894a2c386f77427140b8342", + "parentId": "a403e9ccfd098bf58c091a68", + "slotId": "mod_barrel" + }, + { + "_id": "0627ac2edf9d6f4091fb7518", + "_tpl": "5894a42086f77426d2590762", + "parentId": "a403e9ccfd098bf58c091a68", + "slotId": "mod_handguard" + }, + { + "_id": "81c9628fdac92dd1a8de1bb3", + "_tpl": "5894a81786f77427140b8347", + "parentId": "a403e9ccfd098bf58c091a68", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "1621d7ecbbbe702636a66dde", + "_tpl": "58949dea86f77409483e16a8", + "parentId": "f49ef92ef82ce99e5b5d4fa7", + "slotId": "mod_muzzle" + }, + { + "_id": "fe5e19d4cd2a8b0cf4b35015", + "_tpl": "5894a73486f77426d259076c", + "parentId": "0627ac2edf9d6f4091fb7518", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4bab075ff6c36275c94e4c55", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "0627ac2edf9d6f4091fb7518", + "slotId": "mod_mount_000" + }, + { + "_id": "b82794ac29e40e5811b6ae41", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "0627ac2edf9d6f4091fb7518", + "slotId": "mod_mount_001" + }, + { + "_id": "7eb2ef4c660978ab30e3cc0f", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "0627ac2edf9d6f4091fb7518", + "slotId": "mod_mount_002" + }, + { + "_id": "aa253b48399b9df30d88ec1a", + "_tpl": "5c87ca002e221600114cb150", + "parentId": "b82794ac29e40e5811b6ae41", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a316fa0100152820903352", + "Name": "Camper", + "Root": "eae9907fb543b27ca8c9de4e", + "Items": [ + { + "_id": "eae9907fb543b27ca8c9de4e", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "800342fd3bbe6d078e96f9b3", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "eae9907fb543b27ca8c9de4e", + "slotId": "mod_magazine" + }, + { + "_id": "f431e3511447dd27e32f84e9", + "_tpl": "591c4efa86f7741030027726", + "parentId": "eae9907fb543b27ca8c9de4e", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "8a6579309200f909b77b27d2", + "_tpl": "5fc3e4ee7283c4046c5814af", + "parentId": "eae9907fb543b27ca8c9de4e", + "slotId": "mod_stock" + }, + { + "_id": "cc24cbfdebdacde1b81c64b1", + "_tpl": "5fc3e4a27283c4046c5814ab", + "parentId": "eae9907fb543b27ca8c9de4e", + "slotId": "mod_barrel" + }, + { + "_id": "dc4cb9cb0e1abfe212dbf227", + "_tpl": "5fc53954f8b6a877a729eaeb", + "parentId": "eae9907fb543b27ca8c9de4e", + "slotId": "mod_mount_000" + }, + { + "_id": "f2aa31a68d79be4f2dfe5fbe", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "eae9907fb543b27ca8c9de4e", + "slotId": "mod_mount_001" + }, + { + "_id": "2826509e833126fb537096ca", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "eae9907fb543b27ca8c9de4e", + "slotId": "mod_mount_002" + }, + { + "_id": "6b8e65931c7ae53a41a8c8bf", + "_tpl": "6130c4d51cb55961fa0fd49f", + "parentId": "cc24cbfdebdacde1b81c64b1", + "slotId": "mod_muzzle" + }, + { + "_id": "0bd370f8e2aaf62b83ab4363", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "f2aa31a68d79be4f2dfe5fbe", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "66a317190100152820216f86", + "Name": "Cream", + "Root": "4c0eb42741eddd53976c8913", + "Items": [ + { + "_id": "4c0eb42741eddd53976c8913", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "f7210a2ddb969f57fc604a84", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "4c0eb42741eddd53976c8913", + "slotId": "mod_magazine" + }, + { + "_id": "52fe7855e6c42572931c7a9b", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "4c0eb42741eddd53976c8913", + "slotId": "mod_reciever" + }, + { + "_id": "4dd423061b69020cc252cbd4", + "_tpl": "5926c32286f774616e42de99", + "parentId": "4c0eb42741eddd53976c8913", + "slotId": "mod_charge" + }, + { + "_id": "e3bb9d4ed1dd1ec933edd991", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "52fe7855e6c42572931c7a9b", + "slotId": "mod_handguard" + }, + { + "_id": "197f3b1fc8856c2756e3b62b", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "52fe7855e6c42572931c7a9b", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5a994b1f8ec1e891526eaab0", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "52fe7855e6c42572931c7a9b", + "slotId": "mod_stock" + }, + { + "_id": "a29ff8740a1d9655257b0248", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "52fe7855e6c42572931c7a9b", + "slotId": "mod_muzzle" + }, + { + "_id": "6ae936b4cfec4537223a8035", + "_tpl": "5926dad986f7741f82604363", + "parentId": "52fe7855e6c42572931c7a9b", + "slotId": "mod_mount" + }, + { + "_id": "80bd2bff97508b8ea5c344db", + "_tpl": "5c07c5ed0db834001b73571c", + "parentId": "a29ff8740a1d9655257b0248", + "slotId": "mod_muzzle" + }, + { + "_id": "746836778c6a713054ecc90b", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "6ae936b4cfec4537223a8035", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a3173501001528201e0012", + "Name": "Leg Deleter", + "Root": "66e822975eb42fed3bdf8b10", + "Items": [ + { + "_id": "66e822975eb42fed3bdf8b10", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1b0fc967dbc09f87c5ca6414", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "66e822975eb42fed3bdf8b10", + "slotId": "mod_magazine" + }, + { + "_id": "60a78e59d11031eb99b55021", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "66e822975eb42fed3bdf8b10", + "slotId": "mod_reciever" + }, + { + "_id": "953468c5ec0fd05b6e90d086", + "_tpl": "5926c32286f774616e42de99", + "parentId": "66e822975eb42fed3bdf8b10", + "slotId": "mod_charge" + }, + { + "_id": "cdde4179802a9ec9158e1040", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "60a78e59d11031eb99b55021", + "slotId": "mod_handguard" + }, + { + "_id": "c67369660ad3591a297563db", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "60a78e59d11031eb99b55021", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c721dc1385b0a96b11bad9b1", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "60a78e59d11031eb99b55021", + "slotId": "mod_stock" + }, + { + "_id": "bc3f193dd7c8ac5577e1d77b", + "_tpl": "5c0000c00db834001a6697fc", + "parentId": "60a78e59d11031eb99b55021", + "slotId": "mod_muzzle" + }, + { + "_id": "fe2f2de99e35286bcf64e377", + "_tpl": "5c6165902e22160010261b28", + "parentId": "bc3f193dd7c8ac5577e1d77b", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a3175401001528208b3fa6", + "Name": "Supressed Meta Killer", + "Root": "4ff4b1e0b20b31b0601d4d40", + "Items": [ + { + "_id": "4ff4b1e0b20b31b0601d4d40", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "9a8db3fa031730b28679c074", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "4ff4b1e0b20b31b0601d4d40", + "slotId": "mod_magazine" + }, + { + "_id": "d84c6a9bb526e7f8dd00efce", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "4ff4b1e0b20b31b0601d4d40", + "slotId": "mod_reciever" + }, + { + "_id": "8178e4dd19ee166b50c8e3ef", + "_tpl": "5926c32286f774616e42de99", + "parentId": "4ff4b1e0b20b31b0601d4d40", + "slotId": "mod_charge" + }, + { + "_id": "dbe91e56d5a341b1e8b491cd", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "d84c6a9bb526e7f8dd00efce", + "slotId": "mod_handguard" + }, + { + "_id": "85c708411f765e31c56948d9", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "d84c6a9bb526e7f8dd00efce", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "1e354e0bbb4b90400d77aab6", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "d84c6a9bb526e7f8dd00efce", + "slotId": "mod_stock" + }, + { + "_id": "36c1ab67611af1f4739a66f5", + "_tpl": "5c0000c00db834001a6697fc", + "parentId": "d84c6a9bb526e7f8dd00efce", + "slotId": "mod_muzzle" + }, + { + "_id": "4011726073986eb8e4b27920", + "_tpl": "5a32a064c4a28200741e22de", + "parentId": "36c1ab67611af1f4739a66f5", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a317860100152820def715", + "Name": "Scav Pounder", + "Root": "fd9af4fae54e60db03fc5b3e", + "Items": [ + { + "_id": "fd9af4fae54e60db03fc5b3e", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "3ad15ae921569e47bc61d70a", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "fd9af4fae54e60db03fc5b3e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "fe37b8bb76852c1c8f324455", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "fd9af4fae54e60db03fc5b3e", + "slotId": "mod_magazine" + }, + { + "_id": "d980f4fcdd0f8f3b62a345ae", + "_tpl": "602e63fb6335467b0c5ac94d", + "parentId": "fd9af4fae54e60db03fc5b3e", + "slotId": "mod_reciever" + }, + { + "_id": "42c023748dc71e9d87036347", + "_tpl": "602e3f1254072b51b239f713", + "parentId": "fd9af4fae54e60db03fc5b3e", + "slotId": "mod_stock_001" + }, + { + "_id": "b2767edb863c849259c1b61b", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "fd9af4fae54e60db03fc5b3e", + "slotId": "mod_charge" + }, + { + "_id": "6857c911806af0bd51f2d582", + "_tpl": "602f85fd9b513876d4338d9c", + "parentId": "fd9af4fae54e60db03fc5b3e", + "slotId": "mod_tactical_000" + }, + { + "_id": "cc787efb9b0fb281c97b81a1", + "_tpl": "64785e7c19d732620e045e15", + "parentId": "d980f4fcdd0f8f3b62a345ae", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "6972a3ed1fce53c522836e6d", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "d980f4fcdd0f8f3b62a345ae", + "slotId": "mod_barrel" + }, + { + "_id": "555128f2c60896b41560c0ca", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "d980f4fcdd0f8f3b62a345ae", + "slotId": "mod_handguard" + }, + { + "_id": "e7863697557656639a634d8e", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "42c023748dc71e9d87036347", + "slotId": "mod_stock_000" + }, + { + "_id": "9521a49490f3640f40389ed7", + "_tpl": "60337f5dce399e10262255d1", + "parentId": "6972a3ed1fce53c522836e6d", + "slotId": "mod_muzzle" + }, + { + "_id": "870c7ffd6c6329d8d1a23cb4", + "_tpl": "651a8bf3a8520e48047bf708", + "parentId": "555128f2c60896b41560c0ca", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a317a00100152820746d85", + "Name": "Hand Of God", + "Root": "57a352c55d34c1e76ead5ac0", + "Items": [ + { + "_id": "57a352c55d34c1e76ead5ac0", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "89ceb205b7ef799d65eca2e4", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "57a352c55d34c1e76ead5ac0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "a2c693e5fda8beaa931a9719", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "57a352c55d34c1e76ead5ac0", + "slotId": "mod_magazine" + }, + { + "_id": "30a9645c4cf8e9281e852e83", + "_tpl": "602e63fb6335467b0c5ac94d", + "parentId": "57a352c55d34c1e76ead5ac0", + "slotId": "mod_reciever" + }, + { + "_id": "0d315a5796f75baeb6a05493", + "_tpl": "602e3f1254072b51b239f713", + "parentId": "57a352c55d34c1e76ead5ac0", + "slotId": "mod_stock_001" + }, + { + "_id": "00754eb8109800a5a6e884d8", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "57a352c55d34c1e76ead5ac0", + "slotId": "mod_charge" + }, + { + "_id": "ea9617270329df9bb216aa93", + "_tpl": "602f85fd9b513876d4338d9c", + "parentId": "57a352c55d34c1e76ead5ac0", + "slotId": "mod_tactical_000" + }, + { + "_id": "84eb6e3584ee1ed19f581957", + "_tpl": "577d128124597739d65d0e56", + "parentId": "30a9645c4cf8e9281e852e83", + "slotId": "mod_scope" + }, + { + "_id": "88712fe4b0f058fb2808139f", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "30a9645c4cf8e9281e852e83", + "slotId": "mod_barrel" + }, + { + "_id": "65fc98cf5c2b8bafff6aebf7", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "30a9645c4cf8e9281e852e83", + "slotId": "mod_handguard" + }, + { + "_id": "ce6e230d84baec617e92cd13", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "0d315a5796f75baeb6a05493", + "slotId": "mod_stock_000" + }, + { + "_id": "91f3c755da6687ac7a948eab", + "_tpl": "577d141e24597739c5255e01", + "parentId": "84eb6e3584ee1ed19f581957", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "a9e6ede672b75c2a9148534b", + "_tpl": "5c6165902e22160010261b28", + "parentId": "88712fe4b0f058fb2808139f", + "slotId": "mod_muzzle" + }, + { + "_id": "adb59eb95bd93728662431bb", + "_tpl": "57cffce524597763b31685d8", + "parentId": "65fc98cf5c2b8bafff6aebf7", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a317e00100152820cab3b6", + "Name": "Meta Quest", + "Root": "76b8810b91b3c4901a9c28dc", + "Items": [ + { + "_id": "76b8810b91b3c4901a9c28dc", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "ddcd2da27fd146cf91ab78d8", + "_tpl": "5894a51286f77426d13baf02", + "parentId": "76b8810b91b3c4901a9c28dc", + "slotId": "mod_pistol_grip" + }, + { + "_id": "aada50943f7c02c5d10c6a44", + "_tpl": "5894a05586f774094708ef75", + "parentId": "76b8810b91b3c4901a9c28dc", + "slotId": "mod_magazine" + }, + { + "_id": "3e4014163220b2b0d90aeebf", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "76b8810b91b3c4901a9c28dc", + "slotId": "mod_reciever" + }, + { + "_id": "fc34a38581010a4b78db75ff", + "_tpl": "5894a13e86f7742405482982", + "parentId": "76b8810b91b3c4901a9c28dc", + "slotId": "mod_stock" + }, + { + "_id": "6de0f0c2a852daa759102853", + "_tpl": "58949edd86f77409483e16a9", + "parentId": "76b8810b91b3c4901a9c28dc", + "slotId": "mod_charge" + }, + { + "_id": "31929c474a771cc652eab2bb", + "_tpl": "5b30b0dc5acfc400153b7124", + "parentId": "3e4014163220b2b0d90aeebf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "b97e0cbec516aacdcc6d8648", + "_tpl": "5894a2c386f77427140b8342", + "parentId": "3e4014163220b2b0d90aeebf", + "slotId": "mod_barrel" + }, + { + "_id": "8688dc19d1e15c384b2cfa44", + "_tpl": "5894a42086f77426d2590762", + "parentId": "3e4014163220b2b0d90aeebf", + "slotId": "mod_handguard" + }, + { + "_id": "baf196190a42747973358733", + "_tpl": "5894a81786f77427140b8347", + "parentId": "3e4014163220b2b0d90aeebf", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f7907a319c84fd2979f036a4", + "_tpl": "5c7e8fab2e22165df16b889b", + "parentId": "b97e0cbec516aacdcc6d8648", + "slotId": "mod_muzzle" + }, + { + "_id": "de332436ec68c01684570004", + "_tpl": "5894a73486f77426d259076c", + "parentId": "8688dc19d1e15c384b2cfa44", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0f5305e9d38c35cadedcc4aa", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "8688dc19d1e15c384b2cfa44", + "slotId": "mod_mount_000" + }, + { + "_id": "bd69f401e9af8a833762806a", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "8688dc19d1e15c384b2cfa44", + "slotId": "mod_mount_001" + }, + { + "_id": "7e7222a0736b16037eebd963", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "8688dc19d1e15c384b2cfa44", + "slotId": "mod_mount_002" + }, + { + "_id": "a9ca0771efbef790a10c0a4c", + "_tpl": "5c87ca002e221600114cb150", + "parentId": "bd69f401e9af8a833762806a", + "slotId": "mod_foregrip" + }, + { + "_id": "f4670fc8d35593fc80885fcd", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "7e7222a0736b16037eebd963", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "66a31853010015282001841c", + "Name": "Leg Eater", + "Root": "6f69756d600b29bcf433f25c", + "Items": [ + { + "_id": "6f69756d600b29bcf433f25c", + "_tpl": "576165642459773c7a400233", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "d66e09a51a5cfcfb9227722d", + "_tpl": "57486e672459770abd687134", + "parentId": "6f69756d600b29bcf433f25c", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "42a3359f3e006fecc8962ab1", + "_tpl": "576169e62459773c69055191", + "parentId": "6f69756d600b29bcf433f25c", + "slotId": "mod_handguard" + }, + { + "_id": "cf8962961598424e4ee8591d", + "_tpl": "58272d7f2459774f6311ddfd", + "parentId": "6f69756d600b29bcf433f25c", + "slotId": "mod_muzzle" + }, + { + "_id": "4d8b958bc1197797bdac1e26", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "6f69756d600b29bcf433f25c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "b4b0581c6d0584ec957a2e73", + "_tpl": "57616c112459773cce774d66", + "parentId": "6f69756d600b29bcf433f25c", + "slotId": "mod_reciever" + }, + { + "_id": "eb48f5973f020b68c9b00002", + "_tpl": "57a9b9ce2459770ee926038d", + "parentId": "6f69756d600b29bcf433f25c", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5da5afc24e24a1588fa514ed", + "_tpl": "57616ca52459773c69055192", + "parentId": "6f69756d600b29bcf433f25c", + "slotId": "mod_stock" + }, + { + "_id": "c5a5ff78ead7634d8998e0dd", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "6f69756d600b29bcf433f25c", + "slotId": "mod_magazine" + }, + { + "_id": "137e77fe7f1ff765284fb48d", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "6f69756d600b29bcf433f25c", + "slotId": "mod_charge" + }, + { + "_id": "9022eddb4ddf724f19f64c5d", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "5da5afc24e24a1588fa514ed", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a318870100152820e51aac", + "Name": "The Crunch", + "Root": "fce51ad80f47fd7693d0e769", + "Items": [ + { + "_id": "fce51ad80f47fd7693d0e769", + "_tpl": "576165642459773c7a400233", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "2b10dbcb8e1dc64c072ed95c", + "_tpl": "63d114019e35b334d82302f7", + "parentId": "fce51ad80f47fd7693d0e769", + "slotId": "mod_mount_000" + }, + { + "_id": "0653e6cf0ffc2f9a1106b6ef", + "_tpl": "576169e62459773c69055191", + "parentId": "fce51ad80f47fd7693d0e769", + "slotId": "mod_handguard" + }, + { + "_id": "380e9459f3e9c0fc662424ec", + "_tpl": "59c0ec5b86f77435b128bfca", + "parentId": "fce51ad80f47fd7693d0e769", + "slotId": "mod_muzzle" + }, + { + "_id": "810eb01b32204f4b544601ff", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "fce51ad80f47fd7693d0e769", + "slotId": "mod_pistol_grip" + }, + { + "_id": "1df037c9605d49a5c32d9d26", + "_tpl": "57616c112459773cce774d66", + "parentId": "fce51ad80f47fd7693d0e769", + "slotId": "mod_reciever" + }, + { + "_id": "9c14d9a9af1a7b4b826a281b", + "_tpl": "57a9b9ce2459770ee926038d", + "parentId": "fce51ad80f47fd7693d0e769", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "2ea0cdc78f746cac1818f7f1", + "_tpl": "57616ca52459773c69055192", + "parentId": "fce51ad80f47fd7693d0e769", + "slotId": "mod_stock" + }, + { + "_id": "c164477d6ffa1e54c068f808", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "fce51ad80f47fd7693d0e769", + "slotId": "mod_magazine" + }, + { + "_id": "0eaad533761ac411173c6dac", + "_tpl": "5c0505e00db834001b735073", + "parentId": "2b10dbcb8e1dc64c072ed95c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a318a601001528207c004c", + "Name": "Mercenary", + "Root": "895e0a92e4a5f225bf5d1967", + "Items": [ + { + "_id": "895e0a92e4a5f225bf5d1967", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "a3dfc9954e1c13ad00884f07", + "_tpl": "6259c2c1d714855d182bad85", + "parentId": "895e0a92e4a5f225bf5d1967", + "slotId": "mod_barrel" + }, + { + "_id": "5100e92eafe348403298558f", + "_tpl": "6259c4347d6aab70bc23a190", + "parentId": "895e0a92e4a5f225bf5d1967", + "slotId": "mod_handguard" + }, + { + "_id": "4d2fc1c907eff46ac6f96f45", + "_tpl": "6259bdcabd28e4721447a2aa", + "parentId": "895e0a92e4a5f225bf5d1967", + "slotId": "mod_magazine" + }, + { + "_id": "484bdcc2e475923b1c16a104", + "_tpl": "6259c3387d6aab70bc23a18d", + "parentId": "895e0a92e4a5f225bf5d1967", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "e1b4a919074aa0ca4e02c21b", + "_tpl": "625ed7c64d9b6612df732146", + "parentId": "895e0a92e4a5f225bf5d1967", + "slotId": "mod_mount" + }, + { + "_id": "5fe82e9d1dcfd8dafc8a66fd", + "_tpl": "625ebcef6f53af4aa66b44dc", + "parentId": "895e0a92e4a5f225bf5d1967", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "3bd70d1ee6d4955c2a785b9c", + "_tpl": "625ec45bb14d7326ac20f572", + "parentId": "895e0a92e4a5f225bf5d1967", + "slotId": "mod_charge" + }, + { + "_id": "bb30e37ca07a930b801e8a89", + "_tpl": "560838c94bdc2d77798b4569", + "parentId": "a3dfc9954e1c13ad00884f07", + "slotId": "mod_muzzle" + }, + { + "_id": "77503aa40d1014675a1f5abe", + "_tpl": "6259c3d8012d6678ec38eeb8", + "parentId": "484bdcc2e475923b1c16a104", + "slotId": "mod_pistol_grip" + }, + { + "_id": "c310d65ff1ab1d16252d2a6d", + "_tpl": "584984812459776a704a82a6", + "parentId": "e1b4a919074aa0ca4e02c21b", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a318bd010015282035c92e", + "Name": "Crisis", + "Root": "dce5f3627fce4bf2fa853705", + "Items": [ + { + "_id": "dce5f3627fce4bf2fa853705", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "51e4b6f75f6a3bc89942ebd1", + "_tpl": "6259c2c1d714855d182bad85", + "parentId": "dce5f3627fce4bf2fa853705", + "slotId": "mod_barrel" + }, + { + "_id": "b0135541d261eab03f40fba3", + "_tpl": "6259c4347d6aab70bc23a190", + "parentId": "dce5f3627fce4bf2fa853705", + "slotId": "mod_handguard" + }, + { + "_id": "b428b8417b7b1865117dd931", + "_tpl": "625ff2ccb8c587128c1a01dd", + "parentId": "dce5f3627fce4bf2fa853705", + "slotId": "mod_magazine" + }, + { + "_id": "f912838716f71059ac0622e9", + "_tpl": "6259c3387d6aab70bc23a18d", + "parentId": "dce5f3627fce4bf2fa853705", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "0cb233d111a1c8bcfebc4b65", + "_tpl": "625ed7c64d9b6612df732146", + "parentId": "dce5f3627fce4bf2fa853705", + "slotId": "mod_mount" + }, + { + "_id": "7a59c1499c1a5bc0a4fdcfee", + "_tpl": "625ebcef6f53af4aa66b44dc", + "parentId": "dce5f3627fce4bf2fa853705", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5b3aa49019b307ba65439751", + "_tpl": "625ec45bb14d7326ac20f572", + "parentId": "dce5f3627fce4bf2fa853705", + "slotId": "mod_charge" + }, + { + "_id": "94371f1c8ca503e25ff5a647", + "_tpl": "6259c3d8012d6678ec38eeb8", + "parentId": "f912838716f71059ac0622e9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "ed58d12a36045d831a83bc86", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "0cb233d111a1c8bcfebc4b65", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a318dc01001528200eb620", + "Name": "The Lion", + "Root": "3726eecadbce28712cc66746", + "Items": [ + { + "_id": "3726eecadbce28712cc66746", + "_tpl": "5a7828548dc32e5a9c28b516", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "7bd4c7d53d14e5e487cb92dc", + "_tpl": "5a787f7ac5856700177af660", + "parentId": "3726eecadbce28712cc66746", + "slotId": "mod_barrel" + }, + { + "_id": "09d68326406380e486011fdd", + "_tpl": "5a788068c5856700137e4c8f", + "parentId": "3726eecadbce28712cc66746", + "slotId": "mod_handguard" + }, + { + "_id": "2048bcde29105307372ed9a5", + "_tpl": "5a7882dcc5856700177af662", + "parentId": "3726eecadbce28712cc66746", + "slotId": "mod_magazine" + }, + { + "_id": "a14de1a5fb64145480abf58b", + "_tpl": "5a7880d0c5856700142fdd9d", + "parentId": "3726eecadbce28712cc66746", + "slotId": "mod_stock" + }, + { + "_id": "91ae4e584189c7b35e10cd15", + "_tpl": "560838c94bdc2d77798b4569", + "parentId": "7bd4c7d53d14e5e487cb92dc", + "slotId": "mod_muzzle" + }, + { + "_id": "e52849a952c25f85e7e1d219", + "_tpl": "57cffce524597763b31685d8", + "parentId": "09d68326406380e486011fdd", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a3191d0100152820fee806", + "Name": "The New Age Of Death", + "Root": "84630432427af0814863122b", + "Items": [ + { + "_id": "84630432427af0814863122b", + "_tpl": "5e870397991fd70db46995c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "c7abfc30fdcfc855aa9ea160", + "_tpl": "5e87071478f43e51ca2de5e1", + "parentId": "84630432427af0814863122b", + "slotId": "mod_barrel" + }, + { + "_id": "4c0119f0f8b94c11eae52e1a", + "_tpl": "5eea21647547d6330471b3c9", + "parentId": "84630432427af0814863122b", + "slotId": "mod_handguard" + }, + { + "_id": "d04e2ed52e77898b0e132373", + "_tpl": "5e87080c81c4ed43e83cefda", + "parentId": "84630432427af0814863122b", + "slotId": "mod_magazine" + }, + { + "_id": "89ba75279855fb5099eb0c66", + "_tpl": "5eea217fc64c5d0dfc05712a", + "parentId": "84630432427af0814863122b", + "slotId": "mod_stock" + }, + { + "_id": "38a2e5f47cb80451576b49f9", + "_tpl": "5eeb2ff5ea4f8b73c827350b", + "parentId": "84630432427af0814863122b", + "slotId": "mod_mount" + }, + { + "_id": "7811d84951546a47e2f67699", + "_tpl": "5e8708d4ae379e67d22e0102", + "parentId": "c7abfc30fdcfc855aa9ea160", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "cde82799e11fac88d1e68431", + "_tpl": "570fd721d2720bc5458b4596", + "parentId": "38a2e5f47cb80451576b49f9", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a319400100152820ebd8bf", + "Name": "Clem", + "Root": "11cef4bda40ca30d0ecb52a0", + "Items": [ + { + "_id": "11cef4bda40ca30d0ecb52a0", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "4f0195eab697e985e099a6a7", + "_tpl": "56deec93d2720bec348b4568", + "parentId": "11cef4bda40ca30d0ecb52a0", + "slotId": "mod_barrel" + }, + { + "_id": "2dd74952a8bec312eabe7628", + "_tpl": "56deed6ed2720b4c698b4583", + "parentId": "11cef4bda40ca30d0ecb52a0", + "slotId": "mod_handguard" + }, + { + "_id": "0c9d39ecff9c7561f39404e5", + "_tpl": "5882163824597757561aa922", + "parentId": "11cef4bda40ca30d0ecb52a0", + "slotId": "mod_magazine" + }, + { + "_id": "bd13c46f14bfd88a04916524", + "_tpl": "56083be64bdc2d20478b456f", + "parentId": "11cef4bda40ca30d0ecb52a0", + "slotId": "mod_stock" + }, + { + "_id": "3133d3f530b482cd4d3f8f1f", + "_tpl": "5c0111ab0db834001966914d", + "parentId": "4f0195eab697e985e099a6a7", + "slotId": "mod_muzzle" + }, + { + "_id": "a9c8d69b868533fcbe9b6523", + "_tpl": "609b9e31506cf869cf3eaf41", + "parentId": "4f0195eab697e985e099a6a7", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a3196e0100152820f32f24", + "Name": "Kite", + "Root": "083a35c2960e9f184acada3f", + "Items": [ + { + "_id": "083a35c2960e9f184acada3f", + "_tpl": "54491c4f4bdc2db1078b4568", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "9c13749db5b704ec268838b2", + "_tpl": "55d4491a4bdc2d882f8b456e", + "parentId": "083a35c2960e9f184acada3f", + "slotId": "mod_barrel" + }, + { + "_id": "c4bc7a310013290f29548b4b", + "_tpl": "55d45d3f4bdc2d972f8b456c", + "parentId": "083a35c2960e9f184acada3f", + "slotId": "mod_handguard" + }, + { + "_id": "a2c9a486402b21d9f8c98c0f", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "083a35c2960e9f184acada3f", + "slotId": "mod_magazine" + }, + { + "_id": "92df94e5f1d42b6592073daa", + "_tpl": "56083cba4bdc2de22e8b456f", + "parentId": "083a35c2960e9f184acada3f", + "slotId": "mod_stock" + }, + { + "_id": "98162523cfb0e07ddde0ef32", + "_tpl": "55d48a634bdc2d8b2f8b456a", + "parentId": "083a35c2960e9f184acada3f", + "slotId": "mod_mount_001" + }, + { + "_id": "bc35fe5500ce98db0f3794a8", + "_tpl": "55d48ebc4bdc2d8c2f8b456c", + "parentId": "083a35c2960e9f184acada3f", + "slotId": "mod_mount_000" + }, + { + "_id": "79ced7f2af6e8eb5db98618b", + "_tpl": "5c0111ab0db834001966914d", + "parentId": "9c13749db5b704ec268838b2", + "slotId": "mod_muzzle" + }, + { + "_id": "de140e28f40934c4471ae52a", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "98162523cfb0e07ddde0ef32", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "b9683520b006e6216991b443", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "bc35fe5500ce98db0f3794a8", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "66a31c8101001528206a9f8e", + "Name": "The Nuclear Weapon", + "Root": "c3a7b2ad95032131fff94270", + "Items": [ + { + "_id": "c3a7b2ad95032131fff94270", + "_tpl": "6410733d5dd49d77bd07847e", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "8b5305c45b8c81963856c066", + "_tpl": "6410745d5dd49d77bd078485", + "parentId": "c3a7b2ad95032131fff94270", + "slotId": "mod_stock" + }, + { + "_id": "68257ca78f92a9e61fb0af94", + "_tpl": "6410758c857473525b08bb77", + "parentId": "c3a7b2ad95032131fff94270", + "slotId": "mod_barrel" + }, + { + "_id": "d4cda3301c28b5d345b9821a", + "_tpl": "641074a07fd350b98c0b3f96", + "parentId": "c3a7b2ad95032131fff94270", + "slotId": "mod_magazine" + }, + { + "_id": "7248f68277b8b20e4e086e8f", + "_tpl": "64119cdbdcf48d656f0aa272", + "parentId": "c3a7b2ad95032131fff94270", + "slotId": "mod_reciever" + }, + { + "_id": "20370a8f3bd78a95e2b9901f", + "_tpl": "64119d1f2c6d6f921a0929f8", + "parentId": "68257ca78f92a9e61fb0af94", + "slotId": "mod_muzzle" + }, + { + "_id": "0d4fde1de6014dd75e352df1", + "_tpl": "64119d90dcf48d656f0aa275", + "parentId": "68257ca78f92a9e61fb0af94", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4b7751e423e8992d94043edf", + "_tpl": "64119d672c6d6f921a0929fb", + "parentId": "20370a8f3bd78a95e2b9901f", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a31ca401001528208e26e3", + "Name": "Crapshoot", + "Root": "5701c16a61ea9367ba66175b", + "Items": [ + { + "_id": "5701c16a61ea9367ba66175b", + "_tpl": "643ea5b23db6f9f57107d9fd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "57c40831cf8ec2f37509c409", + "_tpl": "6410745d5dd49d77bd078485", + "parentId": "5701c16a61ea9367ba66175b", + "slotId": "mod_stock" + }, + { + "_id": "25e6018b6769f70cf56cbea4", + "_tpl": "6410758c857473525b08bb77", + "parentId": "5701c16a61ea9367ba66175b", + "slotId": "mod_barrel" + }, + { + "_id": "b7e0aabef0894bff8e9aeccb", + "_tpl": "6422e1ea3c0f06190302161a", + "parentId": "5701c16a61ea9367ba66175b", + "slotId": "mod_magazine" + }, + { + "_id": "3c33ab4896521054cda17926", + "_tpl": "64119cdbdcf48d656f0aa272", + "parentId": "5701c16a61ea9367ba66175b", + "slotId": "mod_reciever" + }, + { + "_id": "c6c363f777ac5493331f730e", + "_tpl": "641dc35e19604f20c800be18", + "parentId": "5701c16a61ea9367ba66175b", + "slotId": "mod_scope" + }, + { + "_id": "a1d5b3be9e2611891973e929", + "_tpl": "64119d1f2c6d6f921a0929f8", + "parentId": "25e6018b6769f70cf56cbea4", + "slotId": "mod_muzzle" + }, + { + "_id": "b878accdd022a4559aeca5fe", + "_tpl": "64119d90dcf48d656f0aa275", + "parentId": "25e6018b6769f70cf56cbea4", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "92de3f921f440bc7bffb0d9c", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "parentId": "c6c363f777ac5493331f730e", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "feb10d7a1a93cac75053b9ba", + "_tpl": "64119d672c6d6f921a0929fb", + "parentId": "a1d5b3be9e2611891973e929", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a31cd401001528200f1c74", + "Name": "Capture The Flag", + "Root": "b4a857aa8dbdde3a3f1c3735", + "Items": [ + { + "_id": "b4a857aa8dbdde3a3f1c3735", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "ec533f085a3a7e600b4a1eeb", + "_tpl": "587e0531245977466077a0f7", + "parentId": "b4a857aa8dbdde3a3f1c3735", + "slotId": "mod_stock" + }, + { + "_id": "e76cea72fecc9f32b30519bc", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "b4a857aa8dbdde3a3f1c3735", + "slotId": "mod_barrel" + }, + { + "_id": "3fd88bd12abe4258de3d7b88", + "_tpl": "587df3a12459772c28142567", + "parentId": "b4a857aa8dbdde3a3f1c3735", + "slotId": "mod_magazine" + }, + { + "_id": "798fc4984c56b030dc82e339", + "_tpl": "587e08ee245977446b4410cf", + "parentId": "b4a857aa8dbdde3a3f1c3735", + "slotId": "mod_mount" + }, + { + "_id": "29d13cbf80d24fef8d592bd5", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "b4a857aa8dbdde3a3f1c3735", + "slotId": "mod_reciever" + }, + { + "_id": "2cf879bb6444707a08b5a847", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "e76cea72fecc9f32b30519bc", + "slotId": "mod_mount_000" + }, + { + "_id": "f8acf3be80d353390f52ddff", + "_tpl": "5cf67cadd7f00c065a5abab7", + "parentId": "e76cea72fecc9f32b30519bc", + "slotId": "mod_muzzle" + }, + { + "_id": "6bebb705ff4d5087493b5af5", + "_tpl": "57486e672459770abd687134", + "parentId": "798fc4984c56b030dc82e339", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "6d9c12c2ef1c5ca4d4bd36d0", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "2cf879bb6444707a08b5a847", + "slotId": "mod_gas_block" + }, + { + "_id": "c8a5e2c77c98e4cb9b5c9857", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "2cf879bb6444707a08b5a847", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "805ab380254574fc368b17a5", + "_tpl": "59fb257e86f7742981561852", + "parentId": "f8acf3be80d353390f52ddff", + "slotId": "mod_muzzle" + }, + { + "_id": "625f15b14bd2d58a3c1a672e", + "_tpl": "634f03d40384a3ba4f06f874", + "parentId": "6d9c12c2ef1c5ca4d4bd36d0", + "slotId": "mod_mount_000" + } + ] + }, + { + "Id": "66a31d00010015282081f7bf", + "Name": "Early Wipe Kangaroo", + "Root": "6ce9c09ff346447334464cbf", + "Items": [ + { + "_id": "6ce9c09ff346447334464cbf", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "2f548ac685922df62b235cc2", + "_tpl": "587e0531245977466077a0f7", + "parentId": "6ce9c09ff346447334464cbf", + "slotId": "mod_stock" + }, + { + "_id": "7546fcb4b247da6b48dd2e2c", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "6ce9c09ff346447334464cbf", + "slotId": "mod_barrel" + }, + { + "_id": "ff5f5557632df6996363b8d9", + "_tpl": "587df3a12459772c28142567", + "parentId": "6ce9c09ff346447334464cbf", + "slotId": "mod_magazine" + }, + { + "_id": "6cef15373dc2c8da3f0acd9a", + "_tpl": "587e08ee245977446b4410cf", + "parentId": "6ce9c09ff346447334464cbf", + "slotId": "mod_mount" + }, + { + "_id": "df0abbf526abb8565c7dd68c", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "6ce9c09ff346447334464cbf", + "slotId": "mod_reciever" + }, + { + "_id": "e3891b66fdebf9b69400d232", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "7546fcb4b247da6b48dd2e2c", + "slotId": "mod_mount_000" + }, + { + "_id": "a53bf1f7d37b58810d2561a2", + "_tpl": "5cf67cadd7f00c065a5abab7", + "parentId": "7546fcb4b247da6b48dd2e2c", + "slotId": "mod_muzzle" + }, + { + "_id": "d1fda56cfaacdda7ffc15189", + "_tpl": "5947db3f86f77447880cf76f", + "parentId": "6cef15373dc2c8da3f0acd9a", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "a62e9c330682b15f520b0797", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "e3891b66fdebf9b69400d232", + "slotId": "mod_gas_block" + }, + { + "_id": "1a2cd7e6e8f7d74aeac91b2f", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "e3891b66fdebf9b69400d232", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0f81e6d7db5627f940aa11ff", + "_tpl": "5649ab884bdc2ded0b8b457f", + "parentId": "a53bf1f7d37b58810d2561a2", + "slotId": "mod_muzzle" + }, + { + "_id": "3c09288faaec0e6548d05d20", + "_tpl": "634f03d40384a3ba4f06f874", + "parentId": "a62e9c330682b15f520b0797", + "slotId": "mod_mount_000" + } + ] + }, + { + "Id": "66a31d1e01001528201ed8d0", + "Name": "Monkey", + "Root": "e37b8828cd889033b2123f61", + "Items": [ + { + "_id": "e37b8828cd889033b2123f61", + "_tpl": "5c501a4d2e221602b412b540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "99b9e6db1162edd41773281f", + "_tpl": "5c5039be2e221602b177c9ff", + "parentId": "e37b8828cd889033b2123f61", + "slotId": "mod_gas_block" + }, + { + "_id": "8bb8e8d9004552597e1d6628", + "_tpl": "5c503d0a2e221602b542b7ef", + "parentId": "e37b8828cd889033b2123f61", + "slotId": "mod_reciever" + }, + { + "_id": "8497029ec58eb7d65def83df", + "_tpl": "5c503b1c2e221602b21d6e9d", + "parentId": "e37b8828cd889033b2123f61", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "bcc4a39ae871f952a747b668", + "_tpl": "5c503af12e221602b177ca02", + "parentId": "e37b8828cd889033b2123f61", + "slotId": "mod_stock" + }, + { + "_id": "e988d7d45affe234f7d09f7b", + "_tpl": "5c503ac82e221602b21d6e9a", + "parentId": "e37b8828cd889033b2123f61", + "slotId": "mod_magazine" + }, + { + "_id": "f95fa40d633621b94cc74056", + "_tpl": "57486e672459770abd687134", + "parentId": "e37b8828cd889033b2123f61", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a31d370100152820539994", + "Name": "Shrapnel Of Courage", + "Root": "d9f0a7706e1ddfc1be0b51b0", + "Items": [ + { + "_id": "d9f0a7706e1ddfc1be0b51b0", + "_tpl": "5c501a4d2e221602b412b540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "78ad37f3fceea37a37341872", + "_tpl": "5c5039be2e221602b177c9ff", + "parentId": "d9f0a7706e1ddfc1be0b51b0", + "slotId": "mod_gas_block" + }, + { + "_id": "446eedf701ec0502616f96f1", + "_tpl": "5c503d0a2e221602b542b7ef", + "parentId": "d9f0a7706e1ddfc1be0b51b0", + "slotId": "mod_reciever" + }, + { + "_id": "6d2519eb6f9d9d8fd9b027f2", + "_tpl": "5c503b1c2e221602b21d6e9d", + "parentId": "d9f0a7706e1ddfc1be0b51b0", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "b17f2279ccf85617db244c5a", + "_tpl": "5c503af12e221602b177ca02", + "parentId": "d9f0a7706e1ddfc1be0b51b0", + "slotId": "mod_stock" + }, + { + "_id": "c224084fae1c39fbdb575356", + "_tpl": "5c503ac82e221602b21d6e9a", + "parentId": "d9f0a7706e1ddfc1be0b51b0", + "slotId": "mod_magazine" + }, + { + "_id": "d1e6bf82de285d915dc26bd4", + "_tpl": "57486e672459770abd687134", + "parentId": "d9f0a7706e1ddfc1be0b51b0", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "15a67e2f4204cf9a6a2952e2", + "_tpl": "5f63407e1b231926f2329f15", + "parentId": "d9f0a7706e1ddfc1be0b51b0", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a31d7b0100152820803adb", + "Name": "The Hunter", + "Root": "48ff1cd7c4b466ecf1225b7e", + "Items": [ + { + "_id": "48ff1cd7c4b466ecf1225b7e", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b8e4309b2d13d8a3f582cc24", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "48ff1cd7c4b466ecf1225b7e", + "slotId": "mod_magazine" + }, + { + "_id": "f0a283ce159f06bb5f7012f2", + "_tpl": "5ae096d95acfc400185c2c81", + "parentId": "48ff1cd7c4b466ecf1225b7e", + "slotId": "mod_stock" + }, + { + "_id": "935d0d1dc815f3b1a0be7147", + "_tpl": "5ae09bff5acfc4001562219d", + "parentId": "48ff1cd7c4b466ecf1225b7e", + "slotId": "mod_barrel" + }, + { + "_id": "80f0c2cf2323297a8943c490", + "_tpl": "5b3f7bf05acfc433000ecf6b", + "parentId": "48ff1cd7c4b466ecf1225b7e", + "slotId": "mod_mount" + }, + { + "_id": "0b7bb782bfcde1e40db56c3f", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "935d0d1dc815f3b1a0be7147", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c66a4d9edef5f2b0d2b2ff36", + "_tpl": "5ae099925acfc4001a5fc7b3", + "parentId": "935d0d1dc815f3b1a0be7147", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "404ab50aa5ee561ccd243815", + "_tpl": "5b3f7c005acfc4704b4a1de8", + "parentId": "80f0c2cf2323297a8943c490", + "slotId": "mod_mount" + }, + { + "_id": "2af56d046d2989c66e724ee9", + "_tpl": "5b3f7c1c5acfc40dc5296b1d", + "parentId": "404ab50aa5ee561ccd243815", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a31da90100152820cc158a", + "Name": "Pro Shooter", + "Root": "6eff9f2682a38bcdbcefc036", + "Items": [ + { + "_id": "6eff9f2682a38bcdbcefc036", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6d8bc8b4bb0e9e91b6bd83c8", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "6eff9f2682a38bcdbcefc036", + "slotId": "mod_magazine" + }, + { + "_id": "23a0999c83ac3ac634e556dd", + "_tpl": "5f2aa46b878ef416f538b567", + "parentId": "6eff9f2682a38bcdbcefc036", + "slotId": "mod_barrel" + }, + { + "_id": "7e819e84974ea7bdbe1dfc6d", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "parentId": "6eff9f2682a38bcdbcefc036", + "slotId": "mod_handguard" + }, + { + "_id": "15b2d98560eeba741d8202b7", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "parentId": "6eff9f2682a38bcdbcefc036", + "slotId": "mod_mount" + }, + { + "_id": "d68950ab25aa1ee42ae33dbc", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "parentId": "23a0999c83ac3ac634e556dd", + "slotId": "mod_muzzle" + }, + { + "_id": "e4c599e795978a5d317947c5", + "_tpl": "5f2aa493cd375f14e15eea72", + "parentId": "7e819e84974ea7bdbe1dfc6d", + "slotId": "mod_mount_000" + }, + { + "_id": "9fa266213f3690e0cd62bb06", + "_tpl": "5b30b0dc5acfc400153b7124", + "parentId": "15b2d98560eeba741d8202b7", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e0108e417aeadfd619ec4a4b", + "_tpl": "5b7d693d5acfc43bca706a3d", + "parentId": "d68950ab25aa1ee42ae33dbc", + "slotId": "mod_muzzle" + }, + { + "_id": "e86711fe48c30ee1ebdd625a", + "_tpl": "5c87ca002e221600114cb150", + "parentId": "e4c599e795978a5d317947c5", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a31dcb010015282073086e", + "Name": "Patience", + "Root": "32baabde0c4e4c6024e1b57e", + "Items": [ + { + "_id": "32baabde0c4e4c6024e1b57e", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5f6977c227cb9cba9bcf292e", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "32baabde0c4e4c6024e1b57e", + "slotId": "mod_magazine" + }, + { + "_id": "649f5967556ea9c4265279bd", + "_tpl": "5f2aa46b878ef416f538b567", + "parentId": "32baabde0c4e4c6024e1b57e", + "slotId": "mod_barrel" + }, + { + "_id": "88065869c9d77a0cdeb80315", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "parentId": "32baabde0c4e4c6024e1b57e", + "slotId": "mod_handguard" + }, + { + "_id": "e980158d710a20f3caeba55c", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "parentId": "32baabde0c4e4c6024e1b57e", + "slotId": "mod_mount" + }, + { + "_id": "0356bd728ac4ba8e4472ae1c", + "_tpl": "5f2aa43ba9b91d26f20ae6d2", + "parentId": "649f5967556ea9c4265279bd", + "slotId": "mod_muzzle" + }, + { + "_id": "6e1574d31dd61a782b4a0291", + "_tpl": "5f2aa493cd375f14e15eea72", + "parentId": "88065869c9d77a0cdeb80315", + "slotId": "mod_mount_000" + }, + { + "_id": "f525b3e01c377148bab56b27", + "_tpl": "5d2dc3e548f035404a1a4798", + "parentId": "e980158d710a20f3caeba55c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d74a7367568df34684adb5a3", + "_tpl": "5fbe7618d6fa9c00c571bb6c", + "parentId": "0356bd728ac4ba8e4472ae1c", + "slotId": "mod_muzzle" + }, + { + "_id": "46c291b93d621fa6158a1458", + "_tpl": "5c791e872e2216001219c40a", + "parentId": "6e1574d31dd61a782b4a0291", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a31e15010015282070cdc1", + "Name": "Clear Mind", + "Root": "4a6ebbc2c6dcdddee4b47769", + "Items": [ + { + "_id": "4a6ebbc2c6dcdddee4b47769", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "8122e78a2a58105736fe6588", + "_tpl": "57838f9f2459774a150289a0", + "parentId": "4a6ebbc2c6dcdddee4b47769", + "slotId": "mod_magazine" + }, + { + "_id": "ec5c6031a8b2ff95dbb85dfd", + "_tpl": "57838c962459774a1651ec63", + "parentId": "4a6ebbc2c6dcdddee4b47769", + "slotId": "mod_muzzle" + }, + { + "_id": "f8b5d192bb3283e7edecdd15", + "_tpl": "578395402459774a256959b5", + "parentId": "4a6ebbc2c6dcdddee4b47769", + "slotId": "mod_reciever" + }, + { + "_id": "f13992d02427b3cca61a688b", + "_tpl": "578395e82459774a0e553c7b", + "parentId": "4a6ebbc2c6dcdddee4b47769", + "slotId": "mod_stock" + }, + { + "_id": "7a4f02e21430cd8f92d1c606", + "_tpl": "57486e672459770abd687134", + "parentId": "4a6ebbc2c6dcdddee4b47769", + "slotId": "mod_mount_004", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "459307a16680a81dd63911c3", + "_tpl": "57838e1b2459774a256959b1", + "parentId": "ec5c6031a8b2ff95dbb85dfd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a31e6f0100152820ec6c22", + "Name": "Mechanics Pride", + "Root": "4b65c34e830d60caf8b8d71f", + "Items": [ + { + "_id": "4b65c34e830d60caf8b8d71f", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "3b572f8a1d49ae84ced3812c", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "4b65c34e830d60caf8b8d71f", + "slotId": "mod_magazine" + }, + { + "_id": "5c6a0777c8ee4717d3607490", + "_tpl": "622f14e899892a7f9e08f6c5", + "parentId": "4b65c34e830d60caf8b8d71f", + "slotId": "mod_stock" + }, + { + "_id": "a95a0340fba40d309b239401", + "_tpl": "622b3858034a3e17ad0b81f5", + "parentId": "4b65c34e830d60caf8b8d71f", + "slotId": "mod_barrel" + }, + { + "_id": "99f0556ac860b9472cc8d245", + "_tpl": "62386b7153757417e93a4e9f", + "parentId": "4b65c34e830d60caf8b8d71f", + "slotId": "mod_handguard" + }, + { + "_id": "f6812f681709001524b49103", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "4b65c34e830d60caf8b8d71f", + "slotId": "mod_mount" + }, + { + "_id": "686f1e35a0256ddedc84fa30", + "_tpl": "622b3d5cf9cfc87d675d2de9", + "parentId": "4b65c34e830d60caf8b8d71f", + "slotId": "mod_scope" + }, + { + "_id": "cb983713ac16a85f99200ef8", + "_tpl": "622f128cec80d870d349b4e8", + "parentId": "a95a0340fba40d309b239401", + "slotId": "mod_muzzle" + }, + { + "_id": "4cd07e3cde6e923da6eafe7a", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "a95a0340fba40d309b239401", + "slotId": "mod_gas_block" + }, + { + "_id": "259bd98cfd57a9ac71a34b6a", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "99f0556ac860b9472cc8d245", + "slotId": "mod_mount_000" + }, + { + "_id": "619492803964a5ce65f0ee60", + "_tpl": "622f16a1a5958f63c67f1737", + "parentId": "99f0556ac860b9472cc8d245", + "slotId": "mod_tactical" + }, + { + "_id": "82a2a3ba4b1aad2c2688e3c4", + "_tpl": "57adff4f24597737f373b6e6", + "parentId": "686f1e35a0256ddedc84fa30", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "668437d0fb6e8f66889c13ca", + "_tpl": "588226d124597767ad33f787", + "parentId": "259bd98cfd57a9ac71a34b6a", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a31e9f010015282036f4ce", + "Name": "Prapors Hate", + "Root": "f13df54a44c9887bfb1cd26c", + "Items": [ + { + "_id": "f13df54a44c9887bfb1cd26c", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "ea4c08c119fd6f365a537ea4", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "f13df54a44c9887bfb1cd26c", + "slotId": "mod_magazine" + }, + { + "_id": "dca781271a52021a9d2126cf", + "_tpl": "622f14e899892a7f9e08f6c5", + "parentId": "f13df54a44c9887bfb1cd26c", + "slotId": "mod_stock" + }, + { + "_id": "1d26a036c6d090c53d056b29", + "_tpl": "622b3858034a3e17ad0b81f5", + "parentId": "f13df54a44c9887bfb1cd26c", + "slotId": "mod_barrel" + }, + { + "_id": "8361e378cf169f434c4c12be", + "_tpl": "62386b7153757417e93a4e9f", + "parentId": "f13df54a44c9887bfb1cd26c", + "slotId": "mod_handguard" + }, + { + "_id": "15ee5cae3aef018960537af4", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "f13df54a44c9887bfb1cd26c", + "slotId": "mod_mount" + }, + { + "_id": "59655fb53d8c67282c3e5128", + "_tpl": "622b3d5cf9cfc87d675d2de9", + "parentId": "f13df54a44c9887bfb1cd26c", + "slotId": "mod_scope" + }, + { + "_id": "d99d915b7c42b462acf36a4c", + "_tpl": "5a9fbb84a2750c00137fa685", + "parentId": "1d26a036c6d090c53d056b29", + "slotId": "mod_muzzle" + }, + { + "_id": "e0d02da2e2f89d00117e5a45", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "1d26a036c6d090c53d056b29", + "slotId": "mod_gas_block" + }, + { + "_id": "bb17f07efd826685b86b0d24", + "_tpl": "62444cb99f47004c781903eb", + "parentId": "8361e378cf169f434c4c12be", + "slotId": "mod_mount_000" + }, + { + "_id": "2244688a485271c9662840de", + "_tpl": "622f16a1a5958f63c67f1737", + "parentId": "8361e378cf169f434c4c12be", + "slotId": "mod_tactical" + }, + { + "_id": "59a8437d1c42a58caa46a82c", + "_tpl": "6165ac8c290d254f5e6b2f6c", + "parentId": "59655fb53d8c67282c3e5128", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "2b5c5c4879f28df237aa45f6", + "_tpl": "5c7fc87d2e221644f31c0298", + "parentId": "bb17f07efd826685b86b0d24", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a31ed801001528205a4c47", + "Name": "Captain Price", + "Root": "4339b7672077f3a77f060dd8", + "Items": [ + { + "_id": "4339b7672077f3a77f060dd8", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "66e7aee1cca087507d04a814", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "4339b7672077f3a77f060dd8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "e9f7a3913f92f396510d07eb", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "4339b7672077f3a77f060dd8", + "slotId": "mod_magazine" + }, + { + "_id": "e2d2d1d00e8d600149b42159", + "_tpl": "5c48a14f2e2216152006edd7", + "parentId": "4339b7672077f3a77f060dd8", + "slotId": "mod_handguard" + }, + { + "_id": "3431026487bb2e3613d511a1", + "_tpl": "5c48a2852e221602b21d5923", + "parentId": "4339b7672077f3a77f060dd8", + "slotId": "mod_barrel" + }, + { + "_id": "9aab21facf6c47107de4fa41", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "4339b7672077f3a77f060dd8", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "573caa3ca5a075ed5a13ed99", + "_tpl": "57cffce524597763b31685d8", + "parentId": "e2d2d1d00e8d600149b42159", + "slotId": "mod_mount_000" + }, + { + "_id": "3fc82aeec0ba7ba3f2034ba7", + "_tpl": "5c48a2a42e221602b66d1e07", + "parentId": "3431026487bb2e3613d511a1", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a31f240100152820be8634", + "Name": "California Love", + "Root": "abeb3495ad2e44795edd9c9e", + "Items": [ + { + "_id": "abeb3495ad2e44795edd9c9e", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "9aa275add5bb35c5c16e5d3c", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "abeb3495ad2e44795edd9c9e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "dc419d679ac05efd848e34ce", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "abeb3495ad2e44795edd9c9e", + "slotId": "mod_magazine" + }, + { + "_id": "243831170aa0ce866b92e53f", + "_tpl": "5c48a14f2e2216152006edd7", + "parentId": "abeb3495ad2e44795edd9c9e", + "slotId": "mod_handguard" + }, + { + "_id": "dd4c3ea5000e416a50463073", + "_tpl": "5c48a2852e221602b21d5923", + "parentId": "abeb3495ad2e44795edd9c9e", + "slotId": "mod_barrel" + }, + { + "_id": "97c573895db7b541fb4e8428", + "_tpl": "5c07dd120db834001c39092d", + "parentId": "abeb3495ad2e44795edd9c9e", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "727ee3e9a6c0973adda3a7e2", + "_tpl": "651a8bf3a8520e48047bf708", + "parentId": "243831170aa0ce866b92e53f", + "slotId": "mod_mount_000" + }, + { + "_id": "c23580ee72ee916a4941aa37", + "_tpl": "5943ee5a86f77413872d25ec", + "parentId": "dd4c3ea5000e416a50463073", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a31f470100152820ab0683", + "Name": "Donkey Kong", + "Root": "b996bec6e80c9bfcc4417cb8", + "Items": [ + { + "_id": "b996bec6e80c9bfcc4417cb8", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "d1ffc8cf5e18d24f5d70a3ea", + "_tpl": "62e7c98b550c8218d602cbb4", + "parentId": "b996bec6e80c9bfcc4417cb8", + "slotId": "mod_magazine" + }, + { + "_id": "08fef6b5f29ffb4c8b2795d6", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "parentId": "b996bec6e80c9bfcc4417cb8", + "slotId": "mod_charge" + }, + { + "_id": "1e5c1698cd6a1fde2ec1fae4", + "_tpl": "62e7c72df68e7a0676050c77", + "parentId": "b996bec6e80c9bfcc4417cb8", + "slotId": "mod_reciever" + }, + { + "_id": "ba54dc6e6199f69949fdaaed", + "_tpl": "62e7c7f3c34ea971710c32fc", + "parentId": "1e5c1698cd6a1fde2ec1fae4", + "slotId": "mod_barrel" + }, + { + "_id": "2cfc908598e3fb601607054c", + "_tpl": "62ebba1fb658e07ef9082b5a", + "parentId": "1e5c1698cd6a1fde2ec1fae4", + "slotId": "mod_mount" + }, + { + "_id": "0625d053ab5f4bc76705101c", + "_tpl": "630f28f0cadb1fe05e06f004", + "parentId": "ba54dc6e6199f69949fdaaed", + "slotId": "mod_muzzle_000" + }, + { + "_id": "005955428530ea6f9c11c95c", + "_tpl": "634e61b0767cb15c4601a877", + "parentId": "ba54dc6e6199f69949fdaaed", + "slotId": "mod_foregrip" + }, + { + "_id": "ada1e5b174930d3a04a9230d", + "_tpl": "570fd721d2720bc5458b4596", + "parentId": "2cfc908598e3fb601607054c", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a31fd70100152820c34372", + "Name": "Might", + "Root": "46cd7c62028e1f7b6a9c7fef", + "Items": [ + { + "_id": "46cd7c62028e1f7b6a9c7fef", + "_tpl": "57dc2fa62459775949412633", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "f40a21ad4a6d7d44e00b4738", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "46cd7c62028e1f7b6a9c7fef", + "slotId": "mod_pistol_grip" + }, + { + "_id": "31a33b4bd96a2e0ffc74fa32", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "46cd7c62028e1f7b6a9c7fef", + "slotId": "mod_stock" + }, + { + "_id": "e61468cb76b04c6873abac5d", + "_tpl": "5aaa4194e5b5b055d06310a5", + "parentId": "46cd7c62028e1f7b6a9c7fef", + "slotId": "mod_magazine" + }, + { + "_id": "a75f106b88370045ce27141c", + "_tpl": "5943eeeb86f77412d6384f6b", + "parentId": "46cd7c62028e1f7b6a9c7fef", + "slotId": "mod_muzzle" + }, + { + "_id": "6dfc46276a3ca1d497fa31cf", + "_tpl": "57dc334d245977597164366f", + "parentId": "46cd7c62028e1f7b6a9c7fef", + "slotId": "mod_reciever" + }, + { + "_id": "11834ee3315386833b44e9a5", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "46cd7c62028e1f7b6a9c7fef", + "slotId": "mod_gas_block" + }, + { + "_id": "de7570ce5663891942efe82e", + "_tpl": "57ffb0062459777a045af529", + "parentId": "6dfc46276a3ca1d497fa31cf", + "slotId": "mod_mount_000" + }, + { + "_id": "e34ecb874cd0d868856354b0", + "_tpl": "57ffa9f4245977728561e844", + "parentId": "11834ee3315386833b44e9a5", + "slotId": "mod_handguard" + }, + { + "_id": "11bf2e78f7820b87701534db", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "de7570ce5663891942efe82e", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a31ffc010015282054eebe", + "Name": "The Rightful One", + "Root": "51e53c2bc5ec11a51f844fa8", + "Items": [ + { + "_id": "51e53c2bc5ec11a51f844fa8", + "_tpl": "57dc2fa62459775949412633", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1d6be3839487a2d068f57a8c", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "51e53c2bc5ec11a51f844fa8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "43a297deb7e545f24e1bb17f", + "_tpl": "59ecc28286f7746d7a68aa8c", + "parentId": "51e53c2bc5ec11a51f844fa8", + "slotId": "mod_stock" + }, + { + "_id": "1df1fa11cfdfe8f90a1d0659", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "51e53c2bc5ec11a51f844fa8", + "slotId": "mod_magazine" + }, + { + "_id": "4f5b0e25278285c3d42f6f2a", + "_tpl": "593d493f86f7745e6b2ceb22", + "parentId": "51e53c2bc5ec11a51f844fa8", + "slotId": "mod_muzzle" + }, + { + "_id": "704cb67eebf9849e4530bcd4", + "_tpl": "655cb6b5d680a544f30607fa", + "parentId": "51e53c2bc5ec11a51f844fa8", + "slotId": "mod_reciever" + }, + { + "_id": "85de722c7674444678838c0c", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "51e53c2bc5ec11a51f844fa8", + "slotId": "mod_gas_block" + }, + { + "_id": "e37e56677edfd21a92200247", + "_tpl": "59ecc3dd86f7746dc827481c", + "parentId": "43a297deb7e545f24e1bb17f", + "slotId": "mod_stock" + }, + { + "_id": "6721884fe1d891120d96c1e7", + "_tpl": "64785e7c19d732620e045e15", + "parentId": "704cb67eebf9849e4530bcd4", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "62914ab3b113311fddeac766", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "85de722c7674444678838c0c", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a320440100152820df2a55", + "Name": "The Shooter", + "Root": "662cbfa667fe2f54af715ff3", + "Items": [ + { + "_id": "662cbfa667fe2f54af715ff3", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "7ad7b0421501bd0dc2ea1d62", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "662cbfa667fe2f54af715ff3", + "slotId": "mod_gas_block" + }, + { + "_id": "d85eb93d7f971bf15e6403aa", + "_tpl": "5649ab884bdc2ded0b8b457f", + "parentId": "662cbfa667fe2f54af715ff3", + "slotId": "mod_muzzle" + }, + { + "_id": "ef83066725749f6b109951b7", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "662cbfa667fe2f54af715ff3", + "slotId": "mod_pistol_grip" + }, + { + "_id": "72adc1c99fa5544ce1f5c71b", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "662cbfa667fe2f54af715ff3", + "slotId": "mod_reciever" + }, + { + "_id": "537694abb4fcad6ef9fbf86d", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "662cbfa667fe2f54af715ff3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4963f01a8f56643f61908564", + "_tpl": "5649b0fc4bdc2d17108b4588", + "parentId": "662cbfa667fe2f54af715ff3", + "slotId": "mod_stock" + }, + { + "_id": "092ab3eea09c39bca7defe02", + "_tpl": "5cbdaf89ae9215000e5b9c94", + "parentId": "662cbfa667fe2f54af715ff3", + "slotId": "mod_magazine" + }, + { + "_id": "10238fd5ec567b253df8e79e", + "_tpl": "57486e672459770abd687134", + "parentId": "662cbfa667fe2f54af715ff3", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "eb9466a42320bf999ed861f5", + "_tpl": "5648ae314bdc2d3d1c8b457f", + "parentId": "7ad7b0421501bd0dc2ea1d62", + "slotId": "mod_handguard" + }, + { + "_id": "bd1f2f9f842c4ed4ca939402", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "4963f01a8f56643f61908564", + "slotId": "mod_stock" + }, + { + "_id": "cd078fe400cc51443296657d", + "_tpl": "5cf4fb76d7f00c065703d3ac", + "parentId": "eb9466a42320bf999ed861f5", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a320a4010015282042a0e9", + "Name": "The Mastermind", + "Root": "9da5ee52824477e94a336366", + "Items": [ + { + "_id": "9da5ee52824477e94a336366", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "9cba9259a66dcfaf50e7905f", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "9da5ee52824477e94a336366", + "slotId": "mod_gas_block" + }, + { + "_id": "f498115975858d5a8605675f", + "_tpl": "57ffb0e42459777d047111c5", + "parentId": "9da5ee52824477e94a336366", + "slotId": "mod_muzzle" + }, + { + "_id": "4121fbb9305e41f81b4b10f2", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "9da5ee52824477e94a336366", + "slotId": "mod_pistol_grip" + }, + { + "_id": "986a188ac76d61e7cdf3ab97", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "9da5ee52824477e94a336366", + "slotId": "mod_reciever" + }, + { + "_id": "160f8910ef6ae9df504cb29a", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "9da5ee52824477e94a336366", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "bf3ab91194ca66002a106606", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "9da5ee52824477e94a336366", + "slotId": "mod_stock" + }, + { + "_id": "57a3f8792f13f3ca9c7ef8c7", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "9da5ee52824477e94a336366", + "slotId": "mod_magazine" + }, + { + "_id": "34a08b6060a4258f7c3f1a07", + "_tpl": "5d4aaa73a4b9365392071175", + "parentId": "9cba9259a66dcfaf50e7905f", + "slotId": "mod_handguard" + }, + { + "_id": "baff5dfde7eb1d2b7820c952", + "_tpl": "591c4efa86f7741030027726", + "parentId": "986a188ac76d61e7cdf3ab97", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "53ff54f2838996e681143853", + "_tpl": "651a8bf3a8520e48047bf708", + "parentId": "34a08b6060a4258f7c3f1a07", + "slotId": "mod_foregrip" + }, + { + "_id": "8e6234917e33729bae08c071", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "34a08b6060a4258f7c3f1a07", + "slotId": "mod_mount_001" + }, + { + "_id": "2d1ce6db6a8dde418db42734", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "8e6234917e33729bae08c071", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "66a320fa0100152820cc1097", + "Name": "St Brown", + "Root": "1c983fd66e0990ac6fa09995", + "Items": [ + { + "_id": "1c983fd66e0990ac6fa09995", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "0d28950a15e91f51de2abb03", + "_tpl": "59ccfdba86f7747f2109a587", + "parentId": "1c983fd66e0990ac6fa09995", + "slotId": "mod_gas_block" + }, + { + "_id": "3be0d4c72e249a509f558796", + "_tpl": "5649ab884bdc2ded0b8b457f", + "parentId": "1c983fd66e0990ac6fa09995", + "slotId": "mod_muzzle" + }, + { + "_id": "c5f4f391a9e2b570e6cce78b", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "1c983fd66e0990ac6fa09995", + "slotId": "mod_pistol_grip" + }, + { + "_id": "ba8ac48e70186721a46e870f", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "1c983fd66e0990ac6fa09995", + "slotId": "mod_reciever" + }, + { + "_id": "01bdaa0f8ca7dd183dd9fc8c", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "1c983fd66e0990ac6fa09995", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "a16c133f4d707c3fb06d2e70", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "1c983fd66e0990ac6fa09995", + "slotId": "mod_stock" + }, + { + "_id": "4f5e58877ff43cfbbc7c0a01", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "1c983fd66e0990ac6fa09995", + "slotId": "mod_magazine" + }, + { + "_id": "ffb182ecc91ff9ce5f392c0b", + "_tpl": "6165ac8c290d254f5e6b2f6c", + "parentId": "0d28950a15e91f51de2abb03", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4fa095dfa78bf102b726c86f", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "a16c133f4d707c3fb06d2e70", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a3213e0100152820d3e07a", + "Name": "The Better m4", + "Root": "f197cde7e53f38d24f822b16", + "Items": [ + { + "_id": "f197cde7e53f38d24f822b16", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "ba9afc9df721d053e77058fa", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "f197cde7e53f38d24f822b16", + "slotId": "mod_gas_block" + }, + { + "_id": "f5a53585fe532ee08c329f58", + "_tpl": "5943ee5a86f77413872d25ec", + "parentId": "f197cde7e53f38d24f822b16", + "slotId": "mod_muzzle" + }, + { + "_id": "bb826f88bdb637cd5129cc12", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "f197cde7e53f38d24f822b16", + "slotId": "mod_pistol_grip" + }, + { + "_id": "a0afaae97084fb7d010f9199", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "f197cde7e53f38d24f822b16", + "slotId": "mod_reciever" + }, + { + "_id": "62e11be86d128d96c5400e8e", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "f197cde7e53f38d24f822b16", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "1fe9905af2551a8c5ba5d940", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "f197cde7e53f38d24f822b16", + "slotId": "mod_stock" + }, + { + "_id": "5232fcc17251b9118a6f6633", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "f197cde7e53f38d24f822b16", + "slotId": "mod_magazine" + }, + { + "_id": "e9b1566baa71283d2e5647b8", + "_tpl": "5947db3f86f77447880cf76f", + "parentId": "f197cde7e53f38d24f822b16", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "9140490d4573ac5ea61bc2ff", + "_tpl": "5c9a07572e221644f31c4b32", + "parentId": "ba9afc9df721d053e77058fa", + "slotId": "mod_handguard" + }, + { + "_id": "d6a8561429368a2703d3753a", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "1fe9905af2551a8c5ba5d940", + "slotId": "mod_stock" + }, + { + "_id": "49b9bbc83f5f8202d4442b95", + "_tpl": "57cffce524597763b31685d8", + "parentId": "9140490d4573ac5ea61bc2ff", + "slotId": "mod_foregrip" + }, + { + "_id": "1f2f5d46c333ef2098c3275f", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "9140490d4573ac5ea61bc2ff", + "slotId": "mod_mount_000" + }, + { + "_id": "a92794b008ce813ee8d09c3b", + "_tpl": "560d657b4bdc2da74d8b4572", + "parentId": "1f2f5d46c333ef2098c3275f", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "66a322bb0100152820b11bfd", + "Name": "Micheal Myers", + "Root": "0dae52de63155c30ef1ce9dd", + "Items": [ + { + "_id": "0dae52de63155c30ef1ce9dd", + "_tpl": "5bf3e03b0db834001d2c4a9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "26aaa8ef5998ae916f9afcea", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "0dae52de63155c30ef1ce9dd", + "slotId": "mod_gas_block" + }, + { + "_id": "424212cd413d91737d390823", + "_tpl": "5649ab884bdc2ded0b8b457f", + "parentId": "0dae52de63155c30ef1ce9dd", + "slotId": "mod_muzzle" + }, + { + "_id": "d27d6b01dd7606563e58b318", + "_tpl": "628a664bccaab13006640e47", + "parentId": "0dae52de63155c30ef1ce9dd", + "slotId": "mod_pistol_grip" + }, + { + "_id": "3dad21cf4a5357779a5c0cba", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "0dae52de63155c30ef1ce9dd", + "slotId": "mod_reciever" + }, + { + "_id": "88158a5302c30c39c63a75f4", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "0dae52de63155c30ef1ce9dd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0516beae9046317155efdc5b", + "_tpl": "5649b0fc4bdc2d17108b4588", + "parentId": "0dae52de63155c30ef1ce9dd", + "slotId": "mod_stock" + }, + { + "_id": "3cdce812989901f5821d066f", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "0dae52de63155c30ef1ce9dd", + "slotId": "mod_magazine" + }, + { + "_id": "5e058d3587d725ef37c8d909", + "_tpl": "5648b4534bdc2d3d1c8b4580", + "parentId": "26aaa8ef5998ae916f9afcea", + "slotId": "mod_handguard" + }, + { + "_id": "0a8e8697f314c1492560542c", + "_tpl": "570fd6c2d2720bc6458b457f", + "parentId": "3dad21cf4a5357779a5c0cba", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4dc6c2a8bfc504c07dea2f1d", + "_tpl": "591af28e86f77414a27a9e1d", + "parentId": "5e058d3587d725ef37c8d909", + "slotId": "mod_foregrip" + }, + { + "_id": "fe7039da28ff8e4fb770c229", + "_tpl": "56def37dd2720bec348b456a", + "parentId": "5e058d3587d725ef37c8d909", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + } + ], + [ // _meme + { + "Id": "6666766e010016df0b595ae1", + "Name": "Mini Intervention", + "Root": "2d4537e35782b939052e276c", + "Items": [ + { + "_id": "2d4537e35782b939052e276c", + "_tpl": "5d2f0d8048f0356c925bc3b0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "428912e4a9c5e991df718c6f", + "_tpl": "5a351711c4a282000b1521a4", + "parentId": "2d4537e35782b939052e276c", + "slotId": "mod_magazine" + }, + { + "_id": "19168456b3be41cb825148fe", + "_tpl": "5d2f261548f03576f500e7b7", + "parentId": "2d4537e35782b939052e276c", + "slotId": "mod_reciever" + }, + { + "_id": "75741eed4302f6481940a017", + "_tpl": "5d2f2d5748f03572ec0c0139", + "parentId": "2d4537e35782b939052e276c", + "slotId": "mod_charge" + }, + { + "_id": "ea4a6500e7f8aad357f1b981", + "_tpl": "5d2f259b48f0355a844acd74", + "parentId": "19168456b3be41cb825148fe", + "slotId": "mod_handguard" + }, + { + "_id": "14348750c1bbe892878c2077", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "19168456b3be41cb825148fe", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "8ed2d1ebcf8c0e11a4316830", + "_tpl": "5d2f25bc48f03502573e5d85", + "parentId": "19168456b3be41cb825148fe", + "slotId": "mod_stock" + }, + { + "_id": "cd094ba30bb10fdc0d82fc58", + "_tpl": "5926dad986f7741f82604363", + "parentId": "19168456b3be41cb825148fe", + "slotId": "mod_mount" + }, + { + "_id": "1786f55aab6098b87f5e3201", + "_tpl": "5b2389515acfc4771e1be0c0", + "parentId": "cd094ba30bb10fdc0d82fc58", + "slotId": "mod_scope" + }, + { + "_id": "33ce78278de5c61780bcbefd", + "_tpl": "5a37cb10c4a282329a73b4e7", + "parentId": "1786f55aab6098b87f5e3201", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "b0c06b771a8ee214c73e44e2", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "1786f55aab6098b87f5e3201", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "de625ea5c7a4484546d29e2f", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "1786f55aab6098b87f5e3201", + "slotId": "mod_scope_002", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "666676c2010016df0b267baa", + "Name": "CCTV", + "Root": "5bad204b90c0c683b3501926", + "Items": [ + { + "_id": "5bad204b90c0c683b3501926", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "e210e962a2dd5b9660b13c25", + "_tpl": "5cc70093e4a949033c734312", + "parentId": "5bad204b90c0c683b3501926", + "slotId": "mod_magazine" + }, + { + "_id": "5de5c5d5af3c4bf9af06c2f3", + "_tpl": "5cebec10d7f00c065703d185", + "parentId": "5bad204b90c0c683b3501926", + "slotId": "mod_stock" + }, + { + "_id": "75821bf86303d736b1dd77d8", + "_tpl": "5cc700ede4a949033c734315", + "parentId": "5bad204b90c0c683b3501926", + "slotId": "mod_reciever" + }, + { + "_id": "75024e41ad204c001d030a23", + "_tpl": "5cc701aae4a949000e1ea45c", + "parentId": "5bad204b90c0c683b3501926", + "slotId": "mod_barrel" + }, + { + "_id": "b4f24c7df404cf05d1837919", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "parentId": "5bad204b90c0c683b3501926", + "slotId": "mod_charge" + }, + { + "_id": "537c6e92b62d73b32db648f0", + "_tpl": "5cc700d4e4a949000f0f0f28", + "parentId": "5de5c5d5af3c4bf9af06c2f3", + "slotId": "mod_stock_000" + }, + { + "_id": "41d2c50fe4ed7b53d71e5061", + "_tpl": "5cc7012ae4a949001252b43e", + "parentId": "75821bf86303d736b1dd77d8", + "slotId": "mod_mount_000" + }, + { + "_id": "6ccde6919fb9c08c543edfa0", + "_tpl": "5cc7012ae4a949001252b43e", + "parentId": "75821bf86303d736b1dd77d8", + "slotId": "mod_mount_001" + }, + { + "_id": "7a275242ee05e1879fee6fc0", + "_tpl": "5dfe6104585a0c3e995c7b82", + "parentId": "75821bf86303d736b1dd77d8", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "44e35cd53e0548bae7af7f67", + "_tpl": "5cc82796e24e8d000f5859a8", + "parentId": "75024e41ad204c001d030a23", + "slotId": "mod_muzzle" + }, + { + "_id": "15abc13874fc883dfd3a8341", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "41d2c50fe4ed7b53d71e5061", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "ffd858d0039b215f934f7e3e", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "6ccde6919fb9c08c543edfa0", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "d767109513ab805beca36adc", + "_tpl": "5cebec00d7f00c065c53522a", + "parentId": "44e35cd53e0548bae7af7f67", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66667715010016df0bd0a3f0", + "Name": "Mini Chad Blaster", + "Root": "fc201810cb704d1882d1e68a", + "Items": [ + { + "_id": "fc201810cb704d1882d1e68a", + "_tpl": "5a7828548dc32e5a9c28b516", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "871e287235b0d7ececbaf71a", + "_tpl": "5a787f7ac5856700177af660", + "parentId": "fc201810cb704d1882d1e68a", + "slotId": "mod_barrel" + }, + { + "_id": "1dfd53d5b47ed1e94216b536", + "_tpl": "5a788031c585673f2b5c1c79", + "parentId": "fc201810cb704d1882d1e68a", + "slotId": "mod_handguard" + }, + { + "_id": "a721288d8afaa3024ed1f79f", + "_tpl": "5a78830bc5856700137e4c90", + "parentId": "fc201810cb704d1882d1e68a", + "slotId": "mod_magazine" + }, + { + "_id": "a20189ad4fe313f1a5f0a5e7", + "_tpl": "5a788169c5856700142fdd9e", + "parentId": "fc201810cb704d1882d1e68a", + "slotId": "mod_stock" + }, + { + "_id": "631187bc09761742df3edaf5", + "_tpl": "5a7893c1c585673f2b5c374d", + "parentId": "fc201810cb704d1882d1e68a", + "slotId": "mod_mount" + }, + { + "_id": "1f4bc55cf3af2493fc64363e", + "_tpl": "560838c94bdc2d77798b4569", + "parentId": "871e287235b0d7ececbaf71a", + "slotId": "mod_muzzle" + }, + { + "_id": "1ee21fb08b3518267860c58d", + "_tpl": "5a789261c5856700186c65d3", + "parentId": "871e287235b0d7ececbaf71a", + "slotId": "mod_mount" + }, + { + "_id": "be6a1f0622e6d5f43fd5a43c", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "1dfd53d5b47ed1e94216b536", + "slotId": "mod_foregrip" + }, + { + "_id": "40e2076e70e65c4d7e690f0d", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "1dfd53d5b47ed1e94216b536", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "380a3a9a3299138ca85cfc3f", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "1dfd53d5b47ed1e94216b536", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "4d1f9cded9bd7bdb2186d6db", + "_tpl": "57c69dd424597774c03b7bbc", + "parentId": "631187bc09761742df3edaf5", + "slotId": "mod_scope" + }, + { + "_id": "9bf4384f0cc85c33fd2197f9", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "1ee21fb08b3518267860c58d", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "60683b4d97e696eb4fcb8bab", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "1ee21fb08b3518267860c58d", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "932f502ba96bb6c2fb7bf0c2", + "_tpl": "5b3b99475acfc432ff4dcbee", + "parentId": "4d1f9cded9bd7bdb2186d6db", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "666677ba010016df0ba21fe3", + "Name": "Economy VSS", + "Root": "a46f95e9449bd2c57d429c98", + "Items": [ + { + "_id": "a46f95e9449bd2c57d429c98", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "156abdcb8254dad4b3324aae", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "parentId": "a46f95e9449bd2c57d429c98", + "slotId": "mod_pistol_grip" + }, + { + "_id": "4a34af13b52d0e77e47852f9", + "_tpl": "5448c1d04bdc2dff2f8b4569", + "parentId": "a46f95e9449bd2c57d429c98", + "slotId": "mod_magazine" + }, + { + "_id": "c7a4581b24f6cd1d7a46b82e", + "_tpl": "59bfe68886f7746004266202", + "parentId": "a46f95e9449bd2c57d429c98", + "slotId": "mod_reciever" + }, + { + "_id": "a030cfccd563b8d271eebf7c", + "_tpl": "5c793fb92e221644f31bfb64", + "parentId": "a46f95e9449bd2c57d429c98", + "slotId": "mod_stock" + }, + { + "_id": "3ea9ae64910e3c6700299c12", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "a46f95e9449bd2c57d429c98", + "slotId": "mod_charge" + }, + { + "_id": "b874a9c2ff6d26b5a2853c86", + "_tpl": "570fd79bd2720bc7458b4583", + "parentId": "c7a4581b24f6cd1d7a46b82e", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "da00547c6e8c60361c1c3c9b", + "_tpl": "63d3d44a2a49307baf09386d", + "parentId": "c7a4581b24f6cd1d7a46b82e", + "slotId": "mod_barrel" + }, + { + "_id": "0befe3e9161cb37629d75709", + "_tpl": "5b2cfa535acfc432ff4db7a0", + "parentId": "c7a4581b24f6cd1d7a46b82e", + "slotId": "mod_handguard" + }, + { + "_id": "b13e9f3cd5f68d9bc267a383", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "da00547c6e8c60361c1c3c9b", + "slotId": "mod_muzzle" + }, + { + "_id": "6417d9fd7c100c495a8524cf", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "da00547c6e8c60361c1c3c9b", + "slotId": "mod_gas_block" + }, + { + "_id": "f52112812d1d4e5c1714e93c", + "_tpl": "5b30bc285acfc47a8608615d", + "parentId": "0befe3e9161cb37629d75709", + "slotId": "mod_mount_000" + }, + { + "_id": "6741534510f2c18f1d6ec5a4", + "_tpl": "57da93632459771cb65bf83f", + "parentId": "b13e9f3cd5f68d9bc267a383", + "slotId": "mod_muzzle" + }, + { + "_id": "d0d17c83469e4de6af26d1e6", + "_tpl": "5c1bc5612e221602b5429350", + "parentId": "f52112812d1d4e5c1714e93c", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "666677e0010016df0b8bdcfb", + "Name": "The Giant Handcannon", + "Root": "6ab6c9b86af98fa51b60a1d2", + "Items": [ + { + "_id": "6ab6c9b86af98fa51b60a1d2", + "_tpl": "588892092459774ac91d4b11", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "133d96d3c60a25ac8c624a79", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "6ab6c9b86af98fa51b60a1d2", + "slotId": "mod_magazine" + }, + { + "_id": "39d08bea5eda1e5f67c0c3b0", + "_tpl": "5d2dc3e548f035404a1a4798", + "parentId": "6ab6c9b86af98fa51b60a1d2", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4eede6d8bd7acd722bcb0103", + "_tpl": "5888945a2459774bf43ba385", + "parentId": "6ab6c9b86af98fa51b60a1d2", + "slotId": "mod_barrel" + }, + { + "_id": "c18ac74f654e8c4aff2d282d", + "_tpl": "6113cc78d3a39d50044c065a", + "parentId": "6ab6c9b86af98fa51b60a1d2", + "slotId": "mod_pistol_grip" + }, + { + "_id": "3ff7f6a1f961759c6947ac66", + "_tpl": "58889c7324597754281f9439", + "parentId": "4eede6d8bd7acd722bcb0103", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "6666780c010016df0b49c940", + "Name": "The Flashbang", + "Root": "fee3c1831500e4c4f976695d", + "Items": [ + { + "_id": "fee3c1831500e4c4f976695d", + "_tpl": "59f98b4986f7746f546d2cef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "e2351b55e5aba2c4d87bdefc", + "_tpl": "5a27bad7c4a282000b15184b", + "parentId": "fee3c1831500e4c4f976695d", + "slotId": "mod_mount" + }, + { + "_id": "d097a15c523b7ffdbdf64cc0", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "fee3c1831500e4c4f976695d", + "slotId": "mod_magazine" + }, + { + "_id": "b2cb46dd1df8b42aed0a63c1", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "e2351b55e5aba2c4d87bdefc", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "caf387dff616f1efb63dc6fb", + "_tpl": "5a27b3d0c4a282000d721ec1", + "parentId": "e2351b55e5aba2c4d87bdefc", + "slotId": "mod_mount" + }, + { + "_id": "50360416ea85a573ee4a89dc", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "e2351b55e5aba2c4d87bdefc", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "bea076ce1132d1d60c1ddd6b", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "e2351b55e5aba2c4d87bdefc", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "4c9d088eb8954f2f7cf95679", + "_tpl": "577d128124597739d65d0e56", + "parentId": "e2351b55e5aba2c4d87bdefc", + "slotId": "mod_scope" + }, + { + "_id": "35ae70b1f4a68596761236b7", + "_tpl": "5a27b6bec4a282000e496f78", + "parentId": "caf387dff616f1efb63dc6fb", + "slotId": "mod_muzzle" + }, + { + "_id": "d7cad37f76aadcd7d9707daf", + "_tpl": "577d141e24597739c5255e01", + "parentId": "4c9d088eb8954f2f7cf95679", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66667867010016df0b2cf7a0", + "Name": "The Careless Whisper", + "Root": "04a32704e1fe4aa1b96cb635", + "Items": [ + { + "_id": "04a32704e1fe4aa1b96cb635", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "39209f6183b383d5f96e26b9", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "04a32704e1fe4aa1b96cb635", + "slotId": "mod_magazine" + }, + { + "_id": "04329c14e361cc67cbdd267f", + "_tpl": "5bfd36ad0db834001c38ef66", + "parentId": "04a32704e1fe4aa1b96cb635", + "slotId": "mod_stock" + }, + { + "_id": "1ea146865a03aa1ddb03e51c", + "_tpl": "5ae09bff5acfc4001562219d", + "parentId": "04a32704e1fe4aa1b96cb635", + "slotId": "mod_barrel" + }, + { + "_id": "4708e57fc32aa7eb5a6bbf0f", + "_tpl": "5bbde41ed4351e003562b038", + "parentId": "04329c14e361cc67cbdd267f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "d83fead68251a2d61d6d4009", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "1ea146865a03aa1ddb03e51c", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "3fc82d6ebfd5cb5c92f1b154", + "_tpl": "5bbdb811d4351e45020113c7", + "parentId": "1ea146865a03aa1ddb03e51c", + "slotId": "mod_sight_rear" + }, + { + "_id": "f5a69c35dfe9da3db7eefc77", + "_tpl": "5b86a0e586f7745b600ccb23", + "parentId": "1ea146865a03aa1ddb03e51c", + "slotId": "mod_muzzle" + }, + { + "_id": "ec5d38f016f5c521c450f449", + "_tpl": "5b3b99265acfc4704b4a1afb", + "parentId": "3fc82d6ebfd5cb5c92f1b154", + "slotId": "mod_scope" + }, + { + "_id": "074f237b1139f3ac3a6610d4", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "3fc82d6ebfd5cb5c92f1b154", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "5f8ebd83c884ef366c11d912", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "3fc82d6ebfd5cb5c92f1b154", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "2bf1d10d832f5607dbb0c588", + "_tpl": "5b2388675acfc4771e1be0be", + "parentId": "ec5d38f016f5c521c450f449", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "666678af010016df0bb778d8", + "Name": "Big Choppa", + "Root": "5e4a0c09ede0ed2be92ea158", + "Items": [ + { + "_id": "5e4a0c09ede0ed2be92ea158", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "51cbb7661d92bfd36127a39f", + "_tpl": "5b7d679f5acfc4001a5c4024", + "parentId": "5e4a0c09ede0ed2be92ea158", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6443d6613908e75e5cb8a1bd", + "_tpl": "5b7bef9c5acfc43d102852ec", + "parentId": "5e4a0c09ede0ed2be92ea158", + "slotId": "mod_magazine" + }, + { + "_id": "f9cac2deb8ffbe7f7b8e3eb2", + "_tpl": "5b7be1ca5acfc400170e2d2f", + "parentId": "5e4a0c09ede0ed2be92ea158", + "slotId": "mod_handguard" + }, + { + "_id": "1ededa155ace931073c33c67", + "_tpl": "5b7be1265acfc400161d0798", + "parentId": "5e4a0c09ede0ed2be92ea158", + "slotId": "mod_barrel" + }, + { + "_id": "06c5b6950c95962a5d970920", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "5e4a0c09ede0ed2be92ea158", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "26e434cf6c325bc3927d2614", + "_tpl": "5b099bb25acfc400186331e8", + "parentId": "5e4a0c09ede0ed2be92ea158", + "slotId": "mod_reciever" + }, + { + "_id": "939d1a104eb384183a821174", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "f9cac2deb8ffbe7f7b8e3eb2", + "slotId": "mod_foregrip" + }, + { + "_id": "8c9ca8aa29465d4536848deb", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "f9cac2deb8ffbe7f7b8e3eb2", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "9e1c1555f2f3941e15773c50", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "f9cac2deb8ffbe7f7b8e3eb2", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "aeda998b3e28308742e3b9f0", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "f9cac2deb8ffbe7f7b8e3eb2", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "400be0692c1d83379f910ca0", + "_tpl": "612e0d3767085e45ef14057f", + "parentId": "1ededa155ace931073c33c67", + "slotId": "mod_muzzle" + }, + { + "_id": "c96b160c9ccc5a8408418351", + "_tpl": "59f9d81586f7744c7506ee62", + "parentId": "26e434cf6c325bc3927d2614", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "bf68ef4354ebd197eb6b6584", + "_tpl": "63877c99e785640d436458ea", + "parentId": "400be0692c1d83379f910ca0", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "6666791f010016df0b132f1b", + "Name": "The Predator", + "Root": "0cffc5e3e0f73c4b35d6df42", + "Items": [ + { + "_id": "0cffc5e3e0f73c4b35d6df42", + "_tpl": "5a0ec13bfcdbcb00165aa685", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "811d9ec6324c63b3fd3bf768", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "0cffc5e3e0f73c4b35d6df42", + "slotId": "mod_gas_block" + }, + { + "_id": "8139e95faf2200852649d11e", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "0cffc5e3e0f73c4b35d6df42", + "slotId": "mod_muzzle" + }, + { + "_id": "38d14d825f853ddd80c1fccb", + "_tpl": "6087e663132d4d12c81fd96b", + "parentId": "0cffc5e3e0f73c4b35d6df42", + "slotId": "mod_pistol_grip" + }, + { + "_id": "b2bf72ca808a4971e9bd1ed1", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "0cffc5e3e0f73c4b35d6df42", + "slotId": "mod_reciever" + }, + { + "_id": "534bc5d53e2d58ce3fbe8b66", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "0cffc5e3e0f73c4b35d6df42", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "3577352e06a684488f2ee3d0", + "_tpl": "5b0e794b5acfc47a877359b2", + "parentId": "0cffc5e3e0f73c4b35d6df42", + "slotId": "mod_stock" + }, + { + "_id": "d94454346e3e8f268fd4935f", + "_tpl": "5c6175362e221600133e3b94", + "parentId": "0cffc5e3e0f73c4b35d6df42", + "slotId": "mod_magazine" + }, + { + "_id": "8319e48e306cefef8cd5ee8f", + "_tpl": "6130ca3fd92c473c77020dbd", + "parentId": "0cffc5e3e0f73c4b35d6df42", + "slotId": "mod_charge" + }, + { + "_id": "0d9e9e22b32a9164f28fa6cd", + "_tpl": "5cf4e3f3d7f00c06595bc7f0", + "parentId": "811d9ec6324c63b3fd3bf768", + "slotId": "mod_handguard" + }, + { + "_id": "3808a3aed51f353e9a471a6e", + "_tpl": "5aa66c72e5b5b00016327c93", + "parentId": "b2bf72ca808a4971e9bd1ed1", + "slotId": "mod_scope" + }, + { + "_id": "da305e530669cccc6cbd5533", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "0d9e9e22b32a9164f28fa6cd", + "slotId": "mod_foregrip" + }, + { + "_id": "95b72f5e750444e432dae5f4", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "0d9e9e22b32a9164f28fa6cd", + "slotId": "mod_scope", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "847ef9d910f7f0aaf0dd201c", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "0d9e9e22b32a9164f28fa6cd", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "b94b267663038ccf40dd5295", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "0d9e9e22b32a9164f28fa6cd", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "0ecef26b3a8bdb1a97a3999a", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "0d9e9e22b32a9164f28fa6cd", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "a11c04a345f8365af3af6ae3", + "_tpl": "5c06595c0db834001a66af6c", + "parentId": "0d9e9e22b32a9164f28fa6cd", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "aed3193b3e29aefd036b9064", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "3808a3aed51f353e9a471a6e", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "16c40358c0ad68802fbfb799", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "3808a3aed51f353e9a471a6e", + "slotId": "mod_scope_002", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "986daf366734acd6e0ab3f2b", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "3808a3aed51f353e9a471a6e", + "slotId": "mod_scope_003", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66667996010016df0b2dae8b", + "Name": "Chad Molester", + "Root": "f7b4559cc2e447842360c86b", + "Items": [ + { + "_id": "f7b4559cc2e447842360c86b", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "d4d762ea1332d6b2b79381e5", + "_tpl": "5de8eac42a78646d96665d91", + "parentId": "f7b4559cc2e447842360c86b", + "slotId": "mod_magazine" + }, + { + "_id": "c6a1dd3bc0df0e6f5f3180f3", + "_tpl": "5de8f237bbaf010b10528a70", + "parentId": "f7b4559cc2e447842360c86b", + "slotId": "mod_muzzle" + }, + { + "_id": "448b3a60d8763b3eb0c0cc00", + "_tpl": "5de910da8b6c4240ba2651b5", + "parentId": "f7b4559cc2e447842360c86b", + "slotId": "mod_stock" + }, + { + "_id": "8c698ee9c8c286cc4fb0b7b3", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "parentId": "f7b4559cc2e447842360c86b", + "slotId": "mod_foregrip" + }, + { + "_id": "5a3cd167d26b99caf8460af3", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "parentId": "f7b4559cc2e447842360c86b", + "slotId": "mod_reciever" + }, + { + "_id": "a6daec7a1f46379bb95e807d", + "_tpl": "5de922d4b11454561e39239f", + "parentId": "f7b4559cc2e447842360c86b", + "slotId": "mod_charge" + }, + { + "_id": "4f3572bde915df104d5e7bc8", + "_tpl": "5de8f2d5b74cd90030650c72", + "parentId": "c6a1dd3bc0df0e6f5f3180f3", + "slotId": "mod_muzzle" + }, + { + "_id": "9fd5c9e692029bf0c5958207", + "_tpl": "5a7b483fe899ef0016170d15", + "parentId": "c6a1dd3bc0df0e6f5f3180f3", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "894a2f4793ad702e577333d6", + "_tpl": "6171407e50224f204c1da3c5", + "parentId": "5a3cd167d26b99caf8460af3", + "slotId": "mod_scope" + }, + { + "_id": "a0811cb06d984a8de7becab3", + "_tpl": "5de8fb539f98ac2bc659513a", + "parentId": "5a3cd167d26b99caf8460af3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "9f29739cdea5523a305af437", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "parentId": "5a3cd167d26b99caf8460af3", + "slotId": "mod_mount" + }, + { + "_id": "4983801ea50a73d685823600", + "_tpl": "617151c1d92c473c770214ab", + "parentId": "894a2f4793ad702e577333d6", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d57f13a0a6fbf9ceb0e4cfc4", + "_tpl": "61714b2467085e45ef140b2c", + "parentId": "894a2f4793ad702e577333d6", + "slotId": "mod_scope_001" + }, + { + "_id": "091523ceaf9ba5a2b4a3759a", + "_tpl": "61714b2467085e45ef140b2c", + "parentId": "894a2f4793ad702e577333d6", + "slotId": "mod_scope_002" + }, + { + "_id": "34a7787b002d7e4b41ec89a6", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "9f29739cdea5523a305af437", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "54053c93f281d9ba57c78b67", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "d57f13a0a6fbf9ceb0e4cfc4", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ab8fdaf9014f0f8db1668376", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "091523ceaf9ba5a2b4a3759a", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66667a30010016df0b0c4d07", + "Name": "The Red Menace", + "Root": "cf05e1d49d0f480ecf9343eb", + "Items": [ + { + "_id": "cf05e1d49d0f480ecf9343eb", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "56e662a5b49aad994199984a", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "cf05e1d49d0f480ecf9343eb", + "slotId": "mod_gas_block" + }, + { + "_id": "2c95be4585d2902790f64eff", + "_tpl": "593d489686f7745c6255d58a", + "parentId": "cf05e1d49d0f480ecf9343eb", + "slotId": "mod_muzzle" + }, + { + "_id": "52649dc5d0f2f7110f389801", + "_tpl": "5e2192a498a36665e8337386", + "parentId": "cf05e1d49d0f480ecf9343eb", + "slotId": "mod_pistol_grip" + }, + { + "_id": "0387a1e55cf239dca7305e24", + "_tpl": "5d2c770c48f0354b4a07c100", + "parentId": "cf05e1d49d0f480ecf9343eb", + "slotId": "mod_reciever" + }, + { + "_id": "88b5c57f3ba16f4bb36b0224", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "cf05e1d49d0f480ecf9343eb", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4c4220a484129030dab95bd3", + "_tpl": "5e217ba4c1434648c13568cd", + "parentId": "cf05e1d49d0f480ecf9343eb", + "slotId": "mod_stock" + }, + { + "_id": "cf033f92f31208bc55066e21", + "_tpl": "5cbdc23eae9215001136a407", + "parentId": "cf05e1d49d0f480ecf9343eb", + "slotId": "mod_magazine" + }, + { + "_id": "8822717d92fa3b85f06f4fe0", + "_tpl": "6130ca3fd92c473c77020dbd", + "parentId": "cf05e1d49d0f480ecf9343eb", + "slotId": "mod_charge" + }, + { + "_id": "625743615f8d4beaf53af5f7", + "_tpl": "5b80242286f77429445e0b47", + "parentId": "56e662a5b49aad994199984a", + "slotId": "mod_handguard" + }, + { + "_id": "2d13828c747e40b9b2b0f6fa", + "_tpl": "59f9d81586f7744c7506ee62", + "parentId": "0387a1e55cf239dca7305e24", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c96c32be15aef3b4ab16a742", + "_tpl": "5b8403a086f7747ff856f4e2", + "parentId": "625743615f8d4beaf53af5f7", + "slotId": "mod_mount_000" + }, + { + "_id": "deb06a5efab5de8290017c13", + "_tpl": "5b84038986f774774913b0c1", + "parentId": "625743615f8d4beaf53af5f7", + "slotId": "mod_mount_001" + }, + { + "_id": "837693592f59df5461638f10", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "c96c32be15aef3b4ab16a742", + "slotId": "mod_foregrip" + }, + { + "_id": "be7d040031a444a0fd429976", + "_tpl": "6272370ee4013c5d7e31f418", + "parentId": "deb06a5efab5de8290017c13", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "66667a6c010016df0b6b5b4d", + "Name": "Shitty Railgun Womp Womp", + "Root": "05cf7d4df2ecd633c8aa9141", + "Items": [ + { + "_id": "05cf7d4df2ecd633c8aa9141", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b7fc189fbe3b60885ec8f65a", + "_tpl": "5caf1109ae9215753c44119f", + "parentId": "05cf7d4df2ecd633c8aa9141", + "slotId": "mod_magazine" + }, + { + "_id": "9a928d21e1510cb986e6a907", + "_tpl": "5a7dbfc1159bd40016548fde", + "parentId": "05cf7d4df2ecd633c8aa9141", + "slotId": "mod_handguard" + }, + { + "_id": "6d066331cb6a44ccf42c35d4", + "_tpl": "5aa66c72e5b5b00016327c93", + "parentId": "05cf7d4df2ecd633c8aa9141", + "slotId": "mod_scope" + }, + { + "_id": "a3610a053cbf0911bbed41e9", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "parentId": "05cf7d4df2ecd633c8aa9141", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "15bbae56c4d593f6394d2740", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "parentId": "05cf7d4df2ecd633c8aa9141", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "eaf5399a8e7e7baf1bd35d20", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "parentId": "05cf7d4df2ecd633c8aa9141", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "7cbc13964cf067fa7e224f2b", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "6d066331cb6a44ccf42c35d4", + "slotId": "mod_scope_001" + }, + { + "_id": "4618bdbfcf54e89a04d9dfc0", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "6d066331cb6a44ccf42c35d4", + "slotId": "mod_scope_002" + }, + { + "_id": "f50d79aeafe0e4fbb46bb812", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "6d066331cb6a44ccf42c35d4", + "slotId": "mod_scope_003" + }, + { + "_id": "2164e480c84976842d5c504f", + "_tpl": "616442e4faa1272e43152193", + "parentId": "7cbc13964cf067fa7e224f2b", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66667b55010016df0b019daf", + "Name": "The Maw", + "Root": "9efa5b8ab8746c8aada29c4d", + "Items": [ + { + "_id": "9efa5b8ab8746c8aada29c4d", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "f7600a947a4dde8e3a8fb5ce", + "_tpl": "6516b129609aaf354b34b3a8", + "parentId": "9efa5b8ab8746c8aada29c4d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "d1ff52d702228c6692b9dbc8", + "_tpl": "5c471c442e221602b542a6f8", + "parentId": "9efa5b8ab8746c8aada29c4d", + "slotId": "mod_magazine" + }, + { + "_id": "cb7ed0f864aa89304ec06cac", + "_tpl": "6197b229af1f5202c57a9bea", + "parentId": "9efa5b8ab8746c8aada29c4d", + "slotId": "mod_stock" + }, + { + "_id": "e4d5c804be55195dd9c8d472", + "_tpl": "5c471cb32e221602b177afaa", + "parentId": "9efa5b8ab8746c8aada29c4d", + "slotId": "mod_barrel" + }, + { + "_id": "ec5d582f9c3ac2dea04643a3", + "_tpl": "5c471c2d2e22164bef5d077f", + "parentId": "9efa5b8ab8746c8aada29c4d", + "slotId": "mod_mount_001" + }, + { + "_id": "9ea5dc82a79d424c223bf9b1", + "_tpl": "5c471bd12e221602b4129c3a", + "parentId": "9efa5b8ab8746c8aada29c4d", + "slotId": "mod_reciever" + }, + { + "_id": "258962b8f6af088ee72c5a20", + "_tpl": "5dff8db859400025ea5150d4", + "parentId": "9efa5b8ab8746c8aada29c4d", + "slotId": "mod_mount_002" + }, + { + "_id": "9000f0aa90ebe519fb9c5c75", + "_tpl": "6087e663132d4d12c81fd96b", + "parentId": "f7600a947a4dde8e3a8fb5ce", + "slotId": "mod_pistolgrip" + }, + { + "_id": "ac42dbaae6aee16b740cb366", + "_tpl": "5c793fb92e221644f31bfb64", + "parentId": "cb7ed0f864aa89304ec06cac", + "slotId": "mod_stock" + }, + { + "_id": "727a1c0598b09d351d525be2", + "_tpl": "5c471bfc2e221602b21d4e17", + "parentId": "e4d5c804be55195dd9c8d472", + "slotId": "mod_muzzle" + }, + { + "_id": "4049024f037dffd74a6c0980", + "_tpl": "5c471c842e221615214259b5", + "parentId": "e4d5c804be55195dd9c8d472", + "slotId": "mod_gas_block" + }, + { + "_id": "9876170312ba29d747c447e6", + "_tpl": "5e569a132642e66b0b68015c", + "parentId": "e4d5c804be55195dd9c8d472", + "slotId": "mod_mount" + }, + { + "_id": "88cd5203388d526d4cb18bca", + "_tpl": "5e56991336989c75ab4f03f6", + "parentId": "ec5d582f9c3ac2dea04643a3", + "slotId": "mod_handguard" + }, + { + "_id": "3ad9675dbf32af47c2c62b92", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "ec5d582f9c3ac2dea04643a3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "fa13744d1b277585b87a2837", + "_tpl": "5aa66c72e5b5b00016327c93", + "parentId": "258962b8f6af088ee72c5a20", + "slotId": "mod_scope" + }, + { + "_id": "ddac191ac671b3e1c9458ed8", + "_tpl": "5d44069ca4b9361ebd26fc37", + "parentId": "ac42dbaae6aee16b740cb366", + "slotId": "mod_stock_000" + }, + { + "_id": "9d093063beac1f966c7bb27e", + "_tpl": "5c471ba12e221602b3137d76", + "parentId": "727a1c0598b09d351d525be2", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "260ea8cb3ca1d05e45efb5f2", + "_tpl": "5e01e9e273d8eb11426f5bc3", + "parentId": "727a1c0598b09d351d525be2", + "slotId": "mod_muzzle" + }, + { + "_id": "7e6e681aa317dd36c4c8c2a9", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "9876170312ba29d747c447e6", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "d8e41428b93b5e7ce820e629", + "_tpl": "5e01ea19e9dc277128008c0b", + "parentId": "260ea8cb3ca1d05e45efb5f2", + "slotId": "mod_muzzle" + }, + { + "_id": "19b58af73c946d0e9e55affa", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "88cd5203388d526d4cb18bca", + "slotId": "mod_mount_000" + }, + { + "_id": "f44354ced97f68bfbab9a3d6", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "88cd5203388d526d4cb18bca", + "slotId": "mod_mount_001" + }, + { + "_id": "ea64e1dda137ef76c26b2b21", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "88cd5203388d526d4cb18bca", + "slotId": "mod_mount_002" + }, + { + "_id": "aecc2c15127637f395a3b80f", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "parentId": "88cd5203388d526d4cb18bca", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "8fcf08efaea14b048f824e41", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "88cd5203388d526d4cb18bca", + "slotId": "mod_scope" + }, + { + "_id": "7e6334d196a3ed3933668281", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "88cd5203388d526d4cb18bca", + "slotId": "mod_foregrip" + }, + { + "_id": "4ecb561dec047ec7681b5744", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "3ad9675dbf32af47c2c62b92", + "slotId": "mod_scope" + }, + { + "_id": "b03dcd5b4153c856c636087f", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "19b58af73c946d0e9e55affa", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "5fa2d0e7834cdf6d68e8b0c1", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "f44354ced97f68bfbab9a3d6", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "4e10b5f7bdd5a099fe9bc795", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "ea64e1dda137ef76c26b2b21", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "ae0fe15ed48408e39fad6186", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "8fcf08efaea14b048f824e41", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7e147c649bd477291a82470a", + "_tpl": "5b057b4f5acfc4771e1bd3e9", + "parentId": "7e6334d196a3ed3933668281", + "slotId": "mod_foregrip" + }, + { + "_id": "4a95995e1ee592de20c4400c", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "4ecb561dec047ec7681b5744", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "3c1b2f50fffcb41f615498da", + "_tpl": "5aa66be6e5b5b0214e506e97", + "parentId": "fa13744d1b277585b87a2837", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "9b63b18d07b81904c68ab0b4", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "fa13744d1b277585b87a2837", + "slotId": "mod_scope_001" + }, + { + "_id": "10d787265cefda4fe59f9428", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "fa13744d1b277585b87a2837", + "slotId": "mod_scope_002" + }, + { + "_id": "d2f1bfff63757e68e0446642", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "fa13744d1b277585b87a2837", + "slotId": "mod_scope_003" + }, + { + "_id": "82b565ecff348b97c3cb2f66", + "_tpl": "61657230d92c473c770213d7", + "parentId": "9b63b18d07b81904c68ab0b4", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "bd55cf1a4bd7a06cdf49e255", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "10d787265cefda4fe59f9428", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "98a342af27e7bbdce3e7d187", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "d2f1bfff63757e68e0446642", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66667bdb010016df0b0c0d47", + "Name": "Soviet Waffle Maker", + "Root": "3dc457a797b6c2249b216c7a", + "Items": [ + { + "_id": "3dc457a797b6c2249b216c7a", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1aa22decfd760ac5feb93545", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "3dc457a797b6c2249b216c7a", + "slotId": "mod_gas_block" + }, + { + "_id": "36b70fc2184bdf689aeef363", + "_tpl": "615d8f5dd92c473c770212ef", + "parentId": "3dc457a797b6c2249b216c7a", + "slotId": "mod_muzzle" + }, + { + "_id": "1d9b971cabf3f08741094623", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "3dc457a797b6c2249b216c7a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "09cb8a8e47e77a8b6e118726", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "3dc457a797b6c2249b216c7a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "3de358ab765aaf5af25bbb4a", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "3dc457a797b6c2249b216c7a", + "slotId": "mod_stock" + }, + { + "_id": "b23779c83d2e8f6a83803a47", + "_tpl": "55d481904bdc2d8c2f8b456a", + "parentId": "3dc457a797b6c2249b216c7a", + "slotId": "mod_magazine" + }, + { + "_id": "8deb95507106ef6855005a63", + "_tpl": "57acb6222459771ec34b5cb0", + "parentId": "3dc457a797b6c2249b216c7a", + "slotId": "mod_mount_000" + }, + { + "_id": "430ae46b74a93890e0ace3d9", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "3dc457a797b6c2249b216c7a", + "slotId": "mod_charge" + }, + { + "_id": "98fef75211d62aec1dcfa5b3", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "1aa22decfd760ac5feb93545", + "slotId": "mod_handguard" + }, + { + "_id": "e8ffffbf5418c240328e16ab", + "_tpl": "615d8f8567085e45ef1409ca", + "parentId": "36b70fc2184bdf689aeef363", + "slotId": "mod_muzzle" + }, + { + "_id": "ef5ee48c450162deba5133fc", + "_tpl": "6478641c19d732620e045e17", + "parentId": "09cb8a8e47e77a8b6e118726", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "00d54f7aa907d5087cd7ba63", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "3de358ab765aaf5af25bbb4a", + "slotId": "mod_stock" + }, + { + "_id": "2edc93e6f02d4c05652e5a9f", + "_tpl": "544a3a774bdc2d3a388b4567", + "parentId": "8deb95507106ef6855005a63", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66667c1a010016df0bd19d13", + "Name": "Toe Sniffer", + "Root": "c1b59689e5f19330a0986929", + "Items": [ + { + "_id": "c1b59689e5f19330a0986929", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "fb3024cd97c61c3a6784ed5a", + "_tpl": "630767c37d50ff5e8a1ea71a", + "parentId": "c1b59689e5f19330a0986929", + "slotId": "mod_magazine" + }, + { + "_id": "e23522c0da5743e37e021a18", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "c1b59689e5f19330a0986929", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "9693767e0ea66d23e42462b6", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "c1b59689e5f19330a0986929", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "dc2ecf3964a653dd004c2994", + "_tpl": "5d1b5e94d7ad1a2b865a96b0", + "parentId": "c1b59689e5f19330a0986929", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "2626b7ab8229d60c29b41156", + "_tpl": "5fb655b748c711690e3a8d5a", + "parentId": "c1b59689e5f19330a0986929", + "slotId": "mod_stock" + }, + { + "_id": "b1a3cbf9a0307d49b29fe30b", + "_tpl": "5fbbc366ca32ed67276c1557", + "parentId": "c1b59689e5f19330a0986929", + "slotId": "mod_barrel" + }, + { + "_id": "b62c6321b1ee78b0d0d1bf62", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "c1b59689e5f19330a0986929", + "slotId": "mod_mount" + }, + { + "_id": "a9ede07ca9d088c2f691b54e", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "c1b59689e5f19330a0986929", + "slotId": "mod_mount_001" + }, + { + "_id": "08a1c9b896a51d310b968f70", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "c1b59689e5f19330a0986929", + "slotId": "mod_mount_002" + }, + { + "_id": "2e6c36900c2ba09f23d43514", + "_tpl": "591af10186f774139d495f0e", + "parentId": "2626b7ab8229d60c29b41156", + "slotId": "mod_stock_000" + }, + { + "_id": "eea4afef933d32831449b6c0", + "_tpl": "5a32a064c4a28200741e22de", + "parentId": "b1a3cbf9a0307d49b29fe30b", + "slotId": "mod_muzzle" + }, + { + "_id": "49e5eb06302c6728fa89e86e", + "_tpl": "619386379fb0c665d5490dbe", + "parentId": "b62c6321b1ee78b0d0d1bf62", + "slotId": "mod_foregrip" + }, + { + "_id": "8db98d9cde71149e04047432", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "a9ede07ca9d088c2f691b54e", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "dc18fc681881c4dcc86fed07", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "08a1c9b896a51d310b968f70", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "66667c99010016df0b596e00", + "Name": "Keep It 100", + "Root": "00032862fe5ecb64fe105ae3", + "Items": [ + { + "_id": "00032862fe5ecb64fe105ae3", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "16ac9750e76aa701cd4dae39", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "00032862fe5ecb64fe105ae3", + "slotId": "mod_pistol_grip" + }, + { + "_id": "75011f74b130fe0ba9816b1a", + "_tpl": "5c6592372e221600133e47d7", + "parentId": "00032862fe5ecb64fe105ae3", + "slotId": "mod_magazine" + }, + { + "_id": "6ed184ee583b87c431a3c6cf", + "_tpl": "5c48a14f2e2216152006edd7", + "parentId": "00032862fe5ecb64fe105ae3", + "slotId": "mod_handguard" + }, + { + "_id": "6ac5bbdbe00ae582f7e256e0", + "_tpl": "5c48a2852e221602b21d5923", + "parentId": "00032862fe5ecb64fe105ae3", + "slotId": "mod_barrel" + }, + { + "_id": "f34c44bd6e7cc3cc167efa98", + "_tpl": "5ae30bad5acfc400185c2dc4", + "parentId": "00032862fe5ecb64fe105ae3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4b3a4e301b2ce9b0e24b69b9", + "_tpl": "56ea6fafd2720b844b8b4593", + "parentId": "6ac5bbdbe00ae582f7e256e0", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "6690564a010016df0bb996c9", + "Name": "The Heretic", + "Root": "9853f433223ea5ffab4ed7b8", + "Items": [ + { + "_id": "9853f433223ea5ffab4ed7b8", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1e0dd1a947a46440da1e4d14", + "_tpl": "57c44dd02459772d2e0ae249", + "parentId": "9853f433223ea5ffab4ed7b8", + "slotId": "mod_muzzle" + }, + { + "_id": "9faf743451a8eeb07ad7822c", + "_tpl": "57c44f4f2459772d2c627113", + "parentId": "9853f433223ea5ffab4ed7b8", + "slotId": "mod_reciever" + }, + { + "_id": "05a6390030d2f2d189ca5f75", + "_tpl": "5a9e81fba2750c00164f6b11", + "parentId": "9853f433223ea5ffab4ed7b8", + "slotId": "mod_magazine" + }, + { + "_id": "116e29eecd252b4cc5196f9a", + "_tpl": "5a69a2ed8dc32e000d46d1f1", + "parentId": "9853f433223ea5ffab4ed7b8", + "slotId": "mod_pistol_grip" + }, + { + "_id": "ff110eb175e285c789fc94c5", + "_tpl": "5dff8db859400025ea5150d4", + "parentId": "9853f433223ea5ffab4ed7b8", + "slotId": "mod_mount_000" + }, + { + "_id": "88f98c3a3feec9df10357d35", + "_tpl": "57c44e7b2459772d28133248", + "parentId": "1e0dd1a947a46440da1e4d14", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "bccc756cd061c2c91fefd3bd", + "_tpl": "59eb7ebe86f7740b373438ce", + "parentId": "1e0dd1a947a46440da1e4d14", + "slotId": "mod_mount_000" + }, + { + "_id": "2a1abf58f5e05f0f4851c3e3", + "_tpl": "5aa66c72e5b5b00016327c93", + "parentId": "ff110eb175e285c789fc94c5", + "slotId": "mod_scope" + }, + { + "_id": "cd88f7707399f3a0fc5d2c7c", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "bccc756cd061c2c91fefd3bd", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "ba0d46ec82cfcd41aaf14410", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "bccc756cd061c2c91fefd3bd", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "255269f5a3b535ea4692bd3f", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "bccc756cd061c2c91fefd3bd", + "slotId": "mod_foregrip" + }, + { + "_id": "34cfcea62292cb55fe255f25", + "_tpl": "5aa66be6e5b5b0214e506e97", + "parentId": "2a1abf58f5e05f0f4851c3e3", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "282c2e1bd909b57a49ce69a0", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "2a1abf58f5e05f0f4851c3e3", + "slotId": "mod_scope_002", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4b80c6dfaca975361244d519", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "2a1abf58f5e05f0f4851c3e3", + "slotId": "mod_scope_003", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66905701010016df0b385307", + "Name": "Collateral Damage", + "Root": "4887876ceb9f6e3cb2a73f0d", + "Items": [ + { + "_id": "4887876ceb9f6e3cb2a73f0d", + "_tpl": "628a60ae6b1d481ff772e9c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "c0f9f5574af571aee48cd9f4", + "_tpl": "628a83c29179c324ed269508", + "parentId": "4887876ceb9f6e3cb2a73f0d", + "slotId": "mod_gas_block" + }, + { + "_id": "270e588937fedccb1759c23f", + "_tpl": "59bffc1f86f77435b128b872", + "parentId": "4887876ceb9f6e3cb2a73f0d", + "slotId": "mod_muzzle" + }, + { + "_id": "dba3b5f67a98cb3b3d653a33", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "4887876ceb9f6e3cb2a73f0d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "93285b577e300fa9717ee800", + "_tpl": "628a665a86cbd9750d2ff5e5", + "parentId": "4887876ceb9f6e3cb2a73f0d", + "slotId": "mod_reciever" + }, + { + "_id": "d0f46d70b8e8a343dac8facf", + "_tpl": "5649d9a14bdc2d79388b4580", + "parentId": "4887876ceb9f6e3cb2a73f0d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "74709ee6a9bbea3eeed41fc4", + "_tpl": "59e89d0986f77427600d226e", + "parentId": "4887876ceb9f6e3cb2a73f0d", + "slotId": "mod_stock_000" + }, + { + "_id": "30b86072db2d6b9cba3beac0", + "_tpl": "5cbdc23eae9215001136a407", + "parentId": "4887876ceb9f6e3cb2a73f0d", + "slotId": "mod_magazine" + }, + { + "_id": "3c609f0f95c8fa6a009a501b", + "_tpl": "57acb6222459771ec34b5cb0", + "parentId": "4887876ceb9f6e3cb2a73f0d", + "slotId": "mod_mount_000" + }, + { + "_id": "cba4ce2ed3d06c773b548d1a", + "_tpl": "6130ca3fd92c473c77020dbd", + "parentId": "4887876ceb9f6e3cb2a73f0d", + "slotId": "mod_charge" + }, + { + "_id": "1a82687000afa8d0143c2a79", + "_tpl": "61714b2467085e45ef140b2c", + "parentId": "c0f9f5574af571aee48cd9f4", + "slotId": "mod_tactical_000" + }, + { + "_id": "42f1ac9315eab682894c38ef", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "c0f9f5574af571aee48cd9f4", + "slotId": "mod_mount_000" + }, + { + "_id": "e9b75d451ba1e466c9f6e3d0", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "c0f9f5574af571aee48cd9f4", + "slotId": "mod_mount_001" + }, + { + "_id": "540622503c2d3a136dcbf951", + "_tpl": "57cffce524597763b31685d8", + "parentId": "c0f9f5574af571aee48cd9f4", + "slotId": "mod_foregrip" + }, + { + "_id": "e00b0a3d22b0d7f48caea904", + "_tpl": "59bffbb386f77435b379b9c2", + "parentId": "270e588937fedccb1759c23f", + "slotId": "mod_muzzle" + }, + { + "_id": "217bf3dc2cfba9d91ed4805b", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "d0f46d70b8e8a343dac8facf", + "slotId": "mod_scope" + }, + { + "_id": "3976bbba71089ce6f087586f", + "_tpl": "5a0c59791526d8dba737bba7", + "parentId": "74709ee6a9bbea3eeed41fc4", + "slotId": "mod_stock" + }, + { + "_id": "379a6db96e98096e6cacc3c9", + "_tpl": "5dff77c759400025ea5150cf", + "parentId": "3c609f0f95c8fa6a009a501b", + "slotId": "mod_scope" + }, + { + "_id": "8a4feb8ddac9f458a5f13781", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "1a82687000afa8d0143c2a79", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "740c7d16c179b70290d6f9ab", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "42f1ac9315eab682894c38ef", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "b289d2deebf07c03b3c729f7", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "e9b75d451ba1e466c9f6e3d0", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "ef328c5d78a4463be5a36616", + "_tpl": "616442e4faa1272e43152193", + "parentId": "217bf3dc2cfba9d91ed4805b", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "a5f3eca2f2eeded8180bb602", + "_tpl": "5dff772da3651922b360bf91", + "parentId": "379a6db96e98096e6cacc3c9", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66905769010016df0b0c73cd", + "Name": "The Dagger", + "Root": "205be6ccf3b55fbfbbfbdd00", + "Items": [ + { + "_id": "205be6ccf3b55fbfbbfbdd00", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "70b043710708cfe99389831d", + "_tpl": "5c6161fb2e221600113fbde5", + "parentId": "205be6ccf3b55fbfbbfbdd00", + "slotId": "mod_magazine" + }, + { + "_id": "a3ab2ec0af2a3055e249388b", + "_tpl": "5c99f3592e221644fc633070", + "parentId": "205be6ccf3b55fbfbbfbdd00", + "slotId": "mod_stock" + }, + { + "_id": "720da6b234e1b8fc857f7209", + "_tpl": "5c6162682e22160010261a2b", + "parentId": "205be6ccf3b55fbfbbfbdd00", + "slotId": "mod_mount_000" + }, + { + "_id": "b040fb050244723726fc9c2c", + "_tpl": "5bbde409d4351e003562b036", + "parentId": "a3ab2ec0af2a3055e249388b", + "slotId": "mod_stock" + }, + { + "_id": "ffff3c610f61f6a903af20ec", + "_tpl": "5c61627a2e22160012542c55", + "parentId": "720da6b234e1b8fc857f7209", + "slotId": "mod_mount_000" + }, + { + "_id": "9396a3f48a9e1ec4ca024721", + "_tpl": "5aa66c72e5b5b00016327c93", + "parentId": "ffff3c610f61f6a903af20ec", + "slotId": "mod_scope" + }, + { + "_id": "5a4fb5d2c83a9ef49008da4b", + "_tpl": "5aa66be6e5b5b0214e506e97", + "parentId": "9396a3f48a9e1ec4ca024721", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "95f0368e9267cdca77144d6a", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "parentId": "9396a3f48a9e1ec4ca024721", + "slotId": "mod_scope_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "f99ff9e0f9ad6e35ee99a6c6", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "9396a3f48a9e1ec4ca024721", + "slotId": "mod_scope_002" + }, + { + "_id": "edb1702c5bf8707db1fc287a", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "9396a3f48a9e1ec4ca024721", + "slotId": "mod_scope_003" + }, + { + "_id": "dbdbebd4567ada4092590631", + "_tpl": "616442e4faa1272e43152193", + "parentId": "f99ff9e0f9ad6e35ee99a6c6", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "24a2141aa3f7ce293a6a032e", + "_tpl": "616442e4faa1272e43152193", + "parentId": "edb1702c5bf8707db1fc287a", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66905813010016df0b27b89b", + "Name": "The Predator Mk2", + "Root": "735b93060a68b285aba7072a", + "Items": [ + { + "_id": "735b93060a68b285aba7072a", + "_tpl": "583990e32459771419544dd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "56b4cd095886c6977adf7e75", + "_tpl": "5f6341043ada5942720e2dc5", + "parentId": "735b93060a68b285aba7072a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "20ba271d9625ebbbed6c40a9", + "_tpl": "59ecc28286f7746d7a68aa8c", + "parentId": "735b93060a68b285aba7072a", + "slotId": "mod_stock" + }, + { + "_id": "57e3cb32b19e9162255d70f3", + "_tpl": "6130ca3fd92c473c77020dbd", + "parentId": "735b93060a68b285aba7072a", + "slotId": "mod_charge" + }, + { + "_id": "42dfff96a8b9143f98434b01", + "_tpl": "5bed625c0db834001c062946", + "parentId": "735b93060a68b285aba7072a", + "slotId": "mod_magazine" + }, + { + "_id": "008571244d83f14f5d346747", + "_tpl": "564caa3d4bdc2d17108b458e", + "parentId": "735b93060a68b285aba7072a", + "slotId": "mod_muzzle" + }, + { + "_id": "177bea0b0186e79f180c9842", + "_tpl": "57dc334d245977597164366f", + "parentId": "735b93060a68b285aba7072a", + "slotId": "mod_reciever" + }, + { + "_id": "5c7bfa3d9ecb17d5d9d7bcff", + "_tpl": "591ee00d86f774592f7b841e", + "parentId": "735b93060a68b285aba7072a", + "slotId": "mod_mount_000" + }, + { + "_id": "1aaec0fa60f935135dfa57ee", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "735b93060a68b285aba7072a", + "slotId": "mod_gas_block" + }, + { + "_id": "a9da288637901334444a5525", + "_tpl": "5b222d405acfc400153af4fe", + "parentId": "20ba271d9625ebbbed6c40a9", + "slotId": "mod_stock" + }, + { + "_id": "9594426c44eecff872f9772e", + "_tpl": "59f9d81586f7744c7506ee62", + "parentId": "5c7bfa3d9ecb17d5d9d7bcff", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d0739d59237a18ac93722112", + "_tpl": "5d10b49bd7ad1a1a560708b0", + "parentId": "5c7bfa3d9ecb17d5d9d7bcff", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "a5abde4f782dbab6ce9059b3", + "_tpl": "5d15ce51d7ad1a1eff619092", + "parentId": "1aaec0fa60f935135dfa57ee", + "slotId": "mod_handguard" + }, + { + "_id": "f84eb55a6cc5901b9690ba25", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "a5abde4f782dbab6ce9059b3", + "slotId": "mod_foregrip" + }, + { + "_id": "73b8eaa746ce06a5385d3d31", + "_tpl": "5c5952732e2216398b5abda2", + "parentId": "a5abde4f782dbab6ce9059b3", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "6c8c7dcd973c7d4c34503261", + "_tpl": "5c5952732e2216398b5abda2", + "parentId": "a5abde4f782dbab6ce9059b3", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "83287fd7becae7c21319fc4b", + "_tpl": "5c5952732e2216398b5abda2", + "parentId": "a5abde4f782dbab6ce9059b3", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "e84cd609c2159409e432cf54", + "_tpl": "5c5952732e2216398b5abda2", + "parentId": "a5abde4f782dbab6ce9059b3", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "66905910010016df0b7cdd21", + "Name": "Destination Death", + "Root": "e5ce0f891ebe450903e75e17", + "Items": [ + { + "_id": "e5ce0f891ebe450903e75e17", + "_tpl": "583990e32459771419544dd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "255d162407156f61b724a3f2", + "_tpl": "5e2192a498a36665e8337386", + "parentId": "e5ce0f891ebe450903e75e17", + "slotId": "mod_pistol_grip" + }, + { + "_id": "973fc82836e917ca5b6155f6", + "_tpl": "59ecc28286f7746d7a68aa8c", + "parentId": "e5ce0f891ebe450903e75e17", + "slotId": "mod_stock" + }, + { + "_id": "127c74906fc327f85a1a0053", + "_tpl": "6130ca3fd92c473c77020dbd", + "parentId": "e5ce0f891ebe450903e75e17", + "slotId": "mod_charge" + }, + { + "_id": "40e08aea59d0d1ed189d624d", + "_tpl": "55d481904bdc2d8c2f8b456a", + "parentId": "e5ce0f891ebe450903e75e17", + "slotId": "mod_magazine" + }, + { + "_id": "923d718426904791977cc59b", + "_tpl": "59bffc1f86f77435b128b872", + "parentId": "e5ce0f891ebe450903e75e17", + "slotId": "mod_muzzle" + }, + { + "_id": "1626422d1e6a243583ea12dd", + "_tpl": "655cb6b5d680a544f30607fa", + "parentId": "e5ce0f891ebe450903e75e17", + "slotId": "mod_reciever" + }, + { + "_id": "0441dfcd74e8d16bfa62e0d5", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "e5ce0f891ebe450903e75e17", + "slotId": "mod_gas_block" + }, + { + "_id": "79d1265dc491c83d81884d9b", + "_tpl": "59bffbb386f77435b379b9c2", + "parentId": "923d718426904791977cc59b", + "slotId": "mod_muzzle" + }, + { + "_id": "3a24abd188c1e84313f49156", + "_tpl": "5aa66c72e5b5b00016327c93", + "parentId": "1626422d1e6a243583ea12dd", + "slotId": "mod_scope" + }, + { + "_id": "56620a2965fe024040b65d42", + "_tpl": "5d15ce51d7ad1a1eff619092", + "parentId": "0441dfcd74e8d16bfa62e0d5", + "slotId": "mod_handguard" + }, + { + "_id": "fe4cd8dec72da931fc6edae6", + "_tpl": "62850c28da09541f43158cca", + "parentId": "3a24abd188c1e84313f49156", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c279e8bd728624617bcba0e6", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "parentId": "3a24abd188c1e84313f49156", + "slotId": "mod_scope_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "e9d4791ed0a29c1320ed014d", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "3a24abd188c1e84313f49156", + "slotId": "mod_scope_002", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "366921991b7ba5bc9cf0fb15", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "3a24abd188c1e84313f49156", + "slotId": "mod_scope_003", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7ab1a55477ae87a94eb2a586", + "_tpl": "5c1bc7752e221602b1779b34", + "parentId": "56620a2965fe024040b65d42", + "slotId": "mod_foregrip" + }, + { + "_id": "276e64e36d6da8f124b791d0", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "56620a2965fe024040b65d42", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "5116d4e93eab713884f491c5", + "_tpl": "61605d88ffa6e502ac5e7eeb", + "parentId": "56620a2965fe024040b65d42", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "d047f1cac52111e7847f8fae", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "56620a2965fe024040b65d42", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "d485c2c14a5ee0ba1b28d84a", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "56620a2965fe024040b65d42", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "209f7be3a6932eb2d937a84a", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "56620a2965fe024040b65d42", + "slotId": "mod_scope" + }, + { + "_id": "f015ce68e267902556749a09", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "209f7be3a6932eb2d937a84a", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a32979010016df0b351bc9", + "Name": "Lone Wolf Avenger", + "Root": "db8609da8fa742adc574799f", + "Items": [ + { + "_id": "db8609da8fa742adc574799f", + "_tpl": "5d43021ca4b9362eab4b5e25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "d39be2477a47d8405669aa8e", + "_tpl": "6113cc78d3a39d50044c065a", + "parentId": "db8609da8fa742adc574799f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "577d602825b5e57ee2a25864", + "_tpl": "544a37c44bdc2d25388b4567", + "parentId": "db8609da8fa742adc574799f", + "slotId": "mod_magazine" + }, + { + "_id": "3c15da92060d1efc3d017bbf", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "parentId": "db8609da8fa742adc574799f", + "slotId": "mod_reciever" + }, + { + "_id": "5ba4ae8c54aa32c2f807a87c", + "_tpl": "5c793fb92e221644f31bfb64", + "parentId": "db8609da8fa742adc574799f", + "slotId": "mod_stock" + }, + { + "_id": "bab18985cc9edd2b3383daa7", + "_tpl": "5d44334ba4b9362b346d1948", + "parentId": "db8609da8fa742adc574799f", + "slotId": "mod_charge" + }, + { + "_id": "a27e2c379d34dec45e2aad99", + "_tpl": "5b2389515acfc4771e1be0c0", + "parentId": "3c15da92060d1efc3d017bbf", + "slotId": "mod_scope" + }, + { + "_id": "653afe9e40cba38681a54d01", + "_tpl": "5d440b93a4b9364276578d4b", + "parentId": "3c15da92060d1efc3d017bbf", + "slotId": "mod_barrel" + }, + { + "_id": "bdd329e58ae788b80540b5fe", + "_tpl": "5d4405f0a4b9361e6a4e6bd9", + "parentId": "3c15da92060d1efc3d017bbf", + "slotId": "mod_handguard" + }, + { + "_id": "dd45cc49ba3962a4ef8d3365", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "parentId": "5ba4ae8c54aa32c2f807a87c", + "slotId": "mod_stock_000" + }, + { + "_id": "aa72a7a02b05e29c6e79a628", + "_tpl": "5b3b99475acfc432ff4dcbee", + "parentId": "a27e2c379d34dec45e2aad99", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "3494fc776fe145ddfa391433", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "a27e2c379d34dec45e2aad99", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e8610e91d1d86915a7b5c1ab", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "a27e2c379d34dec45e2aad99", + "slotId": "mod_scope_002" + }, + { + "_id": "8b70eca22f100bf069a8b780", + "_tpl": "609269c3b0e443224b421cc1", + "parentId": "653afe9e40cba38681a54d01", + "slotId": "mod_muzzle" + }, + { + "_id": "bddcd2e4c615cfb8cb32921d", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "653afe9e40cba38681a54d01", + "slotId": "mod_gas_block" + }, + { + "_id": "58dbe8e2d3a85efe537501cb", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "bdd329e58ae788b80540b5fe", + "slotId": "mod_scope" + }, + { + "_id": "5c008e766eb33176058463bc", + "_tpl": "57fd23e32459772d0805bcf1", + "parentId": "bdd329e58ae788b80540b5fe", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "92fda9e8cccfa604043da117", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "bdd329e58ae788b80540b5fe", + "slotId": "mod_mount_000" + }, + { + "_id": "90a0a031aa02da898f064de4", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "bdd329e58ae788b80540b5fe", + "slotId": "mod_mount_002" + }, + { + "_id": "3b4a30d66bd0e129438abb71", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "bdd329e58ae788b80540b5fe", + "slotId": "mod_mount_003" + }, + { + "_id": "558c61a7afa30d6325f5883e", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "bdd329e58ae788b80540b5fe", + "slotId": "mod_mount_004" + }, + { + "_id": "719e1dfb67e134803082b022", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "bdd329e58ae788b80540b5fe", + "slotId": "mod_foregrip" + }, + { + "_id": "858a49cb654d3ab82b9b2024", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "bdd329e58ae788b80540b5fe", + "slotId": "mod_mount_001" + }, + { + "_id": "3a142189ff39df21a98a388d", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "e8610e91d1d86915a7b5c1ab", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "8766fb0f00f70e168eae1ca9", + "_tpl": "60926df0132d4d12c81fd9df", + "parentId": "8b70eca22f100bf069a8b780", + "slotId": "mod_muzzle" + }, + { + "_id": "0137bf5a115216cb365bbd9b", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "58dbe8e2d3a85efe537501cb", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "1aacc570cd35e6b1466acc77", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "92fda9e8cccfa604043da117", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "3c590b7b53459d83753e3f55", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "90a0a031aa02da898f064de4", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "194b6e085ac6d84e470941b3", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "3b4a30d66bd0e129438abb71", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "ab4c5d462dc022452a9aa62d", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "558c61a7afa30d6325f5883e", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "007ff65888c17b41f0b0ede4", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "719e1dfb67e134803082b022", + "slotId": "mod_foregrip" + }, + { + "_id": "6ea0a548779ce5b1e1bd2963", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "858a49cb654d3ab82b9b2024", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + } + ] + }, + { + "Id": "66a32b03010016df0b826aab", + "Name": "New Age Sniper", + "Root": "640fa1b11efce67b199fa0bd", + "Items": [ + { + "_id": "640fa1b11efce67b199fa0bd", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5434e70128ac86ad1ef9af08", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "parentId": "640fa1b11efce67b199fa0bd", + "slotId": "mod_pistol_grip" + }, + { + "_id": "662656b46fa0750024f051ce", + "_tpl": "5aaa5e60e5b5b000140293d6", + "parentId": "640fa1b11efce67b199fa0bd", + "slotId": "mod_magazine" + }, + { + "_id": "aae44b34eb142c2acde33b0d", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "640fa1b11efce67b199fa0bd", + "slotId": "mod_reciever" + }, + { + "_id": "9c9c6fedd93ee6a187be15c3", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "640fa1b11efce67b199fa0bd", + "slotId": "mod_stock" + }, + { + "_id": "9a3d11e1ad7507b1a664f9d5", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "640fa1b11efce67b199fa0bd", + "slotId": "mod_charge" + }, + { + "_id": "0318dbcadbd7b76cfce1d011", + "_tpl": "5aa66c72e5b5b00016327c93", + "parentId": "aae44b34eb142c2acde33b0d", + "slotId": "mod_scope" + }, + { + "_id": "a44229be01b836e7558144be", + "_tpl": "5d440b9fa4b93601354d480c", + "parentId": "aae44b34eb142c2acde33b0d", + "slotId": "mod_barrel" + }, + { + "_id": "17b827de1e89d4d81b943fae", + "_tpl": "5c78f2492e221600114c9f04", + "parentId": "aae44b34eb142c2acde33b0d", + "slotId": "mod_handguard" + }, + { + "_id": "52209c0cbc5aefd9ed8fd2ae", + "_tpl": "5aa66be6e5b5b0214e506e97", + "parentId": "0318dbcadbd7b76cfce1d011", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "a2739c38d5cc7dcac62a3a7f", + "_tpl": "616554fe50224f204c1da2aa", + "parentId": "0318dbcadbd7b76cfce1d011", + "slotId": "mod_scope_001" + }, + { + "_id": "79e3de225d04df4591bee4da", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "0318dbcadbd7b76cfce1d011", + "slotId": "mod_scope_002" + }, + { + "_id": "4b7f26a036fa685db499f6ce", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "0318dbcadbd7b76cfce1d011", + "slotId": "mod_scope_003" + }, + { + "_id": "e2088d3d57fcaed8c2650ce4", + "_tpl": "56ea8180d2720bf2698b456a", + "parentId": "a44229be01b836e7558144be", + "slotId": "mod_muzzle" + }, + { + "_id": "176432044f6a3a2042bd3b30", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "a44229be01b836e7558144be", + "slotId": "mod_gas_block" + }, + { + "_id": "3443d9f61012edb55d86103e", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "17b827de1e89d4d81b943fae", + "slotId": "mod_mount_000" + }, + { + "_id": "41bc23d84e384b815a67d3f7", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "17b827de1e89d4d81b943fae", + "slotId": "mod_mount_001" + }, + { + "_id": "2198cb7cb088e18ad9cb6bcd", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "17b827de1e89d4d81b943fae", + "slotId": "mod_foregrip" + }, + { + "_id": "c2da1544224d58cd6f2210c1", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "17b827de1e89d4d81b943fae", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "b8574a587235be185831e03e", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "17b827de1e89d4d81b943fae", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "692418e4c111f8b52d5b27c4", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "17b827de1e89d4d81b943fae", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "b42e7e4fea0b78e809275245", + "_tpl": "61657230d92c473c770213d7", + "parentId": "a2739c38d5cc7dcac62a3a7f", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e6c738cc5b4454b69cdc40c6", + "_tpl": "616442e4faa1272e43152193", + "parentId": "79e3de225d04df4591bee4da", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c57b8655a1a5ef2e913aea25", + "_tpl": "616442e4faa1272e43152193", + "parentId": "4b7f26a036fa685db499f6ce", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7298f5a88b22f8530424f731", + "_tpl": "57da93632459771cb65bf83f", + "parentId": "e2088d3d57fcaed8c2650ce4", + "slotId": "mod_muzzle" + }, + { + "_id": "1d1eeb3cd92f90a4b041d8b9", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "3443d9f61012edb55d86103e", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "89d9ac0b62c88cd582753db0", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "41bc23d84e384b815a67d3f7", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "f65e01ebcc61db897ec5e5f5", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "2198cb7cb088e18ad9cb6bcd", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a32b97010016df0b177684", + "Name": "Very Nice Yes", + "Root": "03d45eb625f37fefca4e710c", + "Items": [ + { + "_id": "03d45eb625f37fefca4e710c", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "2aa8931125968dce74df45b0", + "_tpl": "5e2192a498a36665e8337386", + "parentId": "03d45eb625f37fefca4e710c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "1421e0cb0a8b5fad62a3a9bd", + "_tpl": "5cf50fc5d7f00c056c53f83c", + "parentId": "03d45eb625f37fefca4e710c", + "slotId": "mod_stock" + }, + { + "_id": "eef75de7718a0820f09e76a4", + "_tpl": "6130ca3fd92c473c77020dbd", + "parentId": "03d45eb625f37fefca4e710c", + "slotId": "mod_charge" + }, + { + "_id": "d9d8bb38c2e252cf7fcebac2", + "_tpl": "5c0672ed0db834001b7353f3", + "parentId": "03d45eb625f37fefca4e710c", + "slotId": "mod_magazine" + }, + { + "_id": "01b03f2c1cc8e76ee7b1eeca", + "_tpl": "5c6165902e22160010261b28", + "parentId": "03d45eb625f37fefca4e710c", + "slotId": "mod_muzzle" + }, + { + "_id": "d283161a03f0379b4950717e", + "_tpl": "59985a6c86f77414ec448d17", + "parentId": "03d45eb625f37fefca4e710c", + "slotId": "mod_reciever" + }, + { + "_id": "62eaec9eb8eef6e7585c2e92", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "03d45eb625f37fefca4e710c", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "43698099c42804bdba2bd5b0", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "03d45eb625f37fefca4e710c", + "slotId": "mod_gas_block" + }, + { + "_id": "06a13b238954ae0882d222ad", + "_tpl": "58d2946c86f7744e271174b5", + "parentId": "1421e0cb0a8b5fad62a3a9bd", + "slotId": "mod_stock" + }, + { + "_id": "3b26c7dc580cbf2bce4fd7a4", + "_tpl": "5dfe6104585a0c3e995c7b82", + "parentId": "d283161a03f0379b4950717e", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ed26054a5b6f53bb0e813c9f", + "_tpl": "5d2c829448f0353a5c7d6674", + "parentId": "43698099c42804bdba2bd5b0", + "slotId": "mod_handguard" + }, + { + "_id": "c9f4674042dae41c8d40630f", + "_tpl": "58d2912286f7744e27117493", + "parentId": "06a13b238954ae0882d222ad", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a32bd6010016df0badef7d", + "Name": "Gauss Cannos", + "Root": "853a0b363e5b62af800bae44", + "Items": [ + { + "_id": "853a0b363e5b62af800bae44", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "228340d9367cc3f992c1c418", + "_tpl": "5caf187cae92157c28402e43", + "parentId": "853a0b363e5b62af800bae44", + "slotId": "mod_muzzle" + }, + { + "_id": "44fa414a5356c552bdac45d5", + "_tpl": "5caf1109ae9215753c44119f", + "parentId": "853a0b363e5b62af800bae44", + "slotId": "mod_magazine" + }, + { + "_id": "9e42d37bfff65f1c032ec7c9", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "parentId": "853a0b363e5b62af800bae44", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a32e0c010016df0b423068", + "Name": "Kindness", + "Root": "3b49b6d94b41a9b96dbbbd11", + "Items": [ + { + "_id": "3b49b6d94b41a9b96dbbbd11", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "2cc239568c1f789917e63ac3", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "3b49b6d94b41a9b96dbbbd11", + "slotId": "mod_magazine" + }, + { + "_id": "bb13d72fda2ad26f371bf77c", + "_tpl": "5bfd36290db834001966869a", + "parentId": "3b49b6d94b41a9b96dbbbd11", + "slotId": "mod_stock" + }, + { + "_id": "7bacbca4b947701ebfafdcdf", + "_tpl": "5bfd4cd60db834001c38f095", + "parentId": "3b49b6d94b41a9b96dbbbd11", + "slotId": "mod_barrel" + }, + { + "_id": "4286db1cf7f67b70baeac118", + "_tpl": "5b3f7bf05acfc433000ecf6b", + "parentId": "3b49b6d94b41a9b96dbbbd11", + "slotId": "mod_mount" + }, + { + "_id": "5d5dbefa97da80a60b967066", + "_tpl": "5bbde41ed4351e003562b038", + "parentId": "bb13d72fda2ad26f371bf77c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "9aded58973bb2c492f81ada0", + "_tpl": "59bffc1f86f77435b128b872", + "parentId": "7bacbca4b947701ebfafdcdf", + "slotId": "mod_muzzle" + }, + { + "_id": "9c9d0a999feeaf82430005d2", + "_tpl": "5bbdb811d4351e45020113c7", + "parentId": "7bacbca4b947701ebfafdcdf", + "slotId": "mod_sight_rear" + }, + { + "_id": "44fe76222d1584e67f037e6b", + "_tpl": "59bffbb386f77435b379b9c2", + "parentId": "9aded58973bb2c492f81ada0", + "slotId": "mod_muzzle" + }, + { + "_id": "628bbcc0793e5aef945a2291", + "_tpl": "5b2389515acfc4771e1be0c0", + "parentId": "9c9d0a999feeaf82430005d2", + "slotId": "mod_scope" + }, + { + "_id": "e205a5b2f975ad6fa191f4c5", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "9c9d0a999feeaf82430005d2", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "469ec8dcd53917a2b191adf9", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "9c9d0a999feeaf82430005d2", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "e291068a3a1f9ebd2231a20e", + "_tpl": "5b3b99475acfc432ff4dcbee", + "parentId": "628bbcc0793e5aef945a2291", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "77fa8c1bcfcb27dc1c650843", + "_tpl": "57ae0171245977343c27bfcf", + "parentId": "628bbcc0793e5aef945a2291", + "slotId": "mod_scope_001", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "cc10d25cb0c6afb3aaff1423", + "_tpl": "5a33b2c9c4a282000c5a9511", + "parentId": "628bbcc0793e5aef945a2291", + "slotId": "mod_scope_002" + }, + { + "_id": "ba0544f9830e9a7f591baa23", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "cc10d25cb0c6afb3aaff1423", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a32eb0010016df0b50daf0", + "Name": "The Machine", + "Root": "5130a16ad7822d7b8802a84f", + "Items": [ + { + "_id": "5130a16ad7822d7b8802a84f", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "2f585fac1d5d5c797a3afa7e", + "_tpl": "615d8faecabb9b7ad90f4d5d", + "parentId": "5130a16ad7822d7b8802a84f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "ef8fd00fd0dcf3f0c62d6400", + "_tpl": "5c6592372e221600133e47d7", + "parentId": "5130a16ad7822d7b8802a84f", + "slotId": "mod_magazine" + }, + { + "_id": "4a6173709f331cde7e63da37", + "_tpl": "5bb20d53d4351e4502010a69", + "parentId": "5130a16ad7822d7b8802a84f", + "slotId": "mod_reciever" + }, + { + "_id": "48df3d4fe112a6a893e288f0", + "_tpl": "5bb20e58d4351e00320205d7", + "parentId": "5130a16ad7822d7b8802a84f", + "slotId": "mod_stock" + }, + { + "_id": "1bdd53600906eb4c27b77789", + "_tpl": "5b2240bf5acfc40dc528af69", + "parentId": "5130a16ad7822d7b8802a84f", + "slotId": "mod_charge" + }, + { + "_id": "c0a51802e9e97db1af2e8044", + "_tpl": "5b2389515acfc4771e1be0c0", + "parentId": "4a6173709f331cde7e63da37", + "slotId": "mod_scope" + }, + { + "_id": "6dba9d806fe4d8324c8dce40", + "_tpl": "5bb20dadd4351e00367faeff", + "parentId": "4a6173709f331cde7e63da37", + "slotId": "mod_barrel" + }, + { + "_id": "3fe9c6710abf2e0296b34868", + "_tpl": "5c6d11152e2216000f2003e7", + "parentId": "4a6173709f331cde7e63da37", + "slotId": "mod_handguard" + }, + { + "_id": "b50f6a81491bb79b6a00912d", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "parentId": "48df3d4fe112a6a893e288f0", + "slotId": "mod_stock_000" + }, + { + "_id": "4d80a1744e846d06b0a6c4e8", + "_tpl": "57c5ac0824597754771e88a9", + "parentId": "c0a51802e9e97db1af2e8044", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "985853148a5ba2b5a9fbf8dd", + "_tpl": "58d2664f86f7747fec5834f6", + "parentId": "c0a51802e9e97db1af2e8044", + "slotId": "mod_scope_001" + }, + { + "_id": "b8b1cd63abdd207ad4e538c8", + "_tpl": "58d39d3d86f77445bb794ae7", + "parentId": "c0a51802e9e97db1af2e8044", + "slotId": "mod_scope_002" + }, + { + "_id": "83e182e3d00100d7b170db3e", + "_tpl": "5c7e5f112e221600106f4ede", + "parentId": "6dba9d806fe4d8324c8dce40", + "slotId": "mod_muzzle" + }, + { + "_id": "6a08ef7be11c6391c9b77b07", + "_tpl": "5bb20dcad4351e3bac1212da", + "parentId": "6dba9d806fe4d8324c8dce40", + "slotId": "mod_gas_block" + }, + { + "_id": "21bc5d442836b270c1b920f5", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "3fe9c6710abf2e0296b34868", + "slotId": "mod_mount_000" + }, + { + "_id": "4798bb09fc2508dd8c006df9", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "3fe9c6710abf2e0296b34868", + "slotId": "mod_mount_001" + }, + { + "_id": "5ec92a0d601b89c9230c0d8b", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "3fe9c6710abf2e0296b34868", + "slotId": "mod_mount_002" + }, + { + "_id": "7886c958bb37809057ea44f2", + "_tpl": "5d10b49bd7ad1a1a560708b0", + "parentId": "3fe9c6710abf2e0296b34868", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "517460d87009ade13d1dcc0b", + "_tpl": "5649a2464bdc2d91118b45a8", + "parentId": "3fe9c6710abf2e0296b34868", + "slotId": "mod_scope" + }, + { + "_id": "c6d39ba6e2e0db25f5abad6a", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "3fe9c6710abf2e0296b34868", + "slotId": "mod_foregrip" + }, + { + "_id": "5fd8772510763d25ac2f4d2d", + "_tpl": "58d268fc86f774111273f8c2", + "parentId": "985853148a5ba2b5a9fbf8dd", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d030912f7cbbd57dcf967c45", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "b8b1cd63abdd207ad4e538c8", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "6e658c6a0be75476bc4a0734", + "_tpl": "5a34fe59c4a282000b1521a2", + "parentId": "83e182e3d00100d7b170db3e", + "slotId": "mod_muzzle" + }, + { + "_id": "7e7b2d8b844e60e3b1b60741", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "21bc5d442836b270c1b920f5", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "92b6f926ece76949522c6fd6", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "4798bb09fc2508dd8c006df9", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "5b4fab78857bfd9cf71c6316", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "5ec92a0d601b89c9230c0d8b", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "881ffcee8b02aa9da2b124c6", + "_tpl": "609bab8b455afd752b2e6138", + "parentId": "517460d87009ade13d1dcc0b", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "6172aece41b3cb140f5e1bb0", + "_tpl": "5c1cd46f2e22164bef5cfedb", + "parentId": "c6d39ba6e2e0db25f5abad6a", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a32f1e010016df0becef0a", + "Name": "The Night Terror", + "Root": "9ca97e800decb598ff781c13", + "Items": [ + { + "_id": "9ca97e800decb598ff781c13", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "89e61e8cc294f6f9832e64b8", + "_tpl": "5b237e425acfc4771e1be0b6", + "parentId": "9ca97e800decb598ff781c13", + "slotId": "mod_gas_block" + }, + { + "_id": "642b9deeee070198003c3483", + "_tpl": "615d8f5dd92c473c770212ef", + "parentId": "9ca97e800decb598ff781c13", + "slotId": "mod_muzzle" + }, + { + "_id": "6e2d6818aab103103b3e756d", + "_tpl": "5947f92f86f77427344a76b1", + "parentId": "9ca97e800decb598ff781c13", + "slotId": "mod_pistol_grip" + }, + { + "_id": "602081275e9ab2e8d46ed3ed", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "9ca97e800decb598ff781c13", + "slotId": "mod_reciever" + }, + { + "_id": "82ce8132572e649514edb1c0", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "9ca97e800decb598ff781c13", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "df05997be49546ce4ec17776", + "_tpl": "5649b2314bdc2d79388b4576", + "parentId": "9ca97e800decb598ff781c13", + "slotId": "mod_stock" + }, + { + "_id": "b33f838ba6d09d073a884847", + "_tpl": "55d482194bdc2d1d4e8b456b", + "parentId": "9ca97e800decb598ff781c13", + "slotId": "mod_magazine" + }, + { + "_id": "f585e37eacad172b98724ecb", + "_tpl": "5a7c74b3e899ef0014332c29", + "parentId": "9ca97e800decb598ff781c13", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "11bf331d82cd1a1a901091e4", + "_tpl": "5648ac824bdc2ded0b8b457d", + "parentId": "9ca97e800decb598ff781c13", + "slotId": "mod_charge" + }, + { + "_id": "44a3e594ccee45409831640e", + "_tpl": "5b4736b986f77405cb415c10", + "parentId": "89e61e8cc294f6f9832e64b8", + "slotId": "mod_mount_002" + }, + { + "_id": "f983192320ed1225364a1581", + "_tpl": "615d8f8567085e45ef1409ca", + "parentId": "642b9deeee070198003c3483", + "slotId": "mod_muzzle" + }, + { + "_id": "aedd50baaeeb101ad935f45f", + "_tpl": "5bb20e58d4351e00320205d7", + "parentId": "df05997be49546ce4ec17776", + "slotId": "mod_stock" + }, + { + "_id": "b436bef37d5456b2bfefa129", + "_tpl": "5ba36f85d4351e0085325c81", + "parentId": "f585e37eacad172b98724ecb", + "slotId": "mod_tactical" + }, + { + "_id": "ee1bfa4b02f0d2afc5a9d803", + "_tpl": "5c1bc5af2e221602b412949b", + "parentId": "44a3e594ccee45409831640e", + "slotId": "mod_foregrip" + }, + { + "_id": "b2589ba9e5e17b41528a5d2c", + "_tpl": "5fc2369685fd526b824a5713", + "parentId": "aedd50baaeeb101ad935f45f", + "slotId": "mod_stock_000" + } + ] + }, + { + "Id": "66a32fdb010016df0bf1ffe6", + "Name": "The Driver", + "Root": "7775e9b6486db603d10c66b5", + "Items": [ + { + "_id": "7775e9b6486db603d10c66b5", + "_tpl": "5a7ae0c351dfba0017554310", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "27f21fe2cc7f2995931e72bc", + "_tpl": "5a6b5e468dc32e001207faf5", + "parentId": "7775e9b6486db603d10c66b5", + "slotId": "mod_barrel" + }, + { + "_id": "f68023de53e0510177fa673c", + "_tpl": "5a7b4960e899ef197b331a2d", + "parentId": "7775e9b6486db603d10c66b5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "cd79ea03307b89be42331549", + "_tpl": "5a71e22f8dc32e00094b97f4", + "parentId": "7775e9b6486db603d10c66b5", + "slotId": "mod_reciever" + }, + { + "_id": "8d537007805f3e9d5066221c", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "7775e9b6486db603d10c66b5", + "slotId": "mod_magazine" + }, + { + "_id": "cfb1deaf6af98859ce6dbed3", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "7775e9b6486db603d10c66b5", + "slotId": "mod_tactical", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "06741df7d578632e7766cd98", + "_tpl": "5a7ad55551dfba0015068f42", + "parentId": "7775e9b6486db603d10c66b5", + "slotId": "mod_mount" + }, + { + "_id": "53e0f2fd60bcb29cc68f30ea", + "_tpl": "5d1c702ad7ad1a632267f429", + "parentId": "7775e9b6486db603d10c66b5", + "slotId": "mod_stock" + }, + { + "_id": "c1c39960b89e6a7e185d29b0", + "_tpl": "5a33a8ebc4a282000c5a950d", + "parentId": "27f21fe2cc7f2995931e72bc", + "slotId": "mod_muzzle" + }, + { + "_id": "a2437e85b4bc16db3a3ec5e0", + "_tpl": "5a7d912f159bd400165484f3", + "parentId": "cd79ea03307b89be42331549", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "565309414e1a18b87e7fe69b", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "cd79ea03307b89be42331549", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e19e04db84300fc9010f38ab", + "_tpl": "5a32aa8bc4a2826c6e06d737", + "parentId": "cd79ea03307b89be42331549", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "3139a28a154fd342f811f7cf", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "06741df7d578632e7766cd98", + "slotId": "mod_scope" + }, + { + "_id": "b5089b5d56f6880d2744bf0a", + "_tpl": "615d8d878004cc50514c3233", + "parentId": "c1c39960b89e6a7e185d29b0", + "slotId": "mod_scope" + }, + { + "_id": "7743098de18e8fc749590405", + "_tpl": "616442e4faa1272e43152193", + "parentId": "b5089b5d56f6880d2744bf0a", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5712b4e3ba146ae0fe0afed1", + "_tpl": "616442e4faa1272e43152193", + "parentId": "3139a28a154fd342f811f7cf", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a330af010016df0b8bac7c", + "Name": "The Orion", + "Root": "3b90ab83f39dc422bbdfc479", + "Items": [ + { + "_id": "3b90ab83f39dc422bbdfc479", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "82922cbdb2c58fc01f67acff", + "_tpl": "5a351711c4a282000b1521a4", + "parentId": "3b90ab83f39dc422bbdfc479", + "slotId": "mod_magazine" + }, + { + "_id": "80feb53881bb318e12fff7ee", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "3b90ab83f39dc422bbdfc479", + "slotId": "mod_reciever" + }, + { + "_id": "640e6feb9e553d49799ed72e", + "_tpl": "5926c32286f774616e42de99", + "parentId": "3b90ab83f39dc422bbdfc479", + "slotId": "mod_charge" + }, + { + "_id": "0603424a2b4315b6e95a21eb", + "_tpl": "5d010d1cd7ad1a59283b1ce7", + "parentId": "80feb53881bb318e12fff7ee", + "slotId": "mod_handguard" + }, + { + "_id": "3fc554367df6ce41fa6a224d", + "_tpl": "5c07c9660db834001a66b588", + "parentId": "80feb53881bb318e12fff7ee", + "slotId": "mod_stock" + }, + { + "_id": "e43e203c56edb2621aa82c56", + "_tpl": "5c0000c00db834001a6697fc", + "parentId": "80feb53881bb318e12fff7ee", + "slotId": "mod_muzzle" + }, + { + "_id": "5a7be883dbab53cc6eed9974", + "_tpl": "5a966ec8a2750c00171b3f36", + "parentId": "80feb53881bb318e12fff7ee", + "slotId": "mod_mount" + }, + { + "_id": "9430e8df66df211b3cf19e88", + "_tpl": "655df24fdf80b12750626d0a", + "parentId": "0603424a2b4315b6e95a21eb", + "slotId": "mod_foregrip" + }, + { + "_id": "7155b5c279908d3a9fd3d8bd", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "0603424a2b4315b6e95a21eb", + "slotId": "mod_tactical_000", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "e1063999aa0ff67c0197ad83", + "_tpl": "5b3a337e5acfc4704b4a19a0", + "parentId": "0603424a2b4315b6e95a21eb", + "slotId": "mod_tactical_001", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "44dbcd8dfe5aabad25962f8e", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "0603424a2b4315b6e95a21eb", + "slotId": "mod_tactical_002", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "ea65a255b62815a37044150f", + "_tpl": "5cc9c20cd7f00c001336c65d", + "parentId": "0603424a2b4315b6e95a21eb", + "slotId": "mod_tactical_003", + "upd": { + "Light": { + "IsActive": true, + "SelectedMode": 0 + } + } + }, + { + "_id": "43699b1fe2fcdf8a335895fc", + "_tpl": "5a32a064c4a28200741e22de", + "parentId": "e43e203c56edb2621aa82c56", + "slotId": "mod_muzzle" + }, + { + "_id": "6087b58e2c1691f1a3e3de07", + "_tpl": "61713cc4d8e3106d9806c109", + "parentId": "5a7be883dbab53cc6eed9974", + "slotId": "mod_scope" + }, + { + "_id": "965c699936322ebfc017619c", + "_tpl": "61714eec290d254f5e6b2ffc", + "parentId": "6087b58e2c1691f1a3e3de07", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f7f41575113ae30d4f972d80", + "_tpl": "61714b2467085e45ef140b2c", + "parentId": "6087b58e2c1691f1a3e3de07", + "slotId": "mod_scope_001" + }, + { + "_id": "b39a51b4b3bd34a721bc681f", + "_tpl": "61714b2467085e45ef140b2c", + "parentId": "6087b58e2c1691f1a3e3de07", + "slotId": "mod_scope_002" + } + ] + } + ], + [ // base + { + "Id": "66a092cb01001471dcf924fb", + "Name": "adar", + "Root": "a6dc4b43be3d97c5983a503a", + "Items": [ + { + "_id": "a6dc4b43be3d97c5983a503a", + "_tpl": "5c07c60e0db834002330051f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "9f7e27506745e1f5e457bacb", + "_tpl": "5c0e2ff6d174af02a1659d4a", + "parentId": "a6dc4b43be3d97c5983a503a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "0420a7d24e7761ffa462d167", + "_tpl": "5aaa5e60e5b5b000140293d6", + "parentId": "a6dc4b43be3d97c5983a503a", + "slotId": "mod_magazine" + }, + { + "_id": "2f7e0cb87e0b0307365d8d25", + "_tpl": "5c0e2f26d174af02a9625114", + "parentId": "a6dc4b43be3d97c5983a503a", + "slotId": "mod_reciever" + }, + { + "_id": "778ec07f1fe22917c729f8d4", + "_tpl": "5c0faeddd174af02a962601f", + "parentId": "a6dc4b43be3d97c5983a503a", + "slotId": "mod_stock" + }, + { + "_id": "fbb209f0dbdb25326b9dba9e", + "_tpl": "5c0faf68d174af02a96260b8", + "parentId": "a6dc4b43be3d97c5983a503a", + "slotId": "mod_charge" + }, + { + "_id": "bef03b43eece3373394d857b", + "_tpl": "5c0e2f94d174af029f650d56", + "parentId": "2f7e0cb87e0b0307365d8d25", + "slotId": "mod_barrel" + }, + { + "_id": "5013c46f4f52aa12922e44c6", + "_tpl": "5c0e2f5cd174af02a012cfc9", + "parentId": "2f7e0cb87e0b0307365d8d25", + "slotId": "mod_handguard" + }, + { + "_id": "c70964509b242e627ce39044", + "_tpl": "5c0fafb6d174af02a96260ba", + "parentId": "bef03b43eece3373394d857b", + "slotId": "mod_muzzle" + }, + { + "_id": "6e93ba1bdd128fe4a70da9f7", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "bef03b43eece3373394d857b", + "slotId": "mod_gas_block" + } + ] + }, + { + "Id": "66a092d201001471dced8f27", + "Name": "9a-91", + "Root": "b8112e86afc2e0645834d5e0", + "Items": [ + { + "_id": "b8112e86afc2e0645834d5e0", + "_tpl": "644674a13d52156624001fbc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "743135827680747f54f29c6e", + "_tpl": "6450ec2e7da7133e5a09ca96", + "parentId": "b8112e86afc2e0645834d5e0", + "slotId": "mod_magazine" + }, + { + "_id": "04d3cbbe77089cbbc03aefc0", + "_tpl": "6450f21a3d52156624001fcf", + "parentId": "b8112e86afc2e0645834d5e0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "437154629db4d059977c224d", + "_tpl": "6451167ad4928d46d30be3fd", + "parentId": "b8112e86afc2e0645834d5e0", + "slotId": "mod_stock_000" + }, + { + "_id": "3221a26acc03381ca35c2282", + "_tpl": "645122f6d4928d46d30be3ff", + "parentId": "b8112e86afc2e0645834d5e0", + "slotId": "mod_barrel" + }, + { + "_id": "72f2e47f6499eebbb2eb1820", + "_tpl": "64527a263d52156624001fd7", + "parentId": "3221a26acc03381ca35c2282", + "slotId": "mod_muzzle" + }, + { + "_id": "31bc5022db47a96ab94f04d1", + "_tpl": "644675573d52156624001fc9", + "parentId": "3221a26acc03381ca35c2282", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a092d901001471dc4dc230", + "Name": "VSK-94", + "Root": "2addc3c3bac471271934dfa9", + "Items": [ + { + "_id": "2addc3c3bac471271934dfa9", + "_tpl": "645e0c6b3b381ede770e1cc9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "32255713c400596c5ca388f5", + "_tpl": "6450ec2e7da7133e5a09ca96", + "parentId": "2addc3c3bac471271934dfa9", + "slotId": "mod_magazine" + }, + { + "_id": "5458471c78bfbb81ba757ac7", + "_tpl": "6452519e3d52156624001fd5", + "parentId": "2addc3c3bac471271934dfa9", + "slotId": "mod_stock" + }, + { + "_id": "15d1eb8748083479c60244fa", + "_tpl": "645123013d52156624001fd1", + "parentId": "2addc3c3bac471271934dfa9", + "slotId": "mod_barrel" + }, + { + "_id": "58ddafd38d6ab13fbe70240f", + "_tpl": "64527a263d52156624001fd7", + "parentId": "15d1eb8748083479c60244fa", + "slotId": "mod_muzzle" + }, + { + "_id": "f89c3a9510e4d17e508a2396", + "_tpl": "6448f2f6d4928d46d30be3f6", + "parentId": "15d1eb8748083479c60244fa", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a092e001001471dc0e7de8", + "Name": "RFB", + "Root": "830bbd2177c3887c704691c3", + "Items": [ + { + "_id": "830bbd2177c3887c704691c3", + "_tpl": "5f2a9575926fd9352339381f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "43d44204fc9c4f2feecf556f", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "830bbd2177c3887c704691c3", + "slotId": "mod_magazine" + }, + { + "_id": "8aa2544ce9ec1cfeb152df4c", + "_tpl": "5f2aa46b878ef416f538b567", + "parentId": "830bbd2177c3887c704691c3", + "slotId": "mod_barrel" + }, + { + "_id": "015cf76ac77cfa657ceffe0c", + "_tpl": "5f2aa47a200e2c0ee46efa71", + "parentId": "830bbd2177c3887c704691c3", + "slotId": "mod_handguard" + }, + { + "_id": "b2b0972ed445864c2abd6f72", + "_tpl": "5f2aa49f9b44de6b1b4e68d4", + "parentId": "830bbd2177c3887c704691c3", + "slotId": "mod_mount" + }, + { + "_id": "71f119db7b8a9c096eb306c6", + "_tpl": "5f2aa4464b50c14bcf07acdb", + "parentId": "8aa2544ce9ec1cfeb152df4c", + "slotId": "mod_muzzle" + }, + { + "_id": "d659a348d63164305d95b1e0", + "_tpl": "5f2aa493cd375f14e15eea72", + "parentId": "015cf76ac77cfa657ceffe0c", + "slotId": "mod_mount_000" + } + ] + }, + { + "Id": "66a092e801001471dc13d72e", + "Name": "TX-15", + "Root": "a514e546f77e8009737a466d", + "Items": [ + { + "_id": "a514e546f77e8009737a466d", + "_tpl": "5d43021ca4b9362eab4b5e25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "446b08251ff420921559e787", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "a514e546f77e8009737a466d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "54eccbc868445c1a39ed6a54", + "_tpl": "5aaa5dfee5b5b000140293d3", + "parentId": "a514e546f77e8009737a466d", + "slotId": "mod_magazine" + }, + { + "_id": "29cba4d5f4f3baf251a73f8b", + "_tpl": "5d4405aaa4b9361e6a4e6bd3", + "parentId": "a514e546f77e8009737a466d", + "slotId": "mod_reciever" + }, + { + "_id": "6aa747d3d439526351d52bfa", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "a514e546f77e8009737a466d", + "slotId": "mod_stock" + }, + { + "_id": "c57b7b34e2baf3685054b775", + "_tpl": "5d44334ba4b9362b346d1948", + "parentId": "a514e546f77e8009737a466d", + "slotId": "mod_charge" + }, + { + "_id": "5b1c5bc8099fc127f6ad183e", + "_tpl": "5d440b93a4b9364276578d4b", + "parentId": "29cba4d5f4f3baf251a73f8b", + "slotId": "mod_barrel" + }, + { + "_id": "6f38de7470bbeda072b7c206", + "_tpl": "5d4405f0a4b9361e6a4e6bd9", + "parentId": "29cba4d5f4f3baf251a73f8b", + "slotId": "mod_handguard" + }, + { + "_id": "a5a336b210764b48e25c8b31", + "_tpl": "5d4406a8a4b9361e4f6eb8b7", + "parentId": "6aa747d3d439526351d52bfa", + "slotId": "mod_stock_000" + }, + { + "_id": "ac0934dbb828906acb3af80a", + "_tpl": "5d440625a4b9361eec4ae6c5", + "parentId": "5b1c5bc8099fc127f6ad183e", + "slotId": "mod_muzzle" + }, + { + "_id": "6c41b4094803da1a93e3fb2e", + "_tpl": "56eabcd4d2720b66698b4574", + "parentId": "5b1c5bc8099fc127f6ad183e", + "slotId": "mod_gas_block" + }, + { + "_id": "b7aac85f7616e89a1d9e6faa", + "_tpl": "5b7be47f5acfc400170e2dd2", + "parentId": "6f38de7470bbeda072b7c206", + "slotId": "mod_mount_004" + }, + { + "_id": "ef24d48b61a3c08b5a52b7a9", + "_tpl": "5b7be4895acfc400170e2dd5", + "parentId": "6f38de7470bbeda072b7c206", + "slotId": "mod_foregrip" + }, + { + "_id": "5a87d525347c0f7b270ec092", + "_tpl": "5d44064fa4b9361e4f6eb8b5", + "parentId": "ac0934dbb828906acb3af80a", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a092f101001471dc2a438e", + "Name": "OP-SKS", + "Root": "40c298b3ad61e964bd9b21ad", + "Items": [ + { + "_id": "40c298b3ad61e964bd9b21ad", + "_tpl": "587e02ff24597743df3deaeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5b4dc49336285d17c7d51934", + "_tpl": "587e0531245977466077a0f7", + "parentId": "40c298b3ad61e964bd9b21ad", + "slotId": "mod_stock" + }, + { + "_id": "6bc4255e34c3889f7e009706", + "_tpl": "634eff66517ccc8a960fc735", + "parentId": "40c298b3ad61e964bd9b21ad", + "slotId": "mod_barrel" + }, + { + "_id": "a23303e70bd69a8bd9d48678", + "_tpl": "587df3a12459772c28142567", + "parentId": "40c298b3ad61e964bd9b21ad", + "slotId": "mod_magazine" + }, + { + "_id": "19eebd48d503495a29fbc9e9", + "_tpl": "634f06262e5def262d0b30ca", + "parentId": "40c298b3ad61e964bd9b21ad", + "slotId": "mod_reciever" + }, + { + "_id": "b307c25605b21a6e4281442d", + "_tpl": "634f05a21f9f536910079b56", + "parentId": "6bc4255e34c3889f7e009706", + "slotId": "mod_mount_000" + }, + { + "_id": "d923dbd4c9126a50a4b64e83", + "_tpl": "634f036a517ccc8a960fc746", + "parentId": "b307c25605b21a6e4281442d", + "slotId": "mod_gas_block" + }, + { + "_id": "80d9d0e87037938f107a071a", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "b307c25605b21a6e4281442d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "2580d77c3ef2e65d2306376c", + "_tpl": "634f03d40384a3ba4f06f874", + "parentId": "d923dbd4c9126a50a4b64e83", + "slotId": "mod_mount_000" + } + ] + }, + { + "Id": "66a092fa01001471dc81aa1f", + "Name": "VPO-101", + "Root": "59e992300843489498476c9c", + "Items": [ + { + "_id": "59e992300843489498476c9c", + "_tpl": "5c501a4d2e221602b412b540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "44a71ee92a3077627c2edda7", + "_tpl": "5c5039be2e221602b177c9ff", + "parentId": "59e992300843489498476c9c", + "slotId": "mod_gas_block" + }, + { + "_id": "7942c58e66864b733bd49b9f", + "_tpl": "5c503d0a2e221602b542b7ef", + "parentId": "59e992300843489498476c9c", + "slotId": "mod_reciever" + }, + { + "_id": "19efe9d900c4394eba85b45c", + "_tpl": "5c503b1c2e221602b21d6e9d", + "parentId": "59e992300843489498476c9c", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f27f03d34be1835e32e6f763", + "_tpl": "5c503af12e221602b177ca02", + "parentId": "59e992300843489498476c9c", + "slotId": "mod_stock" + }, + { + "_id": "2f1869dbf55d2c156cae0590", + "_tpl": "5c503ac82e221602b21d6e9a", + "parentId": "59e992300843489498476c9c", + "slotId": "mod_magazine" + } + ] + }, + { + "Id": "66a0930301001471dc1af221", + "Name": "VPO-136", + "Root": "3286976774942375c9b18aa5", + "Items": [ + { + "_id": "3286976774942375c9b18aa5", + "_tpl": "59e6152586f77473dc057aa1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c0503b0f36a40bb1f356a42", + "_tpl": "59e649f986f77411d949b246", + "parentId": "3286976774942375c9b18aa5", + "slotId": "mod_gas_block" + }, + { + "_id": "4d75fe44e3530fbdf94ed912", + "_tpl": "59e61eb386f77440d64f5daf", + "parentId": "3286976774942375c9b18aa5", + "slotId": "mod_muzzle" + }, + { + "_id": "bcf2168a6cb145d979597080", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "3286976774942375c9b18aa5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "67dfe8f9af9ec9b644a597c6", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "3286976774942375c9b18aa5", + "slotId": "mod_reciever" + }, + { + "_id": "552662fed3877b74a391aaea", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "3286976774942375c9b18aa5", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "3aceb3c929e05d20e57518ff", + "_tpl": "59e6227d86f77440d64f5dc2", + "parentId": "3286976774942375c9b18aa5", + "slotId": "mod_stock" + }, + { + "_id": "f62fc8f90b9c0c7d9794c3f8", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "3286976774942375c9b18aa5", + "slotId": "mod_magazine" + }, + { + "_id": "fa1a4a5fc6f2e5703cdc9a3c", + "_tpl": "59e6284f86f77440d569536f", + "parentId": "5c0503b0f36a40bb1f356a42", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a0930901001471dc5a63e5", + "Name": "VPO-209", + "Root": "c0e89ee4d1508e4a2fb8afef", + "Items": [ + { + "_id": "c0e89ee4d1508e4a2fb8afef", + "_tpl": "59e6687d86f77411d949b251", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "c25a179de185b9a0eee3144e", + "_tpl": "59e649f986f77411d949b246", + "parentId": "c0e89ee4d1508e4a2fb8afef", + "slotId": "mod_gas_block" + }, + { + "_id": "5b72d0168fea397fe175fdc1", + "_tpl": "59e8a00d86f7742ad93b569c", + "parentId": "c0e89ee4d1508e4a2fb8afef", + "slotId": "mod_muzzle" + }, + { + "_id": "184b1627dd5e067c9b53f4df", + "_tpl": "59e6318286f77444dd62c4cc", + "parentId": "c0e89ee4d1508e4a2fb8afef", + "slotId": "mod_pistol_grip" + }, + { + "_id": "013843fb48b35fc8b71ad9dd", + "_tpl": "59e6449086f7746c9f75e822", + "parentId": "c0e89ee4d1508e4a2fb8afef", + "slotId": "mod_reciever" + }, + { + "_id": "44a8f78d8ec17328c9f329cd", + "_tpl": "59e8977386f77415a553c453", + "parentId": "c0e89ee4d1508e4a2fb8afef", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "af0c71cfefd71bc6488de6af", + "_tpl": "59e89d0986f77427600d226e", + "parentId": "c0e89ee4d1508e4a2fb8afef", + "slotId": "mod_stock" + }, + { + "_id": "306f226e376dd9296b92cfbb", + "_tpl": "5b1fd4e35acfc40018633c39", + "parentId": "c0e89ee4d1508e4a2fb8afef", + "slotId": "mod_magazine" + }, + { + "_id": "6fe9ba0861e7b1333e7918e9", + "_tpl": "59e898ee86f77427614bd225", + "parentId": "c25a179de185b9a0eee3144e", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a0931001001471dc1fcef6", + "Name": "AK-545", + "Root": "f7a173bcbd4de311b51e620a", + "Items": [ + { + "_id": "f7a173bcbd4de311b51e620a", + "_tpl": "628b9c37a733087d0d7fe84b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6ceb85ef5a32997a0525321d", + "_tpl": "628b8d83717774443b15e248", + "parentId": "f7a173bcbd4de311b51e620a", + "slotId": "mod_gas_block" + }, + { + "_id": "ea36268b9d6e9c06e7c6e8c0", + "_tpl": "5943eeeb86f77412d6384f6b", + "parentId": "f7a173bcbd4de311b51e620a", + "slotId": "mod_muzzle" + }, + { + "_id": "fe65ea801245191921a44d6f", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "f7a173bcbd4de311b51e620a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "90af051291dfb1834eb16639", + "_tpl": "628b9a40717774443b15e9f2", + "parentId": "f7a173bcbd4de311b51e620a", + "slotId": "mod_stock_000" + }, + { + "_id": "e523fcfc2639ae7fb4e46bb5", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "f7a173bcbd4de311b51e620a", + "slotId": "mod_magazine" + }, + { + "_id": "8a8d295a17cacbcc536fe602", + "_tpl": "628b916469015a4e1711ed8d", + "parentId": "6ceb85ef5a32997a0525321d", + "slotId": "mod_handguard" + }, + { + "_id": "5c354b3758593b176eda7cb6", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "90af051291dfb1834eb16639", + "slotId": "mod_stock" + }, + { + "_id": "025d999c1a64ab84f518566f", + "_tpl": "628b9be6cff66b70c002b14c", + "parentId": "8a8d295a17cacbcc536fe602", + "slotId": "mod_reciever" + }, + { + "_id": "82e4cabe4ed71dad894ab125", + "_tpl": "628b9471078f94059a4b9bfb", + "parentId": "025d999c1a64ab84f518566f", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0931701001471dc078b39", + "Name": "SKS", + "Root": "ca6413c495b19adad07de311", + "Items": [ + { + "_id": "ca6413c495b19adad07de311", + "_tpl": "574d967124597745970e7c94", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "993f6888d4ea92e09424fcde", + "_tpl": "574dad8024597745964bf05c", + "parentId": "ca6413c495b19adad07de311", + "slotId": "mod_stock" + }, + { + "_id": "4de8f416eebb201d6a75cfa0", + "_tpl": "634f02331f9f536910079b51", + "parentId": "ca6413c495b19adad07de311", + "slotId": "mod_barrel" + }, + { + "_id": "e65307c188a3c7ce2271bd03", + "_tpl": "587df3a12459772c28142567", + "parentId": "ca6413c495b19adad07de311", + "slotId": "mod_magazine" + }, + { + "_id": "c1d1eb2474a36e0d28d5e3b6", + "_tpl": "634f05ca517ccc8a960fc748", + "parentId": "ca6413c495b19adad07de311", + "slotId": "mod_reciever" + }, + { + "_id": "815676bb2100efd9938010ed", + "_tpl": "634f04d82e5def262d0b30c6", + "parentId": "4de8f416eebb201d6a75cfa0", + "slotId": "mod_mount_000" + }, + { + "_id": "1b06bd664eb0af6e9c20aa20", + "_tpl": "634f02d7517ccc8a960fc744", + "parentId": "815676bb2100efd9938010ed", + "slotId": "mod_gas_block" + }, + { + "_id": "8ac89bb97325b4face16e40f", + "_tpl": "574db213245977459a2f3f5d", + "parentId": "815676bb2100efd9938010ed", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7527b187e0a579b9899a58d9", + "_tpl": "634f08a21f9f536910079b5a", + "parentId": "1b06bd664eb0af6e9c20aa20", + "slotId": "mod_mount_000" + } + ] + }, + { + "Id": "66a0931d01001471dc8863fa", + "Name": "AK-545 LONG", + "Root": "0a9a54ff9b3447342f0ae0a9", + "Items": [ + { + "_id": "0a9a54ff9b3447342f0ae0a9", + "_tpl": "628b5638ad252a16da6dd245", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "14bc88764f2d348aa71e6202", + "_tpl": "628b8d83717774443b15e248", + "parentId": "0a9a54ff9b3447342f0ae0a9", + "slotId": "mod_gas_block" + }, + { + "_id": "355529ffe9e71126248ae431", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "0a9a54ff9b3447342f0ae0a9", + "slotId": "mod_muzzle" + }, + { + "_id": "e7f34475543f6e84abe73a0c", + "_tpl": "5cf50850d7f00c056e24104c", + "parentId": "0a9a54ff9b3447342f0ae0a9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "8ab8b8845412257e99e8c094", + "_tpl": "628b9a40717774443b15e9f2", + "parentId": "0a9a54ff9b3447342f0ae0a9", + "slotId": "mod_stock_000" + }, + { + "_id": "0ecdca099a2dcd7d2adbbbc4", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "0a9a54ff9b3447342f0ae0a9", + "slotId": "mod_magazine" + }, + { + "_id": "e239d853c653976646e67c67", + "_tpl": "628b916469015a4e1711ed8d", + "parentId": "14bc88764f2d348aa71e6202", + "slotId": "mod_handguard" + }, + { + "_id": "d9682000af2cfc6b1f43986b", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "8ab8b8845412257e99e8c094", + "slotId": "mod_stock" + }, + { + "_id": "b725944bd60e047060170c0c", + "_tpl": "628b9be6cff66b70c002b14c", + "parentId": "e239d853c653976646e67c67", + "slotId": "mod_reciever" + }, + { + "_id": "50c4a14aa1f612b91103196f", + "_tpl": "628b9471078f94059a4b9bfb", + "parentId": "b725944bd60e047060170c0c", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0932401001471dcb611bd", + "Name": "SVT-40", + "Root": "7cf7dd9bb67c0b962424193c", + "Items": [ + { + "_id": "7cf7dd9bb67c0b962424193c", + "_tpl": "643ea5b23db6f9f57107d9fd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "89f18b339703ea12e1697d56", + "_tpl": "6410745d5dd49d77bd078485", + "parentId": "7cf7dd9bb67c0b962424193c", + "slotId": "mod_stock" + }, + { + "_id": "194b32393ee1238bfb38c555", + "_tpl": "6410758c857473525b08bb77", + "parentId": "7cf7dd9bb67c0b962424193c", + "slotId": "mod_barrel" + }, + { + "_id": "ccc8c5949418371ce9ae3c08", + "_tpl": "6422e1ea3c0f06190302161a", + "parentId": "7cf7dd9bb67c0b962424193c", + "slotId": "mod_magazine" + }, + { + "_id": "5a5ea0bd18ead8342bad5a31", + "_tpl": "64119cdbdcf48d656f0aa272", + "parentId": "7cf7dd9bb67c0b962424193c", + "slotId": "mod_reciever" + }, + { + "_id": "7aefc042ce19e5441633ebdd", + "_tpl": "64119d1f2c6d6f921a0929f8", + "parentId": "194b32393ee1238bfb38c555", + "slotId": "mod_muzzle" + }, + { + "_id": "d2fef830f240e09b15e8a896", + "_tpl": "64119d90dcf48d656f0aa275", + "parentId": "194b32393ee1238bfb38c555", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c3313b2914913782c095439e", + "_tpl": "64119d672c6d6f921a0929fb", + "parentId": "7aefc042ce19e5441633ebdd", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0932901001471dc5ec6f8", + "Name": "AVT-40", + "Root": "77dffffaa049992c1ef469d2", + "Items": [ + { + "_id": "77dffffaa049992c1ef469d2", + "_tpl": "6410733d5dd49d77bd07847e", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "d031a875f046aa1ab8d71246", + "_tpl": "6410745d5dd49d77bd078485", + "parentId": "77dffffaa049992c1ef469d2", + "slotId": "mod_stock" + }, + { + "_id": "ad1f3a2d3129e7bffa12504e", + "_tpl": "6410758c857473525b08bb77", + "parentId": "77dffffaa049992c1ef469d2", + "slotId": "mod_barrel" + }, + { + "_id": "ca9688cce93f3e59f60a5324", + "_tpl": "641074a07fd350b98c0b3f96", + "parentId": "77dffffaa049992c1ef469d2", + "slotId": "mod_magazine" + }, + { + "_id": "1482599c621440c4c88f4b9c", + "_tpl": "64119cdbdcf48d656f0aa272", + "parentId": "77dffffaa049992c1ef469d2", + "slotId": "mod_reciever" + }, + { + "_id": "fa081e942e8a71fb9f9e3f86", + "_tpl": "64119d1f2c6d6f921a0929f8", + "parentId": "ad1f3a2d3129e7bffa12504e", + "slotId": "mod_muzzle" + }, + { + "_id": "b30c44aa6429419ffe70d3af", + "_tpl": "64119d90dcf48d656f0aa275", + "parentId": "ad1f3a2d3129e7bffa12504e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e85a2547558eaea301aad499", + "_tpl": "64119d672c6d6f921a0929fb", + "parentId": "fa081e942e8a71fb9f9e3f86", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0932f01001471dcbac7aa", + "Name": "ASH-12", + "Root": "978babf29bfe9164185b7e28", + "Items": [ + { + "_id": "978babf29bfe9164185b7e28", + "_tpl": "5cadfbf7ae92152ac412eeef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "48daafc2be59cca63f7b55d4", + "_tpl": "5caf17c9ae92150b30006be1", + "parentId": "978babf29bfe9164185b7e28", + "slotId": "mod_muzzle" + }, + { + "_id": "6be5a566e00634ad486f252e", + "_tpl": "5caf1041ae92157c28402e3f", + "parentId": "978babf29bfe9164185b7e28", + "slotId": "mod_magazine" + }, + { + "_id": "dc9090a9fb4ecc584578c327", + "_tpl": "5caf16a2ae92152ac412efbc", + "parentId": "978babf29bfe9164185b7e28", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "41d6526d6afa82136d8ec43f", + "_tpl": "5cdaa99dd7f00c002412d0b2", + "parentId": "978babf29bfe9164185b7e28", + "slotId": "mod_handguard" + }, + { + "_id": "2c62cc99e0df0e5cd0710551", + "_tpl": "5caf1691ae92152ac412efb9", + "parentId": "978babf29bfe9164185b7e28", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f293124788764747fe2199de", + "_tpl": "5cda9bcfd7f00c0c0b53e900", + "parentId": "41d6526d6afa82136d8ec43f", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a0933601001471dc90aae3", + "Name": "AS VAL", + "Root": "265f5f80e7cc9cef7cac8cfa", + "Items": [ + { + "_id": "67d4a6765790ad5f60037eb3", + "_tpl": "57c44b372459772d2b39b8ce", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "5841482e2459775a050cdda9", + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 5, + "y": 3, + "r": "Horizontal" + } + }, + { + "_id": "67d4a6765790ad5f60037eb4", + "_tpl": "57c44dd02459772d2e0ae249", + "parentId": "67d4a6765790ad5f60037eb3", + "slotId": "mod_muzzle", + "upd": {} + }, + { + "_id": "67d4a6765790ad5f60037eb5", + "_tpl": "57c44e7b2459772d28133248", + "parentId": "67d4a6765790ad5f60037eb4", + "slotId": "mod_sight_rear", + "upd": {} + }, + { + "_id": "67d4a6765790ad5f60037eb6", + "_tpl": "57c44f4f2459772d2c627113", + "parentId": "67d4a6765790ad5f60037eb3", + "slotId": "mod_reciever", + "upd": {} + }, + { + "_id": "67d4a6765790ad5f60037eb7", + "_tpl": "57838f9f2459774a150289a0", + "parentId": "67d4a6765790ad5f60037eb3", + "slotId": "mod_magazine", + "upd": {} + }, + { + "_id": "67d4a6765790ad5f60037eb8", + "_tpl": "57c44fa82459772d2d75e415", + "parentId": "67d4a6765790ad5f60037eb3", + "slotId": "mod_pistol_grip", + "upd": {} + }, + { + "_id": "67d4a6765790ad5f60037eb9", + "_tpl": "57c450252459772d28133253", + "parentId": "67d4a6765790ad5f60037eb3", + "slotId": "mod_stock", + "upd": {} + }, + { + "_id": "67d4a6765790ad5f60037eba", + "_tpl": "651178336cad06c37c049eb4", + "parentId": "67d4a6765790ad5f60037eb3", + "slotId": "mod_handguard", + "upd": {} + }, + ] + }, + { + "Id": "66a0933f01001471dc301c4f", + "Name": "MUTANT", + "Root": "89c576a49ba389f7100bbf68", + "Items": [ + { + "_id": "89c576a49ba389f7100bbf68", + "_tpl": "606587252535c57a13424cfd", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b46b33a2f8ef3a1ba5d4c60b", + "_tpl": "55802f5d4bdc2dac148b458f", + "parentId": "89c576a49ba389f7100bbf68", + "slotId": "mod_pistol_grip" + }, + { + "_id": "e978daaff86d94a029e983d8", + "_tpl": "59d6272486f77466146386ff", + "parentId": "89c576a49ba389f7100bbf68", + "slotId": "mod_magazine" + }, + { + "_id": "2847b253bbaadfc05b492fba", + "_tpl": "606587a88900dc2d9a55b659", + "parentId": "89c576a49ba389f7100bbf68", + "slotId": "mod_reciever" + }, + { + "_id": "ab87f6dc7fb8bfc7efc95ebf", + "_tpl": "606587e18900dc2d9a55b65f", + "parentId": "89c576a49ba389f7100bbf68", + "slotId": "mod_stock_001" + }, + { + "_id": "da1a4b65eb1639c4d2b4bbba", + "_tpl": "606587bd6d0bd7580617bacc", + "parentId": "89c576a49ba389f7100bbf68", + "slotId": "mod_charge" + }, + { + "_id": "719aab56287fbf614f92a8bc", + "_tpl": "60658776f2cb2e02a42ace2b", + "parentId": "2847b253bbaadfc05b492fba", + "slotId": "mod_barrel" + }, + { + "_id": "2e2bd89a104105b0a83faa3b", + "_tpl": "6065880c132d4d12c81fd8da", + "parentId": "2847b253bbaadfc05b492fba", + "slotId": "mod_handguard" + }, + { + "_id": "c2488faebb8ced7bf9602458", + "_tpl": "5bc09a18d4351e003562b68e", + "parentId": "2847b253bbaadfc05b492fba", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "353d4caeb7853ccae8368bf8", + "_tpl": "606587d11246154cad35d635", + "parentId": "ab87f6dc7fb8bfc7efc95ebf", + "slotId": "mod_stock_000" + }, + { + "_id": "3eae1043d9d348d36c25eb28", + "_tpl": "6065c6e7132d4d12c81fd8e1", + "parentId": "719aab56287fbf614f92a8bc", + "slotId": "mod_muzzle" + }, + { + "_id": "ba492d057e528af49704b698", + "_tpl": "6065dc8a132d4d12c81fd8e3", + "parentId": "719aab56287fbf614f92a8bc", + "slotId": "mod_gas_block" + }, + { + "_id": "04510e017a32e7a12b688416", + "_tpl": "5bc09a30d4351e00367fb7c8", + "parentId": "2e2bd89a104105b0a83faa3b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0934501001471dc057cd6", + "Name": "M4A1", + "Root": "7212360b0477f089f7e45173", + "Items": [ + { + "_id": "7212360b0477f089f7e45173", + "_tpl": "5447a9cd4bdc2dbd208b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b939107bacd1dedae69ec7f5", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "7212360b0477f089f7e45173", + "slotId": "mod_pistol_grip" + }, + { + "_id": "be068c45aaf2cf77b6561b44", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "7212360b0477f089f7e45173", + "slotId": "mod_magazine" + }, + { + "_id": "9484120e7837f077e854e5cc", + "_tpl": "55d355e64bdc2d962f8b4569", + "parentId": "7212360b0477f089f7e45173", + "slotId": "mod_reciever" + }, + { + "_id": "890a2e052af8a4088cc06fe0", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "7212360b0477f089f7e45173", + "slotId": "mod_stock" + }, + { + "_id": "2f872d274ef799b2138c6f75", + "_tpl": "55d44fd14bdc2d962f8b456e", + "parentId": "7212360b0477f089f7e45173", + "slotId": "mod_charge" + }, + { + "_id": "d19827b9ed6fe1a024276133", + "_tpl": "55d3632e4bdc2d972f8b4569", + "parentId": "9484120e7837f077e854e5cc", + "slotId": "mod_barrel" + }, + { + "_id": "a8bb3c6267456bf7cbbd4bbf", + "_tpl": "5ae30db85acfc408fb139a05", + "parentId": "9484120e7837f077e854e5cc", + "slotId": "mod_handguard" + }, + { + "_id": "96e7433130d2e7ec0fc9cf3f", + "_tpl": "5ae30bad5acfc400185c2dc4", + "parentId": "9484120e7837f077e854e5cc", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7acd1edb9a30c39cbcbf85d4", + "_tpl": "55d4ae6c4bdc2d8b2f8b456e", + "parentId": "890a2e052af8a4088cc06fe0", + "slotId": "mod_stock_000" + }, + { + "_id": "9258c63d4336df0fda6cf710", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "d19827b9ed6fe1a024276133", + "slotId": "mod_muzzle" + }, + { + "_id": "9336ed9e5154cadfb51b6fdf", + "_tpl": "5ae30e795acfc408fb139a0b", + "parentId": "d19827b9ed6fe1a024276133", + "slotId": "mod_gas_block" + }, + { + "_id": "730919a28b5c06accc79532d", + "_tpl": "637f57a68d137b27f70c4968", + "parentId": "a8bb3c6267456bf7cbbd4bbf", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a0934a01001471dc3326b5", + "Name": "sa58", + "Root": "6337559f2fcb513bba27c070", + "Items": [ + { + "_id": "6337559f2fcb513bba27c070", + "_tpl": "5b0bbe4e5acfc40dc528a72d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "c253278bbeddbb061d155a37", + "_tpl": "5b099b965acfc400186331e6", + "parentId": "6337559f2fcb513bba27c070", + "slotId": "mod_pistol_grip" + }, + { + "_id": "ce93d8c177d87f04d9df4640", + "_tpl": "5b099ac65acfc400186331e1", + "parentId": "6337559f2fcb513bba27c070", + "slotId": "mod_magazine" + }, + { + "_id": "dc8a500de37b8be166da026f", + "_tpl": "5b099a9d5acfc47a8607efe7", + "parentId": "6337559f2fcb513bba27c070", + "slotId": "mod_handguard" + }, + { + "_id": "2387f4346d2d6e175bd608c7", + "_tpl": "5b099a765acfc47a8607efe3", + "parentId": "6337559f2fcb513bba27c070", + "slotId": "mod_barrel" + }, + { + "_id": "6a3854683a14557a101665d5", + "_tpl": "5b0bc22d5acfc47a8607f085", + "parentId": "6337559f2fcb513bba27c070", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e19834b7d945c35f0c5d808e", + "_tpl": "5b099bb25acfc400186331e8", + "parentId": "6337559f2fcb513bba27c070", + "slotId": "mod_reciever" + }, + { + "_id": "881ca393f8b82da3866b3553", + "_tpl": "5b099bf25acfc4001637e683", + "parentId": "6337559f2fcb513bba27c070", + "slotId": "mod_stock" + }, + { + "_id": "5c83ae6c9e392d9554323cb2", + "_tpl": "5b099b7d5acfc400186331e4", + "parentId": "2387f4346d2d6e175bd608c7", + "slotId": "mod_muzzle" + }, + { + "_id": "931d0489c4887484ee4e0a09", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "881ca393f8b82da3866b3553", + "slotId": "mod_stock_000" + }, + { + "_id": "c61610314ec0a0f8a788b35e", + "_tpl": "56eabf3bd2720b75698b4569", + "parentId": "931d0489c4887484ee4e0a09", + "slotId": "mod_stock_000" + }, + { + "_id": "f43ef3f8752f416d455eb9fe", + "_tpl": "58d2912286f7744e27117493", + "parentId": "c61610314ec0a0f8a788b35e", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a0935901001471dc399b05", + "Name": "mdr", + "Root": "9c49101b51beefa592cbf005", + "Items": [ + { + "_id": "9c49101b51beefa592cbf005", + "_tpl": "5c488a752e221602b412af63", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "c8f6168f8889b2ab735a05d2", + "_tpl": "5c48a2c22e221602b313fb6c", + "parentId": "9c49101b51beefa592cbf005", + "slotId": "mod_pistol_grip" + }, + { + "_id": "944d619bd21e4622476f50f2", + "_tpl": "55802d5f4bdc2dac148b458e", + "parentId": "9c49101b51beefa592cbf005", + "slotId": "mod_magazine" + }, + { + "_id": "9de7b49b2ff47cb648214519", + "_tpl": "5c48a14f2e2216152006edd7", + "parentId": "9c49101b51beefa592cbf005", + "slotId": "mod_handguard" + }, + { + "_id": "ea2cf15b39c2234ffb62c719", + "_tpl": "5c48a2852e221602b21d5923", + "parentId": "9c49101b51beefa592cbf005", + "slotId": "mod_barrel" + }, + { + "_id": "10cb92ae27be2fc01551feca", + "_tpl": "5c48a2a42e221602b66d1e07", + "parentId": "ea2cf15b39c2234ffb62c719", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a0936001001471dc0bbd8f", + "Name": "mdr 762", + "Root": "8e06d914beb843c241a1863a", + "Items": [ + { + "_id": "8e06d914beb843c241a1863a", + "_tpl": "5dcbd56fdbd3d91b3e5468d5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "8e457422ec6980baadabae33", + "_tpl": "5dcbd6dddbd3d91b3e5468de", + "parentId": "8e06d914beb843c241a1863a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "40b9a4b5a9c8aa682efa9554", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "8e06d914beb843c241a1863a", + "slotId": "mod_magazine" + }, + { + "_id": "037ad90b0d20ef74fe34f42d", + "_tpl": "5dcbd6b46ec07c0c4347a564", + "parentId": "8e06d914beb843c241a1863a", + "slotId": "mod_handguard" + }, + { + "_id": "40377fc0fa81abc334085e90", + "_tpl": "5dcbe9431e1f4616d354987e", + "parentId": "8e06d914beb843c241a1863a", + "slotId": "mod_barrel" + }, + { + "_id": "37d40b04ca8caab56235b46c", + "_tpl": "5dcbe965e4ed22586443a79d", + "parentId": "40377fc0fa81abc334085e90", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a0936901001471dc896bc3", + "Name": "mk-17", + "Root": "bbcb39300af1e625c5025a25", + "Items": [ + { + "_id": "bbcb39300af1e625c5025a25", + "_tpl": "6183afd850224f204c1da514", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "426a3d52c32080cbdf854d1b", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "bbcb39300af1e625c5025a25", + "slotId": "mod_pistol_grip" + }, + { + "_id": "2afcf975b4fea57ef29920cf", + "_tpl": "618168dc8004cc50514c34fc", + "parentId": "bbcb39300af1e625c5025a25", + "slotId": "mod_magazine" + }, + { + "_id": "f4e6ab2bd2301091f3815b02", + "_tpl": "6165adcdd3a39d50044c120f", + "parentId": "bbcb39300af1e625c5025a25", + "slotId": "mod_reciever" + }, + { + "_id": "9bd41c69aa2d4e3d70d69179", + "_tpl": "61816734d8e3106d9806c1f3", + "parentId": "bbcb39300af1e625c5025a25", + "slotId": "mod_stock" + }, + { + "_id": "805cafedb77ebd09a1d74930", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "bbcb39300af1e625c5025a25", + "slotId": "mod_charge" + }, + { + "_id": "a6464471d899dc14ac3d5b75", + "_tpl": "6183b084a112697a4b3a6e6c", + "parentId": "f4e6ab2bd2301091f3815b02", + "slotId": "mod_barrel" + }, + { + "_id": "534d44ee4cfb26c8a92042bf", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "f4e6ab2bd2301091f3815b02", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "6455c8f60e5e8c5428ac6cba", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "f4e6ab2bd2301091f3815b02", + "slotId": "mod_mount_000" + }, + { + "_id": "08668c3560b346174b77bc1a", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "f4e6ab2bd2301091f3815b02", + "slotId": "mod_mount_001" + }, + { + "_id": "ad2f9e6664833fa079001e62", + "_tpl": "618167528004cc50514c34f9", + "parentId": "9bd41c69aa2d4e3d70d69179", + "slotId": "mod_stock_001" + }, + { + "_id": "2a1b24ed434c4dd55553c627", + "_tpl": "618167441cb55961fa0fdc71", + "parentId": "9bd41c69aa2d4e3d70d69179", + "slotId": "mod_stock_002" + }, + { + "_id": "58d9d40487936dffdba16172", + "_tpl": "618178aa1cb55961fa0fdc80", + "parentId": "a6464471d899dc14ac3d5b75", + "slotId": "mod_muzzle" + }, + { + "_id": "c8743aca4ccd8f26c9bdd0d8", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "a6464471d899dc14ac3d5b75", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f72a8dd5c849b41f28983b44", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "ad2f9e6664833fa079001e62", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a0937201001471dcf23bc1", + "Name": "mk-17 scar-h", + "Root": "48b9371fd3d4ee01ef277620", + "Items": [ + { + "_id": "48b9371fd3d4ee01ef277620", + "_tpl": "6165ac306ef05c2ce828ef74", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "de5318051f4ef64f5925c8a9", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "48b9371fd3d4ee01ef277620", + "slotId": "mod_pistol_grip" + }, + { + "_id": "717e1d369f720b61c002840f", + "_tpl": "6183d53f1cb55961fa0fdcda", + "parentId": "48b9371fd3d4ee01ef277620", + "slotId": "mod_magazine" + }, + { + "_id": "b06fc8cae0aaa6b649ced85d", + "_tpl": "6165aeedfaa1272e431521e3", + "parentId": "48b9371fd3d4ee01ef277620", + "slotId": "mod_reciever" + }, + { + "_id": "18f2d5f0e8ba2794e4dcb3d2", + "_tpl": "61825d06d92c473c770215de", + "parentId": "48b9371fd3d4ee01ef277620", + "slotId": "mod_stock" + }, + { + "_id": "e61ec1e6c9929c3aeb43d3f5", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "48b9371fd3d4ee01ef277620", + "slotId": "mod_charge" + }, + { + "_id": "8a93baf37c93d7e7db40b364", + "_tpl": "6183b0711cb55961fa0fdcad", + "parentId": "b06fc8cae0aaa6b649ced85d", + "slotId": "mod_barrel" + }, + { + "_id": "baa12cd2ff24d2b8679eec32", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "b06fc8cae0aaa6b649ced85d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ef255c69797df1156eb27be1", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "b06fc8cae0aaa6b649ced85d", + "slotId": "mod_mount_000" + }, + { + "_id": "92b2b27fc97571d964d13326", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "b06fc8cae0aaa6b649ced85d", + "slotId": "mod_mount_001" + }, + { + "_id": "ef427e6caa5310c9d77467ce", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "18f2d5f0e8ba2794e4dcb3d2", + "slotId": "mod_stock_001" + }, + { + "_id": "606f577a8d0d340a6b809afa", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "18f2d5f0e8ba2794e4dcb3d2", + "slotId": "mod_stock_002" + }, + { + "_id": "06c06d43489356195bea5de1", + "_tpl": "618178aa1cb55961fa0fdc80", + "parentId": "8a93baf37c93d7e7db40b364", + "slotId": "mod_muzzle" + }, + { + "_id": "0ff251fdc254c04ab3c9796b", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "8a93baf37c93d7e7db40b364", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "214829280a0947425f9593e3", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "ef427e6caa5310c9d77467ce", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a0937d01001471dc953263", + "Name": "mk-16", + "Root": "d19a68960f0cb5ce8654bb86", + "Items": [ + { + "_id": "d19a68960f0cb5ce8654bb86", + "_tpl": "618428466ef05c2ce828f218", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "21bbf40c2e0b3d46f1d83767", + "_tpl": "571659bb2459771fb2755a12", + "parentId": "d19a68960f0cb5ce8654bb86", + "slotId": "mod_pistol_grip" + }, + { + "_id": "06f1fe98fb85d834b6eb8d01", + "_tpl": "61840d85568c120fdd2962a5", + "parentId": "d19a68960f0cb5ce8654bb86", + "slotId": "mod_magazine" + }, + { + "_id": "f9ccbc38174b76e2fa07dd74", + "_tpl": "618426d96c780c1e710c9b9f", + "parentId": "d19a68960f0cb5ce8654bb86", + "slotId": "mod_reciever" + }, + { + "_id": "3c911630322b936d12790f96", + "_tpl": "61825d06d92c473c770215de", + "parentId": "d19a68960f0cb5ce8654bb86", + "slotId": "mod_stock" + }, + { + "_id": "e6d1400aefaffe638af1854c", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "d19a68960f0cb5ce8654bb86", + "slotId": "mod_charge" + }, + { + "_id": "ec67c86e6720f54c1f021b8a", + "_tpl": "6183fd911cb55961fa0fdce9", + "parentId": "f9ccbc38174b76e2fa07dd74", + "slotId": "mod_barrel" + }, + { + "_id": "9bd34af9e014e10abbed9707", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "f9ccbc38174b76e2fa07dd74", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "50b3950994265a8d066fcd76", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "f9ccbc38174b76e2fa07dd74", + "slotId": "mod_mount_000" + }, + { + "_id": "f1f4768d7003bd629a64cbac", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "f9ccbc38174b76e2fa07dd74", + "slotId": "mod_mount_001" + }, + { + "_id": "a1b0b5dea5a2f54fdece6c57", + "_tpl": "61825d136ef05c2ce828f1cc", + "parentId": "3c911630322b936d12790f96", + "slotId": "mod_stock_001" + }, + { + "_id": "1bc8a1541be1d95fa4f86873", + "_tpl": "61825d24d3a39d50044c13af", + "parentId": "3c911630322b936d12790f96", + "slotId": "mod_stock_002" + }, + { + "_id": "fee7efe037bd00adc33b6bb0", + "_tpl": "618407a850224f204c1da549", + "parentId": "ec67c86e6720f54c1f021b8a", + "slotId": "mod_muzzle" + }, + { + "_id": "49d01d75893a33c4eb02229a", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "ec67c86e6720f54c1f021b8a", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e19780acfb0b3dbf9573e01c", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "a1b0b5dea5a2f54fdece6c57", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a0938301001471dc99332a", + "Name": "mk-15 scar-L", + "Root": "f1c10fad6aab0904b95dba59", + "Items": [ + { + "_id": "f1c10fad6aab0904b95dba59", + "_tpl": "6184055050224f204c1da540", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "8c47565b48e8d1f7dff31e1a", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "f1c10fad6aab0904b95dba59", + "slotId": "mod_pistol_grip" + }, + { + "_id": "7cdca0ce4361c4b8044cbee3", + "_tpl": "61840bedd92c473c77021635", + "parentId": "f1c10fad6aab0904b95dba59", + "slotId": "mod_magazine" + }, + { + "_id": "7eb6f0bc726dbfdc456fe290", + "_tpl": "618405198004cc50514c3594", + "parentId": "f1c10fad6aab0904b95dba59", + "slotId": "mod_reciever" + }, + { + "_id": "46a5a85280ba37f79127398e", + "_tpl": "61816734d8e3106d9806c1f3", + "parentId": "f1c10fad6aab0904b95dba59", + "slotId": "mod_stock" + }, + { + "_id": "90d4fb2054b9d753d3e0939e", + "_tpl": "6181688c6c780c1e710c9b04", + "parentId": "f1c10fad6aab0904b95dba59", + "slotId": "mod_charge" + }, + { + "_id": "97d45006aa95a6ad44f90185", + "_tpl": "6183fd9e8004cc50514c358f", + "parentId": "7eb6f0bc726dbfdc456fe290", + "slotId": "mod_barrel" + }, + { + "_id": "4d1b3d792235429c075bba6b", + "_tpl": "61817865d3a39d50044c13a4", + "parentId": "7eb6f0bc726dbfdc456fe290", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "07d557b7311365cf3135b1b6", + "_tpl": "61816df1d3a39d50044c139e", + "parentId": "7eb6f0bc726dbfdc456fe290", + "slotId": "mod_mount_000" + }, + { + "_id": "e330ecdb689516b55c755c3f", + "_tpl": "61816dfa6ef05c2ce828f1ad", + "parentId": "7eb6f0bc726dbfdc456fe290", + "slotId": "mod_mount_001" + }, + { + "_id": "367230e09843ce926afc51fe", + "_tpl": "618167528004cc50514c34f9", + "parentId": "46a5a85280ba37f79127398e", + "slotId": "mod_stock_001" + }, + { + "_id": "a64652a795745fb0981c97af", + "_tpl": "618167441cb55961fa0fdc71", + "parentId": "46a5a85280ba37f79127398e", + "slotId": "mod_stock_002" + }, + { + "_id": "6ae6c60e6f7b428c73942ac4", + "_tpl": "618407a850224f204c1da549", + "parentId": "97d45006aa95a6ad44f90185", + "slotId": "mod_muzzle" + }, + { + "_id": "0ee3583d569a42a841b6a324", + "_tpl": "61816fcad92c473c770215cc", + "parentId": "97d45006aa95a6ad44f90185", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ffc924b7ad12e10a78750229", + "_tpl": "618167616ef05c2ce828f1a8", + "parentId": "367230e09843ce926afc51fe", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a0939001001471dcc9743c", + "Name": "hk416", + "Root": "ef75e3c4b493ef51f0afd5b4", + "Items": [ + { + "_id": "ef75e3c4b493ef51f0afd5b4", + "_tpl": "5bb2475ed4351e00853264e3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "d9ae0971b12343ccc72b1c20", + "_tpl": "5bb20e0ed4351e3bac1212dc", + "parentId": "ef75e3c4b493ef51f0afd5b4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "52d6f54aa605986e6dd32823", + "_tpl": "5c05413a0db834001c390617", + "parentId": "ef75e3c4b493ef51f0afd5b4", + "slotId": "mod_magazine" + }, + { + "_id": "64980e89a3e8bb05cb950cdb", + "_tpl": "5bb20d53d4351e4502010a69", + "parentId": "ef75e3c4b493ef51f0afd5b4", + "slotId": "mod_reciever" + }, + { + "_id": "cbc0b184777db7d8a1fdb458", + "_tpl": "5bb20e58d4351e00320205d7", + "parentId": "ef75e3c4b493ef51f0afd5b4", + "slotId": "mod_stock" + }, + { + "_id": "a76f20646de77713ef5004b8", + "_tpl": "5bb20dbcd4351e44f824c04e", + "parentId": "ef75e3c4b493ef51f0afd5b4", + "slotId": "mod_charge" + }, + { + "_id": "a68bfe9373c6cfcdf1eb95ec", + "_tpl": "5bb20d9cd4351e00334c9d8a", + "parentId": "64980e89a3e8bb05cb950cdb", + "slotId": "mod_barrel" + }, + { + "_id": "5481ec7c86f19c6d10846278", + "_tpl": "5bb20de5d4351e0035629e59", + "parentId": "64980e89a3e8bb05cb950cdb", + "slotId": "mod_handguard" + }, + { + "_id": "e27de5cab49a5ebf7dec0924", + "_tpl": "5bb20e49d4351e3bac1212de", + "parentId": "64980e89a3e8bb05cb950cdb", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c6ee43f25cc65707355cd468", + "_tpl": "5bb20e70d4351e0035629f8f", + "parentId": "cbc0b184777db7d8a1fdb458", + "slotId": "mod_stock_000" + }, + { + "_id": "34b3527ab8552e096a1e90e2", + "_tpl": "544a38634bdc2d58388b4568", + "parentId": "a68bfe9373c6cfcdf1eb95ec", + "slotId": "mod_muzzle" + }, + { + "_id": "73b15594c6018596bc419cb2", + "_tpl": "5bb20dcad4351e3bac1212da", + "parentId": "a68bfe9373c6cfcdf1eb95ec", + "slotId": "mod_gas_block" + } + ] + }, + { + "Id": "66a0939801001471dc87568a", + "Name": "g36", + "Root": "21638252a150a4fd102cec91", + "Items": [ + { + "_id": "21638252a150a4fd102cec91", + "_tpl": "623063e994fc3f7b302a9696", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5623e180ca2a7d05fc126afa", + "_tpl": "62307b7b10d2321fa8741921", + "parentId": "21638252a150a4fd102cec91", + "slotId": "mod_magazine" + }, + { + "_id": "45fad9232ccdf393ebda0e76", + "_tpl": "622f140da5958f63c67f1735", + "parentId": "21638252a150a4fd102cec91", + "slotId": "mod_stock" + }, + { + "_id": "927c72bcacd4431c8668601c", + "_tpl": "622b38c56762c718e457e246", + "parentId": "21638252a150a4fd102cec91", + "slotId": "mod_barrel" + }, + { + "_id": "96a338ef2b8f9ae4825caac9", + "_tpl": "6231654c71b5bc3baa1078e5", + "parentId": "21638252a150a4fd102cec91", + "slotId": "mod_handguard" + }, + { + "_id": "6f1ed08e24d711e8bd21a172", + "_tpl": "622f02437762f55aaa68ac85", + "parentId": "21638252a150a4fd102cec91", + "slotId": "mod_mount" + }, + { + "_id": "627485e894a5a6138ada9881", + "_tpl": "622b4d7df9cfc87d675d2ded", + "parentId": "21638252a150a4fd102cec91", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4aab8baa259b9044a854286b", + "_tpl": "622f128cec80d870d349b4e8", + "parentId": "927c72bcacd4431c8668601c", + "slotId": "mod_muzzle" + }, + { + "_id": "7b882e5c80ab79cbaf87636a", + "_tpl": "622b327b267a1b13a44abea3", + "parentId": "927c72bcacd4431c8668601c", + "slotId": "mod_gas_block" + }, + { + "_id": "82f8264f328f6c84651c1094", + "_tpl": "622efbcb99f4ea1a4d6c9a15", + "parentId": "627485e894a5a6138ada9881", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0939d01001471dcada81c", + "Name": "ak101", + "Root": "dd48593f45e410549bffa636", + "Items": [ + { + "_id": "dd48593f45e410549bffa636", + "_tpl": "5ac66cb05acfc40198510a10", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "e1d3e07064c59e0234d41b33", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "dd48593f45e410549bffa636", + "slotId": "mod_gas_block" + }, + { + "_id": "e2f4a38084bc3e0993f2af93", + "_tpl": "5ac72e615acfc43f67248aa0", + "parentId": "dd48593f45e410549bffa636", + "slotId": "mod_muzzle" + }, + { + "_id": "03e47a43b19b46c295680604", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "dd48593f45e410549bffa636", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6317167bf262647ca3eff126", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "dd48593f45e410549bffa636", + "slotId": "mod_reciever" + }, + { + "_id": "70c4c2e0a0c08b85351b2206", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "dd48593f45e410549bffa636", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "1edf3c30eeacf1ccfbab69c8", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "dd48593f45e410549bffa636", + "slotId": "mod_stock" + }, + { + "_id": "4d96184df3dd06f277edd2e4", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "dd48593f45e410549bffa636", + "slotId": "mod_magazine" + }, + { + "_id": "e04120a5c50c1f6784d5647b", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "e1d3e07064c59e0234d41b33", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093a201001471dc601d39", + "Name": "ak102", + "Root": "e2baba9e3de254391fab316e", + "Items": [ + { + "_id": "e2baba9e3de254391fab316e", + "_tpl": "5ac66d015acfc400180ae6e4", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "19d86d9243c1da22266787b5", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "e2baba9e3de254391fab316e", + "slotId": "mod_gas_block" + }, + { + "_id": "a8faeecb0be9fecfe72481c7", + "_tpl": "5ac72e725acfc400180ae701", + "parentId": "e2baba9e3de254391fab316e", + "slotId": "mod_muzzle" + }, + { + "_id": "b303ad6b6ad415484a765fde", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "e2baba9e3de254391fab316e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "66641223942da9b6bc3f233f", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "e2baba9e3de254391fab316e", + "slotId": "mod_reciever" + }, + { + "_id": "3276158430aa77ae2fdd8728", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "e2baba9e3de254391fab316e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "eee1a45800d782f95781b160", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "e2baba9e3de254391fab316e", + "slotId": "mod_stock" + }, + { + "_id": "c25ddceb31a45807d20ff6f3", + "_tpl": "5ac66c5d5acfc4001718d314", + "parentId": "e2baba9e3de254391fab316e", + "slotId": "mod_magazine" + }, + { + "_id": "3d08cbf5322e10e61e2a7e72", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "19d86d9243c1da22266787b5", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093a801001471dc00f804", + "Name": "ak103", + "Root": "ae83673990646e41591a2f79", + "Items": [ + { + "_id": "ae83673990646e41591a2f79", + "_tpl": "5ac66d2e5acfc43b321d4b53", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "ea37308b98c4b807ab1c66c9", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "ae83673990646e41591a2f79", + "slotId": "mod_gas_block" + }, + { + "_id": "453361402e6b23494cd8cb74", + "_tpl": "5ac72e7d5acfc40016339a02", + "parentId": "ae83673990646e41591a2f79", + "slotId": "mod_muzzle" + }, + { + "_id": "50eb4a84c8a2097ae4fe39ac", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "ae83673990646e41591a2f79", + "slotId": "mod_pistol_grip" + }, + { + "_id": "f64b86ffb8cb3f52e13dafb0", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "ae83673990646e41591a2f79", + "slotId": "mod_reciever" + }, + { + "_id": "0e1cc404afa47191b8232aaa", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "ae83673990646e41591a2f79", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5be97a495598f2e2b5109a5f", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "ae83673990646e41591a2f79", + "slotId": "mod_stock" + }, + { + "_id": "715e0b7e175deb39a83e3ed8", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "ae83673990646e41591a2f79", + "slotId": "mod_magazine" + }, + { + "_id": "9e9e8f8d4bb44df136c1eb29", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "ea37308b98c4b807ab1c66c9", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093b001001471dcf48fe8", + "Name": "ak-74", + "Root": "cb0b36acbc9133a6f41cacbf", + "Items": [ + { + "_id": "cb0b36acbc9133a6f41cacbf", + "_tpl": "5bf3e03b0db834001d2c4a9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "cec9c33f8f52e074f3ca039f", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "cb0b36acbc9133a6f41cacbf", + "slotId": "mod_gas_block" + }, + { + "_id": "faca83197b00b65ff17d0891", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "cb0b36acbc9133a6f41cacbf", + "slotId": "mod_muzzle" + }, + { + "_id": "3e45d97f8312a62a1796d6ed", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "cb0b36acbc9133a6f41cacbf", + "slotId": "mod_pistol_grip" + }, + { + "_id": "8e97673a4bc880ca10aa721f", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "cb0b36acbc9133a6f41cacbf", + "slotId": "mod_reciever" + }, + { + "_id": "ca4a45609c93e2d221e6930d", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "cb0b36acbc9133a6f41cacbf", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "8017db2df2f0cf5f194133d6", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "cb0b36acbc9133a6f41cacbf", + "slotId": "mod_stock" + }, + { + "_id": "0e6d8e8a70d9f6c563786999", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "cb0b36acbc9133a6f41cacbf", + "slotId": "mod_magazine" + }, + { + "_id": "ddf8c9d69d97523383c1ed72", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "cec9c33f8f52e074f3ca039f", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093b701001471dc694a76", + "Name": "ak-12", + "Root": "ea1d6bafcf7b2fa4405a7fa3", + "Items": [ + { + "_id": "ea1d6bafcf7b2fa4405a7fa3", + "_tpl": "6499849fc93611967b034949", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "61e89e639361ae7bdca965cf", + "_tpl": "649ec107961514b22506b10c", + "parentId": "ea1d6bafcf7b2fa4405a7fa3", + "slotId": "mod_gas_block" + }, + { + "_id": "95e7ff096d1f4257a34969a6", + "_tpl": "649ec2af961514b22506b10f", + "parentId": "ea1d6bafcf7b2fa4405a7fa3", + "slotId": "mod_muzzle" + }, + { + "_id": "c743a64187a74526c34029a2", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "ea1d6bafcf7b2fa4405a7fa3", + "slotId": "mod_pistol_grip" + }, + { + "_id": "a64b00c3c91ca43655932e49", + "_tpl": "649ec2f3961514b22506b111", + "parentId": "ea1d6bafcf7b2fa4405a7fa3", + "slotId": "mod_reciever" + }, + { + "_id": "ab2436dc0940f3c303e57d95", + "_tpl": "649ec87d8007560a9001ab36", + "parentId": "ea1d6bafcf7b2fa4405a7fa3", + "slotId": "mod_stock_001" + }, + { + "_id": "393ed3d9f49014686ab9e64b", + "_tpl": "649ec30cb013f04a700e60fb", + "parentId": "ea1d6bafcf7b2fa4405a7fa3", + "slotId": "mod_magazine" + }, + { + "_id": "1d58df8b74d3ad347086d461", + "_tpl": "649ec127c93611967b034957", + "parentId": "ea1d6bafcf7b2fa4405a7fa3", + "slotId": "mod_handguard" + }, + { + "_id": "8b89daf4e3740057489c5168", + "_tpl": "649ec2da59cbb3c813042dca", + "parentId": "a64b00c3c91ca43655932e49", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "78c198093beb3d49a303799e", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "ab2436dc0940f3c303e57d95", + "slotId": "mod_stock" + }, + { + "_id": "549dbc795e861053214d247d", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "1d58df8b74d3ad347086d461", + "slotId": "mod_mount_001" + }, + { + "_id": "aa70b77e508179efc174365d", + "_tpl": "649ec2cec93611967b03495e", + "parentId": "8b89daf4e3740057489c5168", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a093bc01001471dc1a7c98", + "Name": "ak-105", + "Root": "ac0eb6f0dbb5560465446a0d", + "Items": [ + { + "_id": "ac0eb6f0dbb5560465446a0d", + "_tpl": "5ac66d9b5acfc4001633997a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "943cafb4e3b744b5ff3c8c3c", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "ac0eb6f0dbb5560465446a0d", + "slotId": "mod_gas_block" + }, + { + "_id": "87b71b830187288dfa93e820", + "_tpl": "5ac72e945acfc43f3b691116", + "parentId": "ac0eb6f0dbb5560465446a0d", + "slotId": "mod_muzzle" + }, + { + "_id": "908a100540a93cb9a841db7c", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "ac0eb6f0dbb5560465446a0d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "1c5e82302fe473e34d2fd478", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "ac0eb6f0dbb5560465446a0d", + "slotId": "mod_reciever" + }, + { + "_id": "f110c48c7083a0cfc0bbbc28", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "ac0eb6f0dbb5560465446a0d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e090983fd67aa801fed2e47e", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "ac0eb6f0dbb5560465446a0d", + "slotId": "mod_stock" + }, + { + "_id": "684779b4cd9c55e4db0c29fb", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "ac0eb6f0dbb5560465446a0d", + "slotId": "mod_magazine" + }, + { + "_id": "ed1a59df6e012e2b34163ed2", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "943cafb4e3b744b5ff3c8c3c", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093c301001471dc7fc7f3", + "Name": "ak-74n", + "Root": "64f1a945ba253fecdf34207c", + "Items": [ + { + "_id": "64f1a945ba253fecdf34207c", + "_tpl": "5644bd2b4bdc2d3b4c8b4572", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "e086cfb4e06728c4446e95d2", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "64f1a945ba253fecdf34207c", + "slotId": "mod_gas_block" + }, + { + "_id": "04490b465b4ea5f25d423e61", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "64f1a945ba253fecdf34207c", + "slotId": "mod_muzzle" + }, + { + "_id": "e8e5c83da5fb0b1bf3c7128a", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "64f1a945ba253fecdf34207c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "8e75e3964580f65481b396e2", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "64f1a945ba253fecdf34207c", + "slotId": "mod_reciever" + }, + { + "_id": "3157963ea067ec58bde5216a", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "64f1a945ba253fecdf34207c", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d1a9100c4fac37a225b1614a", + "_tpl": "5649b1c04bdc2d16268b457c", + "parentId": "64f1a945ba253fecdf34207c", + "slotId": "mod_stock" + }, + { + "_id": "97389a12335647b330c71fef", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "64f1a945ba253fecdf34207c", + "slotId": "mod_magazine" + }, + { + "_id": "8ee7723305c0085c80c23bff", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "e086cfb4e06728c4446e95d2", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093c901001471dc68fb1b", + "Name": "ak-74m", + "Root": "41a8548e7508e81131386457", + "Items": [ + { + "_id": "41a8548e7508e81131386457", + "_tpl": "5ac4cd105acfc40016339859", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "3881e9cc8aefaa0449693c11", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "41a8548e7508e81131386457", + "slotId": "mod_gas_block" + }, + { + "_id": "32c460a81f777a14aa14d79e", + "_tpl": "5ac7655e5acfc40016339a19", + "parentId": "41a8548e7508e81131386457", + "slotId": "mod_muzzle" + }, + { + "_id": "7856008efac072a765df2cd9", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "41a8548e7508e81131386457", + "slotId": "mod_pistol_grip" + }, + { + "_id": "904f3e2cf0e2d767f62e03a4", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "41a8548e7508e81131386457", + "slotId": "mod_reciever" + }, + { + "_id": "94cce7c4f241fa8748945658", + "_tpl": "5ac72e475acfc400180ae6fe", + "parentId": "41a8548e7508e81131386457", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0ee014b30e90f82ef8b9a93e", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "41a8548e7508e81131386457", + "slotId": "mod_stock" + }, + { + "_id": "fbcc2cf46cf40cf772feb6c6", + "_tpl": "55d480c04bdc2d1d4e8b456a", + "parentId": "41a8548e7508e81131386457", + "slotId": "mod_magazine" + }, + { + "_id": "30fe28a480985fbe781a28ed", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "3881e9cc8aefaa0449693c11", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093d101001471dcdddcc1", + "Name": "akms", + "Root": "402fa449e3678cc6976a0893", + "Items": [ + { + "_id": "402fa449e3678cc6976a0893", + "_tpl": "59ff346386f77477562ff5e2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "591860ceea494c6c55f5c4f0", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "402fa449e3678cc6976a0893", + "slotId": "mod_gas_block" + }, + { + "_id": "e8dece4cadc1eeded6db5f4c", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "402fa449e3678cc6976a0893", + "slotId": "mod_muzzle" + }, + { + "_id": "608a0b79d8d22763f4e893b1", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "402fa449e3678cc6976a0893", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "e97cd288f389c4ad43017bcc", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "402fa449e3678cc6976a0893", + "slotId": "mod_reciever" + }, + { + "_id": "5db927799c9b808c29a7fd64", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "402fa449e3678cc6976a0893", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "3b962386b8e7d14f808c3ae1", + "_tpl": "59ff3b6a86f77477562ff5ed", + "parentId": "402fa449e3678cc6976a0893", + "slotId": "mod_stock_akms" + }, + { + "_id": "d2188ff98e819de7f7d0da47", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "402fa449e3678cc6976a0893", + "slotId": "mod_magazine" + }, + { + "_id": "eac33082f44c905e2a9d8ef3", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "591860ceea494c6c55f5c4f0", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093d701001471dce127d4", + "Name": "akmn", + "Root": "069bc21f0696ba52cb491164", + "Items": [ + { + "_id": "069bc21f0696ba52cb491164", + "_tpl": "5a0ec13bfcdbcb00165aa685", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "e311945ed17e67a4b86e54cd", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "069bc21f0696ba52cb491164", + "slotId": "mod_gas_block" + }, + { + "_id": "15cd7b3c631d37b1c9432949", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "069bc21f0696ba52cb491164", + "slotId": "mod_muzzle" + }, + { + "_id": "54e6866d0086d234dff8e942", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "069bc21f0696ba52cb491164", + "slotId": "mod_pistol_grip" + }, + { + "_id": "49680767701f1e647ab3b0d1", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "069bc21f0696ba52cb491164", + "slotId": "mod_reciever" + }, + { + "_id": "4ba2a49a29ef892f3170cac2", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "069bc21f0696ba52cb491164", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "9cb49864e03e07af5b6cffc6", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "069bc21f0696ba52cb491164", + "slotId": "mod_stock" + }, + { + "_id": "cb67f3bf28351fce3744be79", + "_tpl": "5a01c29586f77474660c694c", + "parentId": "069bc21f0696ba52cb491164", + "slotId": "mod_magazine" + }, + { + "_id": "c3a8cd0fa1a149a8d8818f81", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "e311945ed17e67a4b86e54cd", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093de01001471dc60f99e", + "Name": "akm", + "Root": "8570f44d42a6b0d9c0d8a195", + "Items": [ + { + "_id": "8570f44d42a6b0d9c0d8a195", + "_tpl": "59d6088586f774275f37482f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "c8b64a3e016337e6ad310728", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "8570f44d42a6b0d9c0d8a195", + "slotId": "mod_gas_block" + }, + { + "_id": "94e2852cdafa0ddc96acb2fb", + "_tpl": "59d64fc686f774171b243fe2", + "parentId": "8570f44d42a6b0d9c0d8a195", + "slotId": "mod_muzzle" + }, + { + "_id": "5ad6b96c4e539498869a97d3", + "_tpl": "59e62cc886f77440d40b52a1", + "parentId": "8570f44d42a6b0d9c0d8a195", + "slotId": "mod_pistol_grip" + }, + { + "_id": "fc485e4add56c52775c1d7bf", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "8570f44d42a6b0d9c0d8a195", + "slotId": "mod_reciever" + }, + { + "_id": "3607d1db2a3806ba6c913d9b", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "8570f44d42a6b0d9c0d8a195", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "6f6981a7433349377572dcf0", + "_tpl": "59d6514b86f774171a068a08", + "parentId": "8570f44d42a6b0d9c0d8a195", + "slotId": "mod_stock" + }, + { + "_id": "aca5d93e424362f1792eddc2", + "_tpl": "59d625f086f774661516605d", + "parentId": "8570f44d42a6b0d9c0d8a195", + "slotId": "mod_magazine" + }, + { + "_id": "b8d5cb6c280897b27802ec7f", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "c8b64a3e016337e6ad310728", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093e301001471dcc758db", + "Name": "aks-74", + "Root": "87c1e930ce343c534ed1d3cd", + "Items": [ + { + "_id": "87c1e930ce343c534ed1d3cd", + "_tpl": "5bf3e0490db83400196199af", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "8de59ffa9998a66b23e1f801", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "87c1e930ce343c534ed1d3cd", + "slotId": "mod_gas_block" + }, + { + "_id": "64555aeb7f0efb1fde6ead01", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "87c1e930ce343c534ed1d3cd", + "slotId": "mod_muzzle" + }, + { + "_id": "b445325e92525601ddde8210", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "87c1e930ce343c534ed1d3cd", + "slotId": "mod_pistol_grip" + }, + { + "_id": "e0d091d8c177d3cb95804bc6", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "87c1e930ce343c534ed1d3cd", + "slotId": "mod_reciever" + }, + { + "_id": "497587c28e8724850085cf5b", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "87c1e930ce343c534ed1d3cd", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "abfc5d19cfe52a00271c898d", + "_tpl": "5ab626e4d8ce87272e4c6e43", + "parentId": "87c1e930ce343c534ed1d3cd", + "slotId": "mod_stock" + }, + { + "_id": "63ec053e642c4a69fa6a9564", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "87c1e930ce343c534ed1d3cd", + "slotId": "mod_magazine" + }, + { + "_id": "d18ac744bf9b47c2b53c56ed", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "8de59ffa9998a66b23e1f801", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093ea01001471dc880c3f", + "Name": "akmsn", + "Root": "e40c23fad20e18d7fc1da50a", + "Items": [ + { + "_id": "e40c23fad20e18d7fc1da50a", + "_tpl": "5abcbc27d8ce8700182eceeb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "3545598384f3566620978dc2", + "_tpl": "59d64ec286f774171d1e0a42", + "parentId": "e40c23fad20e18d7fc1da50a", + "slotId": "mod_gas_block" + }, + { + "_id": "4aba483012b0b9e725559d5c", + "_tpl": "59e61eb386f77440d64f5daf", + "parentId": "e40c23fad20e18d7fc1da50a", + "slotId": "mod_muzzle" + }, + { + "_id": "a4bd9c1afe6e88daf1b7a020", + "_tpl": "5a0071d486f77404e23a12b2", + "parentId": "e40c23fad20e18d7fc1da50a", + "slotId": "mod_pistol_grip_akms" + }, + { + "_id": "4be89e5c4278b0755f58d62e", + "_tpl": "59d6507c86f7741b846413a2", + "parentId": "e40c23fad20e18d7fc1da50a", + "slotId": "mod_reciever" + }, + { + "_id": "bf32b585eb2a8e0db3e3d196", + "_tpl": "59d650cf86f7741b846413a4", + "parentId": "e40c23fad20e18d7fc1da50a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "facbe7390f60b40f390696db", + "_tpl": "5abcd472d8ce8700166032ae", + "parentId": "e40c23fad20e18d7fc1da50a", + "slotId": "mod_stock_akms" + }, + { + "_id": "21d25ddbd5986763a41c039b", + "_tpl": "5a0060fc86f7745793204432", + "parentId": "e40c23fad20e18d7fc1da50a", + "slotId": "mod_magazine" + }, + { + "_id": "8f3f8265dd86e9d32ac3e44e", + "_tpl": "59d64f2f86f77417193ef8b3", + "parentId": "3545598384f3566620978dc2", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093f401001471dc003e9c", + "Name": "aks-74u", + "Root": "28890cfed1a1de3cc1b5b5b4", + "Items": [ + { + "_id": "28890cfed1a1de3cc1b5b5b4", + "_tpl": "57dc2fa62459775949412633", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b57576e75cb7c831d24a22c9", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "28890cfed1a1de3cc1b5b5b4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "242c260e5206593097aba35f", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "28890cfed1a1de3cc1b5b5b4", + "slotId": "mod_stock" + }, + { + "_id": "f9d3f744b9c836306cb7d6f4", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "28890cfed1a1de3cc1b5b5b4", + "slotId": "mod_magazine" + }, + { + "_id": "c8d0e69a15d01e3d00ec84ad", + "_tpl": "57dc324a24597759501edc20", + "parentId": "28890cfed1a1de3cc1b5b5b4", + "slotId": "mod_muzzle" + }, + { + "_id": "1aebb1ebd12a60ab59bc8d48", + "_tpl": "57dc334d245977597164366f", + "parentId": "28890cfed1a1de3cc1b5b5b4", + "slotId": "mod_reciever" + }, + { + "_id": "81c2eacce337a0192b363da7", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "28890cfed1a1de3cc1b5b5b4", + "slotId": "mod_gas_block" + }, + { + "_id": "0f47385c297f572cd67526bf", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "81c2eacce337a0192b363da7", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a093fb01001471dccfc8d0", + "Name": "aks-74n", + "Root": "539878f98ef98f7b85128ef3", + "Items": [ + { + "_id": "539878f98ef98f7b85128ef3", + "_tpl": "5ab8e9fcd8ce870019439434", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "0be607d5a5e8a32d591e07ab", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "539878f98ef98f7b85128ef3", + "slotId": "mod_gas_block" + }, + { + "_id": "4f13e96fbe08d2c35396202c", + "_tpl": "5649aa744bdc2ded0b8b457e", + "parentId": "539878f98ef98f7b85128ef3", + "slotId": "mod_muzzle" + }, + { + "_id": "8139b4da01dff60febb99108", + "_tpl": "57e3dba62459770f0c32322b", + "parentId": "539878f98ef98f7b85128ef3", + "slotId": "mod_pistol_grip" + }, + { + "_id": "4a9bf59627015ada196d0a20", + "_tpl": "5649af094bdc2df8348b4586", + "parentId": "539878f98ef98f7b85128ef3", + "slotId": "mod_reciever" + }, + { + "_id": "48902aae6099f1739e0257d9", + "_tpl": "5649b0544bdc2d1b2b8b458a", + "parentId": "539878f98ef98f7b85128ef3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d4f80605f9c8d5fba8b6bacb", + "_tpl": "5ab626e4d8ce87272e4c6e43", + "parentId": "539878f98ef98f7b85128ef3", + "slotId": "mod_stock" + }, + { + "_id": "592f48e40ba23aab005a469c", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "539878f98ef98f7b85128ef3", + "slotId": "mod_magazine" + }, + { + "_id": "24be01c15b112632f90bc939", + "_tpl": "5648b0744bdc2d363b8b4578", + "parentId": "0be607d5a5e8a32d591e07ab", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a0940901001471dc7b3af4", + "Name": "aks-74un", + "Root": "34f63369d1e37c7fff24c7c9", + "Items": [ + { + "_id": "34f63369d1e37c7fff24c7c9", + "_tpl": "583990e32459771419544dd2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "69adea3eeeee15465c000ff0", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "34f63369d1e37c7fff24c7c9", + "slotId": "mod_pistol_grip" + }, + { + "_id": "dac8df338d854a407cd40cec", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "34f63369d1e37c7fff24c7c9", + "slotId": "mod_stock" + }, + { + "_id": "88e7bbaef0f0a43bc1da60b3", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "34f63369d1e37c7fff24c7c9", + "slotId": "mod_magazine" + }, + { + "_id": "dd7f2a249d571434df4f048a", + "_tpl": "57dc324a24597759501edc20", + "parentId": "34f63369d1e37c7fff24c7c9", + "slotId": "mod_muzzle" + }, + { + "_id": "ff9077888e2aed216dfc579c", + "_tpl": "57dc334d245977597164366f", + "parentId": "34f63369d1e37c7fff24c7c9", + "slotId": "mod_reciever" + }, + { + "_id": "32b7de0999340dec694d7613", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "34f63369d1e37c7fff24c7c9", + "slotId": "mod_gas_block" + }, + { + "_id": "9aeec753326b91662985c525", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "32b7de0999340dec694d7613", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a0940f01001471dcc7da47", + "Name": "aks-74ub", + "Root": "a8f12d17d66384d68087104b", + "Items": [ + { + "_id": "a8f12d17d66384d68087104b", + "_tpl": "5839a40f24597726f856b511", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "a677184d6a957ed90671157b", + "_tpl": "5649ad3f4bdc2df8348b4585", + "parentId": "a8f12d17d66384d68087104b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "644f79d2c679177ebc6235cb", + "_tpl": "57dc347d245977596754e7a1", + "parentId": "a8f12d17d66384d68087104b", + "slotId": "mod_stock" + }, + { + "_id": "69928db3823bb74e79296fc8", + "_tpl": "564ca99c4bdc2d16268b4589", + "parentId": "a8f12d17d66384d68087104b", + "slotId": "mod_magazine" + }, + { + "_id": "6a9ccb32f4bb5fd4feb4d301", + "_tpl": "57ffb0e42459777d047111c5", + "parentId": "a8f12d17d66384d68087104b", + "slotId": "mod_muzzle" + }, + { + "_id": "602bdbfc0f645db667cbd9eb", + "_tpl": "5839a7742459773cf9693481", + "parentId": "a8f12d17d66384d68087104b", + "slotId": "mod_reciever" + }, + { + "_id": "52c284c74fc6964180dc4776", + "_tpl": "59d36a0086f7747e673f3946", + "parentId": "a8f12d17d66384d68087104b", + "slotId": "mod_gas_block" + }, + { + "_id": "b54fac54d79bbe81c41bcfff", + "_tpl": "57dc32dc245977596d4ef3d3", + "parentId": "52c284c74fc6964180dc4776", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a0941601001471dccb46ad", + "Name": "auga1", + "Root": "dc3e3dcfc7465202e97bd221", + "Items": [ + { + "_id": "dc3e3dcfc7465202e97bd221", + "_tpl": "62e7c4fba689e8c9c50dfc38", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "95227a581630b3828ef22bbe", + "_tpl": "62e7c98b550c8218d602cbb4", + "parentId": "dc3e3dcfc7465202e97bd221", + "slotId": "mod_magazine" + }, + { + "_id": "78237dc65ec75d75878e9d71", + "_tpl": "62e7c880f68e7a0676050c7c", + "parentId": "dc3e3dcfc7465202e97bd221", + "slotId": "mod_charge" + }, + { + "_id": "74f648186bbbd08b9dd518ec", + "_tpl": "62ea7c793043d74a0306e19f", + "parentId": "dc3e3dcfc7465202e97bd221", + "slotId": "mod_reciever", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0, + 0 + ], + "ScopesSelectedModes": [ + 0, + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "aafc629e0147f83d1e50ed0b", + "_tpl": "62e7c7f3c34ea971710c32fc", + "parentId": "74f648186bbbd08b9dd518ec", + "slotId": "mod_barrel" + }, + { + "_id": "9251b94248628279e7ed394c", + "_tpl": "630f2872911356c17d06abc5", + "parentId": "aafc629e0147f83d1e50ed0b", + "slotId": "mod_muzzle_000" + }, + { + "_id": "ed9981009fdea2e69c4f3544", + "_tpl": "634e61b0767cb15c4601a877", + "parentId": "aafc629e0147f83d1e50ed0b", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a0941d01001471dc3c1bd7", + "Name": "mcx spear", + "Root": "4559fc5b3ea1cf0da80dfb6f", + "Items": [ + { + "_id": "4559fc5b3ea1cf0da80dfb6f", + "_tpl": "65290f395ae2ae97b80fdf2d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "460d4ec3ba6a78055e228541", + "_tpl": "652911675ae2ae97b80fdf3c", + "parentId": "4559fc5b3ea1cf0da80dfb6f", + "slotId": "mod_pistol_grip" + }, + { + "_id": "a1b6f1991cabc7eff8f10b3c", + "_tpl": "65293c38fc460e50a509cb25", + "parentId": "4559fc5b3ea1cf0da80dfb6f", + "slotId": "mod_magazine" + }, + { + "_id": "bcc3aa85f01c20ca1c7e3192", + "_tpl": "6529119424cbe3c74a05e5bb", + "parentId": "4559fc5b3ea1cf0da80dfb6f", + "slotId": "mod_reciever" + }, + { + "_id": "d9236d54920ff00c2890418c", + "_tpl": "6529348224cbe3c74a05e5c4", + "parentId": "4559fc5b3ea1cf0da80dfb6f", + "slotId": "mod_stock_000" + }, + { + "_id": "df3a09efcf66cf5fd194fcb7", + "_tpl": "6529109524cbe3c74a05e5b7", + "parentId": "4559fc5b3ea1cf0da80dfb6f", + "slotId": "mod_charge" + }, + { + "_id": "60439477561adad414ab2a55", + "_tpl": "6567e751a715f85433025998", + "parentId": "bcc3aa85f01c20ca1c7e3192", + "slotId": "mod_scope" + }, + { + "_id": "086f9c475e6c67f490cdeac6", + "_tpl": "652910565ae2ae97b80fdf35", + "parentId": "bcc3aa85f01c20ca1c7e3192", + "slotId": "mod_barrel" + }, + { + "_id": "431b39742feac1755c6e8405", + "_tpl": "652910ef50dc782999054b97", + "parentId": "bcc3aa85f01c20ca1c7e3192", + "slotId": "mod_handguard" + }, + { + "_id": "e8ee97901f61c075d4a6f0c2", + "_tpl": "6529366450dc782999054ba0", + "parentId": "d9236d54920ff00c2890418c", + "slotId": "mod_stock" + }, + { + "_id": "1b32e63b4c2d9b757a704800", + "_tpl": "6567e7681265c8a131069b0f", + "parentId": "60439477561adad414ab2a55", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "02026eeb6f5c5c391fea9bf6", + "_tpl": "6529113b5ae2ae97b80fdf39", + "parentId": "086f9c475e6c67f490cdeac6", + "slotId": "mod_muzzle" + }, + { + "_id": "dfeffb3c78cf2da4ac0ec188", + "_tpl": "652910bc24cbe3c74a05e5b9", + "parentId": "086f9c475e6c67f490cdeac6", + "slotId": "mod_gas_block" + }, + { + "_id": "c6df8a525f55360ce0dc9207", + "_tpl": "652911e650dc782999054b9d", + "parentId": "02026eeb6f5c5c391fea9bf6", + "slotId": "mod_muzzle" + }, + { + "_id": "e6cac0032d425459bc9206c2", + "_tpl": "6529370c405a5f51dd023db8", + "parentId": "e8ee97901f61c075d4a6f0c2", + "slotId": "mod_stock_000" + } + ] + }, + { + "Id": "66a0943201001471dc699c10", + "Name": "mcx", + "Root": "2d8eae42fc0d8221bda93e07", + "Items": [ + { + "_id": "2d8eae42fc0d8221bda93e07", + "_tpl": "5fbcc1d9016cce60e8341ab3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "c003a5a6fd21ddfeb05a50c4", + "_tpl": "5fbcbd6c187fea44d52eda14", + "parentId": "2d8eae42fc0d8221bda93e07", + "slotId": "mod_pistol_grip" + }, + { + "_id": "771d353d673bbb53a9ffb233", + "_tpl": "55d4887d4bdc2d962f8b4570", + "parentId": "2d8eae42fc0d8221bda93e07", + "slotId": "mod_magazine" + }, + { + "_id": "deece8412616ef5c83b1aaaf", + "_tpl": "5fbcc3e4d6fa9c00c571bb58", + "parentId": "2d8eae42fc0d8221bda93e07", + "slotId": "mod_reciever" + }, + { + "_id": "a7921fb783d77647b783bd88", + "_tpl": "5fbcc437d724d907e2077d5c", + "parentId": "2d8eae42fc0d8221bda93e07", + "slotId": "mod_stock" + }, + { + "_id": "a5c750c6fdcd6b6accdeff0a", + "_tpl": "5fbcc640016cce60e8341acc", + "parentId": "2d8eae42fc0d8221bda93e07", + "slotId": "mod_charge" + }, + { + "_id": "b8d39fc56c397571fe0ef78f", + "_tpl": "5fbbfacda56d053a3543f799", + "parentId": "deece8412616ef5c83b1aaaf", + "slotId": "mod_barrel" + }, + { + "_id": "ca5790192e69c91519c6d1ca", + "_tpl": "5fbc226eca32ed67276c155d", + "parentId": "deece8412616ef5c83b1aaaf", + "slotId": "mod_handguard" + }, + { + "_id": "408980cdf0c4a25d0206b78c", + "_tpl": "5fc0fa957283c4046c58147e", + "parentId": "deece8412616ef5c83b1aaaf", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "49d1ca0e4bd5c45012fdff6d", + "_tpl": "5fbc22ccf24b94483f726483", + "parentId": "b8d39fc56c397571fe0ef78f", + "slotId": "mod_muzzle" + }, + { + "_id": "a102867db5c47642fc8827d9", + "_tpl": "5fbc210bf24b94483f726481", + "parentId": "b8d39fc56c397571fe0ef78f", + "slotId": "mod_gas_block" + }, + { + "_id": "6ade101b9c675fc432dfef7d", + "_tpl": "5fc0fa362770a0045c59c677", + "parentId": "ca5790192e69c91519c6d1ca", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e67d70e577a3028edcbe31f1", + "_tpl": "5fbcbd10ab884124df0cd563", + "parentId": "49d1ca0e4bd5c45012fdff6d", + "slotId": "mod_muzzle_000" + } + ] + }, + { + "Id": "66a0943801001471dc04e748", + "Name": "auga3", + "Root": "40bf7096c95607c9be9f71aa", + "Items": [ + { + "_id": "40bf7096c95607c9be9f71aa", + "_tpl": "63171672192e68c5460cebc5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "989c593fdc18172649ffff54", + "_tpl": "62e7c98b550c8218d602cbb4", + "parentId": "40bf7096c95607c9be9f71aa", + "slotId": "mod_magazine" + }, + { + "_id": "2330c0350f455f052b7efae5", + "_tpl": "62ebbc53e3c1e1ec7c02c44f", + "parentId": "40bf7096c95607c9be9f71aa", + "slotId": "mod_charge" + }, + { + "_id": "41ff9e277adac1823e810a21", + "_tpl": "62e7c72df68e7a0676050c77", + "parentId": "40bf7096c95607c9be9f71aa", + "slotId": "mod_reciever" + }, + { + "_id": "313ee8408fcb6683a263f767", + "_tpl": "62e7c7f3c34ea971710c32fc", + "parentId": "41ff9e277adac1823e810a21", + "slotId": "mod_barrel" + }, + { + "_id": "801f3c7dd2e2a7f0b39d0b0d", + "_tpl": "62ebd290c427473eff0baafb", + "parentId": "41ff9e277adac1823e810a21", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ee27d2c7dc12621fd6602f34", + "_tpl": "630f28f0cadb1fe05e06f004", + "parentId": "313ee8408fcb6683a263f767", + "slotId": "mod_muzzle_000" + }, + { + "_id": "4331ab92a216f211bd6eb657", + "_tpl": "634e61b0767cb15c4601a877", + "parentId": "313ee8408fcb6683a263f767", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a094c401001471dc9b36a7", + "Name": "rpk", + "Root": "91c8f7a336c62b7fbe7a467d", + "Items": [ + { + "_id": "91c8f7a336c62b7fbe7a467d", + "_tpl": "5beed0f50db834001c062b12", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "7f62343d6bb17ed9c9b011b3", + "_tpl": "5beec8ea0db834001a6f9dbf", + "parentId": "91c8f7a336c62b7fbe7a467d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "7f95f92be86f2063105eb947", + "_tpl": "5beec91a0db834001961942d", + "parentId": "91c8f7a336c62b7fbe7a467d", + "slotId": "mod_reciever" + }, + { + "_id": "9c94ec234f931f4f42fa0583", + "_tpl": "5beec8b20db834001961942a", + "parentId": "91c8f7a336c62b7fbe7a467d", + "slotId": "mod_stock_001" + }, + { + "_id": "83df9c208721a0e9853fcb72", + "_tpl": "5beec3e30db8340019619424", + "parentId": "91c8f7a336c62b7fbe7a467d", + "slotId": "mod_handguard" + }, + { + "_id": "b43c361b4bec16987d4256b2", + "_tpl": "5beec1bd0db834001e6006f3", + "parentId": "91c8f7a336c62b7fbe7a467d", + "slotId": "mod_barrel" + }, + { + "_id": "31fbe8523ce1c19d64ddd88a", + "_tpl": "5beec9450db83400970084fd", + "parentId": "7f95f92be86f2063105eb947", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5ebeedf27c3bd31557c575ee", + "_tpl": "5beec8c20db834001d2c465c", + "parentId": "9c94ec234f931f4f42fa0583", + "slotId": "mod_stock" + }, + { + "_id": "d15e0985c38ccd510a2e39ee", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "83df9c208721a0e9853fcb72", + "slotId": "mod_mount_000" + }, + { + "_id": "a08e7d74741ff0168dc146c2", + "_tpl": "5beecbb80db834001d2c465e", + "parentId": "83df9c208721a0e9853fcb72", + "slotId": "mod_mount_001" + }, + { + "_id": "37daf1caaad886be4bb44361", + "_tpl": "5beec3420db834001b095429", + "parentId": "b43c361b4bec16987d4256b2", + "slotId": "mod_muzzle" + }, + { + "_id": "cbf9e9ce1aaf682882c7bffe", + "_tpl": "5bf3f59f0db834001a6fa060", + "parentId": "31fbe8523ce1c19d64ddd88a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a094c901001471dc286a1c", + "Name": "vss", + "Root": "256d12641a790ce49a7ab88a", + "Items": [ + { + "_id": "67d4a67b5790ad5f60037ebb", + "_tpl": "57838ad32459774a17445cd2", + "upd": { + "StackObjectsCount": 1, + "sptPresetId": "58414a3f2459775a77263531", + "Repairable": { + "Durability": 100, + "MaxDurability": 100 + } + }, + "parentId": "5fe49444ae6628187a2e78b8", + "slotId": "hideout", + "location": { + "x": 0, + "y": 3, + "r": "Horizontal" + } + }, + { + "_id": "67d4a67b5790ad5f60037ebc", + "_tpl": "57838f0b2459774a256959b2", + "parentId": "67d4a67b5790ad5f60037ebb", + "slotId": "mod_magazine", + "upd": {} + }, + { + "_id": "67d4a67b5790ad5f60037ebd", + "_tpl": "57838c962459774a1651ec63", + "parentId": "67d4a67b5790ad5f60037ebb", + "slotId": "mod_muzzle", + "upd": {} + }, + { + "_id": "67d4a67b5790ad5f60037ebe", + "_tpl": "57838e1b2459774a256959b1", + "parentId": "67d4a67b5790ad5f60037ebd", + "slotId": "mod_sight_rear", + "upd": {} + }, + { + "_id": "67d4a67b5790ad5f60037ebf", + "_tpl": "578395402459774a256959b5", + "parentId": "67d4a67b5790ad5f60037ebb", + "slotId": "mod_reciever", + "upd": {} + }, + { + "_id": "67d4a67b5790ad5f60037ec0", + "_tpl": "578395e82459774a0e553c7b", + "parentId": "67d4a67b5790ad5f60037ebb", + "slotId": "mod_stock", + "upd": {} + }, + { + "_id": "67d4a67b5790ad5f60037ec1", + "_tpl": "6565bb7eb4b12a56eb04b084", + "parentId": "67d4a67b5790ad5f60037ebb", + "slotId": "mod_handguard", + "upd": {} + } + ] + }, + { + "Id": "66a094cf01001471dcada009", + "Name": "pkm", + "Root": "8cdb6ac5c8d2f3de438d846a", + "Items": [ + { + "_id": "8cdb6ac5c8d2f3de438d846a", + "_tpl": "64637076203536ad5600c990", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "21eb55e6556b64bc7b9f596c", + "_tpl": "646371779f5f0ea59a04c204", + "parentId": "8cdb6ac5c8d2f3de438d846a", + "slotId": "mod_pistolgrip" + }, + { + "_id": "2c7dbc61b3eb3b88cf3fa1de", + "_tpl": "646372518610c40fc20204e8", + "parentId": "8cdb6ac5c8d2f3de438d846a", + "slotId": "mod_magazine" + }, + { + "_id": "5727eac00445640acf007827", + "_tpl": "646371a9f2404ab67905c8e6", + "parentId": "8cdb6ac5c8d2f3de438d846a", + "slotId": "mod_stock" + }, + { + "_id": "b2da4f652f47aedd067c137b", + "_tpl": "646371faf2404ab67905c8e9", + "parentId": "8cdb6ac5c8d2f3de438d846a", + "slotId": "mod_barrel" + }, + { + "_id": "9e870d6b461c859348d9e888", + "_tpl": "6464d870bb2c580352070cc4", + "parentId": "8cdb6ac5c8d2f3de438d846a", + "slotId": "mod_bipod" + }, + { + "_id": "e6911d1cc6940a0c5d7df8e5", + "_tpl": "6492fb8253acae0af00a29b6", + "parentId": "8cdb6ac5c8d2f3de438d846a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "bb1dd853f4db923c222c167d", + "_tpl": "6492efb8cfcf7c89e701abf3", + "parentId": "b2da4f652f47aedd067c137b", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a094d501001471dca4f8ff", + "Name": "pkp", + "Root": "7571e1d959844f37de2f3fe3", + "Items": [ + { + "_id": "7571e1d959844f37de2f3fe3", + "_tpl": "64ca3d3954fc657e230529cc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "262b7b38e7540832077e9a1d", + "_tpl": "64cbad529f7cf7f75c077fd5", + "parentId": "7571e1d959844f37de2f3fe3", + "slotId": "mod_pistolgrip" + }, + { + "_id": "5deecc6209fe8044aec91370", + "_tpl": "646372518610c40fc20204e8", + "parentId": "7571e1d959844f37de2f3fe3", + "slotId": "mod_magazine" + }, + { + "_id": "24f72bc06f4e369d43a55e9b", + "_tpl": "6492e3a97df7d749100e29ee", + "parentId": "7571e1d959844f37de2f3fe3", + "slotId": "mod_stock" + }, + { + "_id": "b083e76633d6e147315a36d9", + "_tpl": "64639a9aab86f8fd4300146c", + "parentId": "7571e1d959844f37de2f3fe3", + "slotId": "mod_barrel" + }, + { + "_id": "b4b7f351a18d94cd9f2213e7", + "_tpl": "6464d870bb2c580352070cc4", + "parentId": "7571e1d959844f37de2f3fe3", + "slotId": "mod_bipod" + }, + { + "_id": "c7936fb25efc98f2dcec7a2a", + "_tpl": "6492fb8253acae0af00a29b6", + "parentId": "7571e1d959844f37de2f3fe3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a094da01001471dcf36874", + "Name": "rpd", + "Root": "b3d0b5ef658653c5f0c191c9", + "Items": [ + { + "_id": "b3d0b5ef658653c5f0c191c9", + "_tpl": "6513ef33e06849f06c0957ca", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "2065ebe1a65d8c3f5d9fc0cf", + "_tpl": "6513f0a194c72326990a3868", + "parentId": "b3d0b5ef658653c5f0c191c9", + "slotId": "mod_magazine" + }, + { + "_id": "c350523c6d0e531e973a17f6", + "_tpl": "6513f1798cb24472490ee331", + "parentId": "b3d0b5ef658653c5f0c191c9", + "slotId": "mod_stock" + }, + { + "_id": "01f0d195822af3c93b015c90", + "_tpl": "6513eff1e06849f06c0957d4", + "parentId": "b3d0b5ef658653c5f0c191c9", + "slotId": "mod_barrel" + }, + { + "_id": "cd408c5dbbd5cbfb5dd74534", + "_tpl": "6513f05a94c72326990a3866", + "parentId": "b3d0b5ef658653c5f0c191c9", + "slotId": "mod_handguard" + }, + { + "_id": "dd1d2a35c149d8d2fc36365f", + "_tpl": "6513f153e63f29908d0ffaba", + "parentId": "b3d0b5ef658653c5f0c191c9", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0645978fac1f0cbd9ccc931f", + "_tpl": "6513f13a8cb24472490ee32f", + "parentId": "c350523c6d0e531e973a17f6", + "slotId": "mod_pistolgrip" + }, + { + "_id": "d5c907d6155eb89623f84d1b", + "_tpl": "6513f037e06849f06c0957d7", + "parentId": "01f0d195822af3c93b015c90", + "slotId": "mod_bipod" + }, + { + "_id": "14611f2dc22e5bd2f257e206", + "_tpl": "6513f0f5e63f29908d0ffab8", + "parentId": "01f0d195822af3c93b015c90", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a094df01001471dca2215e", + "Name": "rpdn", + "Root": "56f02844edc5469525df8cd0", + "Items": [ + { + "_id": "56f02844edc5469525df8cd0", + "_tpl": "65268d8ecb944ff1e90ea385", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "fullauto" + } + } + }, + { + "_id": "3248b2dc219b5c51baae0528", + "_tpl": "6513f0a194c72326990a3868", + "parentId": "56f02844edc5469525df8cd0", + "slotId": "mod_magazine" + }, + { + "_id": "e46b741a2e3153216d815767", + "_tpl": "6513f1798cb24472490ee331", + "parentId": "56f02844edc5469525df8cd0", + "slotId": "mod_stock" + }, + { + "_id": "dc6d346991082d33e1ed5f92", + "_tpl": "6513eff1e06849f06c0957d4", + "parentId": "56f02844edc5469525df8cd0", + "slotId": "mod_barrel" + }, + { + "_id": "f60691e02a065473b953cee7", + "_tpl": "6513f05a94c72326990a3866", + "parentId": "56f02844edc5469525df8cd0", + "slotId": "mod_handguard" + }, + { + "_id": "565d80d64aeff97df0d88028", + "_tpl": "6513f153e63f29908d0ffaba", + "parentId": "56f02844edc5469525df8cd0", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7a7c7b12300d6e491469ec70", + "_tpl": "6513f13a8cb24472490ee32f", + "parentId": "e46b741a2e3153216d815767", + "slotId": "mod_pistolgrip" + }, + { + "_id": "95ef8ba6aa1bd44d7052cdf0", + "_tpl": "6513f037e06849f06c0957d7", + "parentId": "dc6d346991082d33e1ed5f92", + "slotId": "mod_bipod" + }, + { + "_id": "8146f12af2ff938ead284cbd", + "_tpl": "6513f0f5e63f29908d0ffab8", + "parentId": "dc6d346991082d33e1ed5f92", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a094e601001471dcd20d1c", + "Name": "rsass", + "Root": "4201306982380256f88a146c", + "Items": [ + { + "_id": "4201306982380256f88a146c", + "_tpl": "5a367e5dc4a282000e49738f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "eacbf4f11b1e54fc3756f557", + "_tpl": "5a339805c4a2826c6e06d73d", + "parentId": "4201306982380256f88a146c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6f588e0de489dce30605dbd3", + "_tpl": "5a3501acc4a282000d72293a", + "parentId": "4201306982380256f88a146c", + "slotId": "mod_magazine" + }, + { + "_id": "f34bb4c992d3a257203ef104", + "_tpl": "5a33ca0fc4a282000d72292f", + "parentId": "4201306982380256f88a146c", + "slotId": "mod_stock" + }, + { + "_id": "2965e6e8dbd1b30d637e6dfd", + "_tpl": "5a329052c4a28200741e22d3", + "parentId": "4201306982380256f88a146c", + "slotId": "mod_handguard" + }, + { + "_id": "83042812b7e33086e56eec00", + "_tpl": "5a34fae7c4a2826c6e06d760", + "parentId": "4201306982380256f88a146c", + "slotId": "mod_barrel" + }, + { + "_id": "d384ff5f23de40c89ff77ad6", + "_tpl": "5a33cae9c4a28232980eb086", + "parentId": "f34bb4c992d3a257203ef104", + "slotId": "mod_stock" + }, + { + "_id": "e95d7d0e1dad79392ce8ae6a", + "_tpl": "5a34fd2bc4a282329a73b4c5", + "parentId": "83042812b7e33086e56eec00", + "slotId": "mod_muzzle" + }, + { + "_id": "0ede19abc5c7537ce2e8eb1d", + "_tpl": "5a34fbadc4a28200741e230a", + "parentId": "83042812b7e33086e56eec00", + "slotId": "mod_gas_block" + } + ] + }, + { + "Id": "66a094eb01001471dc1b2157", + "Name": "sr-25", + "Root": "e90f60442a0039f6210e6eb2", + "Items": [ + { + "_id": "e90f60442a0039f6210e6eb2", + "_tpl": "5df8ce05b11454561e39243b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "4ac1e371b2010a7c133321c8", + "_tpl": "55d4b9964bdc2d1d4e8b456e", + "parentId": "e90f60442a0039f6210e6eb2", + "slotId": "mod_pistol_grip" + }, + { + "_id": "34f6d9093767cadfeb6da309", + "_tpl": "5df8f541c41b2312ea3335e3", + "parentId": "e90f60442a0039f6210e6eb2", + "slotId": "mod_magazine" + }, + { + "_id": "c7390a5a108a12d20f959895", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "e90f60442a0039f6210e6eb2", + "slotId": "mod_stock" + }, + { + "_id": "ae83078b572e7b0319c65c86", + "_tpl": "5df8e4080b92095fd441e594", + "parentId": "e90f60442a0039f6210e6eb2", + "slotId": "mod_reciever" + }, + { + "_id": "b840e07a778ea07029848d7c", + "_tpl": "5df8e053bb49d91fb446d6a6", + "parentId": "e90f60442a0039f6210e6eb2", + "slotId": "mod_charge" + }, + { + "_id": "17a41bf598f191d7fc1a3e35", + "_tpl": "5ae30c9a5acfc408fb139a03", + "parentId": "c7390a5a108a12d20f959895", + "slotId": "mod_stock_000" + }, + { + "_id": "5bb8ace1b6317bae879940cb", + "_tpl": "5df917564a9f347bc92edca3", + "parentId": "ae83078b572e7b0319c65c86", + "slotId": "mod_barrel" + }, + { + "_id": "86cc5c233bd1c76f73bf9482", + "_tpl": "5df916dfbb49d91fb446d6b9", + "parentId": "ae83078b572e7b0319c65c86", + "slotId": "mod_handguard" + }, + { + "_id": "ea7c7f492773445c1dadf261", + "_tpl": "5dfa3d7ac41b2312ea33362a", + "parentId": "ae83078b572e7b0319c65c86", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "a5f6e0c47cef39efb1d8b297", + "_tpl": "5dfa3cd1b33c0951220c079b", + "parentId": "5bb8ace1b6317bae879940cb", + "slotId": "mod_muzzle" + }, + { + "_id": "270de558e6455778efbe17c5", + "_tpl": "5dfa3d45dfc58d14537c20b0", + "parentId": "5bb8ace1b6317bae879940cb", + "slotId": "mod_gas_block" + }, + { + "_id": "d2265869a6f035abf55021ab", + "_tpl": "5dfa3d950dee1b22f862eae0", + "parentId": "86cc5c233bd1c76f73bf9482", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a094f001001471dc470ceb", + "Name": "m1a", + "Root": "96b2ffa58a77e6d1671a30c8", + "Items": [ + { + "_id": "96b2ffa58a77e6d1671a30c8", + "_tpl": "5aafa857e5b5b00018480968", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "ae4f991f81964aa132cdb9a2", + "_tpl": "64b9e2037fdfb81df81e3c25", + "parentId": "96b2ffa58a77e6d1671a30c8", + "slotId": "mod_magazine" + }, + { + "_id": "5b9d5e4befdf1fb640b2a90f", + "_tpl": "5aaf8e43e5b5b00015693246", + "parentId": "96b2ffa58a77e6d1671a30c8", + "slotId": "mod_stock" + }, + { + "_id": "38ed19b4ff4e2aef602ec506", + "_tpl": "5aaf9d53e5b5b00015042a52", + "parentId": "96b2ffa58a77e6d1671a30c8", + "slotId": "mod_barrel" + }, + { + "_id": "53178893a28edba1f94ef45b", + "_tpl": "5abcbb20d8ce87001773e258", + "parentId": "96b2ffa58a77e6d1671a30c8", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "73face033f5c3957a1854947", + "_tpl": "5ab24ef9e5b5b00fe93c9209", + "parentId": "5b9d5e4befdf1fb640b2a90f", + "slotId": "mod_mount" + }, + { + "_id": "80d02b0dca7f961a5cd6dda8", + "_tpl": "5aafa1c2e5b5b00015042a56", + "parentId": "38ed19b4ff4e2aef602ec506", + "slotId": "mod_muzzle" + }, + { + "_id": "339bbe8f8ad71552ad4d5c64", + "_tpl": "5aafa49ae5b5b00015042a58", + "parentId": "80d02b0dca7f961a5cd6dda8", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a094f501001471dce83722", + "Name": "svds", + "Root": "95627de918419bbefa952f4b", + "Items": [ + { + "_id": "95627de918419bbefa952f4b", + "_tpl": "5c46fbd72e2216398b5a8c9c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "c3d19101b6e4c252b62250a1", + "_tpl": "5c471be12e221602b66cd9ac", + "parentId": "95627de918419bbefa952f4b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "144af7c928d2a266bf6c01c8", + "_tpl": "5c471c442e221602b542a6f8", + "parentId": "95627de918419bbefa952f4b", + "slotId": "mod_magazine" + }, + { + "_id": "4e6f915f5a8d136a41ea9ecc", + "_tpl": "5c471b5d2e221602b21d4e14", + "parentId": "95627de918419bbefa952f4b", + "slotId": "mod_stock" + }, + { + "_id": "129ad174a3b452af04deb52c", + "_tpl": "5c471cb32e221602b177afaa", + "parentId": "95627de918419bbefa952f4b", + "slotId": "mod_barrel" + }, + { + "_id": "df94eff4434cc914e0162e28", + "_tpl": "5c471c2d2e22164bef5d077f", + "parentId": "95627de918419bbefa952f4b", + "slotId": "mod_mount_001" + }, + { + "_id": "47584bea1bdf82c3dc698c00", + "_tpl": "5c471bd12e221602b4129c3a", + "parentId": "95627de918419bbefa952f4b", + "slotId": "mod_reciever" + }, + { + "_id": "04a342bcc6e2439743958708", + "_tpl": "5c471bfc2e221602b21d4e17", + "parentId": "129ad174a3b452af04deb52c", + "slotId": "mod_muzzle" + }, + { + "_id": "4f4be50ee44369c6ba15ce9c", + "_tpl": "5c471c842e221615214259b5", + "parentId": "129ad174a3b452af04deb52c", + "slotId": "mod_gas_block" + }, + { + "_id": "c2995a3aba61f1b85678e130", + "_tpl": "5c471c6c2e221602b66cd9ae", + "parentId": "df94eff4434cc914e0162e28", + "slotId": "mod_handguard" + }, + { + "_id": "c1ecd45cb0de498d3fd3d02a", + "_tpl": "5c471b7e2e2216152006e46c", + "parentId": "df94eff4434cc914e0162e28", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "840dcc6dcbc3ddd5240ead00", + "_tpl": "5c471ba12e221602b3137d76", + "parentId": "04a342bcc6e2439743958708", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a094fa01001471dc964efd", + "Name": "mk-18", + "Root": "a70c6c55050a3bb1ae35e586", + "Items": [ + { + "_id": "a70c6c55050a3bb1ae35e586", + "_tpl": "5fc22d7c187fea44d52eda44", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6ac430b087a153d138727d00", + "_tpl": "57c55efc2459772d2c6271e7", + "parentId": "a70c6c55050a3bb1ae35e586", + "slotId": "mod_pistol_grip" + }, + { + "_id": "cd0a492c0bc986dc05dffa9e", + "_tpl": "5fc23426900b1d5091531e15", + "parentId": "a70c6c55050a3bb1ae35e586", + "slotId": "mod_magazine" + }, + { + "_id": "6aac63c66ea1a53c3e17e477", + "_tpl": "5649be884bdc2d79388b4577", + "parentId": "a70c6c55050a3bb1ae35e586", + "slotId": "mod_stock_001" + }, + { + "_id": "02d641fc8c3d0c3e3000a030", + "_tpl": "5fc278107283c4046c581489", + "parentId": "a70c6c55050a3bb1ae35e586", + "slotId": "mod_reciever" + }, + { + "_id": "9c11163a83d6cf2a6de46eb0", + "_tpl": "5fc2369685fd526b824a5713", + "parentId": "6aac63c66ea1a53c3e17e477", + "slotId": "mod_stock_000" + }, + { + "_id": "6f92b7b3a40affd332ee04c6", + "_tpl": "5fc23678ab884124df0cd590", + "parentId": "02d641fc8c3d0c3e3000a030", + "slotId": "mod_barrel" + }, + { + "_id": "a23184b45d8950b1d9b194e9", + "_tpl": "5fc235db2770a0045c59c683", + "parentId": "02d641fc8c3d0c3e3000a030", + "slotId": "mod_handguard" + }, + { + "_id": "1d0ccb4af53fa385b22d47f7", + "_tpl": "5fc23636016cce60e8341b05", + "parentId": "6f92b7b3a40affd332ee04c6", + "slotId": "mod_muzzle" + }, + { + "_id": "eb9170362b20af754e279f50", + "_tpl": "5fc2360f900b1d5091531e19", + "parentId": "6f92b7b3a40affd332ee04c6", + "slotId": "mod_gas_block" + } + ] + }, + { + "Id": "66a0950001001471dc36ee37", + "Name": "g28", + "Root": "cfdef7dcf47c9a3041c4e8ce", + "Items": [ + { + "_id": "cfdef7dcf47c9a3041c4e8ce", + "_tpl": "6176aca650224f204c1da3fb", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "744d0a252c2a8eca1809e97e", + "_tpl": "6193dcd0f8ee7e52e4210a28", + "parentId": "cfdef7dcf47c9a3041c4e8ce", + "slotId": "mod_pistol_grip" + }, + { + "_id": "227b79ab954d8fe44f123580", + "_tpl": "617131a4568c120fdd29482d", + "parentId": "cfdef7dcf47c9a3041c4e8ce", + "slotId": "mod_magazine" + }, + { + "_id": "63cb0f570ba577610d86a773", + "_tpl": "617153016c780c1e710c9a2f", + "parentId": "cfdef7dcf47c9a3041c4e8ce", + "slotId": "mod_stock" + }, + { + "_id": "72719c8e07c1fe11d42cc922", + "_tpl": "61713a8fd92c473c770214a4", + "parentId": "cfdef7dcf47c9a3041c4e8ce", + "slotId": "mod_reciever" + }, + { + "_id": "a8d4312ddb40febd3b2a1cb6", + "_tpl": "61702d8a67085e45ef140b24", + "parentId": "cfdef7dcf47c9a3041c4e8ce", + "slotId": "mod_charge" + }, + { + "_id": "ee7a3c8a696c23aad991dee4", + "_tpl": "617155ee50224f204c1da3cd", + "parentId": "63cb0f570ba577610d86a773", + "slotId": "mod_stock_000" + }, + { + "_id": "8f3fa8c19904f8b4c25ac2f0", + "_tpl": "61713cc4d8e3106d9806c109", + "parentId": "72719c8e07c1fe11d42cc922", + "slotId": "mod_scope" + }, + { + "_id": "5780fc7750630a0b2b0e5bba", + "_tpl": "61702be9faa1272e431522c3", + "parentId": "72719c8e07c1fe11d42cc922", + "slotId": "mod_barrel" + }, + { + "_id": "7977bfad8eac98efcadc8878", + "_tpl": "61703001d92c473c77021497", + "parentId": "72719c8e07c1fe11d42cc922", + "slotId": "mod_handguard" + }, + { + "_id": "521f8179397eb694f78098ce", + "_tpl": "5bb20e49d4351e3bac1212de", + "parentId": "72719c8e07c1fe11d42cc922", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "a4143557ce275265599d5b97", + "_tpl": "61715e7e67085e45ef140b33", + "parentId": "ee7a3c8a696c23aad991dee4", + "slotId": "mod_stock_000" + }, + { + "_id": "f4ddd5357724340eae479620", + "_tpl": "61714eec290d254f5e6b2ffc", + "parentId": "8f3fa8c19904f8b4c25ac2f0", + "slotId": "mod_scope_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "232cb84d1e50341d3bf5cc7d", + "_tpl": "61714b2467085e45ef140b2c", + "parentId": "8f3fa8c19904f8b4c25ac2f0", + "slotId": "mod_scope_001" + }, + { + "_id": "cf8c35a4cea740b28fbfb12a", + "_tpl": "61713308d92c473c770214a0", + "parentId": "5780fc7750630a0b2b0e5bba", + "slotId": "mod_muzzle" + }, + { + "_id": "8a20d08944f540722b1051aa", + "_tpl": "61702f1b67085e45ef140b26", + "parentId": "5780fc7750630a0b2b0e5bba", + "slotId": "mod_gas_block" + }, + { + "_id": "a8df3bcc9f8ba42343bb6df0", + "_tpl": "619386379fb0c665d5490dbe", + "parentId": "7977bfad8eac98efcadc8878", + "slotId": "mod_foregrip" + }, + { + "_id": "60d7af90de9133ac77361567", + "_tpl": "58d399e486f77442e0016fe7", + "parentId": "232cb84d1e50341d3bf5cc7d", + "slotId": "mod_scope", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "4f0ed6f876c57f1dd60f2c4b", + "_tpl": "6171367e1cb55961fa0fdb36", + "parentId": "cf8c35a4cea740b28fbfb12a", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a0950901001471dc4f0873", + "Name": "sv-98", + "Root": "d249cc780025fd93f18986a2", + "Items": [ + { + "_id": "d249cc780025fd93f18986a2", + "_tpl": "55801eed4bdc2d89578b4588", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b83f39a6d5cd06c207a9403f", + "_tpl": "559ba5b34bdc2d1f1a8b4582", + "parentId": "d249cc780025fd93f18986a2", + "slotId": "mod_magazine" + }, + { + "_id": "cd20955476f4709ce57e0f46", + "_tpl": "56083e1b4bdc2dc8488b4572", + "parentId": "d249cc780025fd93f18986a2", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f696e995d7c1a22180fcefd5", + "_tpl": "56083eab4bdc2d26448b456a", + "parentId": "d249cc780025fd93f18986a2", + "slotId": "mod_tactical" + }, + { + "_id": "f93b0d8afa135ac49eb468f3", + "_tpl": "560e620e4bdc2d724b8b456b", + "parentId": "d249cc780025fd93f18986a2", + "slotId": "mod_muzzle" + }, + { + "_id": "33be594294538f1b4de0114a", + "_tpl": "61faa91878830f069b6b7967", + "parentId": "d249cc780025fd93f18986a2", + "slotId": "mod_stock" + }, + { + "_id": "efdcaba6ea1953f525acce2e", + "_tpl": "56ea8222d2720b69698b4567", + "parentId": "33be594294538f1b4de0114a", + "slotId": "mod_bipod" + } + ] + }, + { + "Id": "66a0950e01001471dc096c7b", + "Name": "dvl", + "Root": "d337c8527354a6a412054330", + "Items": [ + { + "_id": "d337c8527354a6a412054330", + "_tpl": "588892092459774ac91d4b11", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "37273433dfa844fe8428a82e", + "_tpl": "5888988e24597752fe43a6fa", + "parentId": "d337c8527354a6a412054330", + "slotId": "mod_magazine" + }, + { + "_id": "76f577067bc292d1c0e2a798", + "_tpl": "5888956924597752983e182d", + "parentId": "d337c8527354a6a412054330", + "slotId": "mod_barrel" + }, + { + "_id": "c39a0fad3d84db953ff78e13", + "_tpl": "57c55f172459772d27602381", + "parentId": "d337c8527354a6a412054330", + "slotId": "mod_pistol_grip" + }, + { + "_id": "4a3036fb35d17d68a105a3d4", + "_tpl": "58889d0c2459775bc215d981", + "parentId": "d337c8527354a6a412054330", + "slotId": "mod_stock" + }, + { + "_id": "8307228217be23de83039734", + "_tpl": "5888996c24597754281f9419", + "parentId": "76f577067bc292d1c0e2a798", + "slotId": "mod_muzzle" + }, + { + "_id": "01346357bcc1f264fdff6d02", + "_tpl": "5888976c24597754281f93f5", + "parentId": "76f577067bc292d1c0e2a798", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a0951301001471dcb95572", + "Name": "mosin sniper", + "Root": "b11ca2664f677bc05746fd4a", + "Items": [ + { + "_id": "b11ca2664f677bc05746fd4a", + "_tpl": "5ae08f0a5acfc408fb1398a1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "426e321d4dcac98e5cbf9240", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "b11ca2664f677bc05746fd4a", + "slotId": "mod_magazine" + }, + { + "_id": "b4fd9868db8accaff4fe48d6", + "_tpl": "5ae096d95acfc400185c2c81", + "parentId": "b11ca2664f677bc05746fd4a", + "slotId": "mod_stock" + }, + { + "_id": "8a163bbe091e4e2e8555fb53", + "_tpl": "5ae09bff5acfc4001562219d", + "parentId": "b11ca2664f677bc05746fd4a", + "slotId": "mod_barrel" + }, + { + "_id": "ba5e0b2ad98a6a384284915a", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "8a163bbe091e4e2e8555fb53", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "81c11cc67199b957bc9b4b82", + "_tpl": "5ae099925acfc4001a5fc7b3", + "parentId": "8a163bbe091e4e2e8555fb53", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0951c01001471dc3cd25a", + "Name": "mosin infantry", + "Root": "83b923947fb188e0c6ee6bd0", + "Items": [ + { + "_id": "83b923947fb188e0c6ee6bd0", + "_tpl": "5bfd297f0db834001a669119", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "f23dc0a09f08ffb0bedf503f", + "_tpl": "5ae0973a5acfc4001562206c", + "parentId": "83b923947fb188e0c6ee6bd0", + "slotId": "mod_magazine" + }, + { + "_id": "4b1c8a82dc643c96f23cbf20", + "_tpl": "5bfd35380db83400232fe5cc", + "parentId": "83b923947fb188e0c6ee6bd0", + "slotId": "mod_stock" + }, + { + "_id": "f9401901bd53432f97328313", + "_tpl": "5ae09bff5acfc4001562219d", + "parentId": "83b923947fb188e0c6ee6bd0", + "slotId": "mod_barrel" + }, + { + "_id": "a0a674f8a21f035420f3851a", + "_tpl": "5ae099875acfc4001714e593", + "parentId": "f9401901bd53432f97328313", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5b610af969a92a8f3531b601", + "_tpl": "5ae099925acfc4001a5fc7b3", + "parentId": "f9401901bd53432f97328313", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0952501001471dc1e7b42", + "Name": "vpo-215", + "Root": "5bc56f4fc01db1ed3779992e", + "Items": [ + { + "_id": "5bc56f4fc01db1ed3779992e", + "_tpl": "5de652c31b7e3716273428be", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "ca452a33af854847a00e2602", + "_tpl": "5de653abf76fdc1ce94a5a2a", + "parentId": "5bc56f4fc01db1ed3779992e", + "slotId": "mod_magazine" + }, + { + "_id": "a48f12949845e66ccd874c12", + "_tpl": "5de655be4a9f347bc92edb88", + "parentId": "5bc56f4fc01db1ed3779992e", + "slotId": "mod_stock" + }, + { + "_id": "d19ca5fb3b6e21ee1213124e", + "_tpl": "5de65547883dde217541644b", + "parentId": "5bc56f4fc01db1ed3779992e", + "slotId": "mod_barrel" + }, + { + "_id": "bf8f4638a20f03c16759b1ed", + "_tpl": "5de6558e9f98ac2bc65950fc", + "parentId": "5bc56f4fc01db1ed3779992e", + "slotId": "mod_mount" + }, + { + "_id": "5a12524edea962240c65103f", + "_tpl": "5de6556a205ddc616a6bc4f7", + "parentId": "d19ca5fb3b6e21ee1213124e", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a0952c01001471dcf48038", + "Name": "m700", + "Root": "8f426e7daa6eba15f96161ec", + "Items": [ + { + "_id": "8f426e7daa6eba15f96161ec", + "_tpl": "5bfea6e90db834001b7347f3", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "e27fe724e25b70640aa42a57", + "_tpl": "5bfea7ad0db834001c38f1ee", + "parentId": "8f426e7daa6eba15f96161ec", + "slotId": "mod_magazine" + }, + { + "_id": "58ec36e5488e7415ac5b748b", + "_tpl": "5bfeb32b0db834001a6694d9", + "parentId": "8f426e7daa6eba15f96161ec", + "slotId": "mod_stock" + }, + { + "_id": "4ce95ca84657dccbca752552", + "_tpl": "5bfebc320db8340019668d79", + "parentId": "8f426e7daa6eba15f96161ec", + "slotId": "mod_barrel" + } + ] + }, + { + "Id": "66a0953101001471dc500416", + "Name": "t-5000", + "Root": "012fefd27d0da869bd3984dd", + "Items": [ + { + "_id": "012fefd27d0da869bd3984dd", + "_tpl": "5df24cf80dee1b22f862e9bc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "0f579ddc66560507b00bce99", + "_tpl": "5df25b6c0b92095fd441e4cf", + "parentId": "012fefd27d0da869bd3984dd", + "slotId": "mod_magazine" + }, + { + "_id": "015dfb12932474359be3a722", + "_tpl": "5df256570dee1b22f862e9c4", + "parentId": "012fefd27d0da869bd3984dd", + "slotId": "mod_barrel" + }, + { + "_id": "ee426f95cba8fa85f4ba860b", + "_tpl": "5df35e59c41b2312ea3334d5", + "parentId": "012fefd27d0da869bd3984dd", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "4a07439c23814791afc09c67", + "_tpl": "5df35e970b92095fd441e4d2", + "parentId": "012fefd27d0da869bd3984dd", + "slotId": "mod_mount" + }, + { + "_id": "42963ab706955675f8b8c64e", + "_tpl": "5df35e7f2a78646d96665dd4", + "parentId": "015dfb12932474359be3a722", + "slotId": "mod_muzzle" + }, + { + "_id": "15750aea8ce6de781e75c0bb", + "_tpl": "5df25d3bfd6b4e6e2276dc9a", + "parentId": "ee426f95cba8fa85f4ba860b", + "slotId": "mod_handguard" + }, + { + "_id": "38fad57a74aad68b18559c61", + "_tpl": "5df38a5fb74cd90030650cb6", + "parentId": "ee426f95cba8fa85f4ba860b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "422e649c773061ebdc2707db", + "_tpl": "5df35ddddfc58d14537c2036", + "parentId": "ee426f95cba8fa85f4ba860b", + "slotId": "mod_stock_axis" + }, + { + "_id": "f14e1b40d90d2b5415f7f48c", + "_tpl": "5df35eb2b11454561e3923e2", + "parentId": "15750aea8ce6de781e75c0bb", + "slotId": "mod_mount_000" + }, + { + "_id": "29eb61fab71c78ef59e547bc", + "_tpl": "5df35eb2b11454561e3923e2", + "parentId": "15750aea8ce6de781e75c0bb", + "slotId": "mod_mount_001" + }, + { + "_id": "136708de6cc364869472fb9c", + "_tpl": "5df35ea9c41b2312ea3334d8", + "parentId": "15750aea8ce6de781e75c0bb", + "slotId": "mod_mount_002" + }, + { + "_id": "f00566fa785cf2e4276b174a", + "_tpl": "5df35eb2b11454561e3923e2", + "parentId": "15750aea8ce6de781e75c0bb", + "slotId": "mod_mount_003" + }, + { + "_id": "c0f61b00232fee8d5a1a944f", + "_tpl": "5df36948bb49d91fb446d5ad", + "parentId": "15750aea8ce6de781e75c0bb", + "slotId": "mod_foregrip" + } + ] + }, + { + "Id": "66a0953b01001471dc7c70ff", + "Name": "axmc", + "Root": "190dc5869fe0d1b3c96c1df8", + "Items": [ + { + "_id": "190dc5869fe0d1b3c96c1df8", + "_tpl": "627e14b21713922ded6f2c15", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "e48ea988963731619cb07eb7", + "_tpl": "628120fd5631d45211793c9f", + "parentId": "190dc5869fe0d1b3c96c1df8", + "slotId": "mod_magazine" + }, + { + "_id": "b7f19df900b016adbf807a2f", + "_tpl": "62811e2510e26c1f344e6554", + "parentId": "190dc5869fe0d1b3c96c1df8", + "slotId": "mod_pistol_grip", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "1328eed67f61ae631d70465c", + "_tpl": "62811cd7308cb521f87a8f99", + "parentId": "190dc5869fe0d1b3c96c1df8", + "slotId": "mod_charge" + }, + { + "_id": "021eb3b066ffea95699dcf30", + "_tpl": "62811f828193841aca4a45c3", + "parentId": "b7f19df900b016adbf807a2f", + "slotId": "mod_stock" + }, + { + "_id": "a01d99ffa38894cfe92ecfde", + "_tpl": "6281204f308cb521f87a8f9b", + "parentId": "b7f19df900b016adbf807a2f", + "slotId": "mod_reciever" + }, + { + "_id": "0efbed0bf0094650c6396bb4", + "_tpl": "6281209662cba23f6c4d7a19", + "parentId": "a01d99ffa38894cfe92ecfde", + "slotId": "mod_handguard" + }, + { + "_id": "7f03e4191abe469b33cce1b1", + "_tpl": "6281212a09427b40ab14e770", + "parentId": "a01d99ffa38894cfe92ecfde", + "slotId": "mod_foregrip" + }, + { + "_id": "28dca461f8686cd9213e3111", + "_tpl": "62811fbf09427b40ab14e767", + "parentId": "a01d99ffa38894cfe92ecfde", + "slotId": "mod_reciever" + }, + { + "_id": "3fc3dc38a31e8f5f8c08dc32", + "_tpl": "628120c21d5df4475f46a337", + "parentId": "0efbed0bf0094650c6396bb4", + "slotId": "mod_mount_000" + }, + { + "_id": "1b2e41a0899a1a0d333eab79", + "_tpl": "628120d309427b40ab14e76d", + "parentId": "0efbed0bf0094650c6396bb4", + "slotId": "mod_mount_001" + }, + { + "_id": "7bb5b8c4a2147d5ccf1b428b", + "_tpl": "628120d309427b40ab14e76d", + "parentId": "0efbed0bf0094650c6396bb4", + "slotId": "mod_mount_002" + }, + { + "_id": "161df0122e925163175bbf12", + "_tpl": "628120dd308cb521f87a8fa1", + "parentId": "0efbed0bf0094650c6396bb4", + "slotId": "mod_mount_003" + }, + { + "_id": "c15a5257e283673544611435", + "_tpl": "628121434fa03b6b6c35dc6a", + "parentId": "28dca461f8686cd9213e3111", + "slotId": "mod_barrel" + }, + { + "_id": "64cd22e15c719ea46e340241", + "_tpl": "62812081d23f207deb0ab216", + "parentId": "c15a5257e283673544611435", + "slotId": "mod_muzzle" + }, + { + "_id": "b87cb084054d5ce67a2bcd57", + "_tpl": "628120621d5df4475f46a335", + "parentId": "64cd22e15c719ea46e340241", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a095f401001471dc121586", + "Name": "apb", + "Root": "141f54dd9ade57116cc5c8d0", + "Items": [ + { + "_id": "141f54dd9ade57116cc5c8d0", + "_tpl": "5abccb7dd8ce87001773e277", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "231cca3579c0370255200102", + "_tpl": "5a17fb03fcdbcbcae668728f", + "parentId": "141f54dd9ade57116cc5c8d0", + "slotId": "mod_magazine" + }, + { + "_id": "0c9af15b39408f61e41f109e", + "_tpl": "5a17fb9dfcdbcbcae6687291", + "parentId": "141f54dd9ade57116cc5c8d0", + "slotId": "mod_stock" + }, + { + "_id": "7651ea7cb04ec4c6935124f3", + "_tpl": "5a17fc70fcdbcb0176308b3d", + "parentId": "141f54dd9ade57116cc5c8d0", + "slotId": "mod_pistol_grip" + }, + { + "_id": "aa5ce6d59ec69c9120435c0d", + "_tpl": "5aba62f8d8ce87001943946b", + "parentId": "141f54dd9ade57116cc5c8d0", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7cdce1107bc2db663f03fbdc", + "_tpl": "5aba639ed8ce8700182ece67", + "parentId": "141f54dd9ade57116cc5c8d0", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "37d90acb6653af926fab0c7c", + "_tpl": "5abcc328d8ce8700194394f3", + "parentId": "141f54dd9ade57116cc5c8d0", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a095f901001471dc76bd69", + "Name": "m9a3", + "Root": "7b9582a2414f56c63d095b6d", + "Items": [ + { + "_id": "7b9582a2414f56c63d095b6d", + "_tpl": "5cadc190ae921500103bb3b6", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "df54969c6f42d60214be4ceb", + "_tpl": "5cadc1c6ae9215000f2775a4", + "parentId": "7b9582a2414f56c63d095b6d", + "slotId": "mod_barrel" + }, + { + "_id": "d907a19fd108e028f45f2ece", + "_tpl": "5cadc431ae921500113bb8d5", + "parentId": "7b9582a2414f56c63d095b6d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5a8dbd57dd87fc7362c5d678", + "_tpl": "5cadc55cae921500103bb3be", + "parentId": "7b9582a2414f56c63d095b6d", + "slotId": "mod_reciever" + }, + { + "_id": "b1e0bb6a76950052dee1b89d", + "_tpl": "5cadc2e0ae9215051e1c21e7", + "parentId": "7b9582a2414f56c63d095b6d", + "slotId": "mod_magazine" + }, + { + "_id": "76b2553d65c45227f2f7a684", + "_tpl": "5cadc390ae921500126a77f1", + "parentId": "df54969c6f42d60214be4ceb", + "slotId": "mod_muzzle" + }, + { + "_id": "dc2cf74c7d87c25ad2681ed2", + "_tpl": "5cadd940ae9215051e1c2316", + "parentId": "5a8dbd57dd87fc7362c5d678", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5660204250693f12ac549a82", + "_tpl": "5cadd919ae921500126a77f3", + "parentId": "5a8dbd57dd87fc7362c5d678", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a095ff01001471dc04af3b", + "Name": "rhino", + "Root": "a1261569d59361c1c04253af", + "Items": [ + { + "_id": "a1261569d59361c1c04253af", + "_tpl": "624c2e8614da335f1e034d8c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5c3428965975f2742f80eeaa", + "_tpl": "624c3074dbbd335e8e6becf3", + "parentId": "a1261569d59361c1c04253af", + "slotId": "mod_magazine" + }, + { + "_id": "dde56a1ad289a0c1a7fe8dab", + "_tpl": "619f4d304c58466fe1228437", + "parentId": "a1261569d59361c1c04253af", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c3ae795de411abd8ebec4ea1", + "_tpl": "619f4bffd25cbd424731fb97", + "parentId": "a1261569d59361c1c04253af", + "slotId": "mod_pistol_grip" + } + ] + }, + { + "Id": "66a0960701001471dcf4c210", + "Name": "rhino 50ds", + "Root": "54400e33d381cc006d29d3ee", + "Items": [ + { + "_id": "54400e33d381cc006d29d3ee", + "_tpl": "61a4c8884f95bc3b2c5dc96f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "d3e15ceee7fef2bbc7d6a20c", + "_tpl": "619f54a1d25cbd424731fb99", + "parentId": "54400e33d381cc006d29d3ee", + "slotId": "mod_magazine" + }, + { + "_id": "0e0072d1b302562ef0944c53", + "_tpl": "619f4cee4c58466fe1228435", + "parentId": "54400e33d381cc006d29d3ee", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "bd5bdd06f330643a7caa427c", + "_tpl": "619f4d304c58466fe1228437", + "parentId": "54400e33d381cc006d29d3ee", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "d968327e2a7a1378d3fca97b", + "_tpl": "619f4bffd25cbd424731fb97", + "parentId": "54400e33d381cc006d29d3ee", + "slotId": "mod_pistol_grip" + } + ] + }, + { + "Id": "66a0961001001471dcbd40be", + "Name": "m1911a1", + "Root": "87b0753f051fa4e792a5986e", + "Items": [ + { + "_id": "87b0753f051fa4e792a5986e", + "_tpl": "5e81c3cbac2bb513793cdc75", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1948061a57f6e4929204b374", + "_tpl": "5e81c519cb2b95385c177551", + "parentId": "87b0753f051fa4e792a5986e", + "slotId": "mod_barrel" + }, + { + "_id": "17fd9ef0542d30a413de96ac", + "_tpl": "5e81c6bf763d9f754677beff", + "parentId": "87b0753f051fa4e792a5986e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "c76529568f03bfe485f53996", + "_tpl": "5e81edc13397a21db957f6a1", + "parentId": "87b0753f051fa4e792a5986e", + "slotId": "mod_reciever" + }, + { + "_id": "365313d17925f61ee72ee861", + "_tpl": "5e81c4ca763d9f754677befa", + "parentId": "87b0753f051fa4e792a5986e", + "slotId": "mod_magazine" + }, + { + "_id": "ba7db7d1aa0b7a340d545b76", + "_tpl": "5e81c6a2ac2bb513793cdc7f", + "parentId": "87b0753f051fa4e792a5986e", + "slotId": "mod_trigger" + }, + { + "_id": "4291c1ef406b3eec31643aa2", + "_tpl": "5e81c550763d9f754677befd", + "parentId": "87b0753f051fa4e792a5986e", + "slotId": "mod_hammer" + }, + { + "_id": "640c6980507e09efde21be95", + "_tpl": "5e81c539cb2b95385c177553", + "parentId": "87b0753f051fa4e792a5986e", + "slotId": "mod_catch" + }, + { + "_id": "c76ce29040a56927b719bd2c", + "_tpl": "5e81ee4dcb2b95385c177582", + "parentId": "c76529568f03bfe485f53996", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f1f3b4f010584692e952d20c", + "_tpl": "5e81ee213397a21db957f6a6", + "parentId": "c76529568f03bfe485f53996", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0961701001471dc6e4166", + "Name": "mew mew", + "Root": "4f947dcc300fa9b757b8d515", + "Items": [ + { + "_id": "4f947dcc300fa9b757b8d515", + "_tpl": "5f36a0e5fbf956000b716b65", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "5f3a5e1677c55c9ae088498b", + "_tpl": "5f3e7801153b8571434a924c", + "parentId": "4f947dcc300fa9b757b8d515", + "slotId": "mod_barrel" + }, + { + "_id": "bc5d8f9cd9c1958ccb267e63", + "_tpl": "5f3e778efcd9b651187d7201", + "parentId": "4f947dcc300fa9b757b8d515", + "slotId": "mod_pistol_grip" + }, + { + "_id": "baa439b734d4666e4430c332", + "_tpl": "5f3e7823ddc4f03b010e2045", + "parentId": "4f947dcc300fa9b757b8d515", + "slotId": "mod_reciever" + }, + { + "_id": "751e7d58c84208bcc7d59c66", + "_tpl": "5f3e77b26cda304dcc634057", + "parentId": "4f947dcc300fa9b757b8d515", + "slotId": "mod_magazine" + }, + { + "_id": "66cbd44c3e754710c0a94246", + "_tpl": "5f3e772a670e2a7b01739a52", + "parentId": "4f947dcc300fa9b757b8d515", + "slotId": "mod_trigger" + }, + { + "_id": "c0cdafc1c12337ed7049c5f0", + "_tpl": "5f3e76d86cda304dcc634054", + "parentId": "4f947dcc300fa9b757b8d515", + "slotId": "mod_hammer" + }, + { + "_id": "3b5fd7391c6b852c1c101635", + "_tpl": "5f3e777688ca2d00ad199d25", + "parentId": "4f947dcc300fa9b757b8d515", + "slotId": "mod_catch" + }, + { + "_id": "c1b5e69e84ee897c67729aaa", + "_tpl": "5f3e7897ddc4f03b010e204a", + "parentId": "baa439b734d4666e4430c332", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "859ec3410d529149074e7db7", + "_tpl": "5f3e78a7fbf956000b716b8e", + "parentId": "baa439b734d4666e4430c332", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0961d01001471dc37c3f0", + "Name": "57mk2", + "Root": "fc57a27187730b0d85152374", + "Items": [ + { + "_id": "fc57a27187730b0d85152374", + "_tpl": "5d3eb3b0a4b93615055e84d2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "0206abfc779ec52717b74b39", + "_tpl": "5d3eb5b6a4b9361eab311902", + "parentId": "fc57a27187730b0d85152374", + "slotId": "mod_barrel" + }, + { + "_id": "f806b49248d7effa71a6c70d", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "fc57a27187730b0d85152374", + "slotId": "mod_reciever" + }, + { + "_id": "2d2e3c7fefd25fee002e2afa", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "fc57a27187730b0d85152374", + "slotId": "mod_magazine" + }, + { + "_id": "b9abc28693ac6dc03b83c9ab", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "f806b49248d7effa71a6c70d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5033c83f0127162dec6605e7", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "f806b49248d7effa71a6c70d", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0962701001471dc5441f1", + "Name": "57mk2FDE", + "Root": "d650f9ac08cba90b0ec2a07a", + "Items": [ + { + "_id": "d650f9ac08cba90b0ec2a07a", + "_tpl": "5d67abc1a4b93614ec50137f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "498e1560f99e3a564baf3880", + "_tpl": "5d3eb59ea4b9361c284bb4b2", + "parentId": "d650f9ac08cba90b0ec2a07a", + "slotId": "mod_barrel" + }, + { + "_id": "5a7b352123fb2489fdd26f0d", + "_tpl": "5d3eb44aa4b93650d64e4979", + "parentId": "d650f9ac08cba90b0ec2a07a", + "slotId": "mod_reciever" + }, + { + "_id": "34dc56042c48fc56490ffe39", + "_tpl": "5d3eb5eca4b9363b1f22f8e4", + "parentId": "d650f9ac08cba90b0ec2a07a", + "slotId": "mod_magazine" + }, + { + "_id": "1e2864cd50e567debd4a30bc", + "_tpl": "5d3ef698a4b9361182109872", + "parentId": "498e1560f99e3a564baf3880", + "slotId": "mod_muzzle" + }, + { + "_id": "3c6b14edc2baa4cdb330cb6e", + "_tpl": "5d3eb4aba4b93650d64e497d", + "parentId": "5a7b352123fb2489fdd26f0d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "25a998691bbb0a5e25210771", + "_tpl": "5d3eb536a4b9363b1f22f8e2", + "parentId": "5a7b352123fb2489fdd26f0d", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0963801001471dc93832c", + "Name": "glock17", + "Root": "4e6b1e07ab24e684991f3bd7", + "Items": [ + { + "_id": "4e6b1e07ab24e684991f3bd7", + "_tpl": "5a7ae0c351dfba0017554310", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "531d1d19bca3fef73f162da2", + "_tpl": "5a6b5f868dc32e000a311389", + "parentId": "4e6b1e07ab24e684991f3bd7", + "slotId": "mod_barrel" + }, + { + "_id": "5398e8f21e9722afcf890a63", + "_tpl": "5a6f5e048dc32e00094b97da", + "parentId": "4e6b1e07ab24e684991f3bd7", + "slotId": "mod_reciever" + }, + { + "_id": "cb4e6f76f6da0ad6503a1b06", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "4e6b1e07ab24e684991f3bd7", + "slotId": "mod_magazine" + }, + { + "_id": "4b3c194b2579b6ac1e83709a", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "5398e8f21e9722afcf890a63", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "c2124b77275299d129cdd8bd", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "5398e8f21e9722afcf890a63", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0963e01001471dc9fc03f", + "Name": "glock18c", + "Root": "c88e9fb7764f5ece0b901d69", + "Items": [ + { + "_id": "c88e9fb7764f5ece0b901d69", + "_tpl": "5b1fa9b25acfc40018633c01", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "471e6e9386bf79f2c28a46a9", + "_tpl": "5b1fa9ea5acfc40018633c0a", + "parentId": "c88e9fb7764f5ece0b901d69", + "slotId": "mod_barrel" + }, + { + "_id": "fd700ad1dd4e83e37de5f8e3", + "_tpl": "5b1faa0f5acfc40dc528aeb5", + "parentId": "c88e9fb7764f5ece0b901d69", + "slotId": "mod_reciever" + }, + { + "_id": "1c92a30d70ee17ebff0ce012", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "c88e9fb7764f5ece0b901d69", + "slotId": "mod_magazine" + }, + { + "_id": "b933024c1b7216810a40fc99", + "_tpl": "5a6f5d528dc32e00094b97d9", + "parentId": "fd700ad1dd4e83e37de5f8e3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "b841ff06210b9298513646a7", + "_tpl": "5a6f58f68dc32e000a311390", + "parentId": "fd700ad1dd4e83e37de5f8e3", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0964301001471dc91e447", + "Name": "glock19", + "Root": "5e11e8e75f822c234725ccd1", + "Items": [ + { + "_id": "5e11e8e75f822c234725ccd1", + "_tpl": "63088377b5cd696784087147", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "0de208fa1b09dfa85f24cd82", + "_tpl": "630764fea987397c0816d219", + "parentId": "5e11e8e75f822c234725ccd1", + "slotId": "mod_barrel" + }, + { + "_id": "4baf3e2076db0df6ec76556d", + "_tpl": "63075cc5962d0247b029dc2a", + "parentId": "5e11e8e75f822c234725ccd1", + "slotId": "mod_reciever" + }, + { + "_id": "17d9660fc7e5e7baa3f57d7d", + "_tpl": "63076701a987397c0816d21b", + "parentId": "5e11e8e75f822c234725ccd1", + "slotId": "mod_magazine" + }, + { + "_id": "d5de0d6bfe7a2eb00112343e", + "_tpl": "630765cb962d0247b029dc45", + "parentId": "4baf3e2076db0df6ec76556d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7616c9f5210424edce3c2c5c", + "_tpl": "630765777d50ff5e8a1ea718", + "parentId": "4baf3e2076db0df6ec76556d", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0964a01001471dc61224d", + "Name": "usp", + "Root": "caba04797f5cb86a4d3a99c9", + "Items": [ + { + "_id": "caba04797f5cb86a4d3a99c9", + "_tpl": "6193a720f8ee7e52e42109ed", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1b22f49d42e5be8d2a0ee2ea", + "_tpl": "6194ef39de3cdf1d2614a768", + "parentId": "caba04797f5cb86a4d3a99c9", + "slotId": "mod_barrel" + }, + { + "_id": "ea7967c50796e20f693ac1d7", + "_tpl": "6193d382ed0429009f543e65", + "parentId": "caba04797f5cb86a4d3a99c9", + "slotId": "mod_reciever" + }, + { + "_id": "3b9a55aea001ae25e5744078", + "_tpl": "6193d338de3cdf1d2614a6fc", + "parentId": "caba04797f5cb86a4d3a99c9", + "slotId": "mod_magazine" + }, + { + "_id": "7e24240f3fb3cdce855d72ca", + "_tpl": "6193d3cded0429009f543e6a", + "parentId": "caba04797f5cb86a4d3a99c9", + "slotId": "mod_trigger" + }, + { + "_id": "2c501a7438546fe2b99270c0", + "_tpl": "6193d3be7c6c7b169525f0da", + "parentId": "caba04797f5cb86a4d3a99c9", + "slotId": "mod_hammer" + }, + { + "_id": "0ffa41727cfd498e5bba19bc", + "_tpl": "6193d5d4f8ee7e52e4210a1b", + "parentId": "caba04797f5cb86a4d3a99c9", + "slotId": "mod_catch" + }, + { + "_id": "8d81ba08427cf9ac3b872b00", + "_tpl": "6194f2912d2c397d6600348d", + "parentId": "ea7967c50796e20f693ac1d7", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "e98387855406f071c6c4dd2a", + "_tpl": "6194f35c18a3974e5e7421e6", + "parentId": "ea7967c50796e20f693ac1d7", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0965101001471dca2a0c9", + "Name": "pl-15", + "Root": "6d5f283623b769d26873703d", + "Items": [ + { + "_id": "6d5f283623b769d26873703d", + "_tpl": "602a9740da11d6478d5a06dc", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "075db9d351fdbe1bbe9c1dd9", + "_tpl": "602a95edda11d6478d5a06da", + "parentId": "6d5f283623b769d26873703d", + "slotId": "mod_barrel" + }, + { + "_id": "037a10ed05cd512bf2157fc6", + "_tpl": "60228924961b8d75ee233c32", + "parentId": "6d5f283623b769d26873703d", + "slotId": "mod_reciever" + }, + { + "_id": "a9d9e8b0c45ed468033ff3da", + "_tpl": "602286df23506e50807090c6", + "parentId": "6d5f283623b769d26873703d", + "slotId": "mod_magazine" + }, + { + "_id": "f743fca5588e99f64f23d783", + "_tpl": "60229948cacb6b0506369e27", + "parentId": "037a10ed05cd512bf2157fc6", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "26d27a2ca19e1cd68b4290ef", + "_tpl": "60228a76d62c9b14ed777a66", + "parentId": "037a10ed05cd512bf2157fc6", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0965801001471dcaae5f0", + "Name": "pmt", + "Root": "f09d0a4b3590773182903b61", + "Items": [ + { + "_id": "f09d0a4b3590773182903b61", + "_tpl": "579204f224597773d619e051", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "22ed977bca0938cfa456793f", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "f09d0a4b3590773182903b61", + "slotId": "mod_magazine" + }, + { + "_id": "da057c42e9166c64e704f8b9", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "f09d0a4b3590773182903b61", + "slotId": "mod_reciever" + }, + { + "_id": "255de678d104457f33f19fac", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "f09d0a4b3590773182903b61", + "slotId": "mod_pistolgrip" + }, + { + "_id": "9815c63b8e3fa37ab53e962e", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "da057c42e9166c64e704f8b9", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0965d01001471dc27da7e", + "Name": "pm 9x18", + "Root": "26e82513479ba4604bf67bce", + "Items": [ + { + "_id": "26e82513479ba4604bf67bce", + "_tpl": "5448bd6b4bdc2dfc2f8b4569", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "318e16f2cf199a2a2f484ae4", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "26e82513479ba4604bf67bce", + "slotId": "mod_magazine" + }, + { + "_id": "f3751e8f06bb9f8413b2d3a7", + "_tpl": "6374a822e629013b9c0645c8", + "parentId": "26e82513479ba4604bf67bce", + "slotId": "mod_reciever" + }, + { + "_id": "5f3c156a84eebbc38a48bdfe", + "_tpl": "6374a7e7417239a7bf00f042", + "parentId": "26e82513479ba4604bf67bce", + "slotId": "mod_pistolgrip" + }, + { + "_id": "94c2b8c9fc736d3df070c7f4", + "_tpl": "63c6adcfb4ba094317063742", + "parentId": "f3751e8f06bb9f8413b2d3a7", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0966601001471dce1b9c3", + "Name": "pb 9x18", + "Root": "6226db6cb70efb1d64349969", + "Items": [ + { + "_id": "6226db6cb70efb1d64349969", + "_tpl": "56e0598dd2720bb5668b45a6", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "28a944e22ea653278ea76961", + "_tpl": "5448c12b4bdc2d02308b456f", + "parentId": "6226db6cb70efb1d64349969", + "slotId": "mod_magazine" + }, + { + "_id": "60538fd984a4870c50e549eb", + "_tpl": "56e05b06d2720bb2668b4586", + "parentId": "6226db6cb70efb1d64349969", + "slotId": "mod_muzzle" + }, + { + "_id": "9974661a7b7a0de9cd9a72c4", + "_tpl": "56e05a6ed2720bd0748b4567", + "parentId": "6226db6cb70efb1d64349969", + "slotId": "mod_pistolgrip" + } + ] + }, + { + "Id": "66a0966e01001471dca2f566", + "Name": "rsh", + "Root": "e2f8525a67b413cfa87beec1", + "Items": [ + { + "_id": "e2f8525a67b413cfa87beec1", + "_tpl": "633ec7c2a6918cb895019c6c", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "7f171cc34e6e893d1c72c418", + "_tpl": "633ec6ee025b096d320a3b15", + "parentId": "e2f8525a67b413cfa87beec1", + "slotId": "mod_magazine" + }, + { + "_id": "bd9a98dd0fe138de5b5cce84", + "_tpl": "633ec8e4025b096d320a3b1e", + "parentId": "e2f8525a67b413cfa87beec1", + "slotId": "mod_pistol_grip" + } + ] + }, + { + "Id": "66a0967401001471dc892df0", + "Name": "p226r", + "Root": "6ae5a7d5c81d9e5a96ebb8b5", + "Items": [ + { + "_id": "6ae5a7d5c81d9e5a96ebb8b5", + "_tpl": "56d59856d2720bd8418b456a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "e7393b1fd9ae06aa06e7b041", + "_tpl": "56d5a1f7d2720bb3418b456a", + "parentId": "6ae5a7d5c81d9e5a96ebb8b5", + "slotId": "mod_barrel" + }, + { + "_id": "1cf8ae2a4624e526c5b97e16", + "_tpl": "56d5a2bbd2720bb8418b456a", + "parentId": "6ae5a7d5c81d9e5a96ebb8b5", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5d1747fd22ef7da41a141fa1", + "_tpl": "56d5a407d2720bb3418b456b", + "parentId": "6ae5a7d5c81d9e5a96ebb8b5", + "slotId": "mod_reciever" + }, + { + "_id": "b460837bdbf9d3d81835d248", + "_tpl": "56d59948d2720bb7418b4582", + "parentId": "6ae5a7d5c81d9e5a96ebb8b5", + "slotId": "mod_magazine" + }, + { + "_id": "df3485cbdd9f2c7bf87af8fc", + "_tpl": "56d5a77ed2720b90418b4568", + "parentId": "5d1747fd22ef7da41a141fa1", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ccbd0610e6f46ed1e9806ce4", + "_tpl": "56d5a661d2720bd8418b456b", + "parentId": "5d1747fd22ef7da41a141fa1", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0967b01001471dcef9572", + "Name": "sr-1mp", + "Root": "e57e1e8767dc9913b7edf264", + "Items": [ + { + "_id": "e57e1e8767dc9913b7edf264", + "_tpl": "59f98b4986f7746f546d2cef", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "89a864d22ee84f7a78f4b86c", + "_tpl": "59f99a7d86f7745b134aa97b", + "parentId": "e57e1e8767dc9913b7edf264", + "slotId": "mod_magazine" + } + ] + }, + { + "Id": "66a0968301001471dc2291c0", + "Name": "aps", + "Root": "7378a73f4b174e767965fa91", + "Items": [ + { + "_id": "7378a73f4b174e767965fa91", + "_tpl": "5a17f98cfcdbcb0980087290", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b3b014c08aa22133857cab6c", + "_tpl": "5a17fb03fcdbcbcae668728f", + "parentId": "7378a73f4b174e767965fa91", + "slotId": "mod_magazine" + }, + { + "_id": "aa9babdffc2098d724bf48a0", + "_tpl": "5a17fc70fcdbcb0176308b3d", + "parentId": "7378a73f4b174e767965fa91", + "slotId": "mod_pistol_grip" + }, + { + "_id": "6c8cf1d254bf50efca555d64", + "_tpl": "5aba62f8d8ce87001943946b", + "parentId": "7378a73f4b174e767965fa91", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "7c6ca92ec83eb703117388ba", + "_tpl": "5aba637ad8ce87001773e17f", + "parentId": "7378a73f4b174e767965fa91", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a0968801001471dcf5a0b8", + "Name": "tt 762x25", + "Root": "b2e6c487b866326e1175b16e", + "Items": [ + { + "_id": "b2e6c487b866326e1175b16e", + "_tpl": "571a12c42459771f627b58a0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "cc7f13edf089dc0c3d521a30", + "_tpl": "571a26d524597720680fbe8a", + "parentId": "b2e6c487b866326e1175b16e", + "slotId": "mod_barrel" + }, + { + "_id": "2b90c702e8db06ab4b1ed840", + "_tpl": "571a282c2459771fb2755a69", + "parentId": "b2e6c487b866326e1175b16e", + "slotId": "mod_pistol_grip" + }, + { + "_id": "b95b11415ce5515d47a34a7a", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "b2e6c487b866326e1175b16e", + "slotId": "mod_magazine" + } + ] + }, + { + "Id": "66a0969101001471dcd0611b", + "Name": "tt gold", + "Root": "cad0e23a548a9b787e138e4c", + "Items": [ + { + "_id": "cad0e23a548a9b787e138e4c", + "_tpl": "5b3b713c5acfc4330140bd8d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "7a7af8f33bc615daf61f7bef", + "_tpl": "5b3baf8f5acfc40dc5296692", + "parentId": "cad0e23a548a9b787e138e4c", + "slotId": "mod_barrel" + }, + { + "_id": "3f3258a25a941904d88cac13", + "_tpl": "5b3cadf35acfc400194776a0", + "parentId": "cad0e23a548a9b787e138e4c", + "slotId": "mod_pistol_grip" + }, + { + "_id": "0f326abf040b19314fe45180", + "_tpl": "571a29dc2459771fb2755a6a", + "parentId": "cad0e23a548a9b787e138e4c", + "slotId": "mod_magazine" + } + ] + }, + { + "Id": "66a0969701001471dc1617d8", + "Name": "grach", + "Root": "def5d6d696e0fc68abd04da0", + "Items": [ + { + "_id": "def5d6d696e0fc68abd04da0", + "_tpl": "576a581d2459771e7b1bc4f1", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "3dc4c6dea2ae508ec7cc818f", + "_tpl": "576a5ed62459771e9c2096cb", + "parentId": "def5d6d696e0fc68abd04da0", + "slotId": "mod_magazine" + }, + { + "_id": "93c700a571091f2076f30f2f", + "_tpl": "576a63cd2459771e796e0e11", + "parentId": "def5d6d696e0fc68abd04da0", + "slotId": "mod_pistol_grip" + } + ] + }, + { + "Id": "66a096ad01001471dc64e0e3", + "Name": "mp9", + "Root": "66222605d244ad5ed80c5759", + "Items": [ + { + "_id": "66222605d244ad5ed80c5759", + "_tpl": "5e00903ae9dc277128008b87", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "500b51634379c8660b4d6c23", + "_tpl": "5de8eac42a78646d96665d91", + "parentId": "66222605d244ad5ed80c5759", + "slotId": "mod_magazine" + }, + { + "_id": "3d971a7d03064eaab5b5bcf2", + "_tpl": "5de910da8b6c4240ba2651b5", + "parentId": "66222605d244ad5ed80c5759", + "slotId": "mod_stock" + }, + { + "_id": "bb1e64cc5d728ad4b704758e", + "_tpl": "5e0090f7e9dc277128008b93", + "parentId": "66222605d244ad5ed80c5759", + "slotId": "mod_reciever" + }, + { + "_id": "aace6ea0c9c23d8e0839a676", + "_tpl": "5de922d4b11454561e39239f", + "parentId": "66222605d244ad5ed80c5759", + "slotId": "mod_charge" + }, + { + "_id": "03d1109ee7141ad7875ab01a", + "_tpl": "5de8fbf2b74cd90030650c79", + "parentId": "66222605d244ad5ed80c5759", + "slotId": "mod_mount_000" + }, + { + "_id": "1f630468fc6f71a6bf710425", + "_tpl": "5de8fb539f98ac2bc659513a", + "parentId": "bb1e64cc5d728ad4b704758e", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a096b201001471dc7eaea6", + "Name": "mp9-n", + "Root": "8b70c9ee4695915c987c09b9", + "Items": [ + { + "_id": "8b70c9ee4695915c987c09b9", + "_tpl": "5de7bd7bfd6b4e6e2276dc25", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "519abedba18613028ebc7d38", + "_tpl": "5de8eac42a78646d96665d91", + "parentId": "8b70c9ee4695915c987c09b9", + "slotId": "mod_magazine" + }, + { + "_id": "68f6883906f9852164a59156", + "_tpl": "5de910da8b6c4240ba2651b5", + "parentId": "8b70c9ee4695915c987c09b9", + "slotId": "mod_stock" + }, + { + "_id": "33c37370b35d0004350c1f78", + "_tpl": "5de8fbad2fbe23140d3ee9c4", + "parentId": "8b70c9ee4695915c987c09b9", + "slotId": "mod_foregrip" + }, + { + "_id": "4f4ab9973e96360d814762bb", + "_tpl": "5de8e67c4a9f347bc92edbd7", + "parentId": "8b70c9ee4695915c987c09b9", + "slotId": "mod_reciever" + }, + { + "_id": "41fe3545df47473febef79df", + "_tpl": "5de922d4b11454561e39239f", + "parentId": "8b70c9ee4695915c987c09b9", + "slotId": "mod_charge" + }, + { + "_id": "362979145fc3cf08c2bf6c57", + "_tpl": "5de8fb539f98ac2bc659513a", + "parentId": "4f4ab9973e96360d814762bb", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "68d40ce8f780f36551b5d330", + "_tpl": "5de8fc0b205ddc616a6bc51b", + "parentId": "4f4ab9973e96360d814762bb", + "slotId": "mod_mount" + } + ] + }, + { + "Id": "66a096b801001471dce286de", + "Name": "p90", + "Root": "4415e378abd06657684cd8ca", + "Items": [ + { + "_id": "4415e378abd06657684cd8ca", + "_tpl": "5cc82d76e24e8d00134b4b83", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "edf2ea3ea91c4624e4a2d427", + "_tpl": "5cc70093e4a949033c734312", + "parentId": "4415e378abd06657684cd8ca", + "slotId": "mod_magazine" + }, + { + "_id": "7161710940477e5416bfee16", + "_tpl": "5cc700b9e4a949000f0f0f25", + "parentId": "4415e378abd06657684cd8ca", + "slotId": "mod_stock" + }, + { + "_id": "10fc48289ed5c9e3bd5997ad", + "_tpl": "5cc70102e4a949035e43ba74", + "parentId": "4415e378abd06657684cd8ca", + "slotId": "mod_reciever" + }, + { + "_id": "40b7cd5a2f8eced7aa51a5b3", + "_tpl": "5cc701aae4a949000e1ea45c", + "parentId": "4415e378abd06657684cd8ca", + "slotId": "mod_barrel" + }, + { + "_id": "e5bce3369f881b5ec527e26b", + "_tpl": "5cc6ea78e4a949000e1ea3c1", + "parentId": "4415e378abd06657684cd8ca", + "slotId": "mod_charge" + }, + { + "_id": "dfc11064a77645e5451c2761", + "_tpl": "5cc700cae4a949035e43ba72", + "parentId": "7161710940477e5416bfee16", + "slotId": "mod_stock_000" + }, + { + "_id": "00037e676dca40609cd6c10c", + "_tpl": "5cebec38d7f00c00110a652a", + "parentId": "10fc48289ed5c9e3bd5997ad", + "slotId": "mod_mount_000", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "a02da096b8dbb4500cacd092", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "10fc48289ed5c9e3bd5997ad", + "slotId": "mod_mount_001" + }, + { + "_id": "6182936bb18a6c048f44ea5c", + "_tpl": "5cc70146e4a949000d73bf6b", + "parentId": "10fc48289ed5c9e3bd5997ad", + "slotId": "mod_mount_002" + }, + { + "_id": "0c69765bba45b158422072f3", + "_tpl": "5cc82796e24e8d000f5859a8", + "parentId": "40b7cd5a2f8eced7aa51a5b3", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a096bd01001471dc5a1d40", + "Name": "mp5k", + "Root": "3ae13ef367bbca0e31a3fd7e", + "Items": [ + { + "_id": "3ae13ef367bbca0e31a3fd7e", + "_tpl": "5d2f0d8048f0356c925bc3b0", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "7a4f698c48bb5568acd52d50", + "_tpl": "5d2f213448f0355009199284", + "parentId": "3ae13ef367bbca0e31a3fd7e", + "slotId": "mod_magazine" + }, + { + "_id": "6b67c529fd1eb33b2ce720f3", + "_tpl": "5d2f261548f03576f500e7b7", + "parentId": "3ae13ef367bbca0e31a3fd7e", + "slotId": "mod_reciever" + }, + { + "_id": "930e45e6f3f2d93e80bdfa4c", + "_tpl": "5d2f2d5748f03572ec0c0139", + "parentId": "3ae13ef367bbca0e31a3fd7e", + "slotId": "mod_charge" + }, + { + "_id": "aac9fed78391cc75c9d18ef1", + "_tpl": "5d2f259b48f0355a844acd74", + "parentId": "6b67c529fd1eb33b2ce720f3", + "slotId": "mod_handguard" + }, + { + "_id": "12964b1363f09cb9b0ea7750", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "6b67c529fd1eb33b2ce720f3", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "ecbcf94cf947f0c047af743e", + "_tpl": "5d2f25bc48f03502573e5d85", + "parentId": "6b67c529fd1eb33b2ce720f3", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a096c401001471dc7d1b74", + "Name": "mp5", + "Root": "757ee8c231f0a75e2b91950c", + "Items": [ + { + "_id": "757ee8c231f0a75e2b91950c", + "_tpl": "5926bb2186f7744b1c6c6e60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "488d3da646beeed1b700172e", + "_tpl": "5926c3b286f774640d189b6b", + "parentId": "757ee8c231f0a75e2b91950c", + "slotId": "mod_magazine" + }, + { + "_id": "621698fcafedced8a8a76b3f", + "_tpl": "5926c0df86f77462f647f764", + "parentId": "757ee8c231f0a75e2b91950c", + "slotId": "mod_reciever" + }, + { + "_id": "4f6cceb5b40ea6509772d30a", + "_tpl": "5926c32286f774616e42de99", + "parentId": "757ee8c231f0a75e2b91950c", + "slotId": "mod_charge" + }, + { + "_id": "d8a20b436885d5c408d295e0", + "_tpl": "5926c36d86f77467a92a8629", + "parentId": "621698fcafedced8a8a76b3f", + "slotId": "mod_handguard" + }, + { + "_id": "cec8e985545fc512ab7572e8", + "_tpl": "5926d2be86f774134d668e4e", + "parentId": "621698fcafedced8a8a76b3f", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "a83fa318e6dfd7dcef260918", + "_tpl": "5926d3c686f77410de68ebc8", + "parentId": "621698fcafedced8a8a76b3f", + "slotId": "mod_stock" + }, + { + "_id": "47ebc9e3344a36faa31e15b2", + "_tpl": "5926e16e86f7742f5a0f7ecb", + "parentId": "621698fcafedced8a8a76b3f", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a096ca01001471dc196d79", + "Name": "mp7a1", + "Root": "7d44ca82326f2e91a14de9ca", + "Items": [ + { + "_id": "7d44ca82326f2e91a14de9ca", + "_tpl": "5ba26383d4351e00334c93d9", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "2352579357aa89135778d9f3", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "7d44ca82326f2e91a14de9ca", + "slotId": "mod_magazine" + }, + { + "_id": "80a8e34b5ca84434a6d5e36b", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "7d44ca82326f2e91a14de9ca", + "slotId": "mod_muzzle" + }, + { + "_id": "d2c7af901478db39ca7d6e57", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "7d44ca82326f2e91a14de9ca", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "b1efa4a5bbe1488789dba55c", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "7d44ca82326f2e91a14de9ca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "cddc48ca51f08e1a18088288", + "_tpl": "5bcf0213d4351e0085327c17", + "parentId": "7d44ca82326f2e91a14de9ca", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a096d001001471dcb1e0fc", + "Name": "mp7a2", + "Root": "9708b405cef41aa24e90ffee", + "Items": [ + { + "_id": "9708b405cef41aa24e90ffee", + "_tpl": "5bd70322209c4d00d7167b8f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "99fb5b08d076efff1849613f", + "_tpl": "5ba264f6d4351e0034777d52", + "parentId": "9708b405cef41aa24e90ffee", + "slotId": "mod_magazine" + }, + { + "_id": "cae973d0630c65b68dc4e398", + "_tpl": "5ba26acdd4351e003562908e", + "parentId": "9708b405cef41aa24e90ffee", + "slotId": "mod_muzzle" + }, + { + "_id": "a7c78ab5b8b2f25f604bb1ce", + "_tpl": "5ba26b01d4351e0085325a51", + "parentId": "9708b405cef41aa24e90ffee", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "73d0043e49e9a0d6c0707dea", + "_tpl": "5ba26b17d4351e00367f9bdd", + "parentId": "9708b405cef41aa24e90ffee", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "091fb65e43db647a9000cdc6", + "_tpl": "5bd704e7209c4d00d7167c31", + "parentId": "9708b405cef41aa24e90ffee", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a096d801001471dc7520af", + "Name": "klin", + "Root": "b43bc689cb419bfa33e5a1b4", + "Items": [ + { + "_id": "b43bc689cb419bfa33e5a1b4", + "_tpl": "57f4c844245977379d5c14d1", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "400c810fa154b6c795d5e5ef", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "b43bc689cb419bfa33e5a1b4", + "slotId": "mod_pistol_grip" + }, + { + "_id": "c10003d1b6ffae1e8a214b6f", + "_tpl": "57d1519e24597714373db79d", + "parentId": "b43bc689cb419bfa33e5a1b4", + "slotId": "mod_magazine" + } + ] + }, + { + "Id": "66a096dc01001471dc989aad", + "Name": "ump", + "Root": "cad2b130e6b0ac0563e8bc7c", + "Items": [ + { + "_id": "cad2b130e6b0ac0563e8bc7c", + "_tpl": "5fc3e272f8b6a877a729eac5", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "df5a4c17457b1dbf7bdb81fc", + "_tpl": "5fc3e466187fea44d52eda90", + "parentId": "cad2b130e6b0ac0563e8bc7c", + "slotId": "mod_magazine" + }, + { + "_id": "a70bbf82990eed41f798c26b", + "_tpl": "5fc3e4ee7283c4046c5814af", + "parentId": "cad2b130e6b0ac0563e8bc7c", + "slotId": "mod_stock" + }, + { + "_id": "217fbae0b918d10604780f3e", + "_tpl": "5fc3e4a27283c4046c5814ab", + "parentId": "cad2b130e6b0ac0563e8bc7c", + "slotId": "mod_barrel" + }, + { + "_id": "b164106d7f12a2cb8efb2bf5", + "_tpl": "5fc53954f8b6a877a729eaeb", + "parentId": "cad2b130e6b0ac0563e8bc7c", + "slotId": "mod_mount_000" + }, + { + "_id": "8ca35c62aa480dbf0d37624f", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "cad2b130e6b0ac0563e8bc7c", + "slotId": "mod_mount_001" + }, + { + "_id": "d2b1ca4a241f6d46d48b616c", + "_tpl": "5fc5396e900b1d5091531e72", + "parentId": "cad2b130e6b0ac0563e8bc7c", + "slotId": "mod_mount_002" + } + ] + }, + { + "Id": "66a096e101001471dcaab351", + "Name": "pp-19", + "Root": "d5ed3e74895eb007a7fa9f6a", + "Items": [ + { + "_id": "d5ed3e74895eb007a7fa9f6a", + "_tpl": "59984ab886f7743e98271174", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "f044eb1a1a02c0432f4d4672", + "_tpl": "5998517986f7746017232f7e", + "parentId": "d5ed3e74895eb007a7fa9f6a", + "slotId": "mod_pistol_grip" + }, + { + "_id": "a60b113d0e1f59cceb7ca4f7", + "_tpl": "599851db86f77467372f0a18", + "parentId": "d5ed3e74895eb007a7fa9f6a", + "slotId": "mod_stock" + }, + { + "_id": "b82a5037a38b0d57ee9c764d", + "_tpl": "599860ac86f77436b225ed1a", + "parentId": "d5ed3e74895eb007a7fa9f6a", + "slotId": "mod_magazine" + }, + { + "_id": "1eefb1160c1387b7ef165093", + "_tpl": "5998597786f77414ea6da093", + "parentId": "d5ed3e74895eb007a7fa9f6a", + "slotId": "mod_muzzle" + }, + { + "_id": "5eff6610882411111131065b", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "d5ed3e74895eb007a7fa9f6a", + "slotId": "mod_reciever" + }, + { + "_id": "602f6b20ab39d57a87d469ad", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "d5ed3e74895eb007a7fa9f6a", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "82420e975331ae95043ada80", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "d5ed3e74895eb007a7fa9f6a", + "slotId": "mod_gas_block" + }, + { + "_id": "8086796d963f78878ec5b7f9", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "82420e975331ae95043ada80", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a096ed01001471dcc00a86", + "Name": "ppsh", + "Root": "041facc7133fb7a43bfe6562", + "Items": [ + { + "_id": "041facc7133fb7a43bfe6562", + "_tpl": "5ea03f7400685063ec28bfa8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "c104ba48d90a138dcaee0c53", + "_tpl": "5ea03e9400685063ec28bfa4", + "parentId": "041facc7133fb7a43bfe6562", + "slotId": "mod_stock" + }, + { + "_id": "7841d782ae33477967b64310", + "_tpl": "5ea034eb5aad6446a939737b", + "parentId": "041facc7133fb7a43bfe6562", + "slotId": "mod_magazine" + }, + { + "_id": "ce6b8941fe784953e612625f", + "_tpl": "5ea03e5009aa976f2e7a514b", + "parentId": "041facc7133fb7a43bfe6562", + "slotId": "mod_reciever" + }, + { + "_id": "08ce33f5eae7df4904744452", + "_tpl": "5ea02bb600685063ec28bfa1", + "parentId": "041facc7133fb7a43bfe6562", + "slotId": "mod_barrel" + } + ] + }, + { + "Id": "66a096f201001471dc469bc5", + "Name": "kedr", + "Root": "8a3c0bed6300d184ff07c25d", + "Items": [ + { + "_id": "8a3c0bed6300d184ff07c25d", + "_tpl": "57d14d2524597714373db789", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "8420bf44b00b0d97d1cf3a04", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "8a3c0bed6300d184ff07c25d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "2cdf6110ece2efb9c59f9849", + "_tpl": "57d1519e24597714373db79d", + "parentId": "8a3c0bed6300d184ff07c25d", + "slotId": "mod_magazine" + } + ] + }, + { + "Id": "66a096f801001471dc6e1d14", + "Name": "kedr-b", + "Root": "87059b811f45f169feb85085", + "Items": [ + { + "_id": "87059b811f45f169feb85085", + "_tpl": "57f3c6bd24597738e730fa2f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "306d246b3a05624219d9e25a", + "_tpl": "57d152ec245977144076ccdf", + "parentId": "87059b811f45f169feb85085", + "slotId": "mod_pistol_grip" + }, + { + "_id": "8d83f468bfc501f293819ee3", + "_tpl": "57f3c7e024597738ea4ba286", + "parentId": "87059b811f45f169feb85085", + "slotId": "mod_muzzle" + }, + { + "_id": "5d2f3eecad13d5c71be6fb59", + "_tpl": "57d1519e24597714373db79d", + "parentId": "87059b811f45f169feb85085", + "slotId": "mod_magazine" + }, + { + "_id": "d670f5391adb359c74087345", + "_tpl": "57f3c8cc2459773ec4480328", + "parentId": "8d83f468bfc501f293819ee3", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a0970101001471dc34cd1a", + "Name": "mpx", + "Root": "11ff962bd118d005d7295283", + "Items": [ + { + "_id": "11ff962bd118d005d7295283", + "_tpl": "58948c8e86f77409493f7266", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "e5a1d4c58ae729f04436d373", + "_tpl": "5894a51286f77426d13baf02", + "parentId": "11ff962bd118d005d7295283", + "slotId": "mod_pistol_grip" + }, + { + "_id": "5ac2af764cc0fad778d51d03", + "_tpl": "5894a05586f774094708ef75", + "parentId": "11ff962bd118d005d7295283", + "slotId": "mod_magazine" + }, + { + "_id": "27e0c023754c8a00345182ca", + "_tpl": "5894a5b586f77426d2590767", + "parentId": "11ff962bd118d005d7295283", + "slotId": "mod_reciever" + }, + { + "_id": "b1db27b09e757f1794c8902a", + "_tpl": "5894a13e86f7742405482982", + "parentId": "11ff962bd118d005d7295283", + "slotId": "mod_stock" + }, + { + "_id": "7d0aa9fece9f5b49fe7827d8", + "_tpl": "58949edd86f77409483e16a9", + "parentId": "11ff962bd118d005d7295283", + "slotId": "mod_charge" + }, + { + "_id": "2ca51f6923b8a215e28cae66", + "_tpl": "5894a2c386f77427140b8342", + "parentId": "27e0c023754c8a00345182ca", + "slotId": "mod_barrel" + }, + { + "_id": "e6bacb59639837945859d878", + "_tpl": "5894a42086f77426d2590762", + "parentId": "27e0c023754c8a00345182ca", + "slotId": "mod_handguard" + }, + { + "_id": "9805e91c68df607eaed4d935", + "_tpl": "5894a81786f77427140b8347", + "parentId": "27e0c023754c8a00345182ca", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "8638a9ce47b8d43a6abbebbc", + "_tpl": "58949dea86f77409483e16a8", + "parentId": "2ca51f6923b8a215e28cae66", + "slotId": "mod_muzzle" + }, + { + "_id": "72956fc1a7609aaad6413eda", + "_tpl": "5894a73486f77426d259076c", + "parentId": "e6bacb59639837945859d878", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "382f73b1c32d2b8f5a21a22e", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "e6bacb59639837945859d878", + "slotId": "mod_mount_000" + }, + { + "_id": "25179587f0b76d5109ba94be", + "_tpl": "58a5c12e86f7745d585a2b9e", + "parentId": "e6bacb59639837945859d878", + "slotId": "mod_mount_001" + }, + { + "_id": "6743598f2bbc681faf71844e", + "_tpl": "58a56f8d86f774651579314c", + "parentId": "e6bacb59639837945859d878", + "slotId": "mod_mount_002" + } + ] + }, + { + "Id": "66a0970601001471dc295e49", + "Name": "sr-2m", + "Root": "2ef73381d3f1cb7adc2aaf91", + "Items": [ + { + "_id": "2ef73381d3f1cb7adc2aaf91", + "_tpl": "62e14904c2699c0ec93adc47", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "edc3b2e8d2a2ac35c21aa0a7", + "_tpl": "633a98eab8b0506e48497c1a", + "parentId": "2ef73381d3f1cb7adc2aaf91", + "slotId": "mod_magazine" + }, + { + "_id": "b5907baf50f87587b6e71b25", + "_tpl": "62e2a754b6c0ee2f230cee0f", + "parentId": "2ef73381d3f1cb7adc2aaf91", + "slotId": "mod_muzzle" + }, + { + "_id": "71ca555d61384ff40b7658f6", + "_tpl": "62e292e7b6c0ee2f230cee00", + "parentId": "2ef73381d3f1cb7adc2aaf91", + "slotId": "mod_stock" + }, + { + "_id": "b367b7b46b9728371af68321", + "_tpl": "62e27a7865f0b1592a49e17b", + "parentId": "2ef73381d3f1cb7adc2aaf91", + "slotId": "mod_reciever" + }, + { + "_id": "2c9145899ba4696fa18f1bef", + "_tpl": "62e15547db1a5c41971c1b5e", + "parentId": "2ef73381d3f1cb7adc2aaf91", + "slotId": "mod_handguard" + }, + { + "_id": "a158fd7c4893ad0b72642d81", + "_tpl": "637b9c37b7e3bc41b21ce71a", + "parentId": "2ef73381d3f1cb7adc2aaf91", + "slotId": "mod_pistolgrip" + }, + { + "_id": "8412c70bd026db6f540fb555", + "_tpl": "62ed189fb3608410ef5a2bfc", + "parentId": "2c9145899ba4696fa18f1bef", + "slotId": "mod_mount_001" + } + ] + }, + { + "Id": "66a0970d01001471dca48339", + "Name": "saiga-9", + "Root": "a9d0a0938095aa352b75da0b", + "Items": [ + { + "_id": "a9d0a0938095aa352b75da0b", + "_tpl": "59f9cabd86f7743a10721f46", + "upd": { + "Repairable": { + "MaxDurability": 95, + "Durability": 95 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "b468ff6d3ebdb8860f918a93", + "_tpl": "5998517986f7746017232f7e", + "parentId": "a9d0a0938095aa352b75da0b", + "slotId": "mod_pistol_grip" + }, + { + "_id": "9cb47888011c26efd11e1781", + "_tpl": "599851db86f77467372f0a18", + "parentId": "a9d0a0938095aa352b75da0b", + "slotId": "mod_stock" + }, + { + "_id": "79c265c50a2dd70c38d9b50b", + "_tpl": "5998529a86f774647f44f421", + "parentId": "a9d0a0938095aa352b75da0b", + "slotId": "mod_magazine" + }, + { + "_id": "f6223469a8ce9449b2126cbe", + "_tpl": "5998598e86f7740b3f498a86", + "parentId": "a9d0a0938095aa352b75da0b", + "slotId": "mod_muzzle" + }, + { + "_id": "a81443c22c1bf5610ea78b27", + "_tpl": "59985a8086f77414ec448d1a", + "parentId": "a9d0a0938095aa352b75da0b", + "slotId": "mod_reciever" + }, + { + "_id": "366d8f45eaa8f3f86bd72aca", + "_tpl": "599860e986f7743bb57573a6", + "parentId": "a9d0a0938095aa352b75da0b", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "2f00ca87e342cf64864b9344", + "_tpl": "59ccd11386f77428f24a488f", + "parentId": "a9d0a0938095aa352b75da0b", + "slotId": "mod_gas_block" + }, + { + "_id": "04c8b6f22b608e4f53742caf", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "2f00ca87e342cf64864b9344", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a0971401001471dcd6f3d9", + "Name": "stm", + "Root": "5da67ecd41e127ed00226367", + "Items": [ + { + "_id": "5da67ecd41e127ed00226367", + "_tpl": "60339954d62c9b14ed777c06", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "3db0d38a5d4c8cb2be523661", + "_tpl": "602e71bd53a60014f9705bfa", + "parentId": "5da67ecd41e127ed00226367", + "slotId": "mod_pistol_grip" + }, + { + "_id": "bc5f16c39dc792101a63ca12", + "_tpl": "5a7ad2e851dfba0016153692", + "parentId": "5da67ecd41e127ed00226367", + "slotId": "mod_magazine" + }, + { + "_id": "c47fa5c4487cc0d4de304f26", + "_tpl": "602e63fb6335467b0c5ac94d", + "parentId": "5da67ecd41e127ed00226367", + "slotId": "mod_reciever" + }, + { + "_id": "aeba34cab838d82e185f040d", + "_tpl": "602e3f1254072b51b239f713", + "parentId": "5da67ecd41e127ed00226367", + "slotId": "mod_stock_001" + }, + { + "_id": "63f01c024a060c64cbb052fc", + "_tpl": "6033749e88382f4fab3fd2c5", + "parentId": "5da67ecd41e127ed00226367", + "slotId": "mod_charge" + }, + { + "_id": "4f2b7b52ddebc8cf58bb4441", + "_tpl": "602f85fd9b513876d4338d9c", + "parentId": "5da67ecd41e127ed00226367", + "slotId": "mod_tactical_000" + }, + { + "_id": "b84b18b8f0b1907c20072865", + "_tpl": "603372b4da11d6478d5a07ff", + "parentId": "c47fa5c4487cc0d4de304f26", + "slotId": "mod_barrel" + }, + { + "_id": "1ab4ad0b54e21c260bda110d", + "_tpl": "6034e3cb0ddce744014cb870", + "parentId": "c47fa5c4487cc0d4de304f26", + "slotId": "mod_handguard" + }, + { + "_id": "b6e9265cd6bda20ab431f514", + "_tpl": "602e620f9b513876d4338d9a", + "parentId": "aeba34cab838d82e185f040d", + "slotId": "mod_stock_000" + }, + { + "_id": "fabe106e34ad938eb02c9f29", + "_tpl": "60337f5dce399e10262255d1", + "parentId": "b84b18b8f0b1907c20072865", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a0971901001471dcbff0f7", + "Name": "vector", + "Root": "cacb9a6caf6e1ec60d94968b", + "Items": [ + { + "_id": "cacb9a6caf6e1ec60d94968b", + "_tpl": "5fb64bc92b1b027b1f50bcf2", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "9b2001c5839016333e240811", + "_tpl": "5fb651b52b1b027b1f50bcff", + "parentId": "cacb9a6caf6e1ec60d94968b", + "slotId": "mod_magazine" + }, + { + "_id": "120bdd0f4559ba2f5ece2c7b", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "cacb9a6caf6e1ec60d94968b", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "9e216b1dcc2b0a23e0609307", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "cacb9a6caf6e1ec60d94968b", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "cf26cd71b7948986527f1364", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "cacb9a6caf6e1ec60d94968b", + "slotId": "mod_stock" + }, + { + "_id": "58e2e3574074610fdda96861", + "_tpl": "5fb65363d1409e5ca04b54f5", + "parentId": "cacb9a6caf6e1ec60d94968b", + "slotId": "mod_barrel" + }, + { + "_id": "0ff435a6d7f92b214eb7a881", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "cacb9a6caf6e1ec60d94968b", + "slotId": "mod_mount" + }, + { + "_id": "6f08ce21b963c2222dfca7c3", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "cacb9a6caf6e1ec60d94968b", + "slotId": "mod_mount_001" + }, + { + "_id": "972ee7d48b154d65b4453248", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "cacb9a6caf6e1ec60d94968b", + "slotId": "mod_mount_002" + }, + { + "_id": "9991e40b7fcbc0992def5d90", + "_tpl": "5fb6548dd1409e5ca04b54f9", + "parentId": "58e2e3574074610fdda96861", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a0971f01001471dcea30ca", + "Name": "vector 9x19", + "Root": "2ea88b5dad8b7f84a3366fef", + "Items": [ + { + "_id": "2ea88b5dad8b7f84a3366fef", + "_tpl": "5fc3f2d5900b1d5091531e57", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "092bffb796f19728eb41b9f7", + "_tpl": "5a718b548dc32e000d46d262", + "parentId": "2ea88b5dad8b7f84a3366fef", + "slotId": "mod_magazine" + }, + { + "_id": "102f6d50ea6d5b725187a524", + "_tpl": "5fb6567747ce63734e3fa1dc", + "parentId": "2ea88b5dad8b7f84a3366fef", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f0ac6690328ac977ac432150", + "_tpl": "5fb6564947ce63734e3fa1da", + "parentId": "2ea88b5dad8b7f84a3366fef", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "72e0bd67652d23730a4ab859", + "_tpl": "5fb6558ad6f0b2136f2d7eb7", + "parentId": "2ea88b5dad8b7f84a3366fef", + "slotId": "mod_stock" + }, + { + "_id": "345dd1f2a1269406a48ca377", + "_tpl": "5fbbc366ca32ed67276c1557", + "parentId": "2ea88b5dad8b7f84a3366fef", + "slotId": "mod_barrel" + }, + { + "_id": "abd5828e1484cddb763b65e2", + "_tpl": "5fbb976df9986c4cff3fe5f2", + "parentId": "2ea88b5dad8b7f84a3366fef", + "slotId": "mod_mount" + }, + { + "_id": "992bbce13f3dfeb7e6c42ce2", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "2ea88b5dad8b7f84a3366fef", + "slotId": "mod_mount_001" + }, + { + "_id": "1fb15212dfbba001abd0e39c", + "_tpl": "5fce0f9b55375d18a253eff2", + "parentId": "2ea88b5dad8b7f84a3366fef", + "slotId": "mod_mount_002" + }, + { + "_id": "043cbe5f9f21b8213a090987", + "_tpl": "5fbbc34106bde7524f03cbe9", + "parentId": "345dd1f2a1269406a48ca377", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a0979801001471dc784aab", + "Name": "Benelli M3", + "Root": "62ef0bb507f0898beb89945b", + "Items": [ + { + "_id": "62ef0bb507f0898beb89945b", + "_tpl": "6259b864ebedf17603599e88", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "e5f8f96f23bad4d560a217d0", + "_tpl": "6259c2c1d714855d182bad85", + "parentId": "62ef0bb507f0898beb89945b", + "slotId": "mod_barrel" + }, + { + "_id": "93bb0949c8f78e3e44944301", + "_tpl": "6259c4347d6aab70bc23a190", + "parentId": "62ef0bb507f0898beb89945b", + "slotId": "mod_handguard" + }, + { + "_id": "e3ba6c89f7312502f74661ff", + "_tpl": "625ff2ccb8c587128c1a01dd", + "parentId": "62ef0bb507f0898beb89945b", + "slotId": "mod_magazine" + }, + { + "_id": "f4c5b483fb06577dbc916767", + "_tpl": "6259c3387d6aab70bc23a18d", + "parentId": "62ef0bb507f0898beb89945b", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "b99221a3a861535bc1eeb920", + "_tpl": "625ed7c64d9b6612df732146", + "parentId": "62ef0bb507f0898beb89945b", + "slotId": "mod_mount" + }, + { + "_id": "48fa8730ee9f9cb7b9c2c131", + "_tpl": "625ebcef6f53af4aa66b44dc", + "parentId": "62ef0bb507f0898beb89945b", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "5dd9f3e2aad5975d362b808e", + "_tpl": "625ec45bb14d7326ac20f572", + "parentId": "62ef0bb507f0898beb89945b", + "slotId": "mod_charge" + }, + { + "_id": "61c0f19cc4f9de2f7856d4fb", + "_tpl": "6259c3d8012d6678ec38eeb8", + "parentId": "f4c5b483fb06577dbc916767", + "slotId": "mod_pistol_grip" + } + ] + }, + { + "Id": "66a097a401001471dc20f822", + "Name": "133", + "Root": "e2e392516a035bc5616c8d5b", + "Items": [ + { + "_id": "e2e392516a035bc5616c8d5b", + "_tpl": "54491c4f4bdc2db1078b4568", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "8f27a13ec98ac50ee99d4dd9", + "_tpl": "55d4491a4bdc2d882f8b456e", + "parentId": "e2e392516a035bc5616c8d5b", + "slotId": "mod_barrel" + }, + { + "_id": "4ff576acf7b78f74d594085b", + "_tpl": "55d45d3f4bdc2d972f8b456c", + "parentId": "e2e392516a035bc5616c8d5b", + "slotId": "mod_handguard" + }, + { + "_id": "da5afd22a4673e99a6b3afdc", + "_tpl": "55d484b44bdc2d1d4e8b456d", + "parentId": "e2e392516a035bc5616c8d5b", + "slotId": "mod_magazine" + }, + { + "_id": "0b077d40cff26becd85b5730", + "_tpl": "56083cba4bdc2de22e8b456f", + "parentId": "e2e392516a035bc5616c8d5b", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a097aa01001471dcbe62f1", + "Name": "255", + "Root": "3594bc69e7688e9cf5eb677f", + "Items": [ + { + "_id": "3594bc69e7688e9cf5eb677f", + "_tpl": "60db29ce99594040e04c4a27", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "abf64161c0060c15fa0f7529", + "_tpl": "60dc519adf4c47305f6d410d", + "parentId": "3594bc69e7688e9cf5eb677f", + "slotId": "mod_magazine" + }, + { + "_id": "5b768844e70158b803c51c85", + "_tpl": "612368f58b401f4f51239b33", + "parentId": "3594bc69e7688e9cf5eb677f", + "slotId": "mod_barrel" + }, + { + "_id": "f160eae8f7f7a1a61e967da4", + "_tpl": "612781056f3d944a17348d60", + "parentId": "3594bc69e7688e9cf5eb677f", + "slotId": "mod_stock" + }, + { + "_id": "7c1e9b728a07db1f8addd206", + "_tpl": "6123649463849f3d843da7c4", + "parentId": "3594bc69e7688e9cf5eb677f", + "slotId": "mod_handguard" + }, + { + "_id": "9877ff07f94980de9cf1d466", + "_tpl": "619d36da53b4d42ee724fae4", + "parentId": "5b768844e70158b803c51c85", + "slotId": "mod_muzzle" + } + ] + }, + { + "Id": "66a097b001001471dc37221d", + "Name": "Mossberg", + "Root": "598c81e027d1597751e12a34", + "Items": [ + { + "_id": "598c81e027d1597751e12a34", + "_tpl": "5e870397991fd70db46995c8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "9440f2ffd9494b21ff3baa72", + "_tpl": "5e87071478f43e51ca2de5e1", + "parentId": "598c81e027d1597751e12a34", + "slotId": "mod_barrel" + }, + { + "_id": "6905a2c00ae247ac64448deb", + "_tpl": "5e87076ce2db31558c75a11d", + "parentId": "598c81e027d1597751e12a34", + "slotId": "mod_handguard" + }, + { + "_id": "af9ee12c3dbd397ea53e428c", + "_tpl": "5e87080c81c4ed43e83cefda", + "parentId": "598c81e027d1597751e12a34", + "slotId": "mod_magazine" + }, + { + "_id": "019e3418d849e1ebc8ef01ef", + "_tpl": "5e87116b81c4ed43e83cefdd", + "parentId": "598c81e027d1597751e12a34", + "slotId": "mod_stock" + }, + { + "_id": "f90dba10f4188b8943fe45cc", + "_tpl": "5e87114fe2db31558c75a120", + "parentId": "598c81e027d1597751e12a34", + "slotId": "mod_mount", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "0b18e73a7085f05545ae2261", + "_tpl": "5e8708d4ae379e67d22e0102", + "parentId": "9440f2ffd9494b21ff3baa72", + "slotId": "mod_sight_front", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + } + ] + }, + { + "Id": "66a097b801001471dc4acaa2", + "Name": "m870", + "Root": "966e577d5aaa5b30f9bf246f", + "Items": [ + { + "_id": "966e577d5aaa5b30f9bf246f", + "_tpl": "5a7828548dc32e5a9c28b516", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "4127ddbb8c4feaa5b1b57c42", + "_tpl": "5a787f7ac5856700177af660", + "parentId": "966e577d5aaa5b30f9bf246f", + "slotId": "mod_barrel" + }, + { + "_id": "5161101c430878ba821c292a", + "_tpl": "5a788089c5856700142fdd9c", + "parentId": "966e577d5aaa5b30f9bf246f", + "slotId": "mod_handguard" + }, + { + "_id": "65414beacca9685fb8fddc91", + "_tpl": "5a7882dcc5856700177af662", + "parentId": "966e577d5aaa5b30f9bf246f", + "slotId": "mod_magazine" + }, + { + "_id": "034734be2aea9418e98a0235", + "_tpl": "5a7880d0c5856700142fdd9d", + "parentId": "966e577d5aaa5b30f9bf246f", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a097bd01001471dc664135", + "Name": "saiga-12", + "Root": "4d2c86783c028d812e56071d", + "Items": [ + { + "_id": "4d2c86783c028d812e56071d", + "_tpl": "576165642459773c7a400233", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "89d0e79cc3fa8b04449403c0", + "_tpl": "576169e62459773c69055191", + "parentId": "4d2c86783c028d812e56071d", + "slotId": "mod_handguard" + }, + { + "_id": "f724274e8bd6274edf3e8ac2", + "_tpl": "576167ab2459773cad038c43", + "parentId": "4d2c86783c028d812e56071d", + "slotId": "mod_muzzle" + }, + { + "_id": "7869da1b2339e56149030f10", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "4d2c86783c028d812e56071d", + "slotId": "mod_pistol_grip" + }, + { + "_id": "268beef4e05fd62aa9e176ef", + "_tpl": "57616c112459773cce774d66", + "parentId": "4d2c86783c028d812e56071d", + "slotId": "mod_reciever" + }, + { + "_id": "bf76773c49864736a23e944f", + "_tpl": "57a9b9ce2459770ee926038d", + "parentId": "4d2c86783c028d812e56071d", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "f26cd6feeeb10145d59d28b3", + "_tpl": "57616ca52459773c69055192", + "parentId": "4d2c86783c028d812e56071d", + "slotId": "mod_stock" + }, + { + "_id": "77dd183eaa250282fbe39e4e", + "_tpl": "57616a9e2459773c7a400234", + "parentId": "4d2c86783c028d812e56071d", + "slotId": "mod_magazine" + } + ] + }, + { + "Id": "66a097c601001471dc4508be", + "Name": "153", + "Root": "b0f58100f44b1a1da3ba8bae", + "Items": [ + { + "_id": "b0f58100f44b1a1da3ba8bae", + "_tpl": "56dee2bdd2720bc8328b4567", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1fa82a66e22cc43582afe7d9", + "_tpl": "56deec93d2720bec348b4568", + "parentId": "b0f58100f44b1a1da3ba8bae", + "slotId": "mod_barrel" + }, + { + "_id": "e454bd1085253936bf2dcf8a", + "_tpl": "56deed6ed2720b4c698b4583", + "parentId": "b0f58100f44b1a1da3ba8bae", + "slotId": "mod_handguard" + }, + { + "_id": "ee6af2ba8ca00313c1acb483", + "_tpl": "56deee15d2720bee328b4567", + "parentId": "b0f58100f44b1a1da3ba8bae", + "slotId": "mod_magazine" + }, + { + "_id": "5057fdc7a0cf0706a30e732f", + "_tpl": "56083be64bdc2d20478b456f", + "parentId": "b0f58100f44b1a1da3ba8bae", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a097cc01001471dc951cc4", + "Name": "155", + "Root": "65b8c76c3cfe7dcc8c018f5e", + "Items": [ + { + "_id": "65b8c76c3cfe7dcc8c018f5e", + "_tpl": "606dae0ab0e443224b421bb7", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "129f76d24231bbeff30551c7", + "_tpl": "6076c1b9f2cb2e02a42acedc", + "parentId": "65b8c76c3cfe7dcc8c018f5e", + "slotId": "mod_barrel" + }, + { + "_id": "2647bc38dcef61a4ce02c24f", + "_tpl": "607d5aa50494a626335e12ed", + "parentId": "65b8c76c3cfe7dcc8c018f5e", + "slotId": "mod_handguard" + }, + { + "_id": "d1add86943a574fd03f8361b", + "_tpl": "6076c87f232e5a31c233d50e", + "parentId": "65b8c76c3cfe7dcc8c018f5e", + "slotId": "mod_magazine" + }, + { + "_id": "739770c0c259466a3fcde74e", + "_tpl": "607d5a891246154cad35d6aa", + "parentId": "65b8c76c3cfe7dcc8c018f5e", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a097d101001471dc4f6fb8", + "Name": "toz", + "Root": "da164e639745f1d9c46c7cbe", + "Items": [ + { + "_id": "da164e639745f1d9c46c7cbe", + "_tpl": "5a38e6bac4a2826c6e06d79b", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "6941b925b29e1d27fcdf37a1", + "_tpl": "5a38ee51c4a282000c5a955c", + "parentId": "da164e639745f1d9c46c7cbe", + "slotId": "mod_magazine" + }, + { + "_id": "22f8ddfefe4cf28a1b85dcbd", + "_tpl": "5a38ef1fc4a282000b1521f6", + "parentId": "da164e639745f1d9c46c7cbe", + "slotId": "mod_stock", + "upd": { + "Foldable": { + "Folded": false + } + } + }, + { + "_id": "f05640f02d98d30d099373d2", + "_tpl": "5a38eecdc4a282329a73b512", + "parentId": "22f8ddfefe4cf28a1b85dcbd", + "slotId": "mod_pistol_grip" + } + ] + }, + { + "Id": "66a097db01001471dcd8f47d", + "Name": "mp-18", + "Root": "d4eda6b6d54e9870e9758e02", + "Items": [ + { + "_id": "d4eda6b6d54e9870e9758e02", + "_tpl": "61f7c9e189e6fb1a5e3ea78d", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "1963739517a4de93b8503bfb", + "_tpl": "61f4012adfc9f01a816adda1", + "parentId": "d4eda6b6d54e9870e9758e02", + "slotId": "mod_barrel" + }, + { + "_id": "ba645402edc18424c5e55990", + "_tpl": "61f7b234ea4ab34f2f59c3ec", + "parentId": "d4eda6b6d54e9870e9758e02", + "slotId": "mod_stock" + }, + { + "_id": "49efb4e8878a815e31cb0dad", + "_tpl": "61f7b85367ddd414173fdb36", + "parentId": "1963739517a4de93b8503bfb", + "slotId": "mod_handguard" + } + ] + }, + { + "Id": "66a097e001001471dc9642ef", + "Name": "sawed-off", + "Root": "475daa67df3979eb44ce90e9", + "Items": [ + { + "_id": "475daa67df3979eb44ce90e9", + "_tpl": "64748cb8de82c85eaf0a273a", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "58346d0efa4aaf4beb73f85e", + "_tpl": "64748d02d1c009260702b526", + "parentId": "475daa67df3979eb44ce90e9", + "slotId": "mod_barrel" + } + ] + }, + { + "Id": "66a097ea01001471dcef1f80", + "Name": "double-barrel", + "Root": "039ffd3efc56b0b806e95e01", + "Items": [ + { + "_id": "039ffd3efc56b0b806e95e01", + "_tpl": "5580223e4bdc2d1c128b457f", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "a86ff996bd94e075db54d69d", + "_tpl": "55d447bb4bdc2d892f8b456f", + "parentId": "039ffd3efc56b0b806e95e01", + "slotId": "mod_barrel" + }, + { + "_id": "7089d967a2eed312c9408cc5", + "_tpl": "611a31ce5b7ffe001b4649d1", + "parentId": "039ffd3efc56b0b806e95e01", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a097f501001471dce7a5f6", + "Name": "ks-23", + "Root": "f6a48c83f3d0ebe79e301863", + "Items": [ + { + "_id": "f6a48c83f3d0ebe79e301863", + "_tpl": "5e848cc2988a8701445df1e8", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "3d3bae7dfdba165414841a6c", + "_tpl": "5e848d2eea0a7c419c2f9bfd", + "parentId": "f6a48c83f3d0ebe79e301863", + "slotId": "mod_barrel" + }, + { + "_id": "5613e11e7ce53d9d495b0cdd", + "_tpl": "5e848d51e4dbc5266a4ec63b", + "parentId": "f6a48c83f3d0ebe79e301863", + "slotId": "mod_handguard" + }, + { + "_id": "53ccff14d5cd06832156d853", + "_tpl": "5f647d9f8499b57dc40ddb93", + "parentId": "f6a48c83f3d0ebe79e301863", + "slotId": "mod_magazine" + }, + { + "_id": "91a9b67bcb38cebabca143e3", + "_tpl": "5e848db4681bea2ada00daa9", + "parentId": "f6a48c83f3d0ebe79e301863", + "slotId": "mod_stock" + } + ] + }, + { + "Id": "66a0987101001471dcc30cac", + "Name": "104", + "Root": "cfa01a8cc164bc348132b9de", + "Items": [ + { + "_id": "cfa01a8cc164bc348132b9de", + "_tpl": "5ac66d725acfc43b321d4b60", + "upd": { + "Repairable": { + "MaxDurability": 100, + "Durability": 100 + }, + "Foldable": { + "Folded": false + }, + "FireMode": { + "FireMode": "single" + } + } + }, + { + "_id": "c618ef9dabc2bae4a635ff1b", + "_tpl": "59c6633186f7740cf0493bb9", + "parentId": "cfa01a8cc164bc348132b9de", + "slotId": "mod_gas_block" + }, + { + "_id": "389a2a51bb7600e52c7055ac", + "_tpl": "5ac72e895acfc43b321d4bd5", + "parentId": "cfa01a8cc164bc348132b9de", + "slotId": "mod_muzzle" + }, + { + "_id": "9ab4e3f278143af79c652a94", + "_tpl": "5649ade84bdc2d1b2b8b4587", + "parentId": "cfa01a8cc164bc348132b9de", + "slotId": "mod_pistol_grip" + }, + { + "_id": "eecb75106b90e7d7ebe058dc", + "_tpl": "5ac50da15acfc4001718d287", + "parentId": "cfa01a8cc164bc348132b9de", + "slotId": "mod_reciever" + }, + { + "_id": "2283516205448c92d70794e5", + "_tpl": "5ac733a45acfc400192630e2", + "parentId": "cfa01a8cc164bc348132b9de", + "slotId": "mod_sight_rear", + "upd": { + "Sight": { + "ScopesCurrentCalibPointIndexes": [ + 0 + ], + "ScopesSelectedModes": [ + 0 + ], + "SelectedScope": 0 + } + } + }, + { + "_id": "2f7b69238a09ae02f73adc6f", + "_tpl": "5ac50c185acfc400163398d4", + "parentId": "cfa01a8cc164bc348132b9de", + "slotId": "mod_stock" + }, + { + "_id": "8eb1110018c40d73224f3f0a", + "_tpl": "5ac66bea5acfc43b321d4aec", + "parentId": "cfa01a8cc164bc348132b9de", + "slotId": "mod_magazine" + }, + { + "_id": "bdddedb11f6f5371cfc4c167", + "_tpl": "5648b1504bdc2d9d488b4584", + "parentId": "c618ef9dabc2bae4a635ff1b", + "slotId": "mod_handguard" + } + ] + } + ], + ] +} diff --git a/user/mods/GamblerTrader/src/containers/keys.ts b/user/mods/GamblerTrader/src/containers/keys.ts new file mode 100644 index 0000000..04148cf --- /dev/null +++ b/user/mods/GamblerTrader/src/containers/keys.ts @@ -0,0 +1,224 @@ +export class Keys { + + public parent = "key"; + public price_generate = true; + + public rarities = [ + "_extremely_rare", + "_rare", + "_uncommon", + "_common" + ] + + // 0.2.0 Keys Total = 143 - 1 broken key + // 0.2.1 Keys Total = 216 - 1 broken key + + + + public rewards = [ + [ // Extremely Rare + "5d80c60f86f77440373c4ece", // RB-BK + "5d80c62a86f7744036212b3f", // RB-VO + "63a3a93f8a56922e82001f5d", // Abandoned Marked Key + "5780cf7f2459777de4559322", // 314 Dorms Marked Key + "64ccc25f95763a1ae376e447", // Mysterious Room Marked Key + "63a39fc0af870e651d58e6ae", // Chek 15 key + "5ede7a8229445733cb4c18e2", // RB-PKPM Key + "64d4b23dc1b37504b41ac2b6", // Rusted bloody key + ], + [ // Rare + "664d3db6db5dea2bad286955", // Shatun's hideout + "664d3dd590294949fe2d81b7", // Grumpy's hideout key + "664d3ddfdda2e85aca370d75", // Voron's hideout key + "664d3de85f2355673b09aed5", // Leon's hideout key + "5c1f79a086f7746ed066fb8f", // TerraGroup Labs arsenal storage room key + "63a397d3af870e651d58e65b", // Car dealership closed section key + "5e42c71586f7747f245e1343", // ULTRA medical storage key + "62987dfc402c7f69bf010923", // Shared bedroom marked key + "5448ba0b4bdc2d02308b456c", // Factory emergency exit key + "5ad5d7d286f77450166e0a89", // Kiba Arms outer door key + "63a71e922b25f7513905ca20", // Concordia apartment 64 key + "5d08d21286f774736e7c94c3", // Shturman's stash key + "63a39f6e64283b5e9c56b289", // Iron gate key + "5eff09cd30a7dc22fd1ddfed", // Health Resort office key with a blue tape + "6398fd8ad3de3849057f5128", // Backup hideout key + ], + [ // Uncommon + "5c1e2d1f86f77431e9280bee", // TerraGroup Labs weapon testing area key + "5ad7247386f7747487619dc3", // Goshan cash register key + "61aa5b7db225ac1ead7957c1", // USEC cottage first safe key + "64ccc246ff54fb38131acf29", // X-ray room key + "61aa5ba8018e9821b7368da9", // USEC cottage second safe key + "5c1e2a1e86f77431ea0ea84c", // TerraGroup Labs manager's office room key + "5a0eb6ac86f7743124037a28", // Cottage back door key + "64ce572331dd890873175115", // Aspect company office key + "63a39f08cd6db0635c197600", // Pinewood hotel room 215 key + "5ad5db3786f7743568421cce", // EMERCOM medical unit key + "63a399193901f439517cafb6", // Car dealership director's office room key + "5ad5d64486f774079b080af8", // NecrusPharm pharmacy key + "63a71e86b7f4570d3a293169", // Concordia apartment 64 office room key + "64ccc24de61ea448b507d34d", // TerraGroup security armory key + "64ccc1fe088064307e14a6f7", // Beluga restaurant director key + "5d80cbd886f77470855c26c2", // RB-MP13 key + "5d80cbd886f77470855c26c2", // RB-MP13 key + "63a39c7964283b5e9c56b280", // Concordia security room key + "5d8e3ecc86f774414c78d05e", // RB-GN key + "63a71ed21031ac76fe773c7f", // Financial institution small office key + "5d80c6fc86f774403a401e3c", // RB-TB key + "5d80c8f586f77440373c4ed0", // RB-OP key + "62987cb98081af308d7558c8", // Conference room key + "5d80cb5686f77440545d1286", // RB-PSV1 key + "5d95d6be86f77424444eb3a7", // RB-PSV2 key + "61a64492ba05ef10d62adcc1", // Rogue USEC stash key + "5d8e15b686f774445103b190", // HEP station storage room key + "61aa81fcb225ac1ead7957c3", // Rogue USEC workshop key + "63a71e781031ac76fe773c7d", // Concordia apartment 8 room key + "5d80cb3886f77440556dbf09", // RB-PSP1 key + "5d80ca9086f774403a401e40", // RB-MP21 key + "62987e26a77ec735f90a2995", // Water treatment plant storage room key + "5a0f006986f7741ffd2fe484", // Weather station safe key + "5a0448bc86f774736f14efa8", // Key to the closed premises of the Health Resort + "63a39e1d234195315d4020bd", // Primorsky 46-48 skybridge key + //"6391fcf5744e45201147080f", // Primorsky Ave apartment key + "5d80ccdd86f77474f7575e02", // RB-ORB2 key + "5d947d4e86f774447b415895", // RB-KSM key + "5d8e0e0e86f774321140eb56", // RB-KPRL key + "64ccc1ec1779ad6ba200a137", // Concordia apartment 8 home cinema key + "5d9f1fa686f774726974a992", // RB-ST key + "64ccc1d4a0f13c24561edf27", // Concordia apartment 34 room key + "5a0f0f5886f7741c4e32a472", // Health Resort management warehouse safe key + "5a0f08bc86f77478f33b84c2", // Health Resort management office safe key + "5a0ea79b86f7741d4a35298e", // Health Resort universal utility room key + "5a13f35286f77413ef1436b0", // Health Resort east wing room 226 key + "5a145d7b86f7744cbb6f4a13", // Health Resort east wing room 308 key + "5a0ea64786f7741707720468", // Health Resort east wing office room 107 key + "5a144bdb86f7741d374bbde0", // Health Resort east wing room 205 key + "5a0ee4b586f7743698200d22", // Health Resort east wing room 206 key + "5a0ee72c86f77436955d3435", // Health Resort east wing room 213 key + "5a0ee76686f7743698200d5c", // Health Resort east wing room 216 key + "5a13f24186f77410e57c5626", // Health Resort east wing room 222 key + "5a145d4786f7744cbb6f4a12", // Health Resort east wing room 306 key + "5a0eec9686f77402ac5c39f2", // Health Resort east wing room 310 key + "5a0eecf686f7740350630097", // Health Resort east wing room 313 key + "5a0eed4386f77405112912aa", // Health Resort east wing room 314 key + "5a145ebb86f77458f1796f05", // Health Resort east wing room 316 key + "5a0eee1486f77402aa773226", // Health Resort east wing room 328 key + "5a0dc45586f7742f6b0b73e3", // Health Resort west wing office room 104 key + "5a0dc95c86f77452440fc675", // Health Resort west wing office room 112 key + "5a144dfd86f77445cb5a0982", // Health Resort west wing room 203 key + "5a0ec6d286f7742c0b518fb5", // Health Resort west wing room 205 key + "5a0ee30786f774023b6ee08f", // Health Resort west wing room 216 key + "5a13eebd86f7746fd639aa93", // Health Resort west wing room 218 key + "5a13ef0686f7746e5a411744", // Health Resort west wing room 219 key + "5a0ee34586f774023b6ee092", // Health Resort west wing room 220 key + "5a0ee37f86f774023657a86f", // Health Resort west wing room 221 key + "5a1452ee86f7746f33111763", // Health Resort west wing room 222 key + "5a13ef7e86f7741290491063", // Health Resort west wing room 301 key + "5a0eeb1a86f774688b70aa5c", // Health Resort west wing room 303 key + "5a13f46386f7741dd7384b04", // Health Resort west wing room 306 key + "5a0eff2986f7741fd654e684", // Health Resort west wing room 321 safe key + "63a39cb1c9b3aa4b61683ee2", // Construction site bunkhouse key + "5d80c93086f7744036212b41", // RB-MP11 key + "63a39ce4cd6db0635c1975fa", // Supply department director's office key + "5da5cdcd86f774529238fb9b", // RB-RH key + "5d80c95986f77440351beef3", // RB-MP12 key + "5d80c66d86f774405611c7d6", // RB-AO key + "63a39fdf1e21260da44a0256", // Cargo container mesh door key + "63a39fd1c9b3aa4b61683efb", // Stair landing key + "63a71eb5b7f4570d3a29316b", // Primorsky 48 apartment key + "5d95d6fa86f77424484aa5e9", // RB-PSP2 key + "5d80cab086f77440535be201", // RB-MP22 key + "5d80c88d86f77440556dbf07", // RB-AM key + "5a0f068686f7745b0d4ea242", // Cottage safe key + "62987c658081af308d7558c6", // Radar station commandant room key + "5780cf722459777a5108b9a1", // Dorm room 308 key + "5d80cd1a86f77402aa362f42", // RB-ORB3 key + "5d947d3886f774447b415893", // RB-SMP key + "5d80ccac86f77470841ff452", // RB-ORB1 key + "5913877a86f774432f15d444", // Gas station storage room key + "59387a4986f77401cc236e62", // Dorm room 114 key + "5addaffe86f77470b455f900", // Kiba Arms inner grate door key + "6582dbf0b8d7830efc45016f", // Relaxation room key + "6582dc5740562727a654ebb1", // Real estate agency office room key + "5d80c6c586f77440351beef1", // RB-OB key + "63a39667c9b3aa4b61683e98", // Financial institution office key + "5448ba0b4bdc2d02308b456c", // Factory emergency exit key + "64ccc1f4ff54fb38131acf27", // Concordia apartment 63 room key + "5ad5cfbd86f7742c825d6104", // OLI logistics department office key + "62987da96188c076bc0d8c51", // Operating room key + "64ccc206793ca11c8f450a38", // TerraGroup meeting room key + "5da743f586f7744014504f72", // USEC stash key + "5ad7217186f7746744498875", // OLI cash register key + "61a64428a8c6aa1b795f0ba1", // Convenience store storage room key + "5a0f045e86f7745b0f0d0e42", // Gas station safe key + "66265d7be65f224b2e17c6aa", // USEC cottage room key + "5d80c78786f774403a401e3e", // RB-AK key + ], + [ // Common + "5780d0532459777a5108b9a2", // Tarcone Director's office key + "61aa5b518f5e7a39b41416e2", // Merin car trunk key + "5d8e0db586f7744450412a42", // RB-KORL key + "5913915886f774123603c392", // Military checkpoint key + "5780d0652459777df90dcb74", // Gas station office key + "62a9cb937377a65d7b070cef", // Rogue USEC barrack key + "64ccc2111779ad6ba200a139", // Tarbank cash register department key + "591382d986f774465a6413a7", // Dorm room 105 key + "61a6444b8c141d68246e2d2f", // Hillside house key + "6582dc4b6ba9e979af6b79f4", // MVD academy entrance hall guard room key + "62a09ec84f842e1bd12da3f2", // Missam forklift key + "63a39c69af870e651d58e6aa", // Store manager's key + "63a39dfe3901f439517cafba", // Zmeisky 3 apartment 8 key + "63a39df18a56922e82001f25", // Zmeisky 5 apartment 20 key + "57a349b2245977762b199ec7", // Pumping station front door key + "593858c486f774253a24cb52", // Pumping station back door key + "591ae8f986f77406f854be45", // Yotota car key + "5780d07a2459777de4559324", // Portable cabin key + "6582dbe43a2e5248357dbe9a", // "Negotiation" room key + "5a0dc45586f7742f6b0b73e3", // SMW car key + "64ccc268c41e91416064ebc7", // PE teacher's office key + "59136f6f86f774447a1ed173", // Folding car key + "59136a4486f774447a1ed172", // Dorm guard desk key + "5938994586f774523a425196", // Dorm room 103 key + "591383f186f7744a4c5edcf3", // Dorm room 104 key + "591382d986f774465a6413a7", // Dorm room 104 key + "5914578086f774123569ffa4", // Dorm room 108 key + "59136e1e86f774432f15d133", // Dorm room 110 key + "5672c92d4bdc2d180f8b4567", // Dorm room 118 key + "5938504186f7740991483f30", // Dorm room 203 key + "59148c8a86f774197930e983", // Dorm room 204 key + "5938603e86f77435642354f4", // Dorm room 206 key + "5780cf942459777df90dcb72", // Dorm room 214 key + "5780cf9e2459777df90dcb73", // Dorm room 218 key + "5780cfa52459777dfb276eb1", // Dorm room 220 key + "593aa4be86f77457f56379f8", // Dorm room 303 key + "5780cda02459777b272ede61", // Dorm room 306 key + "5780cf722459777a5108b9a1", // Dorm room 308 key + "5780cf692459777de4559321", // Dorm room 315 key + "5da46e3886f774653b7a83fe", // RB-RS key + "5ad7242b86f7740a6a3abd43", // IDEA cash register key + "5a0ec70e86f7742c0b518fba", // Health Resort west wing room 207 key + "5a0eeb8e86f77461257ed71a", // Health Resort west wing room 309 key + "5a0ea69f86f7741cd5406619", // Health Resort east wing office room 108 key + "5a0ee62286f774369454a7ac", // Health Resort east wing room 209 key + "5a0eedb386f77403506300be", // Health Resort east wing room 322 key + "5a0eebed86f77461230ddb3d", // Health Resort west wing room 325 key + "5a13ee1986f774794d4c14cd", // Health Resort west wing room 323 key + "63a39e49cd6db0635c1975fc", // Archive room key + "63a39f18c2d53c2c6839c1d3", // Pinewood hotel room 206 key + "5ad5ccd186f774446d5706e9", // OLI administration office key + "5938144586f77473c2087145", // Portable bunkhouse key + "5937ee6486f77408994ba448", // Machinery key + "5ad5d49886f77455f9731921", // Power substation utility cabin key + "658199972dc4e60f6d556a2f", // Underground parking utility room key + "5d80cb8786f774405611c7d9", // RB-PP key + "5ad5d20586f77449be26d877", // OLI outlet utility room key + "6581998038c79576a2569e11", // Unity Credit Bank cash register key + "5913651986f774432f15d132", // VAZ car key + "5a0f075686f7745bcc42ee12", // Store safe key + "5913611c86f77479e0084092", // Trailer park portable cabin key + "59148f8286f7741b951ea113", // Weapon safe key + "61aa5aed32a4743c3453d319", // Police truck cabin key + "591afe0186f77431bd616a11", // ZB-014 key + ] + ] +} diff --git a/user/mods/GamblerTrader/src/fluentTraderAssortCreator.ts b/user/mods/GamblerTrader/src/fluentTraderAssortCreator.ts new file mode 100644 index 0000000..152dd06 --- /dev/null +++ b/user/mods/GamblerTrader/src/fluentTraderAssortCreator.ts @@ -0,0 +1,177 @@ +import { Item } from "@spt/models/eft/common/tables/IItem"; +import { IBarterScheme, ITrader } from "@spt/models/eft/common/tables/ITrader"; +import { Money } from "@spt/models/enums/Money"; +import { ILogger } from "@spt/models/spt/utils/ILogger"; +import { HashUtil } from "@spt/utils/HashUtil"; + +export class FluentAssortConstructor +{ + protected itemsToSell: Item[] = []; + protected barterScheme: Record = {}; + protected loyaltyLevel: Record = {}; + protected hashUtil: HashUtil; + protected logger: ILogger; + + constructor(hashutil: HashUtil, logger: ILogger) + { + this.hashUtil = hashutil + this.logger = logger; + } + + /** + * Start selling item with tpl + * @param itemTpl Tpl id of the item you want trader to sell + * @param itemId Optional - set your own Id, otherwise unique id will be generated + */ + public createSingleAssortItem(itemTpl: string, itemId = undefined): FluentAssortConstructor + { + // Create item ready for insertion into assort table + const newItemToAdd: Item = { + _id: !itemId ? this.hashUtil.generate(): itemId, + _tpl: itemTpl, + parentId: "hideout", // Should always be "hideout" + slotId: "hideout", // Should always be "hideout" + upd: { + UnlimitedCount: false, + StackObjectsCount: 100 + } + }; + + this.itemsToSell.push(newItemToAdd); + + return this; + } + + public createComplexAssortItem(items: Item[]): FluentAssortConstructor + { + items[0].parentId = "hideout"; + items[0].slotId = "hideout"; + + if (!items[0].upd) + { + items[0].upd = {} + } + + items[0].upd.UnlimitedCount = false; + items[0].upd.StackObjectsCount = 100; + + this.itemsToSell.push(...items); + + return this; + } + + public addStackCount(stackCount: number, unlimited: boolean = false): FluentAssortConstructor + { + this.itemsToSell[0].upd.StackObjectsCount = stackCount; + + if (unlimited) this.itemsToSell[0].upd.UnlimitedCount = true; + + return this; + } + + public addUnlimitedStackCount(): FluentAssortConstructor + { + this.itemsToSell[0].upd.StackObjectsCount = 999999; + this.itemsToSell[0].upd.UnlimitedCount = true; + + return this; + } + + public makeStackCountUnlimited(): FluentAssortConstructor + { + this.itemsToSell[0].upd.StackObjectsCount = 999999; + + return this; + } + + public addBuyRestriction(maxBuyLimit: number): FluentAssortConstructor + { + this.itemsToSell[0].upd.BuyRestrictionMax = maxBuyLimit; + this.itemsToSell[0].upd.BuyRestrictionCurrent = 0; + + return this; + } + + public addLoyaltyLevel(level: number) + { + this.loyaltyLevel[this.itemsToSell[0]._id] = level; + + return this; + } + + public addMoneyCost(currencyType: Money, amount: number): FluentAssortConstructor + { + this.barterScheme[this.itemsToSell[0]._id] = [ + [ + { + count: amount, + _tpl: currencyType + } + ] + ]; + + return this; + } + + public addBarterCost(itemTpl: string, count: number): FluentAssortConstructor + { + const sellableItemId = this.itemsToSell[0]._id; + + // No data at all, create + if (Object.keys(this.barterScheme).length === 0) + { + this.barterScheme[sellableItemId] = [[ + { + count: count, + _tpl: itemTpl + } + ]]; + } + else + { + // Item already exists, add to + const existingData = this.barterScheme[sellableItemId][0].find(x => x._tpl === itemTpl); + if (existingData) + { + // itemtpl already a barter for item, add to count + existingData.count+= count; + } + else + { + // No barter for item, add it fresh + this.barterScheme[sellableItemId][0].push({ + count: count, + _tpl: itemTpl + }) + } + + } + + return this; + } + + /** + * Reset objet ready for reuse + * @returns + */ + public export(data: ITrader): FluentAssortConstructor + { + const itemBeingSoldId = this.itemsToSell[0]._id; + if (data.assort.items.find(x => x._id === itemBeingSoldId)) + { + this.logger.error(`Unable to add complex item with item key ${this.itemsToSell[0]._id}, key already used`); + + return; + } + + data.assort.items.push(...this.itemsToSell); + data.assort.barter_scheme[itemBeingSoldId] = this.barterScheme[itemBeingSoldId]; + data.assort.loyal_level_items[itemBeingSoldId] = this.loyaltyLevel[itemBeingSoldId]; + + this.itemsToSell = []; + this.barterScheme = {}; + this.loyaltyLevel = {}; + + return this; + } +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/itemCreateHelper.ts b/user/mods/GamblerTrader/src/itemCreateHelper.ts new file mode 100644 index 0000000..edd8421 --- /dev/null +++ b/user/mods/GamblerTrader/src/itemCreateHelper.ts @@ -0,0 +1,132 @@ +import { DependencyContainer } from "tsyringe"; +import { CustomItemService } from "@spt/services/mod/CustomItemService"; +import { NewItemDetails } from "@spt/models/spt/mod/NewItemDetails"; +import { NewItemFromCloneDetails } from "@spt/models/spt/mod/NewItemDetails"; +import { MysteryContainerInfo } from "./MysteryContainerInfo"; +import { itemProps } from "./MysteryContainerInfo"; +import * as fs from 'fs'; +import { jsonc } from "jsonc"; +import path from "path"; + +export class ItemCreateHelper { + + public config: any; + public loot: Array = []; + + // builds all mystery containers and pushes to database + public createItems(container: DependencyContainer) { + this.config = jsonc.parse(fs.readFileSync(path.resolve(__dirname, "../config/config.jsonc"), "utf-8")); + const info: Record = MysteryContainerInfo(this.config); + const customItem = container.resolve("CustomItemService"); + + for (const [_, value] of Object.entries(info)) { + + const item: NewItemDetails = { + newItem: { + _id: value._id, + _name: value._name, + _parent: "62f109593b54472778797866", + _props: { + "AnimationVariantsNumber": 0, + "BackgroundColor": "orange", + "BlocksArmorVest": false, + "CanPutIntoDuringTheRaid": true, + "CanRequireOnRagfair": false, + "CanSellOnRagfair": false, + "CantRemoveFromSlotsDuringRaid": [], + "ConflictingItems": [], + "Description": value.desc, + "DiscardLimit": -1, + "DiscardingBlock": false, + "DropSoundType": "None", + "ExamineExperience": 100, + "ExamineTime": 1, + "ExaminedByDefault": true, + "ExtraSizeDown": 0, + "ExtraSizeForceAdd": false, + "ExtraSizeLeft": 0, + "ExtraSizeRight": 0, + "ExtraSizeUp": 0, + "Grids": [ + { + "_id": "6489c03c8bc5233fdc78e789", + "_name": "main", + "_parent": "6489c03c8bc5233fdc78e788", + "_props": { + "cellsH": 1, + "cellsV": 1, + "filters": [ + { + "ExcludedFilter": [ + "54009119af1c881c07000029" + ], + "Filter": [] + } + ], + "isSortingTable": false, + "maxCount": 99, + "maxWeight": 0, + "minCount": 1 + }, + "_proto": "55d329c24bdc2d892f8b4567" + } + ], + "Height": value.height, + "HideEntrails": true, + "InsuranceDisabled": false, + "IsAlwaysAvailableForInsurance": false, + "IsLockedafterEquip": false, + "IsSpecialSlotOnly": false, + "IsUnbuyable": false, + "IsUndiscardable": false, + "IsUngivable": false, + "IsUnremovable": false, + "IsUnsaleable": false, + "ItemSound": "container_plastic", + "LootExperience": 20, + "MergesWithChildren": false, + "Name": value.name, + "NotShownInSlot": false, + "Prefab": { + "path": value.prefab, + "rcid": "" + }, + "QuestItem": false, + "QuestStashMaxCount": 0, + "RagFairCommissionModifier": 1, + "RepairCost": 0, + "RepairSpeed": 0, + "SearchSound": "drawer_metal_looting", + "ShortName": value.shortName, + "Slots": [], + "StackMaxSize": 1, + "StackObjectsCount": 1, + "Unlootable": false, + "UnlootableFromSide": [], + "UnlootableFromSlot": "FirstPrimaryWeapon", + "UsePrefab": { + "path": "", + "rcid": "" + }, + "Weight": 2, + "Width": value.width, + "ReverbVolume": 0 + }, + _proto: "", + _type: "Item" + }, + fleaPriceRoubles: value.fleaPriceRoubles, + handbookPriceRoubles: value.handbookPriceRoubles, + handbookParentId: "5b5f6fa186f77409407a7eb7", + locales: { + "en": { + name: value.name, + shortName: value.shortName, + description: value.desc + } + } + } + customItem.createItem(item) + } + } +} \ No newline at end of file diff --git a/user/mods/GamblerTrader/src/itemCreator.ts b/user/mods/GamblerTrader/src/itemCreator.ts new file mode 100644 index 0000000..483c0e5 --- /dev/null +++ b/user/mods/GamblerTrader/src/itemCreator.ts @@ -0,0 +1,182 @@ +import { DependencyContainer } from "tsyringe"; +import { HashUtil } from "@spt/utils/HashUtil"; +import { Item } from "@spt/models/eft/common/tables/IItem"; +import { ItemHelper } from "@spt/helpers/ItemHelper"; +import { Weapons } from "./containers/Weapons"; +import { Helmets } from "./containers/Helmets"; +import { Armors } from "./containers/Armors"; + + +export class ItemCreator { + + public armors: any; + public helmets: any; + public weapons: any; + public headsetCompatible: boolean; + public caliber: string; + public magazine: string; + public magazineMaxAmmo: number; + public weaponType: string; + private hashUtil: HashUtil; + private itemHelper: ItemHelper; + + constructor(container: DependencyContainer){ + this.armors = new Armors(); + this.helmets = new Helmets(); + this.weapons = new Weapons(); + this.headsetCompatible = true; + this.hashUtil = container.resolve("HashUtil"); + this.itemHelper = container.resolve("ItemHelper"); + } + + // getRandomInt(3) returns 0, 1, or 2 + private getRandomInt(max: number) { + return Math.floor(Math.random() * max); + } + + public createPreset(name: string, rarity: string): Item{ + let itemPreset: Item[] = []; + //console.log('createPreset ' + name + ' ' + rarity) + + switch(name){ + case 'helmet': + itemPreset = this.createHelmet(rarity); + break; + case 'armor': + itemPreset = this.createArmor(rarity); + break; + case 'weapon': + itemPreset = this.createGun(rarity); + break; + } + return itemPreset + } + + // Returns a random helmet from helmets + private createHelmet(which: string): Item{ + let baseHelmet: Item[]; + + for(let i = 0; i < this.helmets.rarities.length; i++){ + if (which === this.helmets.rarities[i]) { + baseHelmet = this.helmets.presets[i]; + break; + } + } + + const randomHelmet = this.getRandomInt(baseHelmet.length); + let getItem = baseHelmet[randomHelmet]; + + return this.generateItem(getItem); + } + + // Returns a random Armor from armors + private createArmor(which: string): Item{ + let baseArmor: Item[]; + + for(let i = 0; i < this.armors.rarities.length; i++){ + if (which === this.armors.rarities[i]) { + baseArmor = this.armors.presets[i]; + break; + } + } + + const randomArmor = this.getRandomInt(baseArmor.length); + let getItem = baseArmor[randomArmor]; + + return this.generateItem(getItem); + } + + // Returns a random gun from weapons + private createGun(which: string): Item{ + let weaponBuilds: Item[]; + + + for(let i = 0; i < this.weapons.rarities.length; i++){ + if (which === this.weapons.rarities[i]) { + weaponBuilds = this.weapons.presets[i]; + break; + } + } + + const randomBuild = this.getRandomInt(weaponBuilds.length); + let getItem = weaponBuilds[randomBuild]; + this.weaponType = which; + return this.generateItem(getItem); + } + + private generateItem(build: any): Item[] { + const item: Item[] = []; + // We map every build[i]._id to a newly generated _id inside of parenIdMap. We HAVE to do this as if we have two duplicate items they would have the same _id which will brick the player inventory. + const parentIdMap = {}; + const _randomId = this.hashUtil.generate(); // New Item baseId; + const weapon_name = build['Name']? build['Name'] : undefined; + build = build.Items; + + let baseId; + for(let i = 0; i < build.length; i++){ + + if (build[i]._tpl == "5a16b9fffcdbcb0176308b34") { // helmet has a headset + this.headsetCompatible = false; + } + + if(i == 0) { // item base + baseId = build[i]._id; // Need the base to reference in attachments + parentIdMap[baseId] = _randomId; // base id = _randomId + item.push({ + _id: _randomId, + _tpl: build[i]._tpl + }); + } else { // Children Attachments + + const newId = this.hashUtil.generate(); + + // Every _id is mapped to a newly generated _id, so every item is unique and doesn"t _id collide + if(parentIdMap[build[i]._id] == undefined) { + parentIdMap[build[i]._id] = newId; + } + + if(build[i].parentId != baseId) { // Attachments with parents that are not the base Item + + item.push({ + _id: newId, + _tpl: build[i]._tpl, + parentId: parentIdMap[build[i].parentId], + slotId: build[i].slotId, + upd: build[i].upd?.Togglable? ({ + Togglable: { + On: true, + } + }) : {} + }); + + } else { + if(build[i].slotId == "mod_magazine") { + // Save magazine + this.magazine = build[i]._tpl; + // Maximum rounds in saved magazine + const magInfo = this.itemHelper.getItem(this.magazine) + this.magazineMaxAmmo = magInfo[1]._props.Cartridges[0]._max_count; + } + item.push({ + _id: newId, + _tpl: build[i]._tpl, + parentId: _randomId, + slotId: build[i].slotId, + upd: build[i].upd?.Togglable? ({ + Togglable: { + On: true, + } + }) : {} + }); + + } + } + } + const itemInfo = this.itemHelper.getItem(item[0]._tpl) + this.caliber = itemInfo[1]._props.ammoCaliber; // save caliber + return item; + } + + + +} diff --git a/user/mods/GamblerTrader/src/mod.ts b/user/mods/GamblerTrader/src/mod.ts new file mode 100644 index 0000000..18dd38e --- /dev/null +++ b/user/mods/GamblerTrader/src/mod.ts @@ -0,0 +1,242 @@ +// SPT types +import { DependencyContainer } from "tsyringe"; +import { IPreSptLoadMod } from "@spt/models/external/IPreSptLoadMod"; +import { ILogger } from "@spt/models/spt/utils/ILogger"; +import { PreSptModLoader } from "@spt/loaders/PreSptModLoader"; +import { IPostDBLoadMod } from "@spt/models/external/IPostDBLoadMod"; +import { IPostSptLoadMod } from "@spt/models/external/IPostSptLoadMod"; +import { DatabaseServer } from "@spt/servers/DatabaseServer"; +import { ImageRouter } from "@spt/routers/ImageRouter"; +import { ConfigServer } from "@spt/servers/ConfigServer"; +import { ConfigTypes } from "@spt/models/enums/ConfigTypes"; +import { ITraderConfig } from "@spt/models/spt/config/ITraderConfig"; +import { IRagfairConfig } from "@spt/models/spt/config/IRagfairConfig"; +import { JsonUtil } from "@spt/utils/JsonUtil"; +import { IOpenRandomLootContainerRequestData } from "@spt/models/eft/inventory/IOpenRandomLootContainerRequestData"; +import { Traders } from "@spt/models/enums/Traders"; +import { IItemEventRouterResponse } from "@spt/models/eft/itemEvent/IItemEventRouterResponse"; +import { LootGenerator } from "@spt/generators/LootGenerator"; +import { InventoryHelper } from "@spt/helpers/InventoryHelper"; +import { ItemHelper } from "@spt/helpers/ItemHelper"; +import { EventOutputHolder } from "@spt/routers/EventOutputHolder"; +import { InventoryController } from "@spt/controllers/InventoryController"; +import { IPmcData } from "@spt/models/eft/common/IPmcData"; +import { HashUtil } from "@spt/utils/HashUtil"; +import { IAddItemDirectRequest } from "@spt/models/eft/inventory/IAddItemsDirectRequest"; +import * as fs from 'fs'; +import * as baseJson from "../db/base.json"; +import { TraderHelper } from "./traderHelpers"; +import { ItemCreateHelper } from "./itemCreateHelper"; +import { FluentAssortConstructor as FluentAssortCreator } from "./fluentTraderAssortCreator"; +import { jsonc } from "jsonc"; +import path from "path"; +import { Gamble } from "./Gamble"; + +class SampleTrader implements IPreSptLoadMod, IPostDBLoadMod, IPostSptLoadMod +{ + private mod: string + private logger: ILogger + private traderHelper: TraderHelper + private fluentAssortCreator: FluentAssortCreator + private hashUtil: HashUtil; + public config: any; + + constructor() { + this.mod = "GamblerTrader"; + } + + /** + * I'm just here so I won't get fined. + * @param container Dependency container + */ + public preSptLoad(container: DependencyContainer): void { + this.logger = container.resolve("WinstonLogger"); + + container.afterResolution("InventoryController", (_t, result: InventoryController) => + { + result.openRandomLootContainer = (pmcData: IPmcData, body: IOpenRandomLootContainerRequestData, sessionID : string) => + { + return this.newOpenRandomLoot(container, pmcData, body, sessionID); + } + }); + + this.logger.debug(`[${this.mod}] preAki Loaded`); + } + + /** + * I'm just 'bout that gambler action boss. + * @param container Dependency container + */ + public postDBLoad(container: DependencyContainer): void { + + this.logger.debug(`[${this.mod}] postDb Loading... `); + const preSptModLoader: PreSptModLoader = container.resolve("PreSptModLoader"); + const imageRouter: ImageRouter = container.resolve("ImageRouter"); + const hashUtil: HashUtil = container.resolve("HashUtil"); + const configServer = container.resolve("ConfigServer"); + const traderConfig: ITraderConfig = configServer.getConfig(ConfigTypes.TRADER); + const ragfairConfig = configServer.getConfig(ConfigTypes.RAGFAIR); + const databaseServer: DatabaseServer = container.resolve("DatabaseServer"); + const tables = databaseServer.getTables(); + const jsonUtil: JsonUtil = container.resolve("JsonUtil"); + const itemCreate = new ItemCreateHelper(); + this.config = jsonc.parse(fs.readFileSync(path.resolve(__dirname, "../config/config.jsonc"), "utf-8")); + this.hashUtil = hashUtil; + this.traderHelper = new TraderHelper(); + this.fluentAssortCreator = new FluentAssortCreator(this.hashUtil, this.logger); + this.traderHelper.registerProfileImage(baseJson, 'GamblerTrader', preSptModLoader, imageRouter, "thegambler.jpg"); + this.traderHelper.setTraderUpdateTime(traderConfig, baseJson, this.config.trader_update_min_time, this.config.trader_update_max_time); + + // Add trader to trader enum + Traders[baseJson._id] = baseJson._id; + // Add trader to flea market + ragfairConfig.traders[baseJson._id] = true; + // Creates and stores new gambling items in database + itemCreate.createItems(container) + + // Add new trader to the trader dictionary in DatabaseServer - has no assorts (items) yet + this.traderHelper.addTraderToDb(baseJson, tables, jsonUtil); + + // Add gambling containers to trader + this.traderHelper.addSingleItemsToTrader(tables, baseJson._id, this.fluentAssortCreator, container, this.logger); + + // WARNING: adds the same text to ALL locales (e.g. chinese/french/english) + this.traderHelper.addTraderToLocales(baseJson, tables, baseJson.name, "Gambler", baseJson.nickname, baseJson.location, "Welcome Traveler! May I indulge you in purchasing some mystery boxes?"); + + /* + const maps = [ + "bigmap", // customs + "factory4_day", + "factory4_night", + "woods", + "rezervbase", + "shoreline", + "interchange", + "tarkovstreets", + "lighthouse", + "laboratory", + "sandbox", // groundzero + "sandbox_high"// groundzero20 + ]; + + //console.log(tables.locations["bigmap"].staticLoot["578f87a3245977356274f2cb"].itemDistribution) // Drawer + // + // adds poker chips to static loot containers on all maps + for (const item of itemCreate.loot){ + for(const map of maps){ + const mapStaticLoot = tables.locations[map].staticLoot; + const staticLootProbabilities = item.addToStaticLoot; + for(const [lootContainer, probability] of Object.entries(staticLootProbabilities)){ + + try{ + mapStaticLoot[lootContainer].itemDistribution.push({ + "tpl": item.newId, + "relativeProbability": probability + }); + } catch (e){ + this.logger.debug("Could not add " + item.newId + " to container " + lootContainer + " on map " + map) + } + + } + } + } + */ + + this.logger.debug(`[${this.mod}] postDb Loaded`); + } + + // Update container prices after all mods have loaded + public postSptLoad(container: DependencyContainer): void {\ + this.logger.success("[Gambler Trader] Generating Mystery Container Prices..."); + const databaseServer: DatabaseServer = container.resolve("DatabaseServer"); + const tables = databaseServer.getTables(); + this.traderHelper.updateContainerPrices(tables, baseJson._id, this.fluentAssortCreator, container, this.logger); + this.logger.success("[Gambler Trader] Finished Loading! Ready To Launch."); + + } + + public newOpenRandomLoot(container: DependencyContainer, pmcData: IPmcData, body: IOpenRandomLootContainerRequestData, sessionID: string): IItemEventRouterResponse { + // Needed reference methods + const lootGenerator = container.resolve("LootGenerator"); + const itemHelper = container.resolve("ItemHelper"); + const inventoryHelper = container.resolve("InventoryHelper"); + const eventOutputHolder = container.resolve("EventOutputHolder"); + const openedItem = pmcData.Inventory.items.find(x => x._id === body.item); + const output = eventOutputHolder.getOutput(sessionID); + + if (itemHelper.getItem(openedItem._tpl) == undefined){ + this.logger.error("[GamblerTrader] Cannot find unboxed mystery container in Inventory... Best option is to restart game.. I am not fully sure why this happens...") + return output; + } + + const containerDetails = itemHelper.getItem(openedItem._tpl); + let gamble: Gamble; + + const newItemsRequest: IAddItemDirectRequest = { + itemsWithModsToAdd: [], + foundInRaid: true, + useSortingTable : true + }; + + const isSealedWeaponBox = containerDetails[1]._name.includes("event_container_airdrop"); // default airdrop container + const isGamblingContainer = containerDetails[1]._name.includes("gambling_"); // Gambler items are tagged with `gambling_${container}` identifier + const unlockedWeaponCrates = [ + "665829424de4820934746ce6", + "665732e7ac60f009f270d1ef", + "665888282c4a1b73af576b77", + ]; + + if (isGamblingContainer) { + // All Gambler containers + const currentContainer = containerDetails[1]; + gamble = new Gamble(container, this.config, this.logger, currentContainer._name); + gamble.newGamble(); + + if(gamble.newItemsRequest.itemsWithModsToAdd.length != 0) { + newItemsRequest.itemsWithModsToAdd = [...gamble.newItemsRequest.itemsWithModsToAdd] + newItemsRequest.foundInRaid = gamble.newItemsRequest.foundInRaid; + } + } else { + // All other sealed containers + if (isSealedWeaponBox || unlockedWeaponCrates.includes(containerDetails[1]._id)) { + const containerSettings = inventoryHelper.getInventoryConfig().sealedAirdropContainer; + newItemsRequest.itemsWithModsToAdd.push(...lootGenerator.getSealedWeaponCaseLoot(containerSettings)); + + if (containerSettings.foundInRaid) { + newItemsRequest.foundInRaid = containerSettings.foundInRaid; + } + } else { + const rewardContainerDetails = inventoryHelper.getRandomLootContainerRewardDetails(openedItem._tpl); + if (!rewardContainerDetails || !rewardContainerDetails.rewardCount) { + this.logger.error(`Unable to add loot to container: ${openedItem._tpl}, no rewards found`); + } else { + newItemsRequest.itemsWithModsToAdd.push(...lootGenerator.getRandomLootContainerLoot(rewardContainerDetails)); + + if (rewardContainerDetails.foundInRaid) { + newItemsRequest.foundInRaid = rewardContainerDetails.foundInRaid; + } + } + } + } + + let multipleItems: any; + + if (newItemsRequest.itemsWithModsToAdd.length != 0) { + + if (inventoryHelper.canPlaceItemsInInventory(sessionID, newItemsRequest.itemsWithModsToAdd)){ + inventoryHelper.removeItem(pmcData, body.item, sessionID, output); + inventoryHelper.addItemsToStash(sessionID, newItemsRequest, pmcData, output); + } else { + // notifierHelper.createNewMessageNotification(message); // Notifier Not Working + this.logger.error(`[${this.mod}] Cannot Open Container! Inventory Is Full!`); + } + } else { + // Container returned nothing... + inventoryHelper.removeItem(pmcData, body.item, sessionID, output); + } + + return output; + } +} + +module.exports = { mod: new SampleTrader() } diff --git a/user/mods/GamblerTrader/src/traderHelpers.ts b/user/mods/GamblerTrader/src/traderHelpers.ts new file mode 100644 index 0000000..95d60a9 --- /dev/null +++ b/user/mods/GamblerTrader/src/traderHelpers.ts @@ -0,0 +1,237 @@ +import { DependencyContainer } from "tsyringe"; +import { PreAkiModLoader } from "@spt/loaders/PreAkiModLoader"; +import { Item } from "@spt/models/eft/common/tables/IItem"; +import { ITraderBase, ITraderAssort } from "@spt/models/eft/common/tables/ITrader"; +import { ITraderConfig, UpdateTime } from "@spt/models/spt/config/ITraderConfig"; +import { IDatabaseTables } from "@spt/models/spt/server/IDatabaseTables"; +import { ImageRouter } from "@spt/routers/ImageRouter"; +import { JsonUtil } from "@spt/utils/JsonUtil"; +import { ILogger } from "@spt/models/spt/utils/ILogger"; + +import { FluentAssortConstructor as FluentAssortCreator } from "./fluentTraderAssortCreator"; +import { Money } from "@spt/models/enums/Money"; +import * as baseJson from "../db/base.json"; + +import * as fs from 'fs'; +import { jsonc } from "jsonc"; +import path from "path"; +import { Price } from "./Price"; +import type { itemProps } from "./MysteryContainerInfo"; +import { MysteryContainerInfo } from "./MysteryContainerInfo"; + + +export class TraderHelper +{ + + // getRandomInt(3) returns 0, 1, or 2 + protected getRandomInt(max: number) { + return Math.floor(Math.random() * max); + } + + /** + * Add profile picture to our trader + * @param baseJson json file for trader (db/base.json) + * @param preAkiModLoader mod loader class - used to get the mods file path + * @param imageRouter image router class - used to register the trader image path so we see their image on trader page + * @param traderImageName Filename of the trader icon to use + */ + public registerProfileImage(baseJson: any, modName: string, preAkiModLoader: PreAkiModLoader, imageRouter: ImageRouter, traderImageName: string): void + { + // Reference the mod "res" folder + const imageFilepath = `./${preAkiModLoader.getModPath(modName)}res`; + + // Register a route to point to the profile picture - remember to remove the .jpg from it + imageRouter.addRoute(baseJson.avatar.replace(".jpg", ""), `${imageFilepath}/${traderImageName}`); + } + + /** + * Add record to trader config to set the refresh time of trader in seconds (default is 60 minutes) + * @param traderConfig trader config to add our trader to + * @param baseJson json file for trader (db/base.json) + * @param refreshTimeSecondsMin How many seconds between trader stock refresh min time + * @param refreshTimeSecondsMax How many seconds between trader stock refresh max time + */ + public setTraderUpdateTime(traderConfig: ITraderConfig, baseJson: any, refreshTimeSecondsMin: number, refreshTimeSecondsMax: number): void + { + // Add refresh time in seconds to config + const traderRefreshRecord: UpdateTime = { + traderId: baseJson._id, + seconds: { + min: refreshTimeSecondsMin, + max: refreshTimeSecondsMax + } }; + + traderConfig.updateTime.push(traderRefreshRecord); + } + + /** + * Add our new trader to the database + * @param traderDetailsToAdd trader details + * @param tables database + * @param jsonUtil json utility class + */ + // rome-ignore lint/suspicious/noExplicitAny: traderDetailsToAdd comes from base.json, so no type + public addTraderToDb(traderDetailsToAdd: any, tables: IDatabaseTables, jsonUtil: JsonUtil): void + { + // Add trader to trader table, key is the traders id + tables.traders[traderDetailsToAdd._id] = { + assort: this.createAssortTable(), // assorts are the 'offers' trader sells, can be a single item (e.g. carton of milk) or multiple items as a collection (e.g. a gun) + base: jsonUtil.deserialize(jsonUtil.serialize(traderDetailsToAdd)) as ITraderBase, // Deserialise/serialise creates a copy of the json and allows us to cast it as an ITraderBase + questassort: { + started: {}, + success: { + /* + "66b15c72b10189169400fb52": "gambler_intro", + "66b59e1cfcf263f4d70af422": "gambler_ammo_part_1", + "66b59e1cfcf263f4d70af432": "gambler_ammo_part_2", + "66b59e1cfcf263f4d70af433": "gambler_ammo_part_3", + "66b59e1cfcf263f4d70af423": "gambler_ammo_part_4", + "66b59e1cfcf263f4d70af430": "gambler_ammo_part_5", + "66b59e1cfcf263f4d70af425": "gambler_ammo_part_6", + "66b59e1cfcf263f4d70af428": "gambler_ammo_part_7", + "66b59e1cfcf263f4d70af427": "gambler_ammo_part_8", + "66b59e1cfcf263f4d70af42a": "gambler_ammo_part_9", + "66b59e1cfcf263f4d70af429": "gambler_ammo_part_10", + "66b59e1cfcf263f4d70af434": "gambler_ammo_part_11", + "66b59e1cfcf263f4d70af42b": "gambler_ammo_part_12", + "66b59e1cfcf263f4d70af42f": "gambler_ammo_part_13", + "66b59e1cfcf263f4d70af431": "gambler_ammo_part_14", + "66b59e1cfcf263f4d70af42d": "gambler_ammo_part_15", + "66b59e1cfcf263f4d70af42c": "gambler_ammo_part_16", + "66b59e1cfcf263f4d70af42e": "gambler_ammo_part_17" + */ + }, + fail: {} + } // questassort is empty as trader has no assorts unlocked by quests + }; + } + + /** + * Create basic data for trader + add empty assorts table for trader + * @param tables SPT db + * @param jsonUtil SPT JSON utility class + * @returns ITraderAssort + */ + private createAssortTable(): ITraderAssort + { + // Create a blank assort object, ready to have items added + const assortTable: ITraderAssort = { + nextResupply: 0, + items: [], + barter_scheme: {}, + loyal_level_items: {} + } + + return assortTable; + } + + /** + * Add container to trader PostDBLoad. + * @param tables SPT db + * @param traderId Traders id (basejson/_id value) + */ + public addSingleItemsToTrader(tables: IDatabaseTables, traderId: string, assortCreator: FluentAssortCreator, container: DependencyContainer, logger: ILogger) : void { + const config = jsonc.parse(fs.readFileSync(path.resolve(__dirname, "../config/config.jsonc"), "utf-8")); + const info: Record = MysteryContainerInfo(config); + + for (const [key, value] of Object.entries(info)) { + + // store containers to trader assort + if (config.container_config[key + '_enable']){ + + // isAmmo and ammo is disabled: SKIP all ammo + if ((parseInt(key.substring(0,1)) || key.substring(0,1) == '.') && !config.container_config['all_ammo_enable']) { + continue; + } + + const newTrade = assortCreator.createSingleAssortItem(value._id, value.quest_id) + + if (value.barter) { + + for (const [barter, amount] of Object.entries(value.barter)) { + newTrade.addBarterCost(barter, amount); + } + + } else { + newTrade.addMoneyCost(Money.ROUBLES, config.container_config[key + '_price'] * config.price_multiplier) + } + + newTrade.addStackCount(config.container_config[key + '_unlimited_stock'] ? 999999 : config.container_config[key + '_stock'], config.container_config[key + '_unlimited_stock']) + newTrade.addLoyaltyLevel(1) + newTrade.export(tables.traders[baseJson._id]); + } + } + } + + // find container info based on its quest_id + private findItem(quest_id: string, info: Record): string { + + for (const [key, value] of Object.entries(info)){ + + if (quest_id == value.quest_id) { + return key; + } + } + return undefined; + } + + /** + * Updated container prices PostSPTLoad + * @param tables SPT db + * @param traderId Traders id (basejson/_id value) + */ + public updateContainerPrices(tables: IDatabaseTables, traderId: string, assortCreator: FluentAssortCreator, container: DependencyContainer, logger: ILogger) : void { + const config = jsonc.parse(fs.readFileSync(path.resolve(__dirname, "../config/config.jsonc"), "utf-8")); + const info: Record = MysteryContainerInfo(config); + const price = new Price(container, config, logger); + const fleaPrices = tables.templates.prices; + const generatedPrices = price.generateContainerPrices(); + const gamblerAssort = tables.traders[traderId].assort; + + //update trader assort prices + for (const [key, _] of Object.entries(gamblerAssort.barter_scheme)) { + const currentItem = this.findItem(key, info); + + if (generatedPrices[currentItem + '_price']) { + gamblerAssort.barter_scheme[key][0][0].count = generatedPrices[currentItem + '_price']; + } + } + + // updated container flea prices + for (const [key, value] of Object.entries(info)) { + + if (generatedPrices[key + '_price'] > 250000) { + if (generatedPrices[key + '_price']){ + fleaPrices[value._id] = generatedPrices[key + '_price'] * 1.20; + } + } else { + if (generatedPrices[key + '_price']){ + fleaPrices[value._id] = generatedPrices[key + '_price'] * 1.35; + } + } + } + } + + /** + * Add traders name/location/description to the locale table + * @param baseJson json file for trader (db/base.json) + * @param tables database tables + * @param fullName Complete name of trader + * @param firstName First name of trader + * @param nickName Nickname of trader + * @param location Location of trader (e.g. "Here in the cat shop") + * @param description Description of trader + */ + public addTraderToLocales(baseJson: any, tables: IDatabaseTables, fullName: string, firstName: string, nickName: string, location: string, description: string) + { + // For each language, add locale for the new trader + const locales = Object.values(tables.locales.global) as Record[]; + for (const locale of locales) { + locale[`${baseJson._id} FullName`] = fullName; + locale[`${baseJson._id} FirstName`] = firstName; + locale[`${baseJson._id} Nickname`] = nickName; + locale[`${baseJson._id} Location`] = location; + locale[`${baseJson._id} Description`] = description; + } + } +} \ No newline at end of file