From eb775896060b68544e08f8f35a2a166d9017943d Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 18 Nov 2023 18:40:37 +0000 Subject: [PATCH 01/27] FIx crazyassaultevent bot mod values that casued weapon generation errors --- .../assets/database/bots/types/crazyassaultevent.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/project/assets/database/bots/types/crazyassaultevent.json b/project/assets/database/bots/types/crazyassaultevent.json index 52d3a453..a7f8941f 100644 --- a/project/assets/database/bots/types/crazyassaultevent.json +++ b/project/assets/database/bots/types/crazyassaultevent.json @@ -4499,6 +4499,8 @@ "mod_magazine": [ "5448c12b4bdc2d02308b456f" ], + "mod_reciever": ["6374a822e629013b9c0645c8"], + "mod_pistolgrip": ["6374a7e7417239a7bf00f042"], "patron_in_weapon": [ "573719762459775a626ccbc1", "573720e02459776143012541", @@ -4764,7 +4766,7 @@ "mod_muzzle": [ "56e05b06d2720bb2668b4586" ], - "mod_pistol_grip": [ + "mod_pistolgrip": [ "56e05a6ed2720bd0748b4567" ], "patron_in_weapon": [ @@ -4890,10 +4892,15 @@ "mod_magazine": [ "5448c12b4bdc2d02308b456f" ], + "mod_reciever": ["6374a822e629013b9c0645c8"], + "mod_pistolgrip": ["637784c5f7b3f4ac1a0d1a9a", "637b6d610aef6cfc5e02dd14"], "patron_in_weapon": [ "5737201124597760fc4431f1" ] }, + "6374a822e629013b9c0645c8": { + "mod_sight_rear": ["63c6adcfb4ba094317063742"] + }, "57acb6222459771ec34b5cb0": { "mod_scope": [ "570fd721d2720bc5458b4596", From aed65ce1cb1574599fdf5060be48600e330a41be Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 18 Nov 2023 18:46:03 +0000 Subject: [PATCH 02/27] Rework `getWeightedCompatibleAmmo()` to loop over cartridges until it finds one compatible instead of giving up after the first failure --- project/src/generators/BotWeaponGenerator.ts | 51 ++++++++++++++------ 1 file changed, 35 insertions(+), 16 deletions(-) diff --git a/project/src/generators/BotWeaponGenerator.ts b/project/src/generators/BotWeaponGenerator.ts index bda5b435..04a8b4bf 100644 --- a/project/src/generators/BotWeaponGenerator.ts +++ b/project/src/generators/BotWeaponGenerator.ts @@ -593,7 +593,7 @@ export class BotWeaponGenerator { const desiredCaliber = this.getWeaponCaliber(weaponTemplate); - const compatibleCartridges = ammo[desiredCaliber]; + const compatibleCartridges = this.jsonUtil.clone(ammo[desiredCaliber]); if (!compatibleCartridges || compatibleCartridges?.length === 0) { this.logger.debug( @@ -608,23 +608,42 @@ export class BotWeaponGenerator return weaponTemplate._props.defAmmo; } - const chosenAmmoTpl = this.weightedRandomHelper.getWeightedValue(compatibleCartridges); - if ( - weaponTemplate._props.Chambers[0] - && !weaponTemplate._props.Chambers[0]._props.filters[0].Filter.includes(chosenAmmoTpl) - ) + let chosenAmmoTpl: string; + while (!chosenAmmoTpl) { - this.logger.debug( - this.localisationService.getText("bot-incompatible_ammo_for_weapon_falling_back_to_default", { - chosenAmmo: chosenAmmoTpl, - weaponId: weaponTemplate._id, - weaponName: weaponTemplate._name, - defaultAmmo: weaponTemplate._props.defAmmo, - }), - ); + const possibleAmmo = this.weightedRandomHelper.getWeightedValue(compatibleCartridges); + + // Check compatibility + if (weaponTemplate._props.Chambers[0] + && !weaponTemplate._props.Chambers[0]._props.filters[0].Filter.includes(possibleAmmo) + ) + { + // Ran out of possible choices, use default ammo + if (Object.keys(compatibleCartridges).length === 0) + { + this.logger.debug( + this.localisationService.getText("bot-incompatible_ammo_for_weapon_falling_back_to_default", { + chosenAmmo: chosenAmmoTpl, + weaponId: weaponTemplate._id, + weaponName: weaponTemplate._name, + defaultAmmo: weaponTemplate._props.defAmmo, + }), + ); - // Incompatible ammo found, return default (can happen with .366 and 7.62x39 weapons) - return weaponTemplate._props.defAmmo; + // Set ammo to default and exit + chosenAmmoTpl = weaponTemplate._props.defAmmo; + break; + } + + // Not compatible, remove item from possible list and try again + delete compatibleCartridges[possibleAmmo]; + } + else + { + // Compatible ammo found + chosenAmmoTpl = possibleAmmo; + break; + } } return chosenAmmoTpl; From 8fe9fb9391a86f9743f4532d9056fd968d72200c Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 18 Nov 2023 21:59:48 +0000 Subject: [PATCH 03/27] Adjust `getWeaponRepairSkillPoints()` to never return a value below 0 --- project/src/services/RepairService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/src/services/RepairService.ts b/project/src/services/RepairService.ts index 6333e92a..3a099022 100644 --- a/project/src/services/RepairService.ts +++ b/project/src/services/RepairService.ts @@ -245,7 +245,7 @@ export class RepairService skillPoints += this.repairConfig.weaponTreatment.critSuccessAmount; } - return skillPoints; + return Math.max(skillPoints, 0); } /** From e99c1e8ab82fd3e0cac815c170622bc814450719 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 10:50:46 +0000 Subject: [PATCH 04/27] Add additional item types to trader reward whitelist --- project/assets/configs/quest.json | 336 ++++++++++++++++-------------- 1 file changed, 179 insertions(+), 157 deletions(-) diff --git a/project/assets/configs/quest.json b/project/assets/configs/quest.json index adcb9f59..5cd8c554 100644 --- a/project/assets/configs/quest.json +++ b/project/assets/configs/quest.json @@ -166,104 +166,115 @@ }, "traderWhitelist": [{ "traderId": "54cb50c76803fa8b248b4571", - "name": "prapor", + "name": "prapor", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "543be6564bdc2df4348b4568", - "5485a8684bdc2da71d8b4567", - "590c745b86f7743cc433c5f2", - "5422acb9af1c889c16000029" - ] + "rewardBaseWhitelist": [ + "543be6564bdc2df4348b4568", + "5485a8684bdc2da71d8b4567", + "590c745b86f7743cc433c5f2", + "5422acb9af1c889c16000029", + "57864c322459775490116fbf", + "57864a66245977548f04a81f" + ] }, { "traderId": "54cb57776803fa99248b456e", - "name": "therapist", + "name": "therapist", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "57864a66245977548f04a81f", - "5448f39d4bdc2d0a728b4568", - "5448f3ac4bdc2dce718b4569", - "5448f3a64bdc2d60728b456a", - "57864c322459775490116fbf", - "57864c8c245977548867e7f1", - "5448e8d04bdc2ddf718b4569", - "57864e4c24597754843f8723", - "57864ee62459775490116fc1" - ] + "rewardBaseWhitelist": [ + "57864a66245977548f04a81f", + "5448f39d4bdc2d0a728b4568", + "5448f3ac4bdc2dce718b4569", + "5448f3a64bdc2d60728b456a", + "57864c322459775490116fbf", + "57864c8c245977548867e7f1", + "5448e8d04bdc2ddf718b4569", + "57864e4c24597754843f8723", + "57864ee62459775490116fc1" + ] }, { "traderId": "58330581ace78e27b8b10cee", - "name": "skier", + "name": "skier", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "5a341c4086f77401f2541505", - "5448e8d64bdc2dce718b4568", - "5448e8d04bdc2ddf718b4569", - "5422acb9af1c889c16000029", - "55818ad54bdc2ddc698b4569", - "57864a3d24597754843f8721", - "5a341c4686f77469e155819e", - "55818b224bdc2dde698b456f", - "5c99f98d86f7745c314214b3", - "55818aeb4bdc2ddc698b456a", - "55818acf4bdc2dde698b456b", - "57864bb7245977548b3b66c2", - "590c745b86f7743cc433c5f2" - ] + "rewardBaseWhitelist": [ + "5a341c4086f77401f2541505", + "5448e8d64bdc2dce718b4568", + "5448e8d04bdc2ddf718b4569", + "5422acb9af1c889c16000029", + "55818ad54bdc2ddc698b4569", + "57864a3d24597754843f8721", + "5a341c4686f77469e155819e", + "55818b224bdc2dde698b456f", + "5c99f98d86f7745c314214b3", + "55818aeb4bdc2ddc698b456a", + "55818acf4bdc2dde698b456b", + "57864bb7245977548b3b66c2", + "590c745b86f7743cc433c5f2", + "57864a66245977548f04a81f", + "5c164d2286f774194c5e69fa" + ] }, { "traderId": "5935c25fb3acc3127c3d8cd9", - "name": "peacekeeper", + "name": "peacekeeper", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "5422acb9af1c889c16000029", - "543be6564bdc2df4348b4568", - "5448e5284bdc2dcb718b4567", - "5485a8684bdc2da71d8b4567", - "57864a3d24597754843f8721", - "55818af64bdc2d5b648b4570" - ] + "rewardBaseWhitelist": [ + "5422acb9af1c889c16000029", + "543be6564bdc2df4348b4568", + "5448e5284bdc2dcb718b4567", + "5485a8684bdc2da71d8b4567", + "57864a3d24597754843f8721", + "55818af64bdc2d5b648b4570" + ] }, { "traderId": "5a7c2eca46aef81a7ca2145d", - "name": "mechanic", + "name": "mechanic", "questTypes": ["Completion", "Exploration"], - "rewardBaseWhitelist": [ - "55818af64bdc2d5b648b4570", - "5448bc234bdc2d3c308b4569", - "55818b164bdc2ddc698b456c", - "55818a684bdc2ddd698b456d", - "550aa4cd4bdc2dd8348b456c", - "5422acb9af1c889c16000029", - "5485a8684bdc2da71d8b4567", - "55818b224bdc2dde698b456f" - ] + "rewardBaseWhitelist": [ + "55818af64bdc2d5b648b4570", + "5448bc234bdc2d3c308b4569", + "55818b164bdc2ddc698b456c", + "55818a684bdc2ddd698b456d", + "550aa4cd4bdc2dd8348b456c", + "5422acb9af1c889c16000029", + "5485a8684bdc2da71d8b4567", + "55818b224bdc2dde698b456f" + ] }, { "traderId": "5ac3b934156ae10c4430e83c", - "name": "ragman", + "name": "ragman", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "5a341c4086f77401f2541505", - "5448e5724bdc2ddf718b4568", - "5448e54d4bdc2dcc718b4568", - "590c745b86f7743cc433c5f2", - "57bef4c42459772e8d35a53b", - "5448e53e4bdc2d60728b4567", - "5448e5284bdc2dcb718b4567", - "57864a66245977548f04a81f" - ] + "rewardBaseWhitelist": [ + "5a341c4086f77401f2541505", + "5448e5724bdc2ddf718b4568", + "5448e54d4bdc2dcc718b4568", + "590c745b86f7743cc433c5f2", + "57bef4c42459772e8d35a53b", + "5448e53e4bdc2d60728b4567", + "5448e5284bdc2dcb718b4567", + "57864a66245977548f04a81f" + ] }, { "traderId": "5c0647fdd443bc2504c2d371", - "name": "jaeger", + "name": "jaeger", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "5448f3ac4bdc2dce718b4569", - "5c99f98d86f7745c314214b3", - "590c745b86f7743cc433c5f2", - "57864bb7245977548b3b66c2" - ] + "rewardBaseWhitelist": [ + "5448f3ac4bdc2dce718b4569", + "5c99f98d86f7745c314214b3", + "590c745b86f7743cc433c5f2", + "57864bb7245977548b3b66c2", + "57864a66245977548f04a81f", + "57864e4c24597754843f8723", + "57864a3d24597754843f8721", + "5448f3a64bdc2d60728b456a", + "5795f317245977243854e041", + "5d650c3e815116009f6201d2", + "57864ada245977548638de91" + ] } ], "questConfig": { "Exploration": { "maxExtracts": 5, - "maxExtractsWithSpecificExit": 3, + "maxExtractsWithSpecificExit": 3, "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], "specificExits": { "probability": 0.25, @@ -805,105 +816,116 @@ }, "traderWhitelist": [{ "traderId": "54cb50c76803fa8b248b4571", - "name": "prapor", + "name": "prapor", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "543be6564bdc2df4348b4568", - "5485a8684bdc2da71d8b4567", - "590c745b86f7743cc433c5f2", - "5422acb9af1c889c16000029" - ] + "rewardBaseWhitelist": [ + "543be6564bdc2df4348b4568", + "5485a8684bdc2da71d8b4567", + "590c745b86f7743cc433c5f2", + "5422acb9af1c889c16000029", + "57864c322459775490116fbf", + "57864a66245977548f04a81f" + ] }, { "traderId": "54cb57776803fa99248b456e", - "name": "therapist", + "name": "therapist", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "57864a66245977548f04a81f", - "5448f39d4bdc2d0a728b4568", - "5448f3ac4bdc2dce718b4569", - "5448f3a64bdc2d60728b456a", - "57864c322459775490116fbf", - "57864c8c245977548867e7f1", - "5448e8d04bdc2ddf718b4569", - "57864e4c24597754843f8723", - "57864ee62459775490116fc1" - ] + "rewardBaseWhitelist": [ + "57864a66245977548f04a81f", + "5448f39d4bdc2d0a728b4568", + "5448f3ac4bdc2dce718b4569", + "5448f3a64bdc2d60728b456a", + "57864c322459775490116fbf", + "57864c8c245977548867e7f1", + "5448e8d04bdc2ddf718b4569", + "57864e4c24597754843f8723", + "57864ee62459775490116fc1" + ] }, { "traderId": "58330581ace78e27b8b10cee", - "name": "skier", + "name": "skier", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "5a341c4086f77401f2541505", - "5448e8d64bdc2dce718b4568", - "5448e8d04bdc2ddf718b4569", - "5422acb9af1c889c16000029", - "55818ad54bdc2ddc698b4569", - "57864a3d24597754843f8721", - "5a341c4686f77469e155819e", - "55818b224bdc2dde698b456f", - "5c99f98d86f7745c314214b3", - "55818aeb4bdc2ddc698b456a", - "55818acf4bdc2dde698b456b", - "57864bb7245977548b3b66c2", - "590c745b86f7743cc433c5f2" - ] + "rewardBaseWhitelist": [ + "5a341c4086f77401f2541505", + "5448e8d64bdc2dce718b4568", + "5448e8d04bdc2ddf718b4569", + "5422acb9af1c889c16000029", + "55818ad54bdc2ddc698b4569", + "57864a3d24597754843f8721", + "5a341c4686f77469e155819e", + "55818b224bdc2dde698b456f", + "5c99f98d86f7745c314214b3", + "55818aeb4bdc2ddc698b456a", + "55818acf4bdc2dde698b456b", + "57864bb7245977548b3b66c2", + "590c745b86f7743cc433c5f2", + "57864a66245977548f04a81f", + "5c164d2286f774194c5e69fa" + ] }, { "traderId": "5935c25fb3acc3127c3d8cd9", - "name": "peacekeeper", + "name": "peacekeeper", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "5422acb9af1c889c16000029", - "543be6564bdc2df4348b4568", - "5448e5284bdc2dcb718b4567", - "5485a8684bdc2da71d8b4567", - "57864a3d24597754843f8721", - "55818af64bdc2d5b648b4570" - ] + "rewardBaseWhitelist": [ + "5422acb9af1c889c16000029", + "543be6564bdc2df4348b4568", + "5448e5284bdc2dcb718b4567", + "5485a8684bdc2da71d8b4567", + "57864a3d24597754843f8721", + "55818af64bdc2d5b648b4570" + ] }, { "traderId": "5a7c2eca46aef81a7ca2145d", - "name": "mechanic", + "name": "mechanic", "questTypes": ["Completion", "Exploration"], - "rewardBaseWhitelist": [ - "55818af64bdc2d5b648b4570", - "5448bc234bdc2d3c308b4569", - "55818b164bdc2ddc698b456c", - "55818a684bdc2ddd698b456d", - "550aa4cd4bdc2dd8348b456c", - "5422acb9af1c889c16000029", - "5485a8684bdc2da71d8b4567", - "55818b224bdc2dde698b456f" - ] + "rewardBaseWhitelist": [ + "55818af64bdc2d5b648b4570", + "5448bc234bdc2d3c308b4569", + "55818b164bdc2ddc698b456c", + "55818a684bdc2ddd698b456d", + "550aa4cd4bdc2dd8348b456c", + "5422acb9af1c889c16000029", + "5485a8684bdc2da71d8b4567", + "55818b224bdc2dde698b456f" + ] }, { "traderId": "5ac3b934156ae10c4430e83c", - "name": "ragman", + "name": "ragman", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "5a341c4086f77401f2541505", - "5448e5724bdc2ddf718b4568", - "5448e54d4bdc2dcc718b4568", - "590c745b86f7743cc433c5f2", - "57bef4c42459772e8d35a53b", - "5448e53e4bdc2d60728b4567", - "5448e5284bdc2dcb718b4567", - "57864a66245977548f04a81f" - ] + "rewardBaseWhitelist": [ + "5a341c4086f77401f2541505", + "5448e5724bdc2ddf718b4568", + "5448e54d4bdc2dcc718b4568", + "590c745b86f7743cc433c5f2", + "57bef4c42459772e8d35a53b", + "5448e53e4bdc2d60728b4567", + "5448e5284bdc2dcb718b4567", + "57864a66245977548f04a81f" + ] }, { "traderId": "5c0647fdd443bc2504c2d371", - "name": "jaeger", + "name": "jaeger", "questTypes": ["Completion", "Exploration", "Elimination"], - "rewardBaseWhitelist": [ - "5448f3ac4bdc2dce718b4569", - "5c99f98d86f7745c314214b3", - "590c745b86f7743cc433c5f2", - "57864bb7245977548b3b66c2" - ] + "rewardBaseWhitelist": [ + "5448f3ac4bdc2dce718b4569", + "5c99f98d86f7745c314214b3", + "590c745b86f7743cc433c5f2", + "57864bb7245977548b3b66c2", + "57864a66245977548f04a81f", + "57864e4c24597754843f8723", + "57864a3d24597754843f8721", + "5448f3a64bdc2d60728b456a", + "5795f317245977243854e041", + "5d650c3e815116009f6201d2", + "57864ada245977548638de91" + ] } ], "questConfig": { "Exploration": { "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], "maxExtracts": 25, - "maxExtractsWithSpecificExit": 12, + "maxExtractsWithSpecificExit": 12, "specificExits": { "probability": 0.4, "passageRequirementWhitelist": [ @@ -1511,21 +1533,21 @@ "traderWhitelist": [{ "traderId": "579dc571d53a0658a154fbec", "questTypes": ["Completion", "Exploration", "Elimination", "Pickup"], - "rewardBaseWhitelist": [ - "55818a684bdc2ddd698b456d", - "55818a594bdc2db9688b456a", - "57864c8c245977548867e7f1", - "5448ecbe4bdc2d60728b4568", - "5422acb9af1c889c16000029", - "57864bb7245977548b3b66c2" - ] + "rewardBaseWhitelist": [ + "55818a684bdc2ddd698b456d", + "55818a594bdc2db9688b456a", + "57864c8c245977548867e7f1", + "5448ecbe4bdc2d60728b4568", + "5422acb9af1c889c16000029", + "57864bb7245977548b3b66c2" + ] } ], "questConfig": { "Exploration": { "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], "maxExtracts": 4, - "maxExtractsWithSpecificExit": 2, + "maxExtractsWithSpecificExit": 2, "specificExits": { "probability": 0.25, "passageRequirementWhitelist": [ From ee3096328e1502190042a5a7256eb8fbb5d0af21 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 10:52:50 +0000 Subject: [PATCH 05/27] Exit reward finding loop when reward pool is empty --- project/src/generators/RepeatableQuestGenerator.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/project/src/generators/RepeatableQuestGenerator.ts b/project/src/generators/RepeatableQuestGenerator.ts index 75128408..8df595ac 100644 --- a/project/src/generators/RepeatableQuestGenerator.ts +++ b/project/src/generators/RepeatableQuestGenerator.ts @@ -937,6 +937,13 @@ export class RepeatableQuestGenerator rewardItemPool = rewardItemPool.filter((x) => !this.itemHelper.isOfBaseclass(x._id, BaseClasses.WEAPON) ); + + if (rewardItemPool.length === 0) + { + // No rewards left, break out of loop + break; + } + // Another weapon chosen, skip continue; } let defaultPreset = this.presetHelper.getDefaultPreset(itemSelected._id); From 8cb48330017552f9a7a40dbd3a49c2ed4346df56 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 10:54:06 +0000 Subject: [PATCH 06/27] Fix reward creatio code giving 1 extra reward compared to what was specified --- project/src/generators/RepeatableQuestGenerator.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/project/src/generators/RepeatableQuestGenerator.ts b/project/src/generators/RepeatableQuestGenerator.ts index 8df595ac..ecbe4338 100644 --- a/project/src/generators/RepeatableQuestGenerator.ts +++ b/project/src/generators/RepeatableQuestGenerator.ts @@ -910,7 +910,7 @@ export class RepeatableQuestGenerator if (rewardItemPool.length > 0) { let weaponRewardCount = 0; - for (let i = 0; i < rewardNumItems; i++) + for (let i = 0; i < rewardNumItems - 1; i++) { let itemCount = 1; let children: Item[] = null; @@ -943,6 +943,7 @@ export class RepeatableQuestGenerator // No rewards left, break out of loop break; } + // Another weapon chosen, skip continue; } From 1def90e9d66a27080a86190f6dd6fea4026cc6ac Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 13:21:34 +0000 Subject: [PATCH 07/27] Improve handling of how reward items have their stack count randomised Separated out how weapons are chosen as rewards Lowered chance of skill reward Added additional reward types to most traders --- project/assets/configs/quest.json | 107 ++++++++++++------ .../generators/RepeatableQuestGenerator.ts | 93 ++++++++------- project/src/models/spt/config/IQuestConfig.ts | 2 + 3 files changed, 122 insertions(+), 80 deletions(-) diff --git a/project/assets/configs/quest.json b/project/assets/configs/quest.json index 5cd8c554..e500c036 100644 --- a/project/assets/configs/quest.json +++ b/project/assets/configs/quest.json @@ -149,7 +149,7 @@ "items": [2, 4, 5, 5, 5, 5, 5], "reputation": [0.01, 0.01, 0.02, 0.02, 0.03, 0.03, 0.03], "rewardSpread": 0.5, - "skillRewardChance": [0, 0.01, 0.05, 0.1, 0.15, 0.2, 0.2], + "skillRewardChance": [0, 0.01, 0.05, 0.1, 0.1, 0.15, 0.15], "skillPointReward": [10, 15, 20, 25, 30, 35, 40] }, "locations": { @@ -172,10 +172,11 @@ "543be6564bdc2df4348b4568", "5485a8684bdc2da71d8b4567", "590c745b86f7743cc433c5f2", - "5422acb9af1c889c16000029", "57864c322459775490116fbf", "57864a66245977548f04a81f" - ] + ], + "rewardCanBeWeapon": true, + "weaponRewardChancePercent": 20 }, { "traderId": "54cb57776803fa99248b456e", "name": "therapist", @@ -189,8 +190,11 @@ "57864c8c245977548867e7f1", "5448e8d04bdc2ddf718b4569", "57864e4c24597754843f8723", - "57864ee62459775490116fc1" - ] + "57864ee62459775490116fc1", + "543be5664bdc2dd4348b4569" + ], + "rewardCanBeWeapon": false, + "weaponRewardChancePercent": 0 }, { "traderId": "58330581ace78e27b8b10cee", "name": "skier", @@ -199,7 +203,6 @@ "5a341c4086f77401f2541505", "5448e8d64bdc2dce718b4568", "5448e8d04bdc2ddf718b4569", - "5422acb9af1c889c16000029", "55818ad54bdc2ddc698b4569", "57864a3d24597754843f8721", "5a341c4686f77469e155819e", @@ -211,19 +214,26 @@ "590c745b86f7743cc433c5f2", "57864a66245977548f04a81f", "5c164d2286f774194c5e69fa" - ] + ], + "rewardCanBeWeapon": true, + "weaponRewardChancePercent": 20 }, { "traderId": "5935c25fb3acc3127c3d8cd9", "name": "peacekeeper", "questTypes": ["Completion", "Exploration", "Elimination"], "rewardBaseWhitelist": [ - "5422acb9af1c889c16000029", "543be6564bdc2df4348b4568", "5448e5284bdc2dcb718b4567", "5485a8684bdc2da71d8b4567", "57864a3d24597754843f8721", - "55818af64bdc2d5b648b4570" - ] + "55818af64bdc2d5b648b4570", + "57864e4c24597754843f8723", + "57864a66245977548f04a81f", + "57864ee62459775490116fc1", + "590c745b86f7743cc433c5f2" + ], + "rewardCanBeWeapon": true, + "weaponRewardChancePercent": 20 }, { "traderId": "5a7c2eca46aef81a7ca2145d", "name": "mechanic", @@ -234,10 +244,16 @@ "55818b164bdc2ddc698b456c", "55818a684bdc2ddd698b456d", "550aa4cd4bdc2dd8348b456c", - "5422acb9af1c889c16000029", "5485a8684bdc2da71d8b4567", - "55818b224bdc2dde698b456f" - ] + "55818b224bdc2dde698b456f", + "57864a66245977548f04a81f", + "55818af64bdc2d5b648b4570", + "550aa4dd4bdc2dc9348b4569", + "55818a594bdc2db9688b456a", + "55818a104bdc2db9688b4569" + ], + "rewardCanBeWeapon": true, + "weaponRewardChancePercent": 20 }, { "traderId": "5ac3b934156ae10c4430e83c", "name": "ragman", @@ -251,7 +267,9 @@ "5448e53e4bdc2d60728b4567", "5448e5284bdc2dcb718b4567", "57864a66245977548f04a81f" - ] + ], + "rewardCanBeWeapon": false, + "weaponRewardChancePercent": 0 }, { "traderId": "5c0647fdd443bc2504c2d371", "name": "jaeger", @@ -268,7 +286,9 @@ "5795f317245977243854e041", "5d650c3e815116009f6201d2", "57864ada245977548638de91" - ] + ], + "rewardCanBeWeapon": false, + "weaponRewardChancePercent": 0 } ], "questConfig": { @@ -799,7 +819,7 @@ "items": [4, 5, 5, 6, 6, 7, 7], "reputation": [0.02, 0.03, 0.04, 0.04, 0.05, 0.05, 0.05], "rewardSpread": 0.5, - "skillRewardChance": [0, 0.05, 0.1, 0.15, 0.25, 0.3, 0.3], + "skillRewardChance": [0, 0.05, 0.1, 0.15, 0.2, 0.2, 0.2], "skillPointReward": [25, 35, 45, 50, 55, 60, 65] }, "locations": { @@ -822,10 +842,11 @@ "543be6564bdc2df4348b4568", "5485a8684bdc2da71d8b4567", "590c745b86f7743cc433c5f2", - "5422acb9af1c889c16000029", "57864c322459775490116fbf", "57864a66245977548f04a81f" - ] + ], + "rewardCanBeWeapon": true, + "weaponRewardChancePercent": 25 }, { "traderId": "54cb57776803fa99248b456e", "name": "therapist", @@ -839,8 +860,11 @@ "57864c8c245977548867e7f1", "5448e8d04bdc2ddf718b4569", "57864e4c24597754843f8723", - "57864ee62459775490116fc1" - ] + "57864ee62459775490116fc1", + "543be5664bdc2dd4348b4569" + ], + "rewardCanBeWeapon": false, + "weaponRewardChancePercent": 0 }, { "traderId": "58330581ace78e27b8b10cee", "name": "skier", @@ -849,7 +873,6 @@ "5a341c4086f77401f2541505", "5448e8d64bdc2dce718b4568", "5448e8d04bdc2ddf718b4569", - "5422acb9af1c889c16000029", "55818ad54bdc2ddc698b4569", "57864a3d24597754843f8721", "5a341c4686f77469e155819e", @@ -861,19 +884,26 @@ "590c745b86f7743cc433c5f2", "57864a66245977548f04a81f", "5c164d2286f774194c5e69fa" - ] + ], + "rewardCanBeWeapon": true, + "weaponRewardChancePercent": 25 }, { "traderId": "5935c25fb3acc3127c3d8cd9", "name": "peacekeeper", "questTypes": ["Completion", "Exploration", "Elimination"], "rewardBaseWhitelist": [ - "5422acb9af1c889c16000029", "543be6564bdc2df4348b4568", "5448e5284bdc2dcb718b4567", "5485a8684bdc2da71d8b4567", "57864a3d24597754843f8721", - "55818af64bdc2d5b648b4570" - ] + "55818af64bdc2d5b648b4570", + "57864e4c24597754843f8723", + "57864a66245977548f04a81f", + "57864ee62459775490116fc1", + "590c745b86f7743cc433c5f2" + ], + "rewardCanBeWeapon": true, + "weaponRewardChancePercent": 25 }, { "traderId": "5a7c2eca46aef81a7ca2145d", "name": "mechanic", @@ -884,10 +914,16 @@ "55818b164bdc2ddc698b456c", "55818a684bdc2ddd698b456d", "550aa4cd4bdc2dd8348b456c", - "5422acb9af1c889c16000029", "5485a8684bdc2da71d8b4567", - "55818b224bdc2dde698b456f" - ] + "55818b224bdc2dde698b456f", + "57864a66245977548f04a81f", + "55818af64bdc2d5b648b4570", + "550aa4dd4bdc2dc9348b4569", + "55818a594bdc2db9688b456a", + "55818a104bdc2db9688b4569" + ], + "rewardCanBeWeapon": true, + "weaponRewardChancePercent": 25 }, { "traderId": "5ac3b934156ae10c4430e83c", "name": "ragman", @@ -901,7 +937,9 @@ "5448e53e4bdc2d60728b4567", "5448e5284bdc2dcb718b4567", "57864a66245977548f04a81f" - ] + ], + "rewardCanBeWeapon": false, + "weaponRewardChancePercent": 0 }, { "traderId": "5c0647fdd443bc2504c2d371", "name": "jaeger", @@ -918,14 +956,16 @@ "5795f317245977243854e041", "5d650c3e815116009f6201d2", "57864ada245977548638de91" - ] + ], + "rewardCanBeWeapon": false, + "weaponRewardChancePercent": 0 } ], "questConfig": { "Exploration": { - "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], "maxExtracts": 25, "maxExtractsWithSpecificExit": 12, + "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], "specificExits": { "probability": 0.4, "passageRequirementWhitelist": [ @@ -1538,9 +1578,10 @@ "55818a594bdc2db9688b456a", "57864c8c245977548867e7f1", "5448ecbe4bdc2d60728b4568", - "5422acb9af1c889c16000029", "57864bb7245977548b3b66c2" - ] + ], + "rewardCanBeWeapon": true, + "weaponRewardChancePercent": 10 } ], "questConfig": { diff --git a/project/src/generators/RepeatableQuestGenerator.ts b/project/src/generators/RepeatableQuestGenerator.ts index ecbe4338..e06d464d 100644 --- a/project/src/generators/RepeatableQuestGenerator.ts +++ b/project/src/generators/RepeatableQuestGenerator.ts @@ -907,13 +907,23 @@ export class RepeatableQuestGenerator } rewardIndex++; + const traderWhitelistDetails = repeatableConfig.traderWhitelist.find((x) => x.traderId === traderId); + if (traderWhitelistDetails.rewardCanBeWeapon && this.randomUtil.getChance100(traderWhitelistDetails.weaponRewardChancePercent)) + { + // Add a random default preset weapon as reward + const defaultPresets = Object.values(this.presetHelper.getDefaultPresets()); + const defaultPreset = this.randomUtil.getArrayValue(defaultPresets); + + // use _encyclopedia as its always the base items _tpl, items[0] isnt guaranteed to be base item + rewards.Success.push(this.generateRewardItem(defaultPreset._encyclopedia, 1, rewardIndex, defaultPreset._items)); + rewardIndex++; + } + if (rewardItemPool.length > 0) { - let weaponRewardCount = 0; - for (let i = 0; i < rewardNumItems - 1; i++) + for (let i = 0; i < rewardNumItems; i++) { - let itemCount = 1; - let children: Item[] = null; + let rewardItemStackCount = 1; const itemSelected = rewardItemPool[this.randomUtil.randInt(rewardItemPool.length)]; if (this.itemHelper.isOfBaseclass(itemSelected._id, BaseClasses.AMMO)) { @@ -924,54 +934,23 @@ export class RepeatableQuestGenerator } // Randomise the cartridge count returned - itemCount = this.randomUtil.randInt( + rewardItemStackCount = this.randomUtil.randInt( repeatableConfig.rewardAmmoStackMinSize, itemSelected._props.StackMaxSize, ); } - else if (this.itemHelper.isOfBaseclass(itemSelected._id, BaseClasses.WEAPON)) - { - if (weaponRewardCount >= 1) - { - // Limit weapon rewards to 1 per daily - rewardItemPool = rewardItemPool.filter((x) => - !this.itemHelper.isOfBaseclass(x._id, BaseClasses.WEAPON) - ); - - if (rewardItemPool.length === 0) - { - // No rewards left, break out of loop - break; - } - - // Another weapon chosen, skip - continue; - } - let defaultPreset = this.presetHelper.getDefaultPreset(itemSelected._id); - if (!defaultPreset) - { - // No default for chosen weapon found, get any random default weapon preset - const defaultPresets = Object.values(this.presetHelper.getDefaultPresets()); - defaultPreset = this.randomUtil.getArrayValue(defaultPresets); - } - - children = this.ragfairServerHelper.reparentPresets(defaultPreset._items[0], defaultPreset._items); - weaponRewardCount++; - } // 25% chance to double reward stack (item should be stackable and not weapon) - if (this.increaseRewardItemStackSize(itemSelected)) + if (this.canIncreaseRewardItemStackSize(itemSelected, 70000)) { - itemCount = 2; + rewardItemStackCount = this.getRandomisedRewardItemStackSizeByPrice(itemSelected); } - rewards.Success.push(this.generateRewardItem(itemSelected._id, itemCount, rewardIndex, children)); + rewards.Success.push(this.generateRewardItem(itemSelected._id, rewardItemStackCount, rewardIndex)); rewardIndex++; - const itemCost = (this.itemHelper.isOfBaseclass(itemSelected._id, BaseClasses.WEAPON)) - ? this.itemHelper.getItemMaxPrice(children[0]._tpl) // use if preset is not default : this.itemHelper.getWeaponPresetPrice(children[0], children, this.itemHelper.getStaticItemPrice(itemSelected._id)) - : this.itemHelper.getStaticItemPrice(itemSelected._id); - roublesBudget -= itemCount * itemCost; + const itemCost = this.itemHelper.getStaticItemPrice(itemSelected._id); + roublesBudget -= rewardItemStackCount * itemCost; // If we still have budget narrow down possible items if (roublesBudget > 0) @@ -1018,15 +997,34 @@ export class RepeatableQuestGenerator /** * Should reward item have stack size increased (25% chance) * @param item Item to possibly increase stack size of + * @param maxRoublePriceToStack Maximum rouble price an item can be to still be chosen for stacking * @returns True if it should */ - protected increaseRewardItemStackSize(item: ITemplateItem): boolean + protected canIncreaseRewardItemStackSize(item: ITemplateItem, maxRoublePriceToStack: number): boolean { - return item._props.StackMaxSize > 1 - && !this.itemHelper.isOfBaseclass(item._id, BaseClasses.WEAPON) + return this.itemHelper.getStaticItemPrice(item._id) < maxRoublePriceToStack + && !this.itemHelper.isOfBaseclasses(item._id, [BaseClasses.WEAPON, BaseClasses.AMMO]) && this.randomUtil.getChance100(25); } + /** + * Get a randomised number a reward items stack size should be based on its handbook price + * @param item Reward item to get stack size for + * @returns Stack size value + */ + protected getRandomisedRewardItemStackSizeByPrice(item: ITemplateItem): number + { + const rewardItemPrice = this.itemHelper.getStaticItemPrice(item._id); + if (rewardItemPrice < 3000) { + return this.randomUtil.getArrayValue([2, 3, 4]); + } + else if (rewardItemPrice < 10000) { + return this.randomUtil.getArrayValue([2, 3]); + } + + return 2; + } + /** * Select a number of items that have a colelctive value of the passed in parameter * @param repeatableConfig Config @@ -1071,19 +1069,20 @@ export class RepeatableQuestGenerator * @param {integer} index All rewards will be appended to a list, for unknown reasons the client wants the index * @returns {object} Object of "Reward"-item-type */ - protected generateRewardItem(tpl: string, value: number, index: number, preset = null): IReward + protected generateRewardItem(tpl: string, value: number, index: number, preset: Item[] = null): IReward { const id = this.objectId.generate(); const rewardItem: IReward = { target: id, value: value, type: "Item", index: index }; - const rootItem = { _id: id, _tpl: tpl, upd: { StackObjectsCount: value, SpawnedInSession: true } }; - if (preset) { + const rootItem = preset.find(x => x._tpl === tpl); + rewardItem.target = rootItem._id; // Target property and root items id must match rewardItem.items = this.ragfairServerHelper.reparentPresets(rootItem, preset); } else { + const rootItem = { _id: id, _tpl: tpl, upd: { StackObjectsCount: value, SpawnedInSession: true } }; rewardItem.items = [rootItem]; } return rewardItem; diff --git a/project/src/models/spt/config/IQuestConfig.ts b/project/src/models/spt/config/IQuestConfig.ts index a761743a..147373ea 100644 --- a/project/src/models/spt/config/IQuestConfig.ts +++ b/project/src/models/spt/config/IQuestConfig.ts @@ -77,6 +77,8 @@ export interface ITraderWhitelist traderId: string; questTypes: string[]; rewardBaseWhitelist: string[]; + rewardCanBeWeapon: boolean + weaponRewardChancePercent: number } export interface IRepeatableQuestTypesConfig From 3b1c6b3fdddf8c412c007b6909b683751bde1d22 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 14:51:00 +0000 Subject: [PATCH 08/27] Add additional items to the `find and return` pool --- .../database/templates/repeatableQuests.json | 31 +++++++++++++++++-- 1 file changed, 28 insertions(+), 3 deletions(-) diff --git a/project/assets/database/templates/repeatableQuests.json b/project/assets/database/templates/repeatableQuests.json index 4bacce30..cfeac55b 100644 --- a/project/assets/database/templates/repeatableQuests.json +++ b/project/assets/database/templates/repeatableQuests.json @@ -394,7 +394,9 @@ "573720e02459776143012541", "5c06779c86f77426e00dd782", "5c06782b86f77426df5407d2", - "590a3efd86f77437d351a25b" + "590a3efd86f77437d351a25b", + "57371aab2459775a77142f22", + "56dff2ced2720bb4668b4567" ] }, { "minPlayerLevel": 15, @@ -478,7 +480,21 @@ "573478bc24597738002c6175", "590c37d286f77443be3d7827", "590c645c86f77412b01304d9", - "5e2aedd986f7746d404f3aa4" + "5e2aedd986f7746d404f3aa4", + "560d61e84bdc2da74d8b4571", + "5cc80f38e4a949001152b560", + "5c0d591486f7744c505b416f", + "5c925fa22e221601da359b7b", + "573719df2459775a626ccbc2", + "64b8ee384b75259c590fa89b", + "59e6906286f7746c9f75e847", + "5c0d668f86f7747ccb7f13b2", + "5f0596629e22f464da6bbdd9", + "5a26ac0ec4a28200741e1e18", + "58dd3ad986f77403051cba8f", + "5efb0cabfb3e451d70735af5", + "64b7af434b75259c590fa893", + "5d6e68a8a4b9360b6c0d54e2" ] }, { "minPlayerLevel": 40, @@ -509,7 +525,16 @@ "5bc9b355d4351e6d1509862a", "5bc9b9ecd4351e3bac122519", "5c12620d86f7743f8b198b72", - "5751a89d24597722aa0e8db0" + "5751a89d24597722aa0e8db0", + "60194943740c5d77f6705eea", + "5c0d5e4486f77478390952fe", + "5e85a9f4add9fe03027d9bf1", + "64b8725c4b75259c590fa899", + "5cadf6eeae921500134b2799", + "5ba26835d4351e0035628ff5", + "61962d879bb3d20b0946d385", + "5efb0da7a29a85116f6ea05f", + "59e690b686f7746c9f75e848" ] } ] From 396b56d08d6730e8d49548a80d667d3871eaf7b7 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 14:58:45 +0000 Subject: [PATCH 09/27] Expose `uniqueItemCount` config value for use in choosing total items to return in `Completion` quests Weekly quests now require more items than dailies --- project/assets/configs/quest.json | 9 ++++++--- project/src/generators/RepeatableQuestGenerator.ts | 9 ++------- project/src/models/spt/config/IQuestConfig.ts | 1 + 3 files changed, 9 insertions(+), 10 deletions(-) diff --git a/project/assets/configs/quest.json b/project/assets/configs/quest.json index e500c036..2d48678b 100644 --- a/project/assets/configs/quest.json +++ b/project/assets/configs/quest.json @@ -312,6 +312,7 @@ "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], "minRequestedAmount": 1, "maxRequestedAmount": 4, + "uniqueItemCount": 2, "minRequestedBulletAmount": 20, "maxRequestedBulletAmount": 60, "useWhitelist": true, @@ -980,8 +981,9 @@ }, "Completion": { "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], - "minRequestedAmount": 2, - "maxRequestedAmount": 10, + "minRequestedAmount": 4, + "maxRequestedAmount": 12, + "uniqueItemCount": 4, "minRequestedBulletAmount": 20, "maxRequestedBulletAmount": 60, "useWhitelist": true, @@ -1650,7 +1652,8 @@ "Completion": { "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], "minRequestedAmount": 1, - "maxRequestedAmount": 5, + "maxRequestedAmount": 3, + "uniqueItemCount": 1, "minRequestedBulletAmount": 20, "maxRequestedBulletAmount": 60, "useWhitelist": true, diff --git a/project/src/generators/RepeatableQuestGenerator.ts b/project/src/generators/RepeatableQuestGenerator.ts index e06d464d..fcb9086d 100644 --- a/project/src/generators/RepeatableQuestGenerator.ts +++ b/project/src/generators/RepeatableQuestGenerator.ts @@ -498,12 +498,7 @@ export class RepeatableQuestGenerator const levelsConfig = repeatableConfig.rewardScaling.levels; const roublesConfig = repeatableConfig.rewardScaling.roubles; - // In the available dumps only 2 distinct items were ever requested - let numberDistinctItems = 1; - if (Math.random() > 0.75) - { - numberDistinctItems = 2; - } + const distinctItemsToRetrieveCount = this.randomUtil.getInt(1, completionConfig.uniqueItemCount); const quest = this.generateRepeatableTemplate("Completion", traderId, repeatableConfig.side) as ICompletion; @@ -570,7 +565,7 @@ export class RepeatableQuestGenerator } // Draw items to ask player to retrieve - for (let i = 0; i < numberDistinctItems; i++) + for (let i = 0; i < distinctItemsToRetrieveCount; i++) { const itemSelected = itemSelection[this.randomUtil.randInt(itemSelection.length)]; const itemUnitPrice = this.itemHelper.getItemPrice(itemSelected[0]); diff --git a/project/src/models/spt/config/IQuestConfig.ts b/project/src/models/spt/config/IQuestConfig.ts index 147373ea..94f126ae 100644 --- a/project/src/models/spt/config/IQuestConfig.ts +++ b/project/src/models/spt/config/IQuestConfig.ts @@ -106,6 +106,7 @@ export interface ICompletion extends IBaseQuestConfig { minRequestedAmount: number; maxRequestedAmount: number; + uniqueItemCount: number minRequestedBulletAmount: number; maxRequestedBulletAmount: number; useWhitelist: boolean; From 3e0e8f7666e68357dbf6f868c8d67e90fd6d7d86 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 15:04:12 +0000 Subject: [PATCH 10/27] lint --- project/assets/configs/quest.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/assets/configs/quest.json b/project/assets/configs/quest.json index 2d48678b..b592fe9b 100644 --- a/project/assets/configs/quest.json +++ b/project/assets/configs/quest.json @@ -312,7 +312,7 @@ "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], "minRequestedAmount": 1, "maxRequestedAmount": 4, - "uniqueItemCount": 2, + "uniqueItemCount": 2, "minRequestedBulletAmount": 20, "maxRequestedBulletAmount": 60, "useWhitelist": true, @@ -983,7 +983,7 @@ "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], "minRequestedAmount": 4, "maxRequestedAmount": 12, - "uniqueItemCount": 4, + "uniqueItemCount": 4, "minRequestedBulletAmount": 20, "maxRequestedBulletAmount": 60, "useWhitelist": true, @@ -1653,7 +1653,7 @@ "possibleSkillRewards": ["Endurance", "Strength", "Vitality"], "minRequestedAmount": 1, "maxRequestedAmount": 3, - "uniqueItemCount": 1, + "uniqueItemCount": 1, "minRequestedBulletAmount": 20, "maxRequestedBulletAmount": 60, "useWhitelist": true, From fa054307dd5bd50cf76f446fbcb2f1f1f94dd0cd Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 15:08:30 +0000 Subject: [PATCH 11/27] Update version --- project/assets/configs/core.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/assets/configs/core.json b/project/assets/configs/core.json index 56431652..6560c7f1 100644 --- a/project/assets/configs/core.json +++ b/project/assets/configs/core.json @@ -1,5 +1,5 @@ { - "akiVersion": "3.7.2", + "akiVersion": "3.7.3", "projectName": "SPT-AKI", "compatibleTarkovVersion": "0.13.5.26535", "serverName": "SPT Server", From aeea8f6e49413c3bb49e21fd81bfea25e4295626 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 16:12:20 +0000 Subject: [PATCH 12/27] Guard against empty `RepeatableQuests` array in profile --- project/src/services/ProfileFixerService.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/project/src/services/ProfileFixerService.ts b/project/src/services/ProfileFixerService.ts index ad11a60a..4ee9ce58 100644 --- a/project/src/services/ProfileFixerService.ts +++ b/project/src/services/ProfileFixerService.ts @@ -563,6 +563,10 @@ export class ProfileFixerService this.logger.debug("Missing RepeatableQuests property added to profile"); } } + else + { + pmcProfile.RepeatableQuests = []; + } } /** @@ -925,7 +929,7 @@ export class ProfileFixerService } } - for (const repeatable of fullProfile.characters.pmc.RepeatableQuests) + for (const repeatable of fullProfile.characters.pmc.RepeatableQuests ?? []) { for (const activeQuest of repeatable.activeQuests ?? []) { From 89ff63f82235d270d5f441db35430c9ce3e3fbe2 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 17:14:16 +0000 Subject: [PATCH 13/27] Update flea prices --- project/assets/database/templates/prices.json | 4457 ++++++++--------- 1 file changed, 2205 insertions(+), 2252 deletions(-) diff --git a/project/assets/database/templates/prices.json b/project/assets/database/templates/prices.json index ff0b9df8..94bb6f0d 100644 --- a/project/assets/database/templates/prices.json +++ b/project/assets/database/templates/prices.json @@ -1,2256 +1,2210 @@ { - "5447a9cd4bdc2dbd208b4567": 125966, - "5447ac644bdc2d6c208b4567": 46265, - "5448ba0b4bdc2d02308b456c": 128348, - "5448bd6b4bdc2dfc2f8b4569": 20421, - "5448be9a4bdc2dfd2f8b456a": 17312, - "5448c12b4bdc2d02308b456f": 2673, - "5448c1d04bdc2dff2f8b4569": 14207, - "5448fee04bdc2dbc018b4567": 19418, - "5448ff904bdc2d6f028b456e": 16822, - "544909bb4bdc2d6f028b4577": 16384, - "54491bb74bdc2d09088b4567": 13906, - "54491c4f4bdc2db1078b4568": 29650, - "544a378f4bdc2d30388b4567": 61294, - "544a38634bdc2d58388b4568": 7113, - "544a3a774bdc2d3a388b4567": 39987, - "544a5cde4bdc2d39388b456b": 14929, - "544fb25a4bdc2dfb738b4567": 2981, - "544fb3364bdc2d34748b456a": 6012, - "544fb37f4bdc2dee738b4567": 7793, - "544fb3f34bdc2d03748b456a": 16676, - "544fb45d4bdc2dee738b4568": 33013, - "544fb5454bdc2df8738b456a": 27850, - "544fb62a4bdc2dfb738b4568": 14709, - "544fb6cc4bdc2d34748b456e": 11965, - "54527a984bdc2d4e668b4567": 603, - "545cdae64bdc2d39198b4568": 112756, - "557ff21e4bdc2d89578b4586": 6627, - "55801eed4bdc2d89578b4588": 55331, - "5580223e4bdc2d1c128b457f": 20008, - "558022b54bdc2dac148b458d": 31701, - "55802d5f4bdc2dac148b458e": 25705, - "55802f5d4bdc2dac148b458f": 13455, - "558032614bdc2de7118b4585": 11065, - "559ba5b34bdc2d1f1a8b4582": 10088, - "55d355e64bdc2d962f8b4569": 30576, - "55d35ee94bdc2d61338b4568": 22422, - "55d3632e4bdc2d972f8b4569": 30930, - "55d4491a4bdc2d882f8b456e": 189667, - "55d44fd14bdc2d962f8b456e": 13156, - "55d459824bdc2d892f8b4573": 25552, - "55d45d3f4bdc2d972f8b456c": 28933, - "55d45f484bdc2d972f8b456d": 52354, - "55d480c04bdc2d1d4e8b456a": 7175, - "55d481904bdc2d8c2f8b456a": 24979, - "55d482194bdc2d1d4e8b456b": 36940, - "55d4837c4bdc2d1d4e8b456c": 6682, - "55d484b44bdc2d1d4e8b456d": 23366, - "55d485804bdc2d8c2f8b456b": 76530, - "55d485be4bdc2d962f8b456f": 42768, - "55d4887d4bdc2d962f8b4570": 17978, - "55d48a634bdc2d8b2f8b456a": 50060, - "55d48ebc4bdc2d8c2f8b456c": 15443, - "55d4ae6c4bdc2d8b2f8b456e": 13522, - "55d4b9964bdc2d1d4e8b456e": 7788, - "55d5f46a4bdc2d1b198b4567": 9648, - "55d614004bdc2d86028b4568": 26696, - "55d6190f4bdc2d87028b4567": 33485, - "55f84c3c4bdc2d5f408b4576": 28097, - "560835c74bdc2dc8488b456f": 160000, - "5608379a4bdc2d26448b4569": 17244, - "560838c94bdc2d77798b4569": 32169, - "56083a334bdc2dc8488b4571": 32532, - "56083be64bdc2d20478b456f": 167533, - "56083eab4bdc2d26448b456a": 14880, - "560d5e524bdc2d25448b4571": 76, - "560d657b4bdc2da74d8b4572": 19966, - "560e620e4bdc2d724b8b456b": 13861, - "5644bd2b4bdc2d3b4c8b4572": 51213, - "5645bc214bdc2d363b8b4571": 25543, - "5645bcc04bdc2d363b8b4572": 41359, - "5648a69d4bdc2ded0b8b457b": 47305, - "5648a7494bdc2d9d488b4583": 30703, - "5648ac824bdc2ded0b8b457d": 7649, - "5648ae314bdc2d3d1c8b457f": 15674, - "5648b1504bdc2d9d488b4584": 8056, - "5648b4534bdc2d3d1c8b4580": 25514, - "5649a2464bdc2d91118b45a8": 28736, - "5649aa744bdc2ded0b8b457e": 17254, - "5649ab884bdc2ded0b8b457f": 15043, - "5649ae4a4bdc2d1b2b8b4588": 31944, - "5649af094bdc2df8348b4586": 17039, - "5649af884bdc2d1b2b8b4589": 31841, - "5649b2314bdc2d79388b4576": 18907, - "5649be884bdc2d79388b4577": 10164, - "5649d9a14bdc2d79388b4580": 12040, - "5649ed104bdc2d3d1c8b458b": 21766, - "564ca99c4bdc2d16268b4589": 4034, - "564ca9df4bdc2d35148b4569": 26193, - "564caa3d4bdc2d17108b458e": 35682, - "5656d7c34bdc2d9d198b4587": 639, - "5656eb674bdc2d35148b457c": 31730, - "567143bf4bdc2d1a0f8b4567": 264258, - "5672c92d4bdc2d180f8b4567": 18133, - "5672cb124bdc2d1a0f8b4568": 10860, - "5672cb304bdc2dc2088b456a": 8858, - "5672cb724bdc2dc2088b456b": 42862, - "5673de654bdc2d180f8b456d": 15656, - "56742c284bdc2d98058b456d": 14315, - "56742c2e4bdc2d95058b456d": 11610, - "56742c324bdc2d150f8b456d": 13428, - "56d59856d2720bd8418b456a": 20227, - "56d59948d2720bb7418b4582": 28971, - "56d59d3ad2720bdb418b4577": 860, - "56d5a1f7d2720bb3418b456a": 25938, - "56dee2bdd2720bc8328b4567": 60459, - "56deec93d2720bec348b4568": 48799, - "56deed6ed2720b4c698b4583": 166699, - "56def37dd2720bec348b456a": 16379, - "56dfef82d2720bbd668b4567": 901, - "56dff0bed2720bb0668b4567": 139, - "56dff216d2720bbd668b4568": 348, - "56dff2ced2720bb4668b4567": 366, - "56dff338d2720bbd668b4569": 145, - "56dff3afd2720bba668b4567": 302, - "56dff421d2720b5f5a8b4567": 189, - "56dff4a2d2720bbd668b456a": 63, - "56dff4ecd2720b5f5a8b4568": 98, - "56e0598dd2720bb5668b45a6": 13909, - "56e05a6ed2720bd0748b4567": 15127, - "56e05b06d2720bb2668b4586": 11340, - "56e335e4d2720b6c058b456d": 20863, - "56e33634d2720bd8058b456b": 40031, - "56e33680d2720be2748b4576": 5450, - "56ea6fafd2720b844b8b4593": 10627, - "56ea70acd2720b844b8b4594": 34997, - "56ea7165d2720b6e518b4583": 21776, - "56ea7293d2720b8d4b8b45ba": 5496, - "56ea8180d2720bf2698b456a": 18162, - "56ea8222d2720b69698b4567": 8973, - "56ea8d2fd2720b7c698b4570": 19133, - "56eabcd4d2720b66698b4574": 20679, - "56eabf3bd2720b75698b4569": 35555, - "570fd6c2d2720bc6458b457f": 23342, - "570fd721d2720bc5458b4596": 16375, - "570fd79bd2720bc7458b4583": 13318, - "5710c24ad2720bc3458b45a3": 17662, - "571659bb2459771fb2755a12": 8499, - "571a12c42459771f627b58a0": 14515, - "571a279b24597720b4066566": 13918, - "571a28e524597720b4066567": 10759, - "571a29dc2459771fb2755a6a": 9175, - "57235b6f24597759bf5a30f1": 65505, - "572b7adb24597762ae139821": 34599, - "572b7d8524597762b472f9d1": 9367, - "572b7f1624597762ae139822": 6965, - "572b7fa124597762b472f9d2": 13367, - "572b7fa524597762b747ce82": 11275, - "5733279d245977289b77ec24": 44291, - "573474f924597738002c6174": 12600, - "5734758f24597738025ee253": 43469, - "573475fb24597737fb1379e1": 6911, - "573476d324597737da2adc13": 19874, - "573476f124597737e04bf328": 7069, - "5734770f24597738025ee254": 20349, - "5734773724597737fd047c14": 15878, - "5734779624597737e04bf329": 17902, - "573477e124597737dd42e191": 9007, - "5734781f24597737e04bf32a": 20970, - "573478bc24597738002c6175": 14149, - "5734795124597738002c6176": 33377, - "57347b8b24597737dd42e192": 16764, - "57347baf24597738002c6178": 12234, - "57347c1124597737fb1379e3": 20980, - "57347c2e24597744902c94a1": 62210, - "57347c5b245977448d35f6e1": 20182, - "57347c77245977448d35f6e2": 20930, - "57347c93245977448d35f6e3": 32496, - "57347ca924597744596b4e71": 274642, - "57347cd0245977445a2d6ff1": 15254, - "57347d3d245977448f7b7f61": 18249, - "57347d5f245977448b40fa81": 16967, - "57347d692459774491567cf1": 18997, - "57347d7224597744596b4e72": 14349, - "57347d8724597744596b4e76": 21505, - "57347d90245977448f7b7f65": 26461, - "57347d9c245977448b40fa85": 18396, - "57347da92459774491567cf5": 21991, - "5735ff5c245977640e39ba7e": 905, - "573601b42459776410737435": 354, - "5736026a245977644601dc61": 95, - "573718ba2459775a75491131": 331, - "573719762459775a626ccbc1": 127, - "573719df2459775a626ccbc2": 514, - "57371aab2459775a77142f22": 181, - "57371b192459775a9f58a5e0": 163, - "57371e4124597760ff7b25f1": 304, - "57371eb62459776125652ac1": 42, - "57371f2b24597761224311f1": 47, - "57371f8d24597761006c6a81": 49, - "5737201124597760fc4431f1": 273, - "5737207f24597760ff7b25f2": 179, - "57372140245977611f70ee91": 739, - "5737218f245977612125ba51": 250, - "5737250c2459776125652acc": 13518, - "5737256c2459776125652acd": 7172, - "573725b0245977612125bae2": 50950, - "5737260b24597761224311f2": 9866, - "573726d824597765d96be361": 8866, - "5737273924597765dd374461": 6600, - "573728f324597765e5728561": 6812, - "5737292724597765e5728562": 113506, - "57372ac324597767001bc261": 38932, - "57372d4c245977685a3da2a1": 46024, - "57372db0245977685d4159b2": 23981, - "57372deb245977685d4159b3": 8655, - "57372e4a24597768553071c2": 1363, - "57372e73245977685d4159b4": 32182, - "57372ebf2459776862260582": 18955, - "57372ee1245977685d4159b5": 5951, - "57372f5c24597769917c0131": 6566, - "57372fc52459776998772ca1": 13564, - "5737300424597769942d5a01": 6481, - "573733c72459776b0b7b51b0": 29500, - "57486e672459770abd687134": 22522, - "574d967124597745970e7c94": 26354, - "574eb85c245977648157eec3": 33714, - "57505f6224597709a92585a9": 28436, - "575062b524597720a31c09a1": 12532, - "57513f07245977207e26a311": 11756, - "57513f9324597720a7128161": 13850, - "57513fcc24597720a31c09a6": 14981, - "5751435d24597720a27126d1": 15780, - "57514643245977207f2c2d09": 19420, - "575146b724597720a27126d5": 23629, - "5751487e245977207e26a315": 11877, - "5751496424597720a27126da": 15687, - "5751a25924597722c463c472": 5783, - "5751a89d24597722aa0e8db0": 87988, - "5755356824597772cb798962": 9709, - "5755383e24597772cb798966": 15014, - "576165642459773c7a400233": 42870, - "57616a9e2459773c7a400234": 14260, - "576a581d2459771e7b1bc4f1": 12053, - "576a5ed62459771e9c2096cb": 5824, - "576a63cd2459771e796e0e11": 12235, - "576a7c512459771e796e0e17": 5513, - "576fd4ec2459777f0b518431": 17087, - "577d128124597739d65d0e56": 16110, - "577d141e24597739c5255e01": 22714, - "577e1c9d2459773cd707c525": 25247, - "5780cda02459777b272ede61": 18014, - "5780cf692459777de4559321": 14093, - "5780cf722459777a5108b9a1": 103495, - "5780cf7f2459777de4559322": 1063304, - "5780cf942459777df90dcb72": 21345, - "5780cf9e2459777df90dcb73": 23867, - "5780cfa52459777dfb276eb1": 19404, - "5780d0532459777a5108b9a2": 47414, - "5780d0652459777df90dcb74": 33599, - "5780d07a2459777de4559324": 32293, - "57838ad32459774a17445cd2": 100757, - "57838c962459774a1651ec63": 34644, - "57838e1b2459774a256959b1": 97728, - "57838f0b2459774a256959b2": 10251, - "57838f9f2459774a150289a0": 22643, - "578395402459774a256959b5": 118063, - "578395e82459774a0e553c7b": 20406, - "5783c43d2459774bbe137486": 11932, - "579204f224597773d619e051": 97368, - "5798a2832459774b53341029": 36257, - "57a0dfb82459774d3078b56c": 629, - "57a3459f245977764a01f703": 16433, - "57a349b2245977762b199ec7": 6698, - "57ac965c24597706be5f975c": 52995, - "57aca93d2459771f2c7e26db": 47533, - "57acb6222459771ec34b5cb0": 22328, - "57ade1442459771557167e15": 10961, - "57adff4f24597737f373b6e6": 40369, - "57ae0171245977343c27bfcf": 12325, - "57af48872459771f0b2ebf11": 16289, - "57c44b372459772d2b39b8ce": 112334, - "57c44dd02459772d2e0ae249": 50106, - "57c44e7b2459772d28133248": 81265, - "57c44f4f2459772d2c627113": 115277, - "57c44fa82459772d2d75e415": 23115, - "57c450252459772d28133253": 11749, - "57c55efc2459772d2c6271e7": 25082, - "57c55f092459772d291a8463": 12849, - "57c55f112459772d28133310": 12918, - "57c55f172459772d27602381": 12799, - "57c5ac0824597754771e88a9": 29356, - "57c69dd424597774c03b7bbc": 38309, - "57c9a89124597704ee6faec1": 5633, - "57cff947245977638e6f2a19": 24214, - "57cffb66245977632f391a99": 31578, - "57cffcd624597763133760c5": 28890, - "57cffcdd24597763f5110006": 27079, - "57cffce524597763b31685d8": 23965, - "57cffd8224597763b03fc609": 14857, - "57cffddc24597763133760c6": 17033, - "57cffe0024597763b03fc60b": 18731, - "57cffe20245977632f391a9d": 15406, - "57d14d2524597714373db789": 20004, - "57d14e1724597714010c3f4b": 7090, - "57d1519e24597714373db79d": 13101, - "57d152ec245977144076ccdf": 16460, - "57d17c5e2459775a5c57d17d": 8585, - "57d17e212459775a1179a0f5": 7372, - "57da93632459771cb65bf83f": 29251, - "57dbb57e2459774673234890": 28538, - "57dc2fa62459775949412633": 40011, - "57dc32dc245977596d4ef3d3": 760, - "57dc334d245977597164366f": 18995, - "57e26ea924597715ca604a09": 10822, - "57e26fc7245977162a14b800": 7765, - "57ee59b42459771c7b045da5": 19728, - "57f3a5ae2459772b0e0bf19e": 22687, - "57f3c6bd24597738e730fa2f": 44081, - "57f3c8cc2459773ec4480328": 15888, - "57f4c844245977379d5c14d1": 16397, - "57fd23e32459772d0805bcf1": 15963, - "57ffa9f4245977728561e844": 9684, - "57ffaea724597779f52b3a4d": 10287, - "57ffb0062459777a045af529": 10305, - "57ffb0e42459777d047111c5": 23272, - "5827272a24597748c74bdeea": 21657, - "58272b392459774b4c7b3ccd": 16981, - "58272b842459774abc128d50": 11717, - "58272d7f2459774f6311ddfd": 22454, - "583990e32459771419544dd2": 28345, - "5839a40f24597726f856b511": 70815, - "58491f3324597764bc48fa02": 37743, - "584924ec24597768f12ae244": 48434, - "584984812459776a704a82a6": 18982, - "587de4282459771bca0ec90b": 17227, - "587df3a12459772c28142567": 4125, - "587df583245977373c4f1129": 17971, - "587e02ff24597743df3deaeb": 61196, - "587e08ee245977446b4410cf": 19752, - "588200cf2459774414733d55": 42470, - "58820d1224597753c90aeb13": 59, - "588226d124597767ad33f787": 24001, - "588226dd24597767ad33f789": 16172, - "588226e62459776e3e094af7": 22931, - "588226ef24597767af46e39c": 29579, - "58864a4f2459770fcc257101": 501, - "5887431f2459777e1612938f": 665, - "588892092459774ac91d4b11": 86092, - "5888945a2459774bf43ba385": 45639, - "5888956924597752983e182d": 38305, - "5888961624597754281f93f3": 49804, - "5888976c24597754281f93f5": 28715, - "5888988e24597752fe43a6fa": 18294, - "5888996c24597754281f9419": 36887, - "58889c7324597754281f9439": 33012, - "58889d0c2459775bc215d981": 81181, - "588b56d02459771481110ae2": 19907, - "58948c8e86f77409493f7266": 48832, - "58949dea86f77409483e16a8": 22442, - "58949edd86f77409483e16a9": 24585, - "5894a05586f774094708ef75": 13336, - "5894a2c386f77427140b8342": 37026, - "5894a42086f77426d2590762": 54022, - "5894a51286f77426d13baf02": 11837, - "5894a5b586f77426d2590767": 23676, - "58a56f8d86f774651579314c": 8256, - "58a5c12e86f7745d585a2b9e": 13818, - "58ac1bf086f77420ed183f9f": 185673, - "58aeaaa886f7744fc1560f81": 12298, - "58aeac1b86f77457c419f475": 15252, - "58c157be86f77403c74b2bb6": 7558, - "58c157c886f774032749fb06": 8925, - "58d2664f86f7747fec5834f6": 27610, - "58d268fc86f774111273f8c2": 42096, - "58d2912286f7744e27117493": 75729, - "58d2946386f774496974c37e": 13815, - "58d2946c86f7744e271174b5": 17487, - "58d2947686f774485c6a1ee5": 11543, - "58d2947e86f77447aa070d53": 13869, - "58d399e486f77442e0016fe7": 26593, - "58d39b0386f77443380bf13c": 12469, - "58d39d3d86f77445bb794ae7": 11181, - "58d3db5386f77426186285a0": 21886, - "5900b89686f7744e704a8747": 22249, - "5909e99886f7740c983b9984": 11589, - "590a358486f77429692b2790": 12575, - "590a373286f774287540368b": 32367, - "590a386e86f77429692b27ab": 19607, - "590a391c86f774385a33c404": 18790, - "590a3b0486f7743954552bdb": 17988, - "590a3c0a86f774385a33c450": 12784, - "590a3cd386f77436f20848cb": 21273, - "590a3d9c86f774385926e510": 10783, - "590a3efd86f77437d351a25b": 19795, - "590c2b4386f77425357b6123": 15115, - "590c2c9c86f774245b1f03f2": 13959, - "590c2d8786f774245b1f03f3": 9607, - "590c2e1186f77425357b6124": 39477, - "590c311186f77424d1667482": 14102, - "590c31c586f774245e3141b2": 18755, - "590c346786f77423e50ed342": 28605, - "590c35a486f774273531c822": 41815, - "590c37d286f77443be3d7827": 45845, - "590c392f86f77444754deb29": 39875, - "590c595c86f7747884343ad7": 34729, - "590c5a7286f7747884343aea": 15490, - "590c5bbd86f774785762df04": 10588, - "590c5c9f86f77477c91c36e7": 13937, - "590c5d4b86f774784e1b9c45": 79791, - "590c5f0d86f77413997acfab": 20784, - "590c60fc86f77412b13fddcf": 228493, - "590c621186f774138d11ea29": 21798, - "590c639286f774151567fa95": 20382, - "590c645c86f77412b01304d9": 39356, - "590c651286f7741e566b6461": 35606, - "590c657e86f77412b013051d": 48264, - "590c661e86f7741e566b646a": 14846, - "590c678286f77426c9660122": 20517, - "590c695186f7741e566b64a2": 19882, - "590de71386f774347051a052": 35709, - "590de7e986f7741b096e5f32": 43215, - "591094e086f7747caa7bb2ef": 810042, - "5910968f86f77425cf569c32": 71223, - "5913611c86f77479e0084092": 10612, - "5913651986f774432f15d132": 11976, - "59136a4486f774447a1ed172": 13151, - "59136e1e86f774432f15d133": 29827, - "59136f6f86f774447a1ed173": 11592, - "591382d986f774465a6413a7": 26545, - "591383f186f7744a4c5edcf3": 13359, - "5913877a86f774432f15d444": 87277, - "5913915886f774123603c392": 34326, - "5914578086f774123569ffa4": 9427, - "59148c8a86f774197930e983": 18682, - "59148f8286f7741b951ea113": 12158, - "591ae8f986f77406f854be45": 12715, - "591aef7986f774139d495f03": 23388, - "591af10186f774139d495f0e": 30979, - "591af28e86f77414a27a9e1d": 24823, - "591afe0186f77431bd616a11": 20437, - "591c4e1186f77410354b316e": 5465, - "591c4efa86f7741030027726": 14514, - "591ee00d86f774592f7b841e": 14055, - "5926bb2186f7744b1c6c6e60": 29567, - "5926c0df86f77462f647f764": 29589, - "5926c32286f774616e42de99": 51275, - "5926c36d86f77467a92a8629": 9513, - "5926c3b286f774640d189b6b": 21846, - "5926d2be86f774134d668e4e": 38928, - "5926d33d86f77410de68ebc0": 30822, - "5926d3c686f77410de68ebc8": 187222, - "5926dad986f7741f82604363": 34078, - "5926e16e86f7742f5a0f7ecb": 21902, - "5926f2e086f7745aae644231": 26453, - "5926f34786f77469195bfe92": 53233, - "5929a2a086f7744f4b234d43": 18556, - "592c2d1a86f7746dbe2af32a": 68356, - "5938144586f77473c2087145": 101380, - "5938504186f7740991483f30": 22099, - "593858c486f774253a24cb52": 4786, - "5938603e86f77435642354f4": 7576, - "59387a4986f77401cc236e62": 147320, - "5938994586f774523a425196": 6128, - "593aa4be86f77457f56379f8": 14858, - "593d1fa786f7746da62d61ac": 18244, - "593d489686f7745c6255d58a": 25827, - "593d490386f7745ee97a1555": 31836, - "593d493f86f7745e6b2ceb22": 38776, - "5943ee5a86f77413872d25ec": 19334, - "5943eeeb86f77412d6384f6b": 22462, - "5947c73886f7747701588af5": 18538, - "5947db3f86f77447880cf76f": 11610, - "5947e98b86f774778f1448bc": 25025, - "5947eab886f77475961d96c5": 26649, - "5947f92f86f77427344a76b1": 27767, - "5947fa2486f77425b47c1a9b": 20216, - "595cf16b86f77427440c32e2": 22153, - "595cfa8b86f77427437e845b": 64491, - "5991b51486f77447b112d44f": 31666, - "59984ab886f7743e98271174": 18946, - "5998517986f7746017232f7e": 13235, - "5998529a86f774647f44f421": 2745, - "59985a6c86f77414ec448d17": 19542, - "599860ac86f77436b225ed1a": 11998, - "59bfc5c886f7743bf6794e62": 20659, - "59bfe68886f7746004266202": 126578, - "59bffbb386f77435b379b9c2": 96451, - "59bffc1f86f77435b128b872": 26105, - "59c0ec5b86f77435b128bfca": 30921, - "59c63b4486f7747afb151c1c": 57636, - "59c6633186f7740cf0493bb9": 16858, - "59ccfdba86f7747f2109a587": 11117, - "59d36a0086f7747e673f3946": 23102, - "59d6088586f774275f37482f": 145368, - "59d625f086f774661516605d": 9583, - "59d6272486f77466146386ff": 19098, - "59d64ec286f774171d1e0a42": 30536, - "59d64fc686f774171b243fe2": 1234, - "59d6514b86f774171a068a08": 50451, - "59d790f486f77403cb06aec6": 11893, - "59db3a1d86f77429e05b4e92": 70144, - "59db3acc86f7742a2c4ab912": 25223, - "59db3b0886f77429d72fb895": 20824, - "59db7e1086f77448be30ddf3": 24029, - "59db7eed86f77461f8380365": 31443, - "59e0bdb186f774156f04ce82": 29916, - "59e0be5d86f7742d48765bd2": 19032, - "59e0bed186f774156f04ce84": 35082, - "59e3556c86f7741776641ac2": 15425, - "59e3577886f774176a362503": 48100, - "59e358a886f7741776641ac3": 20334, - "59e3596386f774176c10a2a2": 26373, - "59e35abd86f7741778269d82": 20592, - "59e35cbb86f7741778269d83": 27749, - "59e35de086f7741778269d84": 39412, - "59e35ef086f7741777737012": 16840, - "59e3606886f77417674759a5": 19306, - "59e361e886f774176c10a2a5": 10747, - "59e3639286f7741777737013": 117352, - "59e3647686f774176a362507": 55273, - "59e3658a86f7741776641ac4": 39853, - "59e366c186f7741778269d85": 9952, - "59e36c6f86f774176c10a2a7": 29637, - "59e4cf5286f7741778269d8a": 389, - "59e4d24686f7741776641ac7": 955, - "59e4d3d286f774176a36250a": 94, - "59e5d83b86f7745aed03d262": 1427, - "59e5f5a486f7746c530b3ce2": 28012, - "59e6152586f77473dc057aa1": 29683, - "59e6449086f7746c9f75e822": 52875, - "59e649f986f77411d949b246": 102421, - "59e6542b86f77411dc52a77a": 51, - "59e655cb86f77411dc52a77b": 220, - "59e6658b86f77411d949b250": 537, - "59e6687d86f77411d949b251": 29150, - "59e68f6f86f7746c9f75e846": 543, - "59e6918f86f7746c9f75e849": 236, - "59e6920f86f77411d82aa167": 149, - "59e6927d86f77411da468256": 192, - "59e7635f86f7742cbf2c1095": 27576, - "59e7643b86f7742cbf2c109a": 16011, - "59e7708286f7742cbd762753": 22583, - "59e770b986f7742cbd762754": 17524, - "59e770f986f7742cbe3164ef": 8012, - "59e7711e86f7746cae05fbe1": 11104, - "59e7715586f7742ee5789605": 16033, - "59e77a2386f7742ee578960a": 1536, - "59eb7ebe86f7740b373438ce": 259576, - "59ecc28286f7746d7a68aa8c": 42548, - "59ecc3dd86f7746dc827481c": 35824, - "59ef13ca86f77445fd0e2483": 41719, - "59f8a37386f7747af3328f06": 36293, - "59f98b4986f7746f546d2cef": 18427, - "59f99a7d86f7745b134aa97b": 10719, - "59f9cabd86f7743a10721f46": 19898, - "59f9d81586f7744c7506ee62": 40492, - "59faf7ca86f7740dbe19f6c2": 51060, - "59faf98186f774067b6be103": 19071, - "59fafb5d86f774067a6f2084": 51382, - "59fafc5086f7740dbe19f6c3": 35601, - "59fafc9386f774067d462453": 59212, - "59fafd4b86f7745ca07e1232": 485229, - "59fb023c86f7746d0d4b423c": 5143260, - "59fb137a86f7740adb646af1": 32816, - "59fb257e86f7742981561852": 28572, - "59fb375986f7741b681b81a6": 19498, - "59fc48e086f77463b1118392": 26256, - "59ff346386f77477562ff5e2": 34789, - "5a0060fc86f7745793204432": 12877, - "5a01c29586f77474660c694c": 13378, - "5a0abb6e1526d8000a025282": 9058, - "5a0c27731526d80618476ac4": 10574, - "5a0c59791526d8dba737bba7": 26874, - "5a0d63621526d8dba31fe3bf": 30850, - "5a0d716f1526d8000d26b1e2": 11663, - "5a0dc45586f7742f6b0b73e3": 71290, - "5a0dc95c86f77452440fc675": 67294, - "5a0ea64786f7741707720468": 52198, - "5a0ea69f86f7741cd5406619": 17457, - "5a0ea79b86f7741d4a35298e": 51620, - "5a0eb38b86f774153b320eb0": 9671, - "5a0eb6ac86f7743124037a28": 120008, - "5a0ec13bfcdbcb00165aa685": 54464, - "5a0ec6d286f7742c0b518fb5": 126105, - "5a0ec70e86f7742c0b518fba": 16132, - "5a0ee30786f774023b6ee08f": 188745, - "5a0ee34586f774023b6ee092": 58065, - "5a0ee37f86f774023657a86f": 75454, - "5a0ee4b586f7743698200d22": 47210, - "5a0ee62286f774369454a7ac": 18768, - "5a0ee72c86f77436955d3435": 15441, - "5a0ee76686f7743698200d5c": 18991, - "5a0eeb1a86f774688b70aa5c": 32496, - "5a0eeb8e86f77461257ed71a": 16683, - "5a0eebed86f77461230ddb3d": 11163, - "5a0eec9686f77402ac5c39f2": 49994, - "5a0eecf686f7740350630097": 64758, - "5a0eed4386f77405112912aa": 42498, - "5a0eedb386f77403506300be": 15999, - "5a0eee1486f77402aa773226": 78635, - "5a0eff2986f7741fd654e684": 40438, - "5a0f006986f7741ffd2fe484": 17967, - "5a0f045e86f7745b0f0d0e42": 23809, - "5a0f068686f7745b0d4ea242": 82734, - "5a0f075686f7745bcc42ee12": 14431, - "5a0f08bc86f77478f33b84c2": 36254, - "5a0f0f5886f7741c4e32a472": 42003, - "5a13ee1986f774794d4c14cd": 18764, - "5a13eebd86f7746fd639aa93": 215026, - "5a13ef0686f7746e5a411744": 56914, - "5a13ef7e86f7741290491063": 78163, - "5a13f24186f77410e57c5626": 166776, - "5a13f35286f77413ef1436b0": 185992, - "5a13f46386f7741dd7384b04": 38823, - "5a144bdb86f7741d374bbde0": 58781, - "5a144dfd86f77445cb5a0982": 84287, - "5a1452ee86f7746f33111763": 108149, - "5a145d4786f7744cbb6f4a12": 46406, - "5a145d7b86f7744cbb6f4a13": 51275, - "5a145ebb86f77458f1796f05": 35388, - "5a16b672fcdbcb001912fa83": 21604, - "5a16b8a9fcdbcb00165aa6ca": 39275, - "5a16b93dfcdbcbcae6687261": 20273, - "5a16b9fffcdbcb0176308b34": 43259, - "5a16ba61fcdbcb098008728a": 26366, - "5a16badafcdbcb001865f72d": 35237, - "5a16bb52fcdbcb001a3b00dc": 17676, - "5a17f98cfcdbcb0980087290": 12870, - "5a17fb03fcdbcbcae668728f": 10500, - "5a17fb9dfcdbcbcae6687291": 6393, - "5a1eacb3fcdbcb09800872be": 11714, - "5a1ead28fcdbcb001912fa9f": 78017, - "5a269f97c4a282000b151807": 2071, - "5a26abfac4a28232980eabff": 261, - "5a26ac06c4a282000c5a90a8": 618, - "5a27b281c4a28200741e1e52": 14200, - "5a27b3d0c4a282000d721ec1": 38250, - "5a27b6bec4a282000e496f78": 22504, - "5a27bad7c4a282000b15184b": 18391, - "5a2a57cfc4a2826c6e06d44a": 10442, - "5a329052c4a28200741e22d3": 53785, - "5a32a064c4a28200741e22de": 33415, - "5a32aa0cc4a28232996e405f": 7962, - "5a32aa8bc4a2826c6e06d737": 30370, - "5a339805c4a2826c6e06d73d": 17538, - "5a33a8ebc4a282000c5a950d": 21208, - "5a33b2c9c4a282000c5a9511": 32370, - "5a33b652c4a28232996e407c": 13288, - "5a33bab6c4a28200741e22f8": 40405, - "5a33ca0fc4a282000d72292f": 13026, - "5a33cae9c4a28232980eb086": 18130, - "5a33e75ac4a2826c6e06d759": 31872, - "5a34f7f1c4a2826c6e06d75d": 43989, - "5a34fae7c4a2826c6e06d760": 36194, - "5a34fbadc4a28200741e230a": 15373, - "5a34fd2bc4a282329a73b4c5": 18922, - "5a34fe59c4a282000b1521a2": 64335, - "5a3501acc4a282000d72293a": 33714, - "5a351711c4a282000b1521a4": 35552, - "5a37ca54c4a282000d72296a": 34216, - "5a37cb10c4a282329a73b4e7": 36014, - "5a38e6bac4a2826c6e06d79b": 24292, - "5a38ebd9c4a282000d722a5b": 1242, - "5a38ed75c4a28232996e40c6": 2417, - "5a38ee51c4a282000c5a955c": 924, - "5a398ab9c4a282000c5a9842": 27589, - "5a398b75c4a282000a51a266": 31953, - "5a3c16fe86f77452b62de32a": 600, - "5a5f1ce64f39f90b401987bc": 24039, - "5a69a2ed8dc32e000d46d1f1": 69846, - "5a6b5b8a8dc32e001207faf3": 17124, - "5a6b5e468dc32e001207faf5": 21871, - "5a6b5ed88dc32e000c52ec86": 21135, - "5a6b60158dc32e000a31138b": 13814, - "5a6f5f078dc32e00094b97dd": 13186, - "5a702d198dc32e000b452fc3": 16191, - "5a7033908dc32e000a311392": 9988, - "5a70366c8dc32e001207fb06": 7546, - "5a7037338dc32e000d46d257": 8854, - "5a705e128dc32e000d46d258": 3892, - "5a718b548dc32e000d46d262": 5362, - "5a718da68dc32e000d46d264": 21019, - "5a718f958dc32e00094b97e7": 31054, - "5a71e22f8dc32e00094b97f4": 27309, - "5a71e4f48dc32e001207fb26": 40829, - "5a7828548dc32e5a9c28b516": 47188, - "5a787ebcc5856700142fdd98": 20409, - "5a787f25c5856700186c4ab9": 17350, - "5a787f7ac5856700177af660": 125135, - "5a788031c585673f2b5c1c79": 35398, - "5a788068c5856700137e4c8f": 81933, - "5a788089c5856700142fdd9c": 7326, - "5a7880d0c5856700142fdd9d": 57274, - "5a78813bc5856700186c4abe": 169681, - "5a788169c5856700142fdd9e": 5550, - "5a78830bc5856700137e4c90": 19611, - "5a78832ec5856700155a6ca3": 27363, - "5a789261c5856700186c65d3": 14188, - "5a7893c1c585673f2b5c374d": 23562, - "5a78948ec5856700177b1124": 13126, - "5a7ad0c451dfba0013379712": 8982, - "5a7ad1fb51dfba0013379715": 6906, - "5a7ad2e851dfba0016153692": 19821, - "5a7ad4af51dfba0013379717": 12244, - "5a7ad55551dfba0015068f42": 20920, - "5a7ad74e51dfba0015068f45": 25215, - "5a7ae0c351dfba0017554310": 16378, - "5a7afa25e899ef00135e31b0": 9094, - "5a7b32a2e899ef00135e345a": 19237, - "5a7b483fe899ef0016170d15": 20605, - "5a7b4900e899ef197b331a2a": 24720, - "5a7b4960e899ef197b331a2d": 24991, - "5a7c147ce899ef00150bd8b8": 7707, - "5a7c4850e899ef00150be885": 35222, - "5a7c74b3e899ef0014332c29": 14638, - "5a7d90eb159bd400165484f1": 11847, - "5a7dbfc1159bd40016548fde": 48293, - "5a800961159bd4315e3a1657": 17753, - "5a8036fb86f77407252ddc02": 34006, - "5a80a29286f7742b25692012": 14113, - "5a9548c9159bd400133e97b3": 18740, - "5a957c3fa2750c00137fa5f7": 28995, - "5a966ec8a2750c00171b3f36": 18432, - "5a966f51a2750c00156aacf6": 24984, - "5a9685b1a2750c0032157104": 14626, - "5a9d56c8a2750c0032157146": 16589, - "5a9d6d00a2750c5c985b5305": 10953, - "5a9d6d13a2750c00164f6b03": 11355, - "5a9d6d21a2750c00137fa649": 11696, - "5a9d6d34a2750c00141e07da": 14718, - "5a9e81fba2750c00164f6b11": 57312, - "5a9ea27ca2750c00137fa672": 11152, - "5a9eb32da2750c00171b3f9c": 32418, - "5a9fb739a2750c003215717f": 16932, - "5a9fbacda2750c00141e080f": 26878, - "5a9fbb74a2750c0032157181": 28312, - "5a9fbb84a2750c00137fa685": 42782, - "5a9fc7e6a2750c0032157184": 20243, - "5aa2a7e8e5b5b00016327c16": 11160, - "5aa2b87de5b5b00016327c25": 6435, - "5aa2b89be5b5b0001569311f": 7111, - "5aa2b8d7e5b5b00014028f4a": 13631, - "5aa2b923e5b5b000137b7589": 22598, - "5aa2b986e5b5b00014028f4c": 7115, - "5aa2b9aee5b5b00015693121": 20389, - "5aa2b9ede5b5b000137b758b": 18517, - "5aa2ba19e5b5b00014028f4e": 16478, - "5aa2ba46e5b5b000137b758d": 35903, - "5aa2ba71e5b5b000137b758f": 46996, - "5aa66a9be5b5b0214e506e89": 27710, - "5aa66be6e5b5b0214e506e97": 57600, - "5aa66c72e5b5b00016327c93": 18785, - "5aa7cfc0e5b5b00015693143": 37080, - "5aa7d03ae5b5b00016327db5": 41372, - "5aa7d193e5b5b000171d063f": 30116, - "5aa7e373e5b5b000137b76f0": 45900, - "5aa7e3abe5b5b000171d064d": 27810, - "5aa7e454e5b5b0214e506fa2": 38918, - "5aa7e4a4e5b5b000137b76f2": 38976, - "5aaa4194e5b5b055d06310a5": 11625, - "5aaa5dfee5b5b000140293d3": 22994, - "5aaa5e60e5b5b000140293d6": 5131, - "5aaf8a0be5b5b00015693243": 23086, - "5aaf8e43e5b5b00015693246": 19458, - "5aaf9d53e5b5b00015042a52": 27708, - "5aafa1c2e5b5b00015042a56": 9906, - "5aafa49ae5b5b00015042a58": 17642, - "5aafbde786f774389d0cbc0f": 412024, - "5ab24ef9e5b5b00fe93c9209": 19812, - "5ab372a310e891001717f0d8": 41742, - "5ab3afb2d8ce87001660304d": 33086, - "5ab8dab586f77441cd04f2a2": 28634, - "5ab8dced86f774646209ec87": 155017, - "5ab8e4ed86f7742d8e50c7fa": 56470, - "5ab8e9fcd8ce870019439434": 65515, - "5ab8ee7786f7742d8f33f0b9": 25050, - "5ab8f04f86f774585f4237d8": 11773, - "5ab8f20c86f7745cdb629fb2": 7589, - "5ab8f39486f7745cd93a1cca": 15738, - "5ab8f4ff86f77431c60d91ba": 18921, - "5ab8f85d86f7745cd93a1cf5": 27994, - "5abcbb20d8ce87001773e258": 22338, - "5abcbc27d8ce8700182eceeb": 33943, - "5abcc328d8ce8700194394f3": 7457, - "5abccb7dd8ce87001773e277": 19183, - "5ac4c50d5acfc40019262e87": 27576, - "5ac4cd105acfc40016339859": 30799, - "5ac50da15acfc4001718d287": 13611, - "5ac66bea5acfc43b321d4aec": 14823, - "5ac66c5d5acfc4001718d314": 33499, - "5ac66cb05acfc40198510a10": 52458, - "5ac66d015acfc400180ae6e4": 38512, - "5ac66d2e5acfc43b321d4b53": 37715, - "5ac66d725acfc43b321d4b60": 27945, - "5ac66d9b5acfc4001633997a": 30938, - "5ac72e615acfc43f67248aa0": 24881, - "5ac72e725acfc400180ae701": 10538, - "5ac72e7d5acfc40016339a02": 22605, - "5ac72e945acfc43f3b691116": 20360, - "5ac7655e5acfc40016339a19": 16593, - "5ac78a9b86f7741cca0bbd8d": 33938, - "5ac78eaf5acfc4001926317a": 18719, - "5ad5ccd186f774446d5706e9": 16543, - "5ad5cfbd86f7742c825d6104": 63943, - "5ad5d20586f77449be26d877": 11923, - "5ad5d49886f77455f9731921": 7759, - "5ad5d64486f774079b080af8": 54395, - "5ad5d7d286f77450166e0a89": 211683, - "5ad5db3786f7743568421cce": 61832, - "5ad7217186f7746744498875": 13809, - "5ad7242b86f7740a6a3abd43": 12623, - "5ad7247386f7747487619dc3": 80658, - "5addaffe86f77470b455f900": 109860, - "5addbac75acfc400194dbc56": 41052, - "5addbb6e5acfc408fb1393fd": 11855, - "5addbb825acfc408fb139400": 7446, - "5addbb945acfc4001a5fc44e": 11398, - "5addbba15acfc400185c2854": 7525, - "5addbbb25acfc40015621bd9": 4880, - "5addbf175acfc408fb13965b": 32181, - "5addbfbb5acfc400194dbcf7": 130852, - "5addbfd15acfc40015621bde": 11108, - "5addbfe15acfc4001a5fc58b": 20150, - "5addbfef5acfc400185c2857": 49599, - "5addbffe5acfc4001714dfac": 15628, - "5addc00b5acfc4001669f144": 17062, - "5addc7005acfc4001669f275": 23661, - "5addc7ac5acfc400194dbd90": 21718, - "5addc7db5acfc4001669f279": 16594, - "5addcce35acfc4001a5fc635": 49789, - "5addccf45acfc400185c2989": 42133, - "5ae08f0a5acfc408fb1398a1": 72428, - "5ae096d95acfc400185c2c81": 81942, - "5ae09bff5acfc4001562219d": 185895, - "5ae30bad5acfc400185c2dc4": 41944, - "5ae30c9a5acfc408fb139a03": 12575, - "5ae30e795acfc408fb139a0b": 9093, - "5ae35b315acfc4001714e8b0": 5136, - "5af0454c86f7746bf20992e8": 17063, - "5af0484c86f7740f02001f7f": 29839, - "5af04b6486f774195a3ebb49": 24752, - "5af0534a86f7743b6f354284": 75666, - "5af0548586f7743a532b7e99": 48392, - "5af0561e86f7745f5f3ad6ac": 19417, - "5afd7ded5acfc40017541f5e": 16411, - "5afd7e095acfc40017541f61": 9073, - "5afd7e445acfc4001637e35a": 9199, - "5b04473a5acfc40018632f70": 23299, - "5b057b4f5acfc4771e1bd3e9": 94043, - "5b07db875acfc40dc528a5f6": 32484, - "5b07dd285acfc4001754240d": 31152, - "5b0800175acfc400153aebd4": 22281, - "5b099a765acfc47a8607efe3": 74035, - "5b099a9d5acfc47a8607efe7": 13943, - "5b099ac65acfc400186331e1": 15750, - "5b099b7d5acfc400186331e4": 5315, - "5b099b965acfc400186331e6": 13084, - "5b099bb25acfc400186331e8": 33174, - "5b099bf25acfc4001637e683": 13767, - "5b0bbe4e5acfc40dc528a72d": 91419, - "5b0e794b5acfc47a877359b2": 106115, - "5b1fa9b25acfc40018633c01": 26982, - "5b1fb3e15acfc4001637f068": 35697, - "5b1fd4e35acfc40018633c39": 3954, - "5b222d335acfc4771e1be099": 23786, - "5b222d405acfc400153af4fe": 21358, - "5b2240bf5acfc40dc528af69": 36950, - "5b237e425acfc4771e1be0b6": 34396, - "5b2388675acfc4771e1be0be": 75320, - "5b2389515acfc4771e1be0c0": 26858, - "5b2cfa535acfc432ff4db7a0": 32394, - "5b30ac585acfc433000eb79c": 29838, - "5b30b0dc5acfc400153b7124": 12762, - "5b30bc165acfc40016387293": 42954, - "5b30bc285acfc47a8608615d": 100736, - "5b31163c5acfc400153b71cb": 11572, - "5b3116595acfc40019476364": 17767, - "5b363dd25acfc4001a598fd2": 47926, - "5b363dea5acfc4771e1c5e7e": 26546, - "5b363e1b5acfc4771e1c5e80": 16584, - "5b39f8db5acfc40016387a1b": 19731, - "5b39ffbd5acfc47a8773fb06": 12777, - "5b3a08b25acfc4001754880c": 11223, - "5b3a16655acfc40016387a2a": 43485, - "5b3a337e5acfc4704b4a19a0": 21279, - "5b3b6dc75acfc47a8773fb1e": 16163, - "5b3b6e495acfc4330140bd88": 28797, - "5b3b713c5acfc4330140bd8d": 74309, - "5b3b99265acfc4704b4a1afb": 72679, - "5b3b99475acfc432ff4dcbee": 140714, - "5b3baf8f5acfc40dc5296692": 42468, - "5b3cadf35acfc400194776a0": 40187, - "5b3f7bf05acfc433000ecf6b": 14347, - "5b3f7c005acfc4704b4a1de8": 7411, - "5b3f7c1c5acfc40dc5296b1d": 16797, - "5b40e1525acfc4771e1c6611": 134675, - "5b40e2bc5acfc40016388216": 89046, - "5b40e3f35acfc40016388218": 82147, - "5b40e4035acfc47a87740943": 69788, - "5b40e5e25acfc4001a599bea": 8357, - "5b40e61f5acfc4001a599bec": 3388, - "5b4325355acfc40019478126": 14624, - "5b4326435acfc433000ed01d": 22832, - "5b43271c5acfc432ff4dce65": 5173, - "5b4327aa5acfc400175496e0": 5184, - "5b4329075acfc400153b78ff": 20787, - "5b4329f05acfc47a86086aa1": 82134, - "5b432b2f5acfc4771e1c6622": 36756, - "5b432b6c5acfc4001a599bf0": 12478, - "5b432b965acfc47a8774094e": 20692, - "5b432be65acfc433000ed01f": 6534, - "5b432c305acfc40019478128": 46279, - "5b432d215acfc4771e1c6624": 45387, - "5b432f3d5acfc4704b4a1dfb": 13795, - "5b4335ba86f7744d2837a264": 13508, - "5b43575a86f77424f443fe62": 42712, - "5b4391a586f7745321235ab2": 362285, - "5b44c6ae86f7742d1627baea": 100782, - "5b44c8ea86f7742d1627baf1": 26680, - "5b44d22286f774172b0c9de8": 53509, - "5b46238386f7741a693bcf9c": 18285, - "5b4736a986f774040571e998": 67720, - "5b4736b986f77405cb415c10": 183737, - "5b7be1265acfc400161d0798": 69120, - "5b7be1ca5acfc400170e2d2f": 27396, - "5b7be2345acfc400196d524a": 19254, - "5b7be4575acfc400161d0832": 40617, - "5b7be4645acfc400170e2dcc": 16948, - "5b7be46e5acfc400170e2dcf": 48554, - "5b7be47f5acfc400170e2dd2": 11603, - "5b7be4895acfc400170e2dd5": 15880, - "5b7bebc85acfc43bca706666": 15867, - "5b7bedd75acfc43d825283f9": 36448, - "5b7bee755acfc400196d5383": 20700, - "5b7bef1e5acfc43d82528402": 4482, - "5b7bef5d5acfc43bca7067a3": 40957, - "5b7bef9c5acfc43d102852ec": 33600, - "5b7c2d1d5acfc43d1028532a": 20870, - "5b7d37845acfc400170e2f87": 46164, - "5b7d63b75acfc400170e2f8a": 19245, - "5b7d63cf5acfc4001876c8df": 10211, - "5b7d63de5acfc400170e2f8d": 19032, - "5b7d64555acfc4001876c8e2": 25078, - "5b7d645e5acfc400170e2f90": 32344, - "5b7d671b5acfc43d82528ddd": 13375, - "5b7d678a5acfc4001a5c4022": 7388, - "5b7d679f5acfc4001a5c4024": 37444, - "5b7d68af5acfc400170e30c3": 7923, - "5b7d693d5acfc43bca706a3d": 9593, - "5b7d6c105acfc40015109a5f": 8042, - "5b800e9286f7747a8b04f3ff": 18348, - "5b800ebc86f774394e230a90": 39352, - "5b800ed086f7747baf6e2f9e": 26015, - "5b80242286f77429445e0b47": 38003, - "5b84038986f774774913b0c1": 23157, - "5b8403a086f7747ff856f4e2": 22599, - "5b86a0e586f7745b600ccb23": 32182, - "5ba26383d4351e00334c93d9": 34034, - "5ba264f6d4351e0034777d52": 11151, - "5ba2657ed4351e0035628ff2": 61437, - "5ba26586d4351e44f824b340": 117065, - "5ba2678ad4351e44f824b344": 2133, - "5ba26812d4351e003201fef1": 218, - "5ba26ae8d4351e00367f9bdb": 90140, - "5bae13bad4351e00320204af": 21907, - "5bae13ded4351e44f824bf38": 62410, - "5bb20d92d4351e00853263eb": 128858, - "5bb20d9cd4351e00334c9d8a": 18944, - "5bb20da5d4351e0035629dbf": 27676, - "5bb20dadd4351e00367faeff": 96939, - "5bb20dbcd4351e44f824c04e": 11987, - "5bb20de5d4351e0035629e59": 8361, - "5bb20df1d4351e00347787d5": 8260, - "5bb20dfcd4351e00334c9e24": 13781, - "5bb20e0ed4351e3bac1212dc": 13017, - "5bb20e18d4351e00320205d5": 12608, - "5bb20e49d4351e3bac1212de": 20007, - "5bb20e58d4351e00320205d7": 19310, - "5bb20e70d4351e0035629f8f": 14471, - "5bb2475ed4351e00853264e3": 58857, - "5bbdb811d4351e45020113c7": 41513, - "5bbdb83fd4351e44f824c44b": 10429, - "5bbdb870d4351e00367fb67d": 42849, - "5bbdb8bdd4351e4502011460": 26157, - "5bbde409d4351e003562b036": 24321, - "5bbde41ed4351e003562b038": 34020, - "5bc09a18d4351e003562b68e": 19772, - "5bc09a30d4351e00367fb7c8": 13423, - "5bc5a351d4351e003477a414": 15011, - "5bc5a35cd4351e450201232f": 22906, - "5bc5a372d4351e44f824d17f": 11681, - "5bc9b156d4351e00367fbce9": 12966, - "5bc9b355d4351e6d1509862a": 24118, - "5bc9b720d4351e450201234b": 32035, - "5bc9b9ecd4351e3bac122519": 35225, - "5bc9bc53d4351e00367fbcee": 57268, - "5bc9bdb8d4351e003562b8a1": 37848, - "5bc9be8fd4351e00334cae6e": 20912, - "5bc9c049d4351e44f824d360": 40394, - "5bc9c1e2d4351e00367fbcf0": 58073, - "5bc9c29cd4351e003562b8a3": 21911, - "5bc9c377d4351e3bac12251b": 39935, - "5bd06f5d86f77427101ad47c": 21777, - "5bd0716d86f774171822ef4b": 17044, - "5bd071d786f7747e707b93a3": 17110, - "5bd073a586f7747e6f135799": 15888, - "5bd073c986f7747f627e796c": 17733, - "5bd70322209c4d00d7167b8f": 44836, - "5be4038986f774527d3fae60": 14469, - "5bead2e00db834001c062938": 6465, - "5bed61680db834001d2c45ab": 15104, - "5bed625c0db834001c062946": 36502, - "5beec1bd0db834001e6006f3": 25000, - "5beec2820db834001b095426": 34606, - "5beec3420db834001b095429": 10408, - "5beec8b20db834001961942a": 43065, - "5beec8c20db834001d2c465c": 13754, - "5beec8ea0db834001a6f9dbf": 10987, - "5beec91a0db834001961942d": 41491, - "5beecbb80db834001d2c465e": 31600, - "5beed0f50db834001c062b12": 45533, - "5bf3e03b0db834001d2c4a9c": 36894, - "5bf3e0490db83400196199af": 21083, - "5bfd297f0db834001a669119": 44531, - "5bfd36290db834001966869a": 65411, - "5bfd36ad0db834001c38ef66": 22703, - "5bfd4cbe0db834001b73449f": 66468, - "5bfd4cd60db834001c38f095": 20298, - "5bfe7fb30db8340018089fed": 8567, - "5bfe86a20db834001d23e8f7": 16319, - "5bfe86df0db834001b734685": 14212, - "5bfe89510db834001808a127": 40118, - "5bfea6e90db834001b7347f3": 49101, - "5bfea7ad0db834001c38f1ee": 14413, - "5bfeaa0f0db834001b734927": 41177, - "5bfeb32b0db834001a6694d9": 32806, - "5bfebc320db8340019668d79": 51650, - "5bfebc530db834001d23eb65": 41235, - "5bfebc5e0db834001a6694e5": 29005, - "5bffcf7a0db83400232fea79": 7380, - "5bffd7ed0db834001d23ebf9": 12635, - "5bffdc370db834001d23eca8": 28417, - "5bffe7c50db834001d23ece1": 18396, - "5bffec120db834001c38f5fa": 15364, - "5c0000c00db834001a6697fc": 266538, - "5c00076d0db834001d23ee1f": 114306, - "5c0009510db834001966907f": 86625, - "5c0102aa0db834001b734ba1": 39106, - "5c0102b20db834001d23eebc": 20334, - "5c010a700db834001d23ef5d": 12715, - "5c010e350db83400232feec7": 58848, - "5c0111ab0db834001966914d": 19954, - "5c0125fc0db834001a669aa3": 6764, - "5c0126f40db834002a125382": 3947834, - "5c012ffc0db834001d23f03f": 28791, - "5c0505e00db834001b735073": 15844, - "5c0517910db83400232ffee5": 45032, - "5c05293e0db83400232fff80": 27041, - "5c052a900db834001a66acbd": 20475, - "5c052e6986f7746b207bc3c9": 168594, - "5c052f6886f7746b1e3db148": 93164, - "5c052fb986f7746b2101e909": 44182, - "5c05300686f7746dce784e5d": 99425, - "5c05308086f7746b2101e90b": 91211, - "5c0530ee86f774697952d952": 826853, - "5c05413a0db834001c390617": 21274, - "5c0548ae0db834001966a3c2": 42873, - "5c064c400db834001d23f468": 20780, - "5c06595c0db834001a66af6c": 43058, - "5c066e3a0db834001b7353f0": 47349, - "5c066ef40db834001966a595": 47862, - "5c0672ed0db834001b7353f3": 11097, - "5c0673fb0db8340023300271": 4069, - "5c06779c86f77426e00dd782": 15048, - "5c06782b86f77426df5407d2": 15209, - "5c0684e50db834002a12585a": 6308, - "5c0695860db834001b735461": 38816, - "5c0696830db834001d23f5da": 35272, - "5c06c6a80db834001b735491": 24570, - "5c079ec50db834001966a706": 12333, - "5c079ed60db834001a66b372": 10333, - "5c07a8770db8340023300450": 29996, - "5c07c5ed0db834001b73571c": 30834, - "5c07c60e0db834002330051f": 41814, - "5c07dd120db834001c39092d": 54353, - "5c07df7f0db834001b73588a": 14318, - "5c08f87c0db8340019124324": 14793, - "5c093e3486f77430cb02e593": 206424, - "5c0a2cec0db834001b7ce47d": 46955, - "5c0d2727d174af02a012cf58": 30418, - "5c0d32fcd174af02a1659c75": 9559, - "5c0d56a986f774449d5de529": 805, - "5c0d591486f7744c505b416f": 426, - "5c0d5ae286f7741e46554302": 170, - "5c0e2f26d174af02a9625114": 21405, - "5c0e2f5cd174af02a012cfc9": 21581, - "5c0e2f94d174af029f650d56": 25494, - "5c0e2ff6d174af02a1659d4a": 6960, - "5c0e3eb886f7742015526062": 65742, - "5c0e446786f7742013381639": 72292, - "5c0e51be86f774598e797894": 82777, - "5c0e530286f7747fa1419862": 30617, - "5c0e531286f7747fa54205c2": 40900, - "5c0e531d86f7747fa23f4d42": 61756, - "5c0e533786f7747fa23f4d47": 30216, - "5c0e534186f7747fa1419867": 107655, - "5c0e53c886f7747fa54205c7": 71693, - "5c0e57ba86f7747fa141986d": 98753, - "5c0e5bab86f77461f55ed1f3": 53082, - "5c0e5edb86f77461f55ed1f7": 39922, - "5c0e655586f774045612eeb2": 233694, - "5c0e66e2d174af02a96252f4": 197892, - "5c0e6a1586f77404597b4965": 29508, - "5c0e722886f7740458316a57": 184483, - "5c0e842486f77443a74d2976": 105119, - "5c0e9f2c86f77432297fe0a3": 45390, - "5c0fa877d174af02a012e1cf": 30077, - "5c0faeddd174af02a962601f": 12389, - "5c0faf68d174af02a96260b8": 8492, - "5c0fafb6d174af02a96260ba": 8419, - "5c10c8fd86f7743d7d706df3": 20059, - "5c11046cd174af02a012e42b": 15362, - "5c11279ad174af029d64592b": 2425, - "5c1127bdd174af44217ab8b9": 25569, - "5c1127d0d174af29be75cf68": 10008, - "5c12613b86f7743bbe2c3f76": 276707, - "5c12620d86f7743f8b198b72": 83926, - "5c1265fc86f7743f896a21c2": 47485, - "5c1267ee86f77416ec610f72": 69346, - "5c12688486f77426843c7d32": 32129, - "5c127c4486f7745625356c13": 178389, - "5c13cd2486f774072c757944": 11103, - "5c13cef886f774072e618e82": 8608, - "5c165d832e2216398b5a7e36": 40218, - "5c17664f2e2216398b5a7e3c": 44765, - "5c1780312e221602b66cc189": 20120, - "5c17804b2e2216152006c02f": 33731, - "5c178a942e22164bef5ceca3": 191622, - "5c1793902e221602b21d3de2": 34610, - "5c18b90d2e2216152142466b": 23474, - "5c18b9192e2216398b5a8104": 21107, - "5c1a1cc52e221602b3136e3d": 15528, - "5c1bc4812e22164bef5cfde7": 25296, - "5c1bc5612e221602b5429350": 45256, - "5c1bc5af2e221602b412949b": 77468, - "5c1bc5fb2e221602b1779b32": 17983, - "5c1bc7432e221602b412949d": 19587, - "5c1bc7752e221602b1779b34": 11654, - "5c1cd46f2e22164bef5cfedb": 127988, - "5c1cdd302e221602b3137250": 127723, - "5c1cdd512e22161b267d91ae": 20907, - "5c1d0c5f86f7744bb2683cf0": 24432953, - "5c1d0d6d86f7744bb2683e1f": 4426119, - "5c1d0dc586f7744baf2e7b79": 40486065, - "5c1d0efb86f7744baf2e7b7b": 50404158, - "5c1d0f4986f7744bb01837fa": 4146797, - "5c1e2a1e86f77431ea0ea84c": 48922, - "5c1e2d1f86f77431e9280bee": 71668, - "5c1e495a86f7743109743dfb": 7415079, - "5c1f79a086f7746ed066fb8f": 106875, - "5c3df7d588a4501f290594e5": 115, - "5c46fbd72e2216398b5a8c9c": 93721, - "5c471b5d2e221602b21d4e14": 36689, - "5c471be12e221602b66cd9ac": 33929, - "5c471bfc2e221602b21d4e17": 69999, - "5c471c2d2e22164bef5d077f": 23172, - "5c471c442e221602b542a6f8": 17103, - "5c471c6c2e221602b66cd9ae": 17461, - "5c471cb32e221602b177afaa": 179552, - "5c488a752e221602b412af63": 57408, - "5c48a14f2e2216152006edd7": 108568, - "5c48a2852e221602b21d5923": 401296, - "5c48a2a42e221602b66d1e07": 11914, - "5c48a2c22e221602b313fb6c": 65785, - "5c4ee3d62e2216152006f302": 16781, - "5c4eec9b2e2216398b5aaba2": 43009, - "5c4eecc32e221602b412b440": 37646, - "5c501a4d2e221602b412b540": 41071, - "5c5039be2e221602b177c9ff": 68374, - "5c503ac82e221602b21d6e9a": 6179, - "5c503ad32e2216398b5aada2": 23638, - "5c503af12e221602b177ca02": 51025, - "5c5952732e2216398b5abda2": 19011, - "5c59529a2e221602b177d160": 29319, - "5c5970672e221602b21d7855": 26124, - "5c5db5c62e22160012542255": 100174, - "5c5db5f22e2216000e5e47e8": 15005, - "5c5db5fc2e2216000f1b2842": 10281, - "5c5db6302e2216000e5e47f0": 12009, - "5c5db63a2e2216000f1b284a": 32410, - "5c5db6552e2216001026119d": 8763, - "5c5db6652e221600113fba51": 25547, - "5c5db6742e2216000f1b2852": 36309, - "5c5db6b32e221600102611a0": 24214, - "5c5db6ee2e221600113fba54": 18206, - "5c5db6f82e2216003a0fe914": 30601, - "5c6161fb2e221600113fbde5": 16407, - "5c6162682e22160010261a2b": 16051, - "5c61627a2e22160012542c55": 12187, - "5c6165902e22160010261b28": 28312, - "5c617a5f2e2216000f1e81b3": 25041, - "5c61a40d2e2216001403158d": 18348, - "5c6592372e221600133e47d7": 53860, - "5c6beec32e221601da3578f2": 20804, - "5c6bf4aa2e2216001219b0ae": 35215, - "5c6c2c9c2e2216000f2002e4": 14585, - "5c6d10e82e221601da357b07": 21397, - "5c6d10fa2e221600106f3f23": 24216, - "5c6d11072e2216000e69d2e4": 13237, - "5c6d11152e2216000f2003e7": 48186, - "5c6d42cb2e2216000e69d7d1": 20283, - "5c6d450c2e221600114c997d": 20380, - "5c6d46132e221601da357d56": 24436, - "5c6d5d8b2e221644fc630b39": 28686, - "5c6d710d2e22165df16b81e7": 22686, - "5c6d7b3d2e221600114c9b7d": 15472, - "5c6d85e02e22165df16b81f4": 23222, - "5c78f2492e221600114c9f04": 155815, - "5c78f2612e221600114c9f0d": 57659, - "5c78f26f2e221601da3581d1": 26650, - "5c78f2792e221600106f4683": 16491, - "5c78f2882e22165df16b832e": 12870, - "5c791e872e2216001219c40a": 25464, - "5c793fb92e221644f31bfb64": 120269, - "5c793fc42e221600114ca25d": 134261, - "5c793fde2e221601da358614": 47821, - "5c7951452e221644f31bfd5c": 16401, - "5c7954d52e221600106f4cc7": 42469, - "5c7955c22e221644f31bfd5e": 38118, - "5c7d55de2e221644f31bff68": 17955, - "5c7d55f52e221644f31bff6a": 10576, - "5c7d560b2e22160bc12c6139": 8967, - "5c7e5f112e221600106f4ede": 19930, - "5c7e8fab2e22165df16b889b": 22651, - "5c7fb51d2e2216001219ce11": 26823, - "5c7fc87d2e221644f31c0298": 16500, - "5c82342f2e221644f31c060e": 19608, - "5c82343a2e221644f31c0611": 18668, - "5c86592b2e2216000e69e77c": 28595, - "5c878e9d2e2216000f201903": 47745, - "5c878ebb2e2216001219d48a": 17805, - "5c87a07c2e2216001219d4a2": 55260, - "5c87ca002e221600114cb150": 13731, - "5c88f24b2e22160bc12c69a6": 31010, - "5c90c3622e221601da359851": 25247, - "5c920e902e221644f31c3c99": 36496, - "5c94bbff86f7747ee735c08f": 191366, - "5c99f3592e221644fc633070": 11610, - "5c9a07572e221644f31c4b32": 37527, - "5c9a1c3a2e2216000e69fb6a": 25634, - "5c9a1c422e221600106f69f0": 20435, - "5c9a25172e2216000f20314e": 26084, - "5c9a26332e2216001219ea70": 27326, - "5ca20abf86f77418567a43f2": 25579, - "5ca20d5986f774331e7c9602": 25070, - "5cadc190ae921500103bb3b6": 18292, - "5cadc2e0ae9215051e1c21e7": 11855, - "5cadd954ae921500103bb3c2": 6042, - "5cadf6ddae9215051e1c23b2": 3159, - "5cadf6e5ae921500113bb973": 613, - "5cadfbf7ae92152ac412eeef": 66357, - "5caf1041ae92157c28402e3f": 32089, - "5caf1109ae9215753c44119f": 44655, - "5caf1691ae92152ac412efb9": 37287, - "5caf17c9ae92150b30006be1": 12547, - "5caf187cae92157c28402e43": 23033, - "5cbda392ae92155f3c17c39f": 32532, - "5cbda9f4ae9215000e5b9bfc": 9530, - "5cbdaf89ae9215000e5b9c94": 7821, - "5cbdc23eae9215001136a407": 35285, - "5cc6ea85e4a949000e1ea3c3": 42612, - "5cc70093e4a949033c734312": 24797, - "5cc700cae4a949035e43ba72": 19592, - "5cc700d4e4a949000f0f0f28": 32573, - "5cc700ede4a949033c734315": 29402, - "5cc70102e4a949035e43ba74": 30457, - "5cc7012ae4a949001252b43e": 40038, - "5cc70146e4a949000d73bf6b": 14425, - "5cc701aae4a949000e1ea45c": 168222, - "5cc701d7e4a94900100ac4e7": 225000, - "5cc80f79e4a949033c7343b2": 879, - "5cc80f8fe4a949033b0224a2": 957, - "5cc82d76e24e8d00134b4b83": 62886, - "5cc86832d7f00c000d3a6e6c": 640, - "5cc86840d7f00c002412c56c": 822, - "5cc9a96cd7f00c011c04e04a": 22256, - "5cc9ad73d7f00c000e2579d4": 22422, - "5cc9b815d7f00c000e2579d6": 9562, - "5cc9bcaed7f00c011c04e179": 19629, - "5cc9c20cd7f00c001336c65d": 24987, - "5cda9bcfd7f00c0c0b53e900": 92817, - "5cdaa99dd7f00c002412d0b2": 28523, - "5cdd7685d7f00c000f260ed2": 13101, - "5cdd7693d7f00c0010373aa5": 15805, - "5cde739cd7f00c0010373bd3": 29757, - "5cde7afdd7f00c000d36b89d": 42823, - "5cde7b43d7f00c000d36b93e": 92823, - "5cdeac22d7f00c000f26168f": 24404, - "5cdeac42d7f00c000d36ba73": 13840, - "5cdeac5cd7f00c000f261694": 23279, - "5cdeaca5d7f00c00b61c4b70": 11431, - "5ce69cbad7f00c00b61c5098": 19634, - "5cebec00d7f00c065c53522a": 43465, - "5cebec38d7f00c00110a652a": 15023, - "5cf12a15d7f00c05464b293f": 42768, - "5cf13123d7f00c1085616a50": 26530, - "5cf4e3f3d7f00c06595bc7f0": 40072, - "5cf4fb76d7f00c065703d3ac": 11501, - "5cf50850d7f00c056e24104c": 14263, - "5cf508bfd7f00c056e24104e": 10826, - "5cf50fc5d7f00c056c53f83c": 34511, - "5cf518cfd7f00c065b422214": 28651, - "5cf54404d7f00c108840b2ef": 17039, - "5cf638cbd7f00c06595bc936": 16371, - "5cf639aad7f00c065703d455": 10582, - "5cf656f2d7f00c06585fb6eb": 54378, - "5cf67a1bd7f00c06585fb6f3": 10988, - "5cf67cadd7f00c065a5abab7": 24617, - "5cf6935bd7f00c06585fb791": 23878, - "5cf6937cd7f00c056c53fb39": 42372, - "5cf78496d7f00c065703d6ca": 34902, - "5cf78720d7f00c06595bc93e": 18567, - "5cf79389d7f00c10941a0c4d": 5696, - "5cf79599d7f00c10875d9212": 18220, - "5cf8f3b0d7f00c00217872ef": 58030, - "5cff9e5ed7ad1a09407397d4": 26460, - "5cff9e84d7ad1a049e54ed55": 43227, - "5d00e0cbd7ad1a6c6566a42d": 15979, - "5d00ec68d7ad1a04a067e5be": 34693, - "5d00ede1d7ad1a0940739a76": 18915, - "5d00ef6dd7ad1a0940739b16": 30739, - "5d00f63bd7ad1a59283b1c1e": 17121, - "5d010d1cd7ad1a59283b1ce7": 24654, - "5d0236dad7ad1a0940739d29": 43598, - "5d023784d7ad1a049d4aa7f2": 15683, - "5d024f5cd7ad1a04a067e91a": 15814, - "5d025cc1d7ad1a53845279ef": 75304, - "5d02676dd7ad1a049e54f6dc": 17544, - "5d02677ad7ad1a04a15c0f95": 11926, - "5d026791d7ad1a04a067ea63": 36169, - "5d02778e86f774203e7dedbe": 32388, - "5d02797c86f774203f38e30a": 52811, - "5d0375ff86f774186372f685": 31058, - "5d0376a486f7747d8050965c": 36575, - "5d03775b86f774203e7e0c4b": 151602, - "5d0377ce86f774186372f689": 59536, - "5d03784a86f774203e7e0c4d": 39257, - "5d0378d486f77420421a5ff4": 75417, - "5d03794386f77420415576f5": 213171, - "5d0379a886f77420407aa271": 63309, - "5d08d21286f774736e7c94c3": 216979, - "5d0a29ead7ad1a0026013f27": 23791, - "5d0a29fed7ad1a002769ad08": 27218, - "5d0a3a58d7ad1a669c15ca14": 16141, - "5d0a3e8cd7ad1a6f6a3d35bd": 16831, - "5d10b49bd7ad1a1a560708b0": 11342, - "5d120a10d7ad1a4e1026ba85": 20490, - "5d120a28d7ad1a1c8962e295": 19031, - "5d122e7bd7ad1a07102d6d7f": 23912, - "5d123102d7ad1a004e475fe5": 22449, - "5d133067d7ad1a33013f95b4": 17454, - "5d1340b3d7ad1a0b52682ed7": 78034, - "5d1340bdd7ad1a0e8d245aab": 53335, - "5d1340cad7ad1a0b0b249869": 30808, - "5d135e83d7ad1a21b83f42d8": 56046, - "5d135ecbd7ad1a21c176542e": 36386, - "5d15ce51d7ad1a1eff619092": 9687, - "5d15cf3bd7ad1a67e71518b2": 102651, - "5d19cd96d7ad1a4a992c9f52": 19674, - "5d1b198cd7ad1a604869ad72": 12307, - "5d1b2f3f86f774252167a52c": 184500, - "5d1b2fa286f77425227d1674": 72260, - "5d1b2ffd86f77425243e8d17": 23423, - "5d1b304286f774253763a528": 30544, - "5d1b309586f77425227d1676": 23324, - "5d1b313086f77425227d1678": 16358, - "5d1b317c86f7742523398392": 41236, - "5d1b31ce86f7742523398394": 17320, - "5d1b327086f7742525194449": 50976, - "5d1b32c186f774252167a530": 28786, - "5d1b33a686f7742523398398": 170118, - "5d1b36a186f7742523398433": 206894, - "5d1b371186f774253763a656": 92787, - "5d1b376e86f774252519444e": 280816, - "5d1b385e86f774252167b98a": 113503, - "5d1b392c86f77425243e98fe": 18563, - "5d1b39a386f774252339976f": 16895, - "5d1b3a5d86f774252167ba22": 15317, - "5d1b3f2d86f774253763b735": 22599, - "5d1c702ad7ad1a632267f429": 26391, - "5d1c774f86f7746d6620f8db": 15148, - "5d1c819a86f774771b0acd6c": 15977, - "5d1f819086f7744b355c219b": 26346, - "5d235a5986f77443f6329bc6": 45921, - "5d235b4d86f7742e017bc88a": 33287, - "5d235bb686f77443f4331278": 5703278, - "5d2369418abbc306c62e0c80": 26783, - "5d25a4a98abbc30b917421a4": 23496, - "5d25a6538abbc306c62e630d": 25596, - "5d25a6a48abbc306c62e6310": 33109, - "5d25a7b88abbc3054f3e60bc": 39411, - "5d25af8f8abbc3055079fec5": 38782, - "5d25d0ac8abbc3054f3e61f7": 36945, - "5d2c76ed48f03532f2136169": 15287, - "5d2c770c48f0354b4a07c100": 76186, - "5d2c772c48f0355d95672c25": 20704, - "5d2c829448f0353a5c7d6674": 12822, - "5d2da1e948f035477b1ce2ba": 18567, - "5d2dc3e548f035404a1a4798": 39752, - "5d2f0d8048f0356c925bc3b0": 16068, - "5d2f213448f0355009199284": 17293, - "5d3eb3b0a4b93615055e84d2": 25577, - "5d3eb4aba4b93650d64e497d": 37097, - "5d3eb536a4b9363b1f22f8e2": 59532, - "5d3eb59ea4b9361c284bb4b2": 81551, - "5d3eb5b6a4b9361eab311902": 33084, - "5d3eb5eca4b9363b1f22f8e4": 21903, - "5d3ef698a4b9361182109872": 29480, - "5d403f9186f7743cac3f229b": 50309, - "5d40407c86f774318526545a": 32491, - "5d40412b86f7743cb332ac3a": 28798, - "5d40419286f774318526545f": 20595, - "5d4041f086f7743cac3f22a7": 12326, - "5d40425986f7743185265461": 12446, - "5d4042a986f7743185265463": 21667, - "5d43021ca4b9362eab4b5e25": 126190, - "5d4405aaa4b9361e6a4e6bd3": 21381, - "5d4405f0a4b9361e6a4e6bd9": 25221, - "5d440625a4b9361eec4ae6c5": 15809, - "5d44064fa4b9361e4f6eb8b5": 50281, - "5d44069ca4b9361ebd26fc37": 77412, - "5d4406a8a4b9361e4f6eb8b7": 66595, - "5d440b93a4b9364276578d4b": 71599, - "5d440b9fa4b93601354d480c": 93792, - "5d44334ba4b9362b346d1948": 40284, - "5d443f8fa4b93678dd4a01aa": 20074, - "5d4aaa54a4b9365392071170": 24280, - "5d4aaa73a4b9365392071175": 25850, - "5d4aab30a4b9365435358c55": 49975, - "5d5d646386f7742797261fd9": 100285, - "5d5d85c586f774279a21cbdb": 34188, - "5d5d8ca986f7742798716522": 12332, - "5d5d940f86f7742797262046": 88832, - "5d5e7d28a4b936645d161203": 54593, - "5d5e9c74a4b9364855191c40": 59258, - "5d5fca1ea4b93635fd598c07": 11139, - "5d63d33b86f7746ea9275524": 10283, - "5d67abc1a4b93614ec50137f": 21110, - "5d6d2e22a4b9361bd5780d05": 10778, - "5d6d2ef3a4b93618084f58bd": 11994, - "5d6d3716a4b9361bc8618872": 102316, - "5d6d3829a4b9361bc8618943": 56155, - "5d6d3943a4b9360dbc46d0cc": 15734, - "5d6d3be5a4b9361bc73bc763": 27805, - "5d6e6772a4b936088465b17c": 210, - "5d6e67fba4b9361bc73bc779": 335, - "5d6e6806a4b936088465b17e": 354, - "5d6e6869a4b9361c140bcfde": 149, - "5d6e6891a4b9361bd473feea": 223, - "5d6e689ca4b9361bc8618956": 238, - "5d6e68c4a4b9361b93413f79": 2990, - "5d6e68dea4b9361bcc29e659": 506, - "5d6e68e6a4b9361c140bcfe0": 448, - "5d6e6911a4b9361bd5780d52": 9032, - "5d6e695fa4b936359b35d852": 732, - "5d6e69b9a4b9361bc8618958": 44, - "5d6e6a05a4b93618084f58d0": 427, - "5d6e6a42a4b9364f07165f52": 173, - "5d6e6a53a4b9361bd473feec": 75, - "5d6e6a5fa4b93614ec501745": 457, - "5d6fc78386f77449d825f9dc": 31742, - "5d6fc87386f77449db3db94e": 26010, - "5d7b6bafa4b93652786f4c76": 24958, - "5d80c60f86f77440373c4ece": 404756, - "5d80c62a86f7744036212b3f": 326717, - "5d80c66d86f774405611c7d6": 19450, - "5d80c6c586f77440351beef1": 296704, - "5d80c6fc86f774403a401e3c": 28811, - "5d80c78786f774403a401e3e": 11691, - "5d80c88d86f77440556dbf07": 31417, - "5d80c8f586f77440373c4ed0": 25885, - "5d80c93086f7744036212b41": 21827, - "5d80c95986f77440351beef3": 29221, - "5d80ca9086f774403a401e40": 30995, - "5d80cab086f77440535be201": 43133, - "5d80cb3886f77440556dbf09": 24037, - "5d80cb5686f77440545d1286": 25692, - "5d80cb8786f774405611c7d9": 12039, - "5d80cbd886f77470855c26c2": 27498, - "5d80ccac86f77470841ff452": 199404, - "5d80ccdd86f77474f7575e02": 98073, - "5d80cd1a86f77402aa362f42": 65318, - "5d8e0db586f7744450412a42": 29885, - "5d8e0e0e86f774321140eb56": 92461, - "5d8e15b686f774445103b190": 28199, - "5d8e3ecc86f774414c78d05e": 21312, - "5d947d3886f774447b415893": 148128, - "5d947d4e86f774447b415895": 116850, - "5d95d6be86f77424444eb3a7": 24155, - "5d95d6fa86f77424484aa5e9": 22632, - "5d96141523f0ea1b7f2aacab": 12901, - "5d9f1fa686f774726974a992": 70323, - "5da46e3886f774653b7a83fe": 26506, - "5da5cdcd86f774529238fb9b": 16856, - "5da743f586f7744014504f72": 60021, - "5dcbd6b46ec07c0c4347a564": 89691, - "5dcbd6dddbd3d91b3e5468de": 26919, - "5dcbe9431e1f4616d354987e": 45740, - "5dcbe965e4ed22586443a79d": 12637, - "5de652c31b7e3716273428be": 27242, - "5de6558e9f98ac2bc65950fc": 21643, - "5de7bd7bfd6b4e6e2276dc25": 21550, - "5de8e67c4a9f347bc92edbd7": 127748, - "5de8e8dafd6b4e6e2276dc32": 6003, - "5de8ea8ffd6b4e6e2276dc35": 20229, - "5de8eaadbbaf010b10528a6d": 32167, - "5de8eac42a78646d96665d91": 29867, - "5de8f2d5b74cd90030650c72": 30086, - "5de8fb539f98ac2bc659513a": 33675, - "5de8fbad2fbe23140d3ee9c4": 38481, - "5de8fc0b205ddc616a6bc51b": 11339, - "5de910da8b6c4240ba2651b5": 24406, - "5de922d4b11454561e39239f": 29900, - "5df24cf80dee1b22f862e9bc": 59442, - "5df256570dee1b22f862e9c4": 86875, - "5df25b6c0b92095fd441e4cf": 51063, - "5df25d3bfd6b4e6e2276dc9a": 64861, - "5df35ddddfc58d14537c2036": 78810, - "5df35e7f2a78646d96665dd4": 8339, - "5df35e970b92095fd441e4d2": 79898, - "5df35ea9c41b2312ea3334d8": 44167, - "5df35eb2b11454561e3923e2": 13029, - "5df38a5fb74cd90030650cb6": 111789, - "5df8a2ca86f7740bfe6df777": 31162, - "5df8a42886f77412640e2e75": 46125, - "5df8a58286f77412631087ed": 12666, - "5df8e085bb49d91fb446d6a8": 14914, - "5df8e4080b92095fd441e594": 98045, - "5df8f535bb49d91fb446d6b0": 14235, - "5df8f541c41b2312ea3335e3": 29255, - "5df916dfbb49d91fb446d6b9": 21713, - "5df917564a9f347bc92edca3": 20669, - "5dfa397fb11454561e39246c": 38524, - "5dfa3cd1b33c0951220c079b": 10064, - "5dfa3d2b0dee1b22f862eade": 67991, - "5dfa3d45dfc58d14537c20b0": 10182, - "5dfa3d7ac41b2312ea33362a": 20411, - "5dfa3d950dee1b22f862eae0": 25049, - "5dfcd0e547101c39625f66f9": 23331, - "5dfce88fe9dc277128008b2e": 81890, - "5dfe14f30b92095fd441edaf": 12498, - "5dfe6104585a0c3e995c7b82": 33430, - "5dff772da3651922b360bf91": 16626, - "5dff77c759400025ea5150cf": 12114, - "5dff8db859400025ea5150d4": 72762, - "5e00903ae9dc277128008b87": 27956, - "5e00cfa786f77469dc6e5685": 104192, - "5e01e9e273d8eb11426f5bc3": 73566, - "5e01ea19e9dc277128008c0b": 54323, - "5e01f31d86f77465cf261343": 95855, - "5e023cf8186a883be655e54f": 400, - "5e023e53d4353e3302577c4c": 1747, - "5e023e6e34d52a55c3304f71": 507, - "5e023e88277cce2b522ff2b1": 4366, - "5e208b9842457a4a7a33d074": 29451, - "5e217ba4c1434648c13568cd": 22639, - "5e2192a498a36665e8337386": 30320, - "5e21a3c67e40bd02257a008a": 43352, - "5e21ca18e4d47f0da15e77dd": 17875, - "5e2aedd986f7746d404f3aa4": 49843, - "5e2aee0a86f774755a234b62": 54546, - "5e2aef7986f7746d3f3c33f5": 18678, - "5e2af00086f7746d3f3c33f7": 11010, - "5e2af02c86f7746d420957d4": 25026, - "5e2af22086f7746d3f3c33fa": 12343, - "5e2af29386f7746d4159f077": 22273, - "5e2af2bc86f7746d3f3c33fc": 11887, - "5e2af37686f774755a234b65": 16984, - "5e2af41e86f774755a234b67": 33567, - "5e2af47786f7746d404f3aaa": 18184, - "5e2af4a786f7746d3f3c3400": 29103, - "5e2af4d286f7746d4159f07a": 21958, - "5e2af51086f7746d3f3c3402": 17585, - "5e2af55f86f7746d4159f07c": 321239, - "5e32f56fcb6d5863cc5e5ee4": 24704, - "5e340dcdcb6d5863cc5e5efb": 25593, - "5e42c71586f7747f245e1343": 163036, - "5e42c81886f7742a01529f57": 70316, - "5e42c83786f7742a021fdf3c": 40137, - "5e4abc1f86f774069619fbaa": 13329, - "5e4abc6786f77406812bd572": 72010, - "5e4abfed86f77406a2713cf7": 18418, - "5e4bfc1586f774264f7582d3": 80908, - "5e4d34ca86f774264f758330": 41504, - "5e54f62086f774219b0f1937": 32993, - "5e54f6af86f7742199090bf3": 34735, - "5e54f76986f7740366043752": 26602, - "5e54f79686f7744022011103": 58866, - "5e56991336989c75ab4f03f6": 22435, - "5e5699df2161e06ac158df6f": 18518, - "5e569a0156edd02abe09f27d": 20701, - "5e569a132642e66b0b68015c": 15179, - "5e569a2e56edd02abe09f280": 16957, - "5e71f70186f77429ee09f183": 653053, - "5e71fad086f77422443d4604": 281507, - "5e81c3cbac2bb513793cdc75": 16041, + "5447a9cd4bdc2dbd208b4567": 93397, + "5448ba0b4bdc2d02308b456c": 151939, + "5448bd6b4bdc2dfc2f8b4569": 15185, + "5448be9a4bdc2dfd2f8b456a": 19922, + "5448c12b4bdc2d02308b456f": 3490, + "5448c1d04bdc2dff2f8b4569": 18221, + "5448fee04bdc2dbc018b4567": 17929, + "5448ff904bdc2d6f028b456e": 16237, + "544909bb4bdc2d6f028b4577": 17606, + "54491bb74bdc2d09088b4567": 14681, + "54491c4f4bdc2db1078b4568": 31633, + "544a378f4bdc2d30388b4567": 59192, + "544a38634bdc2d58388b4568": 10012, + "544a3a774bdc2d3a388b4567": 41969, + "544a5cde4bdc2d39388b456b": 14961, + "544fb25a4bdc2dfb738b4567": 2734, + "544fb3364bdc2d34748b456a": 14220, + "544fb37f4bdc2dee738b4567": 8586, + "544fb3f34bdc2d03748b456a": 16896, + "544fb45d4bdc2dee738b4568": 34798, + "544fb5454bdc2df8738b456a": 23095, + "544fb62a4bdc2dfb738b4568": 14998, + "544fb6cc4bdc2d34748b456e": 13508, + "54527a984bdc2d4e668b4567": 876, + "545cdae64bdc2d39198b4568": 115138, + "557ff21e4bdc2d89578b4586": 5959, + "55801eed4bdc2d89578b4588": 64632, + "5580223e4bdc2d1c128b457f": 23823, + "558022b54bdc2dac148b458d": 35404, + "55802d5f4bdc2dac148b458e": 28778, + "55802f5d4bdc2dac148b458f": 17513, + "558032614bdc2de7118b4585": 13167, + "559ba5b34bdc2d1f1a8b4582": 11415, + "55d355e64bdc2d962f8b4569": 27376, + "55d35ee94bdc2d61338b4568": 21875, + "55d3632e4bdc2d972f8b4569": 33165, + "55d44fd14bdc2d962f8b456e": 15869, + "55d459824bdc2d892f8b4573": 15529, + "55d45d3f4bdc2d972f8b456c": 27728, + "55d45f484bdc2d972f8b456d": 65344, + "55d480c04bdc2d1d4e8b456a": 7293, + "55d481904bdc2d8c2f8b456a": 23351, + "55d482194bdc2d1d4e8b456b": 43971, + "55d4837c4bdc2d1d4e8b456c": 4370, + "55d484b44bdc2d1d4e8b456d": 15261, + "55d485804bdc2d8c2f8b456b": 85761, + "55d485be4bdc2d962f8b456f": 52274, + "55d4887d4bdc2d962f8b4570": 25173, + "55d48a634bdc2d8b2f8b456a": 82279, + "55d48ebc4bdc2d8c2f8b456c": 15646, + "55d4ae6c4bdc2d8b2f8b456e": 9188, + "55d4b9964bdc2d1d4e8b456e": 7443, + "55d614004bdc2d86028b4568": 27656, + "55d6190f4bdc2d87028b4567": 33984, + "55f84c3c4bdc2d5f408b4576": 30876, + "560837824bdc2d57468b4568": 34460, + "560838c94bdc2d77798b4569": 24699, + "56083a334bdc2dc8488b4571": 25827, + "56083cba4bdc2de22e8b456f": 16613, + "56083eab4bdc2d26448b456a": 18070, + "560d5e524bdc2d25448b4571": 394, + "560d657b4bdc2da74d8b4572": 20211, + "560e620e4bdc2d724b8b456b": 18369, + "5644bd2b4bdc2d3b4c8b4572": 55091, + "5645bc214bdc2d363b8b4571": 28071, + "5645bcc04bdc2d363b8b4572": 42157, + "5648a69d4bdc2ded0b8b457b": 49897, + "5648a7494bdc2d9d488b4583": 32257, + "5648ac824bdc2ded0b8b457d": 8817, + "5648ae314bdc2d3d1c8b457f": 14385, + "5648b4534bdc2d3d1c8b4580": 30198, + "5649a2464bdc2d91118b45a8": 39504, + "5649aa744bdc2ded0b8b457e": 19987, + "5649ab884bdc2ded0b8b457f": 15178, + "5649ae4a4bdc2d1b2b8b4588": 44398, + "5649af884bdc2d1b2b8b4589": 36545, + "5649b0544bdc2d1b2b8b458a": 10268, + "5649b1c04bdc2d16268b457c": 9998, + "5649b2314bdc2d79388b4576": 15230, + "5649be884bdc2d79388b4577": 13900, + "5649d9a14bdc2d79388b4580": 14995, + "5649ed104bdc2d3d1c8b458b": 30400, + "564ca99c4bdc2d16268b4589": 4819, + "564ca9df4bdc2d35148b4569": 26114, + "564caa3d4bdc2d17108b458e": 40296, + "5656d7c34bdc2d9d198b4587": 589, + "5656eb674bdc2d35148b457c": 43980, + "567143bf4bdc2d1a0f8b4567": 361476, + "5672c92d4bdc2d180f8b4567": 19305, + "5672cb124bdc2d1a0f8b4568": 11616, + "5672cb304bdc2dc2088b456a": 11962, + "5672cb724bdc2dc2088b456b": 44225, + "5673de654bdc2d180f8b456d": 17771, + "56742c284bdc2d98058b456d": 10340, + "56742c2e4bdc2d95058b456d": 12429, + "56742c324bdc2d150f8b456d": 13326, + "56d59856d2720bd8418b456a": 19372, + "56d59948d2720bb7418b4582": 8462, + "56d59d3ad2720bdb418b4577": 743, + "56dee2bdd2720bc8328b4567": 46992, + "56deec93d2720bec348b4568": 32672, + "56deed6ed2720b4c698b4583": 174842, + "56deeefcd2720bc8328b4568": 84832, + "56def37dd2720bec348b456a": 18739, + "56dfef82d2720bbd668b4567": 1104, + "56dff0bed2720bb0668b4567": 77, + "56dff2ced2720bb4668b4567": 424, + "56dff338d2720bbd668b4569": 143, + "56dff3afd2720bba668b4567": 362, + "56dff4a2d2720bbd668b456a": 79, + "56dff4ecd2720b5f5a8b4568": 105, + "56e0598dd2720bb5668b45a6": 14829, + "56e05b06d2720bb2668b4586": 9760, + "56e335e4d2720b6c058b456d": 22980, + "56e33634d2720bd8058b456b": 25810, + "56e33680d2720be2748b4576": 7228, + "56ea6fafd2720b844b8b4593": 11606, + "56ea70acd2720b844b8b4594": 36209, + "56ea7165d2720b6e518b4583": 17529, + "56ea7293d2720b8d4b8b45ba": 5642, + "56ea8180d2720bf2698b456a": 18939, + "56ea8222d2720b69698b4567": 14922, + "56ea8d2fd2720b7c698b4570": 21366, + "56eabcd4d2720b66698b4574": 26743, + "56eabf3bd2720b75698b4569": 35644, + "570fd6c2d2720bc6458b457f": 25356, + "570fd721d2720bc5458b4596": 15878, + "570fd79bd2720bc7458b4583": 16371, + "5710c24ad2720bc3458b45a3": 19659, + "571659bb2459771fb2755a12": 10602, + "571a12c42459771f627b58a0": 10769, + "571a279b24597720b4066566": 10176, + "571a28e524597720b4066567": 10097, + "571a29dc2459771fb2755a6a": 24051, + "57235b6f24597759bf5a30f1": 64526, + "572b7adb24597762ae139821": 35575, + "572b7f1624597762ae139822": 7337, + "572b7fa124597762b472f9d2": 12582, + "572b7fa524597762b747ce82": 12900, + "5733279d245977289b77ec24": 46431, + "573474f924597738002c6174": 10086, + "5734758f24597738025ee253": 42031, + "573475fb24597737fb1379e1": 8847, + "573476d324597737da2adc13": 21395, + "573476f124597737e04bf328": 8166, + "5734770f24597738025ee254": 20808, + "5734773724597737fd047c14": 15914, + "5734779624597737e04bf329": 16401, + "573477e124597737dd42e191": 9224, + "5734781f24597737e04bf32a": 21268, + "573478bc24597738002c6175": 14873, + "5734795124597738002c6176": 19008, + "57347b8b24597737dd42e192": 17789, + "57347baf24597738002c6178": 10912, + "57347c1124597737fb1379e3": 23125, + "57347c2e24597744902c94a1": 49133, + "57347c5b245977448d35f6e1": 23276, + "57347c77245977448d35f6e2": 22523, + "57347c93245977448d35f6e3": 31719, + "57347ca924597744596b4e71": 255800, + "57347cd0245977445a2d6ff1": 17198, + "57347d3d245977448f7b7f61": 22470, + "57347d5f245977448b40fa81": 20117, + "57347d692459774491567cf1": 18757, + "57347d7224597744596b4e72": 15214, + "57347d8724597744596b4e76": 20448, + "57347d90245977448f7b7f65": 25657, + "57347d9c245977448b40fa85": 19465, + "57347da92459774491567cf5": 24680, + "573719762459775a626ccbc1": 130, + "573719df2459775a626ccbc2": 562, + "57371aab2459775a77142f22": 192, + "57371b192459775a9f58a5e0": 104, + "57371e4124597760ff7b25f1": 106, + "57371f2b24597761224311f1": 152, + "57371f8d24597761006c6a81": 86, + "5737207f24597760ff7b25f2": 279, + "573720e02459776143012541": 378, + "57372140245977611f70ee91": 673, + "5737218f245977612125ba51": 332, + "573722e82459776104581c21": 4562, + "5737250c2459776125652acc": 15234, + "573726d824597765d96be361": 12210, + "5737273924597765dd374461": 1845, + "573727c624597765cc785b5b": 170706, + "573728cc24597765cc785b5d": 9371, + "5737292724597765e5728562": 111731, + "57372ac324597767001bc261": 30748, + "57372d4c245977685a3da2a1": 50598, + "57372db0245977685d4159b2": 27537, + "57372deb245977685d4159b3": 19788, + "57372e4a24597768553071c2": 21724, + "57372e73245977685d4159b4": 24501, + "57372ebf2459776862260582": 8847, + "57372fc52459776998772ca1": 7261, + "57486e672459770abd687134": 27017, + "574d967124597745970e7c94": 22782, + "574dad8024597745964bf05c": 167827, + "574eb85c245977648157eec3": 36688, + "57505f6224597709a92585a9": 30288, + "575062b524597720a31c09a1": 13950, + "57513f07245977207e26a311": 13829, + "57513f9324597720a7128161": 15287, + "57513fcc24597720a31c09a6": 16723, + "5751435d24597720a27126d1": 17570, + "57514643245977207f2c2d09": 23020, + "575146b724597720a27126d5": 26867, + "5751487e245977207e26a315": 11585, + "5751496424597720a27126da": 15997, + "5751a25924597722c463c472": 6899, + "5751a89d24597722aa0e8db0": 85675, + "5755356824597772cb798962": 6654, + "5755383e24597772cb798966": 14256, + "576165642459773c7a400233": 49445, + "57616a9e2459773c7a400234": 5052, + "57616ca52459773c69055192": 10346, + "576a581d2459771e7b1bc4f1": 15441, + "576a5ed62459771e9c2096cb": 8171, + "576a63cd2459771e796e0e11": 23819, + "576a7c512459771e796e0e17": 10236, + "576fd4ec2459777f0b518431": 16482, + "577d128124597739d65d0e56": 21167, + "577d141e24597739c5255e01": 21670, + "577e1c9d2459773cd707c525": 23836, + "5780cda02459777b272ede61": 24549, + "5780cf692459777de4559321": 20120, + "5780cf722459777a5108b9a1": 106191, + "5780cf7f2459777de4559322": 1209144, + "5780cf942459777df90dcb72": 17710, + "5780cf9e2459777df90dcb73": 26007, + "5780cfa52459777dfb276eb1": 20849, + "5780d0532459777a5108b9a2": 42898, + "5780d0652459777df90dcb74": 33360, + "5780d07a2459777de4559324": 32061, + "57838ad32459774a17445cd2": 96699, + "57838c962459774a1651ec63": 37434, + "57838f0b2459774a256959b2": 8149, + "57838f9f2459774a150289a0": 29105, + "578395402459774a256959b5": 102956, + "578395e82459774a0e553c7b": 17339, + "5783c43d2459774bbe137486": 11732, + "579204f224597773d619e051": 79015, + "5798a2832459774b53341029": 35202, + "57a0dfb82459774d3078b56c": 815, + "57a3459f245977764a01f703": 16424, + "57a349b2245977762b199ec7": 7352, + "57ac965c24597706be5f975c": 55833, + "57aca93d2459771f2c7e26db": 49718, + "57acb6222459771ec34b5cb0": 27608, + "57ade1442459771557167e15": 21003, + "57adff4f24597737f373b6e6": 44542, + "57ae0171245977343c27bfcf": 13467, + "57af48872459771f0b2ebf11": 20250, + "57c44b372459772d2b39b8ce": 107663, + "57c44dd02459772d2e0ae249": 53229, + "57c44e7b2459772d28133248": 69535, + "57c44f4f2459772d2c627113": 97126, + "57c44fa82459772d2d75e415": 19577, + "57c450252459772d28133253": 16715, + "57c55efc2459772d2c6271e7": 28419, + "57c55f092459772d291a8463": 14529, + "57c55f112459772d28133310": 12869, + "57c55f172459772d27602381": 12922, + "57c5ac0824597754771e88a9": 30397, + "57c69dd424597774c03b7bbc": 33639, + "57c9a89124597704ee6faec1": 2150, + "57cff947245977638e6f2a19": 25704, + "57cffb66245977632f391a99": 26329, + "57cffcd624597763133760c5": 34670, + "57cffcdd24597763f5110006": 29645, + "57cffce524597763b31685d8": 31831, + "57cffd8224597763b03fc609": 16064, + "57cffddc24597763133760c6": 18124, + "57cffe0024597763b03fc60b": 17291, + "57cffe20245977632f391a9d": 17878, + "57d14d2524597714373db789": 20210, + "57d14e1724597714010c3f4b": 16078, + "57d1519e24597714373db79d": 18459, + "57d152ec245977144076ccdf": 21914, + "57d17c5e2459775a5c57d17d": 9523, + "57d17e212459775a1179a0f5": 7273, + "57da93632459771cb65bf83f": 30089, + "57dbb57e2459774673234890": 31633, + "57dc2fa62459775949412633": 27606, + "57dc347d245977596754e7a1": 18768, + "57e26ea924597715ca604a09": 12246, + "57e26fc7245977162a14b800": 7100, + "57ee59b42459771c7b045da5": 17917, + "57f3a5ae2459772b0e0bf19e": 25234, + "57f3c6bd24597738e730fa2f": 39716, + "57f3c7e024597738ea4ba286": 63657, + "57f3c8cc2459773ec4480328": 21806, + "57f4c844245977379d5c14d1": 17184, + "57fd23e32459772d0805bcf1": 17693, + "57ffa9f4245977728561e844": 11799, + "57ffb0062459777a045af529": 9299, + "57ffb0e42459777d047111c5": 24813, + "5827272a24597748c74bdeea": 20521, + "58272b392459774b4c7b3ccd": 15778, + "58272b842459774abc128d50": 14668, + "58272d7f2459774f6311ddfd": 29861, + "583990e32459771419544dd2": 33501, + "5839a40f24597726f856b511": 68429, + "58491f3324597764bc48fa02": 34592, + "584924ec24597768f12ae244": 43808, + "584984812459776a704a82a6": 16694, + "587de4282459771bca0ec90b": 20687, + "587df583245977373c4f1129": 18543, + "587e02ff24597743df3deaeb": 38756, + "587e08ee245977446b4410cf": 40827, + "588200cf2459774414733d55": 39149, + "58820d1224597753c90aeb13": 62, + "588226d124597767ad33f787": 24310, + "588226dd24597767ad33f789": 16437, + "588226e62459776e3e094af7": 20100, + "588226ef24597767af46e39c": 32588, + "58864a4f2459770fcc257101": 98, + "5887431f2459777e1612938f": 679, + "588892092459774ac91d4b11": 86077, + "5888945a2459774bf43ba385": 47580, + "5888956924597752983e182d": 41125, + "5888961624597754281f93f3": 44801, + "5888976c24597754281f93f5": 40798, + "5888988e24597752fe43a6fa": 19794, + "5888996c24597754281f9419": 44051, + "58889c7324597754281f9439": 31029, + "58889d0c2459775bc215d981": 80823, + "588b56d02459771481110ae2": 17075, + "58948c8e86f77409493f7266": 49083, + "58949dea86f77409483e16a8": 16461, + "58949edd86f77409483e16a9": 24073, + "5894a05586f774094708ef75": 16172, + "5894a13e86f7742405482982": 58364, + "5894a2c386f77427140b8342": 33849, + "5894a42086f77426d2590762": 424110, + "5894a51286f77426d13baf02": 14668, + "5894a5b586f77426d2590767": 37500, + "58a56f8d86f774651579314c": 24925, + "58a5c12e86f7745d585a2b9e": 18792, + "58ac1bf086f77420ed183f9f": 141799, + "58aeaaa886f7744fc1560f81": 10676, + "58aeac1b86f77457c419f475": 14449, + "58c157be86f77403c74b2bb6": 9618, + "58c157c886f774032749fb06": 10808, + "58d2664f86f7747fec5834f6": 28298, + "58d268fc86f774111273f8c2": 44756, + "58d2912286f7744e27117493": 80520, + "58d2946386f774496974c37e": 16765, + "58d2946c86f7744e271174b5": 22823, + "58d2947686f774485c6a1ee5": 11434, + "58d2947e86f77447aa070d53": 15232, + "58d399e486f77442e0016fe7": 25545, + "58d39b0386f77443380bf13c": 12538, + "58d39d3d86f77445bb794ae7": 11760, + "58d3db5386f77426186285a0": 23857, + "5900b89686f7744e704a8747": 20849, + "5909e99886f7740c983b9984": 15563, + "590a358486f77429692b2790": 11701, + "590a373286f774287540368b": 31799, + "590a386e86f77429692b27ab": 21332, + "590a391c86f774385a33c404": 22242, + "590a3b0486f7743954552bdb": 21206, + "590a3c0a86f774385a33c450": 13396, + "590a3cd386f77436f20848cb": 22728, + "590a3d9c86f774385926e510": 11104, + "590a3efd86f77437d351a25b": 22447, + "590c2b4386f77425357b6123": 15161, + "590c2c9c86f774245b1f03f2": 14544, + "590c2d8786f774245b1f03f3": 9188, + "590c2e1186f77425357b6124": 39820, + "590c311186f77424d1667482": 14785, + "590c31c586f774245e3141b2": 18603, + "590c346786f77423e50ed342": 29400, + "590c35a486f774273531c822": 39584, + "590c37d286f77443be3d7827": 45746, + "590c392f86f77444754deb29": 39847, + "590c595c86f7747884343ad7": 36689, + "590c5a7286f7747884343aea": 16446, + "590c5bbd86f774785762df04": 14283, + "590c5c9f86f77477c91c36e7": 15065, + "590c5d4b86f774784e1b9c45": 27925, + "590c5f0d86f77413997acfab": 24316, + "590c60fc86f77412b13fddcf": 228347, + "590c621186f774138d11ea29": 21086, + "590c639286f774151567fa95": 26905, + "590c645c86f77412b01304d9": 37779, + "590c651286f7741e566b6461": 35247, + "590c657e86f77412b013051d": 54241, + "590c661e86f7741e566b646a": 15109, + "590c678286f77426c9660122": 24203, + "590c695186f7741e566b64a2": 18834, + "590de71386f774347051a052": 34332, + "590de7e986f7741b096e5f32": 43155, + "591094e086f7747caa7bb2ef": 812158, + "5910968f86f77425cf569c32": 70418, + "5913611c86f77479e0084092": 13394, + "5913651986f774432f15d132": 13802, + "59136a4486f774447a1ed172": 11495, + "59136e1e86f774432f15d133": 32259, + "59136f6f86f774447a1ed173": 13853, + "591382d986f774465a6413a7": 28971, + "591383f186f7744a4c5edcf3": 12495, + "5913877a86f774432f15d444": 116396, + "5913915886f774123603c392": 40137, + "5914578086f774123569ffa4": 9820, + "59148c8a86f774197930e983": 20810, + "59148f8286f7741b951ea113": 17343, + "591ae8f986f77406f854be45": 15379, + "591aef7986f774139d495f03": 23317, + "591af10186f774139d495f0e": 40985, + "591af28e86f77414a27a9e1d": 28221, + "591afe0186f77431bd616a11": 18450, + "591c4e1186f77410354b316e": 8854, + "591c4efa86f7741030027726": 15085, + "591ee00d86f774592f7b841e": 13487, + "5926bb2186f7744b1c6c6e60": 31780, + "5926c0df86f77462f647f764": 31711, + "5926c32286f774616e42de99": 105944, + "5926c36d86f77467a92a8629": 32004, + "5926c3b286f774640d189b6b": 19566, + "5926d2be86f774134d668e4e": 38361, + "5926d33d86f77410de68ebc0": 32336, + "5926d3c686f77410de68ebc8": 115961, + "5926dad986f7741f82604363": 27311, + "5926e16e86f7742f5a0f7ecb": 30482, + "5926f2e086f7745aae644231": 28563, + "5926f34786f77469195bfe92": 46112, + "5929a2a086f7744f4b234d43": 20303, + "592c2d1a86f7746dbe2af32a": 91492, + "5938144586f77473c2087145": 137273, + "5938504186f7740991483f30": 20134, + "593858c486f774253a24cb52": 9954, + "5938603e86f77435642354f4": 8866, + "59387a4986f77401cc236e62": 156510, + "5938994586f774523a425196": 7037, + "593aa4be86f77457f56379f8": 14905, + "593d1fa786f7746da62d61ac": 13793, + "593d489686f7745c6255d58a": 25644, + "593d490386f7745ee97a1555": 31906, + "593d493f86f7745e6b2ceb22": 38985, + "5943ee5a86f77413872d25ec": 18364, + "5943eeeb86f77412d6384f6b": 29454, + "5947c73886f7747701588af5": 22973, + "5947db3f86f77447880cf76f": 11921, + "5947e98b86f774778f1448bc": 27157, + "5947eab886f77475961d96c5": 30255, + "5947f92f86f77427344a76b1": 33113, + "5947fa2486f77425b47c1a9b": 26317, + "595cf16b86f77427440c32e2": 22022, + "595cfa8b86f77427437e845b": 84802, + "5991b51486f77447b112d44f": 35734, + "59984ab886f7743e98271174": 23035, + "5998517986f7746017232f7e": 22591, + "599851db86f77467372f0a18": 27482, + "5998529a86f774647f44f421": 8233, + "5998597786f77414ea6da093": 22264, + "59985a6c86f77414ec448d17": 26677, + "59985a8086f77414ec448d1a": 10468, + "599860ac86f77436b225ed1a": 11173, + "59bfc5c886f7743bf6794e62": 19583, + "59bfe68886f7746004266202": 147744, + "59bffbb386f77435b379b9c2": 96532, + "59bffc1f86f77435b128b872": 24794, + "59c0ec5b86f77435b128bfca": 31946, + "59c63b4486f7747afb151c1c": 283782, + "59c6633186f7740cf0493bb9": 16371, + "59ccfdba86f7747f2109a587": 18030, + "59d36a0086f7747e673f3946": 23846, + "59d6088586f774275f37482f": 119004, + "59d625f086f774661516605d": 12922, + "59d6272486f77466146386ff": 19358, + "59d64ec286f774171d1e0a42": 18088, + "59d64fc686f774171b243fe2": 1998, + "59d6507c86f7741b846413a2": 8401, + "59d790f486f77403cb06aec6": 13032, + "59db3a1d86f77429e05b4e92": 70754, + "59db3acc86f7742a2c4ab912": 28435, + "59db3b0886f77429d72fb895": 23446, + "59db7e1086f77448be30ddf3": 27195, + "59db7eed86f77461f8380365": 38616, + "59e0bdb186f774156f04ce82": 26576, + "59e0be5d86f7742d48765bd2": 19412, + "59e0bed186f774156f04ce84": 53249, + "59e3556c86f7741776641ac2": 17260, + "59e3577886f774176a362503": 53177, + "59e358a886f7741776641ac3": 22832, + "59e3596386f774176c10a2a2": 26725, + "59e35abd86f7741778269d82": 22342, + "59e35cbb86f7741778269d83": 30229, + "59e35de086f7741778269d84": 37596, + "59e35ef086f7741777737012": 18718, + "59e3606886f77417674759a5": 21829, + "59e361e886f774176c10a2a5": 11332, + "59e3639286f7741777737013": 117800, + "59e3647686f774176a362507": 56876, + "59e3658a86f7741776641ac4": 39815, + "59e366c186f7741778269d85": 12732, + "59e36c6f86f774176c10a2a7": 27925, + "59e4cf5286f7741778269d8a": 344, + "59e4d24686f7741776641ac7": 1325, + "59e4d3d286f774176a36250a": 105, + "59e5d83b86f7745aed03d262": 2402, + "59e5f5a486f7746c530b3ce2": 41876, + "59e6152586f77473dc057aa1": 31309, + "59e6284f86f77440d569536f": 30460, + "59e649f986f77411d949b246": 164615, + "59e6542b86f77411dc52a77a": 63, + "59e655cb86f77411dc52a77b": 174, + "59e6687d86f77411d949b251": 31557, + "59e68f6f86f7746c9f75e846": 704, + "59e6918f86f7746c9f75e849": 473, + "59e6920f86f77411d82aa167": 139, + "59e6927d86f77411da468256": 86, + "59e7635f86f7742cbf2c1095": 26185, + "59e7643b86f7742cbf2c109a": 12497, + "59e7708286f7742cbd762753": 22512, + "59e770b986f7742cbd762754": 17615, + "59e770f986f7742cbe3164ef": 10391, + "59e7711e86f7746cae05fbe1": 13198, + "59e7715586f7742ee5789605": 15907, + "59e77a2386f7742ee578960a": 2205, + "59eb7ebe86f7740b373438ce": 154243, + "59ecc3dd86f7746dc827481c": 38642, + "59ef13ca86f77445fd0e2483": 45568, + "59f8a37386f7747af3328f06": 40478, + "59f98b4986f7746f546d2cef": 16824, + "59f99a7d86f7745b134aa97b": 14586, + "59f9cabd86f7743a10721f46": 16890, + "59f9d81586f7744c7506ee62": 53952, + "59faf7ca86f7740dbe19f6c2": 53601, + "59faf98186f774067b6be103": 19711, + "59fafb5d86f774067a6f2084": 45923, + "59fafc5086f7740dbe19f6c3": 39583, + "59fafc9386f774067d462453": 38350, + "59fafd4b86f7745ca07e1232": 484843, + "59fb023c86f7746d0d4b423c": 5419779, + "59fb137a86f7740adb646af1": 38391, + "59fb257e86f7742981561852": 28778, + "59fb375986f7741b681b81a6": 14516, + "59fc48e086f77463b1118392": 28403, + "59ff346386f77477562ff5e2": 37465, + "5a0060fc86f7745793204432": 15685, + "5a01c29586f77474660c694c": 15807, + "5a0abb6e1526d8000a025282": 7941, + "5a0c27731526d80618476ac4": 13919, + "5a0c59791526d8dba737bba7": 28913, + "5a0d63621526d8dba31fe3bf": 32025, + "5a0d716f1526d8000d26b1e2": 11939, + "5a0dc45586f7742f6b0b73e3": 71002, + "5a0dc95c86f77452440fc675": 61562, + "5a0ea64786f7741707720468": 54486, + "5a0ea69f86f7741cd5406619": 16203, + "5a0ea79b86f7741d4a35298e": 50611, + "5a0eb38b86f774153b320eb0": 14920, + "5a0eb6ac86f7743124037a28": 104020, + "5a0ec13bfcdbcb00165aa685": 53977, + "5a0ec6d286f7742c0b518fb5": 170809, + "5a0ec70e86f7742c0b518fba": 13313, + "5a0ee30786f774023b6ee08f": 159980, + "5a0ee34586f774023b6ee092": 66952, + "5a0ee37f86f774023657a86f": 122911, + "5a0ee4b586f7743698200d22": 49059, + "5a0ee62286f774369454a7ac": 22027, + "5a0ee72c86f77436955d3435": 17295, + "5a0ee76686f7743698200d5c": 18709, + "5a0eeb1a86f774688b70aa5c": 34021, + "5a0eeb8e86f77461257ed71a": 15750, + "5a0eebed86f77461230ddb3d": 13127, + "5a0eec9686f77402ac5c39f2": 49998, + "5a0eecf686f7740350630097": 58540, + "5a0eed4386f77405112912aa": 44466, + "5a0eedb386f77403506300be": 16300, + "5a0eee1486f77402aa773226": 76911, + "5a0eff2986f7741fd654e684": 38528, + "5a0f006986f7741ffd2fe484": 17179, + "5a0f045e86f7745b0f0d0e42": 28753, + "5a0f068686f7745b0d4ea242": 85395, + "5a0f075686f7745bcc42ee12": 15968, + "5a0f08bc86f77478f33b84c2": 38560, + "5a0f0f5886f7741c4e32a472": 36244, + "5a13ee1986f774794d4c14cd": 16803, + "5a13eebd86f7746fd639aa93": 191781, + "5a13ef0686f7746e5a411744": 72058, + "5a13ef7e86f7741290491063": 83683, + "5a13f24186f77410e57c5626": 153264, + "5a13f35286f77413ef1436b0": 141725, + "5a13f46386f7741dd7384b04": 43603, + "5a144bdb86f7741d374bbde0": 54850, + "5a144dfd86f77445cb5a0982": 79579, + "5a1452ee86f7746f33111763": 92488, + "5a145d4786f7744cbb6f4a12": 45202, + "5a145d7b86f7744cbb6f4a13": 54186, + "5a145ebb86f77458f1796f05": 24883, + "5a16b672fcdbcb001912fa83": 21167, + "5a16b8a9fcdbcb00165aa6ca": 45642, + "5a16b93dfcdbcbcae6687261": 23811, + "5a16b9fffcdbcb0176308b34": 46139, + "5a16ba61fcdbcb098008728a": 26414, + "5a16badafcdbcb001865f72d": 37018, + "5a16bb52fcdbcb001a3b00dc": 16637, + "5a17f98cfcdbcb0980087290": 15158, + "5a17fb03fcdbcbcae668728f": 7166, + "5a17fb9dfcdbcbcae6687291": 24691, + "5a1eacb3fcdbcb09800872be": 8831, + "5a1ead28fcdbcb001912fa9f": 89114, + "5a269f97c4a282000b151807": 3469, + "5a26abfac4a28232980eabff": 349, + "5a26ac06c4a282000c5a90a8": 646, + "5a27b281c4a28200741e1e52": 16179, + "5a27b6bec4a282000e496f78": 21769, + "5a27bad7c4a282000b15184b": 13306, + "5a2a57cfc4a2826c6e06d44a": 13144, + "5a329052c4a28200741e22d3": 53620, + "5a32a064c4a28200741e22de": 34954, + "5a32aa0cc4a28232996e405f": 9589, + "5a32aa8bc4a2826c6e06d737": 28749, + "5a339805c4a2826c6e06d73d": 17111, + "5a33a8ebc4a282000c5a950d": 21480, + "5a33b2c9c4a282000c5a9511": 19459, + "5a33b652c4a28232996e407c": 12356, + "5a33bab6c4a28200741e22f8": 37664, + "5a33ca0fc4a282000d72292f": 12879, + "5a33cae9c4a28232980eb086": 17893, + "5a33e75ac4a2826c6e06d759": 32245, + "5a34f7f1c4a2826c6e06d75d": 44734, + "5a34fae7c4a2826c6e06d760": 34458, + "5a34fbadc4a28200741e230a": 15959, + "5a34fd2bc4a282329a73b4c5": 18428, + "5a34fe59c4a282000b1521a2": 71665, + "5a3501acc4a282000d72293a": 36964, + "5a351711c4a282000b1521a4": 38231, + "5a37ca54c4a282000d72296a": 32306, + "5a37cb10c4a282329a73b4e7": 37041, + "5a38e6bac4a2826c6e06d79b": 23480, + "5a38ebd9c4a282000d722a5b": 346, + "5a38ed75c4a28232996e40c6": 11814, + "5a38ee51c4a282000c5a955c": 2509, + "5a398ab9c4a282000c5a9842": 26931, + "5a398b75c4a282000a51a266": 41447, + "5a3c16fe86f77452b62de32a": 599, + "5a5f1ce64f39f90b401987bc": 24224, + "5a69a2ed8dc32e000d46d1f1": 72680, + "5a6b5b8a8dc32e001207faf3": 13893, + "5a6b5e468dc32e001207faf5": 19651, + "5a6b5ed88dc32e000c52ec86": 23949, + "5a6b60158dc32e000a31138b": 12995, + "5a6f5f078dc32e00094b97dd": 14619, + "5a702d198dc32e000b452fc3": 9794, + "5a7033908dc32e000a311392": 14126, + "5a70366c8dc32e001207fb06": 8224, + "5a7037338dc32e000d46d257": 12491, + "5a705e128dc32e000d46d258": 6225, + "5a718b548dc32e000d46d262": 4932, + "5a718f958dc32e00094b97e7": 30629, + "5a71e22f8dc32e00094b97f4": 36242, + "5a71e4f48dc32e001207fb26": 44448, + "5a7828548dc32e5a9c28b516": 74507, + "5a787ebcc5856700142fdd98": 16160, + "5a787f25c5856700186c4ab9": 28227, + "5a787f7ac5856700177af660": 156587, + "5a788068c5856700137e4c8f": 71749, + "5a788089c5856700142fdd9c": 6951, + "5a78813bc5856700186c4abe": 189451, + "5a788169c5856700142fdd9e": 7828, + "5a78830bc5856700137e4c90": 16788, + "5a78832ec5856700155a6ca3": 34308, + "5a789261c5856700186c65d3": 8491, + "5a7893c1c585673f2b5c374d": 17747, + "5a78948ec5856700177b1124": 15903, + "5a7ad0c451dfba0013379712": 12310, + "5a7ad1fb51dfba0013379715": 10080, + "5a7ad2e851dfba0016153692": 20782, + "5a7ad4af51dfba0013379717": 15824, + "5a7ad55551dfba0015068f42": 18525, + "5a7ad74e51dfba0015068f45": 25219, + "5a7ae0c351dfba0017554310": 19637, + "5a7afa25e899ef00135e31b0": 10105, + "5a7b32a2e899ef00135e345a": 18453, + "5a7b483fe899ef0016170d15": 20121, + "5a7b4900e899ef197b331a2a": 37970, + "5a7b4960e899ef197b331a2d": 25753, + "5a7c147ce899ef00150bd8b8": 7749, + "5a7c4850e899ef00150be885": 37305, + "5a7c74b3e899ef0014332c29": 16691, + "5a7d90eb159bd400165484f1": 11994, + "5a7dbfc1159bd40016548fde": 53953, + "5a800961159bd4315e3a1657": 17562, + "5a8036fb86f77407252ddc02": 27256, + "5a80a29286f7742b25692012": 13657, + "5a9548c9159bd400133e97b3": 19596, + "5a957c3fa2750c00137fa5f7": 28825, + "5a966ec8a2750c00171b3f36": 17995, + "5a966f51a2750c00156aacf6": 35671, + "5a9685b1a2750c0032157104": 15681, + "5a9d56c8a2750c0032157146": 18286, + "5a9d6d00a2750c5c985b5305": 11201, + "5a9d6d13a2750c00164f6b03": 10510, + "5a9d6d21a2750c00137fa649": 17856, + "5a9d6d34a2750c00141e07da": 13398, + "5a9e81fba2750c00164f6b11": 61702, + "5a9ea27ca2750c00137fa672": 13903, + "5a9eb32da2750c00171b3f9c": 35737, + "5a9fb739a2750c003215717f": 17406, + "5a9fbacda2750c00141e080f": 27332, + "5a9fbb74a2750c0032157181": 27371, + "5a9fbb84a2750c00137fa685": 51456, + "5a9fc7e6a2750c0032157184": 15476, + "5aa2a7e8e5b5b00016327c16": 5412, + "5aa2b87de5b5b00016327c25": 5741, + "5aa2b89be5b5b0001569311f": 8583, + "5aa2b8d7e5b5b00014028f4a": 10491, + "5aa2b923e5b5b000137b7589": 22689, + "5aa2b986e5b5b00014028f4c": 8889, + "5aa2b9aee5b5b00015693121": 23371, + "5aa2b9ede5b5b000137b758b": 19374, + "5aa2ba19e5b5b00014028f4e": 9622, + "5aa2ba46e5b5b000137b758d": 39810, + "5aa2ba71e5b5b000137b758f": 50525, + "5aa66a9be5b5b0214e506e89": 27124, + "5aa66be6e5b5b0214e506e97": 59244, + "5aa66c72e5b5b00016327c93": 18065, + "5aa7cfc0e5b5b00015693143": 40704, + "5aa7d03ae5b5b00016327db5": 41596, + "5aa7d193e5b5b000171d063f": 29150, + "5aa7e373e5b5b000137b76f0": 48197, + "5aa7e3abe5b5b000171d064d": 30038, + "5aa7e454e5b5b0214e506fa2": 40587, + "5aa7e4a4e5b5b000137b76f2": 38257, + "5aaa4194e5b5b055d06310a5": 11815, + "5aaa5dfee5b5b000140293d3": 27134, + "5aaa5e60e5b5b000140293d6": 5060, + "5aaf8a0be5b5b00015693243": 25772, + "5aaf8e43e5b5b00015693246": 16465, + "5aaf9d53e5b5b00015042a52": 20597, + "5aafa1c2e5b5b00015042a56": 10199, + "5aafa49ae5b5b00015042a58": 9083, + "5aafbde786f774389d0cbc0f": 421386, + "5ab24ef9e5b5b00fe93c9209": 14583, + "5ab372a310e891001717f0d8": 42185, + "5ab3afb2d8ce87001660304d": 23511, + "5ab8dab586f77441cd04f2a2": 31143, + "5ab8dced86f774646209ec87": 150790, + "5ab8e4ed86f7742d8e50c7fa": 57816, + "5ab8e9fcd8ce870019439434": 46297, + "5ab8ee7786f7742d8f33f0b9": 17125, + "5ab8f04f86f774585f4237d8": 8543, + "5ab8f20c86f7745cdb629fb2": 10745, + "5ab8f39486f7745cd93a1cca": 14331, + "5ab8f4ff86f77431c60d91ba": 25342, + "5ab8f85d86f7745cd93a1cf5": 32236, + "5abcbc27d8ce8700182eceeb": 34375, + "5abcc328d8ce8700194394f3": 6174, + "5abccb7dd8ce87001773e277": 17709, + "5ac4c50d5acfc40019262e87": 24295, + "5ac4cd105acfc40016339859": 41452, + "5ac50da15acfc4001718d287": 14134, + "5ac66bea5acfc43b321d4aec": 15757, + "5ac66c5d5acfc4001718d314": 28711, + "5ac66cb05acfc40198510a10": 54436, + "5ac66d015acfc400180ae6e4": 39226, + "5ac66d2e5acfc43b321d4b53": 42726, + "5ac66d725acfc43b321d4b60": 28520, + "5ac66d9b5acfc4001633997a": 32639, + "5ac72e725acfc400180ae701": 9502, + "5ac72e895acfc43b321d4bd5": 8987, + "5ac7655e5acfc40016339a19": 14792, + "5ac78a9b86f7741cca0bbd8d": 38861, + "5ac78eaf5acfc4001926317a": 21612, + "5ad5ccd186f774446d5706e9": 14242, + "5ad5cfbd86f7742c825d6104": 66294, + "5ad5d20586f77449be26d877": 10423, + "5ad5d49886f77455f9731921": 8269, + "5ad5d64486f774079b080af8": 54764, + "5ad5d7d286f77450166e0a89": 175280, + "5ad5db3786f7743568421cce": 63168, + "5ad7217186f7746744498875": 18199, + "5ad7242b86f7740a6a3abd43": 13630, + "5ad7247386f7747487619dc3": 94836, + "5addaffe86f77470b455f900": 109178, + "5addbac75acfc400194dbc56": 55583, + "5addbb6e5acfc408fb1393fd": 7802, + "5addbb825acfc408fb139400": 7710, + "5addbb945acfc4001a5fc44e": 9601, + "5addbba15acfc400185c2854": 9052, + "5addbbb25acfc40015621bd9": 6119, + "5addbf175acfc408fb13965b": 31855, + "5addbfbb5acfc400194dbcf7": 244947, + "5addbfd15acfc40015621bde": 12810, + "5addbfe15acfc4001a5fc58b": 20669, + "5addbfef5acfc400185c2857": 46794, + "5addbffe5acfc4001714dfac": 13636, + "5addc00b5acfc4001669f144": 18626, + "5addc7005acfc4001669f275": 23332, + "5addc7ac5acfc400194dbd90": 26190, + "5addc7db5acfc4001669f279": 17455, + "5addcce35acfc4001a5fc635": 48370, + "5addccf45acfc400185c2989": 46358, + "5ae08f0a5acfc408fb1398a1": 79932, + "5ae099925acfc4001a5fc7b3": 8752, + "5ae09bff5acfc4001562219d": 162806, + "5ae30c9a5acfc408fb139a03": 15335, + "5ae30e795acfc408fb139a0b": 12261, + "5ae35b315acfc4001714e8b0": 10495, + "5af0454c86f7746bf20992e8": 22497, + "5af0484c86f7740f02001f7f": 31309, + "5af04b6486f774195a3ebb49": 23478, + "5af0534a86f7743b6f354284": 70972, + "5af0548586f7743a532b7e99": 45823, + "5af0561e86f7745f5f3ad6ac": 19964, + "5afd7ded5acfc40017541f5e": 18835, + "5afd7e095acfc40017541f61": 8620, + "5afd7e445acfc4001637e35a": 11077, + "5b04473a5acfc40018632f70": 21426, + "5b057b4f5acfc4771e1bd3e9": 110580, + "5b07db875acfc40dc528a5f6": 38049, + "5b07dd285acfc4001754240d": 29206, + "5b0800175acfc400153aebd4": 24966, + "5b099a765acfc47a8607efe3": 67830, + "5b099a9d5acfc47a8607efe7": 11292, + "5b099ac65acfc400186331e1": 20524, + "5b099b7d5acfc400186331e4": 7763, + "5b099b965acfc400186331e6": 12656, + "5b099bb25acfc400186331e8": 36566, + "5b099bf25acfc4001637e683": 13049, + "5b0bbe4e5acfc40dc528a72d": 82098, + "5b0e794b5acfc47a877359b2": 120594, + "5b1fa9b25acfc40018633c01": 32545, + "5b1fb3e15acfc4001637f068": 25292, + "5b1fd4e35acfc40018633c39": 7003, + "5b222d335acfc4771e1be099": 31691, + "5b222d405acfc400153af4fe": 22170, + "5b2240bf5acfc40dc528af69": 34081, + "5b237e425acfc4771e1be0b6": 38869, + "5b2388675acfc4771e1be0be": 89777, + "5b2389515acfc4771e1be0c0": 33314, + "5b2cfa535acfc432ff4db7a0": 34270, + "5b30ac585acfc433000eb79c": 33564, + "5b30b0dc5acfc400153b7124": 11995, + "5b30bc165acfc40016387293": 48027, + "5b30bc285acfc47a8608615d": 99370, + "5b31163c5acfc400153b71cb": 12155, + "5b3116595acfc40019476364": 20672, + "5b363dd25acfc4001a598fd2": 46463, + "5b363dea5acfc4771e1c5e7e": 29716, + "5b363e1b5acfc4771e1c5e80": 21425, + "5b39f8db5acfc40016387a1b": 21934, + "5b3a08b25acfc4001754880c": 14390, + "5b3a16655acfc40016387a2a": 39249, + "5b3a337e5acfc4704b4a19a0": 26454, + "5b3b6dc75acfc47a8773fb1e": 22087, + "5b3b6e495acfc4330140bd88": 28666, + "5b3b713c5acfc4330140bd8d": 82605, + "5b3b99265acfc4704b4a1afb": 86585, + "5b3b99475acfc432ff4dcbee": 154560, + "5b3baf8f5acfc40dc5296692": 11250, + "5b3f7bf05acfc433000ecf6b": 16833, + "5b3f7c005acfc4704b4a1de8": 7627, + "5b3f7c1c5acfc40dc5296b1d": 18444, + "5b40e1525acfc4771e1c6611": 139970, + "5b40e2bc5acfc40016388216": 90766, + "5b40e3f35acfc40016388218": 81527, + "5b40e4035acfc47a87740943": 66551, + "5b40e61f5acfc4001a599bec": 7962, + "5b4325355acfc40019478126": 12953, + "5b4326435acfc433000ed01d": 25782, + "5b43271c5acfc432ff4dce65": 6914, + "5b4327aa5acfc400175496e0": 7807, + "5b4329075acfc400153b78ff": 19315, + "5b4329f05acfc47a86086aa1": 81839, + "5b432b2f5acfc4771e1c6622": 39630, + "5b432b6c5acfc4001a599bf0": 10275, + "5b432b965acfc47a8774094e": 20644, + "5b432be65acfc433000ed01f": 8361, + "5b432c305acfc40019478128": 53365, + "5b432d215acfc4771e1c6624": 43551, + "5b432f3d5acfc4704b4a1dfb": 17195, + "5b4335ba86f7744d2837a264": 13871, + "5b43575a86f77424f443fe62": 44748, + "5b4391a586f7745321235ab2": 496534, + "5b44c6ae86f7742d1627baea": 104015, + "5b44c8ea86f7742d1627baf1": 29218, + "5b44d22286f774172b0c9de8": 54372, + "5b46238386f7741a693bcf9c": 23497, + "5b4736a986f774040571e998": 79968, + "5b4736b986f77405cb415c10": 133828, + "5b7be1265acfc400161d0798": 130352, + "5b7be1ca5acfc400170e2d2f": 22391, + "5b7be2345acfc400196d524a": 21665, + "5b7be4575acfc400161d0832": 29525, + "5b7be4645acfc400170e2dcc": 17718, + "5b7be46e5acfc400170e2dcf": 139782, + "5b7be47f5acfc400170e2dd2": 10316, + "5b7be4895acfc400170e2dd5": 13622, + "5b7bebc85acfc43bca706666": 21231, + "5b7bedd75acfc43d825283f9": 38603, + "5b7bee755acfc400196d5383": 23066, + "5b7bef1e5acfc43d82528402": 9145, + "5b7bef5d5acfc43bca7067a3": 48639, + "5b7bef9c5acfc43d102852ec": 31110, + "5b7c2d1d5acfc43d1028532a": 20854, + "5b7d37845acfc400170e2f87": 39711, + "5b7d63b75acfc400170e2f8a": 18276, + "5b7d63cf5acfc4001876c8df": 11350, + "5b7d63de5acfc400170e2f8d": 16742, + "5b7d64555acfc4001876c8e2": 23208, + "5b7d645e5acfc400170e2f90": 6450, + "5b7d678a5acfc4001a5c4022": 10278, + "5b7d679f5acfc4001a5c4024": 41802, + "5b7d68af5acfc400170e30c3": 16501, + "5b7d693d5acfc43bca706a3d": 11438, + "5b800e9286f7747a8b04f3ff": 21261, + "5b800ebc86f774394e230a90": 59269, + "5b800ed086f7747baf6e2f9e": 23144, + "5b80242286f77429445e0b47": 36361, + "5b84038986f774774913b0c1": 24179, + "5b8403a086f7747ff856f4e2": 25745, + "5b86a0e586f7745b600ccb23": 33517, + "5ba26383d4351e00334c93d9": 34501, + "5ba264f6d4351e0034777d52": 10549, + "5ba2657ed4351e0035628ff2": 70731, + "5ba26586d4351e44f824b340": 117217, + "5ba2678ad4351e44f824b344": 2795, + "5ba26812d4351e003201fef1": 246, + "5ba26ae8d4351e00367f9bdb": 110866, + "5bae13bad4351e00320204af": 24055, + "5bae13ded4351e44f824bf38": 61045, + "5bb20d92d4351e00853263eb": 132242, + "5bb20d9cd4351e00334c9d8a": 19645, + "5bb20da5d4351e0035629dbf": 30923, + "5bb20dadd4351e00367faeff": 98064, + "5bb20dbcd4351e44f824c04e": 13783, + "5bb20de5d4351e0035629e59": 7790, + "5bb20df1d4351e00347787d5": 10947, + "5bb20dfcd4351e00334c9e24": 12966, + "5bb20e0ed4351e3bac1212dc": 16745, + "5bb20e18d4351e00320205d5": 18930, + "5bb20e58d4351e00320205d7": 19614, + "5bb20e70d4351e0035629f8f": 15089, + "5bb2475ed4351e00853264e3": 62717, + "5bbdb811d4351e45020113c7": 42013, + "5bbdb83fd4351e44f824c44b": 11049, + "5bbdb870d4351e00367fb67d": 37021, + "5bbdb8bdd4351e4502011460": 28675, + "5bbde409d4351e003562b036": 22724, + "5bbde41ed4351e003562b038": 58831, + "5bc09a18d4351e003562b68e": 36439, + "5bc09a30d4351e00367fb7c8": 18692, + "5bc5a351d4351e003477a414": 13001, + "5bc5a35cd4351e450201232f": 22500, + "5bc5a372d4351e44f824d17f": 13777, + "5bc9b156d4351e00367fbce9": 12865, + "5bc9b355d4351e6d1509862a": 24877, + "5bc9b720d4351e450201234b": 34024, + "5bc9b9ecd4351e3bac122519": 34958, + "5bc9bc53d4351e00367fbcee": 57256, + "5bc9bdb8d4351e003562b8a1": 37870, + "5bc9be8fd4351e00334cae6e": 20094, + "5bc9c049d4351e44f824d360": 40424, + "5bc9c1e2d4351e00367fbcf0": 59961, + "5bc9c29cd4351e003562b8a3": 20925, + "5bc9c377d4351e3bac12251b": 39849, + "5bd06f5d86f77427101ad47c": 29684, + "5bd0716d86f774171822ef4b": 14912, + "5bd071d786f7747e707b93a3": 19999, + "5bd073a586f7747e6f135799": 16048, + "5bd073c986f7747f627e796c": 17459, + "5bd70322209c4d00d7167b8f": 49486, + "5be4038986f774527d3fae60": 14774, + "5bead2e00db834001c062938": 6458, + "5bed61680db834001d2c45ab": 23291, + "5bed625c0db834001c062946": 38866, + "5beec1bd0db834001e6006f3": 23227, + "5beec2820db834001b095426": 33422, + "5beec3420db834001b095429": 14067, + "5beec3e30db8340019619424": 37716, + "5beec8b20db834001961942a": 40649, + "5beec8c20db834001d2c465c": 12779, + "5beec8ea0db834001a6f9dbf": 17215, + "5beec91a0db834001961942d": 31467, + "5beecbb80db834001d2c465e": 50183, + "5beed0f50db834001c062b12": 61246, + "5bf3e03b0db834001d2c4a9c": 37206, + "5bf3e0490db83400196199af": 21691, + "5bfd297f0db834001a669119": 42837, + "5bfd36290db834001966869a": 82867, + "5bfd36ad0db834001c38ef66": 29368, + "5bfd4cbe0db834001b73449f": 189842, + "5bfd4cd60db834001c38f095": 17569, + "5bfe7fb30db8340018089fed": 8466, + "5bfe86a20db834001d23e8f7": 16445, + "5bfe86df0db834001b734685": 17932, + "5bfe89510db834001808a127": 38267, + "5bfea6e90db834001b7347f3": 44711, + "5bfea7ad0db834001c38f1ee": 22155, + "5bfeaa0f0db834001b734927": 32689, + "5bfeb32b0db834001a6694d9": 30478, + "5bfebc320db8340019668d79": 50894, + "5bfebc530db834001d23eb65": 45006, + "5bfebc5e0db834001a6694e5": 28557, + "5bffcf7a0db83400232fea79": 4741, + "5bffd7ed0db834001d23ebf9": 8638, + "5bffdc370db834001d23eca8": 30292, + "5bffe7c50db834001d23ece1": 18500, + "5bffec120db834001c38f5fa": 9960, + "5c0000c00db834001a6697fc": 208629, + "5c0009510db834001966907f": 113865, + "5c0102aa0db834001b734ba1": 52703, + "5c0102b20db834001d23eebc": 18454, + "5c010a700db834001d23ef5d": 12827, + "5c010e350db83400232feec7": 65831, + "5c0111ab0db834001966914d": 20797, + "5c0125fc0db834001a669aa3": 12931, + "5c0126f40db834002a125382": 4076284, + "5c012ffc0db834001d23f03f": 28225, + "5c0505e00db834001b735073": 16777, + "5c0517910db83400232ffee5": 46708, + "5c05293e0db83400232fff80": 24105, + "5c052a900db834001a66acbd": 21438, + "5c052e6986f7746b207bc3c9": 176111, + "5c052f6886f7746b1e3db148": 93406, + "5c052fb986f7746b2101e909": 45300, + "5c05300686f7746dce784e5d": 98769, + "5c05308086f7746b2101e90b": 99926, + "5c0530ee86f774697952d952": 855706, + "5c05413a0db834001c390617": 30802, + "5c0548ae0db834001966a3c2": 39777, + "5c064c400db834001d23f468": 22631, + "5c06595c0db834001a66af6c": 38737, + "5c066e3a0db834001b7353f0": 48931, + "5c066ef40db834001966a595": 61313, + "5c0672ed0db834001b7353f3": 19140, + "5c0673fb0db8340023300271": 4886, + "5c06779c86f77426e00dd782": 15980, + "5c06782b86f77426df5407d2": 15025, + "5c0684e50db834002a12585a": 8049, + "5c0695860db834001b735461": 55450, + "5c0696830db834001d23f5da": 34073, + "5c06c6a80db834001b735491": 22489, + "5c079ec50db834001966a706": 12475, + "5c079ed60db834001a66b372": 6515, + "5c07a8770db8340023300450": 31230, + "5c07c5ed0db834001b73571c": 26907, + "5c07c60e0db834002330051f": 37031, + "5c07dd120db834001c39092d": 60964, + "5c07df7f0db834001b73588a": 13671, + "5c08f87c0db8340019124324": 29510, + "5c093e3486f77430cb02e593": 209726, + "5c0a2cec0db834001b7ce47d": 48405, + "5c0d2727d174af02a012cf58": 29486, + "5c0d32fcd174af02a1659c75": 10029, + "5c0d56a986f774449d5de529": 819, + "5c0d591486f7744c505b416f": 428, + "5c0d5ae286f7741e46554302": 377, + "5c0e2f26d174af02a9625114": 10507, + "5c0e2f5cd174af02a012cfc9": 3166, + "5c0e2f94d174af029f650d56": 23943, + "5c0e3eb886f7742015526062": 68666, + "5c0e446786f7742013381639": 69084, + "5c0e51be86f774598e797894": 83546, + "5c0e530286f7747fa1419862": 29212, + "5c0e531286f7747fa54205c2": 40576, + "5c0e531d86f7747fa23f4d42": 66192, + "5c0e533786f7747fa23f4d47": 30356, + "5c0e534186f7747fa1419867": 100889, + "5c0e53c886f7747fa54205c7": 70660, + "5c0e57ba86f7747fa141986d": 99524, + "5c0e5bab86f77461f55ed1f3": 61593, + "5c0e5edb86f77461f55ed1f7": 39035, + "5c0e655586f774045612eeb2": 220287, + "5c0e66e2d174af02a96252f4": 248368, + "5c0e6a1586f77404597b4965": 31310, + "5c0e722886f7740458316a57": 180584, + "5c0e842486f77443a74d2976": 124256, + "5c0e9f2c86f77432297fe0a3": 53999, + "5c0fa877d174af02a012e1cf": 32366, + "5c0faf68d174af02a96260b8": 19778, + "5c10c8fd86f7743d7d706df3": 20331, + "5c11046cd174af02a012e42b": 16202, + "5c11279ad174af029d64592b": 2876, + "5c1127bdd174af44217ab8b9": 35826, + "5c12613b86f7743bbe2c3f76": 263950, + "5c12620d86f7743f8b198b72": 82072, + "5c1265fc86f7743f896a21c2": 49021, + "5c1267ee86f77416ec610f72": 69687, + "5c12688486f77426843c7d32": 39559, + "5c127c4486f7745625356c13": 180938, + "5c13cd2486f774072c757944": 11470, + "5c13cef886f774072e618e82": 7857, + "5c165d832e2216398b5a7e36": 47386, + "5c17664f2e2216398b5a7e3c": 47135, + "5c1780312e221602b66cc189": 12381, + "5c17804b2e2216152006c02f": 35774, + "5c178a942e22164bef5ceca3": 242110, + "5c1793902e221602b21d3de2": 35319, + "5c18b90d2e2216152142466b": 33897, + "5c18b9192e2216398b5a8104": 26678, + "5c1a1cc52e221602b3136e3d": 16935, + "5c1bc4812e22164bef5cfde7": 23751, + "5c1bc5612e221602b5429350": 53389, + "5c1bc5af2e221602b412949b": 80040, + "5c1bc5fb2e221602b1779b32": 19933, + "5c1bc7432e221602b412949d": 23679, + "5c1bc7752e221602b1779b34": 9939, + "5c1cd46f2e22164bef5cfedb": 136210, + "5c1cdd302e221602b3137250": 202463, + "5c1cdd512e22161b267d91ae": 20531, + "5c1d0c5f86f7744bb2683cf0": 26727612, + "5c1d0d6d86f7744bb2683e1f": 5619879, + "5c1d0dc586f7744baf2e7b79": 43432028, + "5c1d0efb86f7744baf2e7b7b": 54163141, + "5c1d0f4986f7744bb01837fa": 4561384, + "5c1e2a1e86f77431ea0ea84c": 55190, + "5c1e2d1f86f77431e9280bee": 66832, + "5c1e495a86f7743109743dfb": 8400498, + "5c1f79a086f7746ed066fb8f": 93858, + "5c3df7d588a4501f290594e5": 118, + "5c46fbd72e2216398b5a8c9c": 93922, + "5c471b5d2e221602b21d4e14": 38881, + "5c471be12e221602b66cd9ac": 25906, + "5c471bfc2e221602b21d4e17": 64721, + "5c471c2d2e22164bef5d077f": 21576, + "5c471c442e221602b542a6f8": 18240, + "5c471c6c2e221602b66cd9ae": 13757, + "5c471c842e221615214259b5": 45324, + "5c471cb32e221602b177afaa": 137622, + "5c488a752e221602b412af63": 59573, + "5c48a14f2e2216152006edd7": 242806, + "5c48a2852e221602b21d5923": 174371, + "5c48a2a42e221602b66d1e07": 12166, + "5c48a2c22e221602b313fb6c": 88054, + "5c4ee3d62e2216152006f302": 14391, + "5c4eec9b2e2216398b5aaba2": 52069, + "5c4eecc32e221602b412b440": 36806, + "5c501a4d2e221602b412b540": 41441, + "5c503ac82e221602b21d6e9a": 6268, + "5c503ad32e2216398b5aada2": 21207, + "5c503af12e221602b177ca02": 41249, + "5c5952732e2216398b5abda2": 23942, + "5c59529a2e221602b177d160": 27710, + "5c5970672e221602b21d7855": 25551, + "5c5db5c62e22160012542255": 114748, + "5c5db5f22e2216000e5e47e8": 11521, + "5c5db5fc2e2216000f1b2842": 11527, + "5c5db6302e2216000e5e47f0": 13237, + "5c5db63a2e2216000f1b284a": 37562, + "5c5db6652e221600113fba51": 31343, + "5c5db6742e2216000f1b2852": 43086, + "5c5db6b32e221600102611a0": 27148, + "5c5db6ee2e221600113fba54": 16371, + "5c5db6f82e2216003a0fe914": 33055, + "5c6162682e22160010261a2b": 15511, + "5c61627a2e22160012542c55": 10971, + "5c6165902e22160010261b28": 31393, + "5c617a5f2e2216000f1e81b3": 24545, + "5c61a40d2e2216001403158d": 18196, + "5c6592372e221600133e47d7": 55443, + "5c6beec32e221601da3578f2": 11695, + "5c6bf4aa2e2216001219b0ae": 35359, + "5c6c2c9c2e2216000f2002e4": 15299, + "5c6d10e82e221601da357b07": 22868, + "5c6d10fa2e221600106f3f23": 27668, + "5c6d11072e2216000e69d2e4": 13233, + "5c6d11152e2216000f2003e7": 42073, + "5c6d42cb2e2216000e69d7d1": 22282, + "5c6d450c2e221600114c997d": 26864, + "5c6d46132e221601da357d56": 29692, + "5c6d5d8b2e221644fc630b39": 28902, + "5c6d710d2e22165df16b81e7": 25829, + "5c6d7b3d2e221600114c9b7d": 25945, + "5c6d85e02e22165df16b81f4": 25621, + "5c78f2492e221600114c9f04": 151387, + "5c78f2612e221600114c9f0d": 65744, + "5c78f26f2e221601da3581d1": 22162, + "5c78f2792e221600106f4683": 14527, + "5c78f2882e22165df16b832e": 14513, + "5c791e872e2216001219c40a": 29406, + "5c793fb92e221644f31bfb64": 141533, + "5c793fc42e221600114ca25d": 145265, + "5c793fde2e221601da358614": 42873, + "5c7951452e221644f31bfd5c": 16789, + "5c7954d52e221600106f4cc7": 57490, + "5c7955c22e221644f31bfd5e": 40328, + "5c7d55de2e221644f31bff68": 19614, + "5c7d55f52e221644f31bff6a": 14275, + "5c7d560b2e22160bc12c6139": 12528, + "5c7e5f112e221600106f4ede": 23932, + "5c7e8fab2e22165df16b889b": 23166, + "5c7fb51d2e2216001219ce11": 26620, + "5c7fc87d2e221644f31c0298": 18067, + "5c82342f2e221644f31c060e": 20727, + "5c82343a2e221644f31c0611": 17421, + "5c86592b2e2216000e69e77c": 32903, + "5c878e9d2e2216000f201903": 57128, + "5c878ebb2e2216001219d48a": 18675, + "5c87a07c2e2216001219d4a2": 64748, + "5c87ca002e221600114cb150": 15223, + "5c88f24b2e22160bc12c69a6": 33911, + "5c90c3622e221601da359851": 22935, + "5c920e902e221644f31c3c99": 37227, + "5c94bbff86f7747ee735c08f": 192529, + "5c99f3592e221644fc633070": 25691, + "5c9a07572e221644f31c4b32": 37121, + "5c9a1c3a2e2216000e69fb6a": 31006, + "5c9a1c422e221600106f69f0": 21388, + "5c9a25172e2216000f20314e": 23903, + "5c9a26332e2216001219ea70": 22518, + "5ca20abf86f77418567a43f2": 26070, + "5ca20d5986f774331e7c9602": 26759, + "5cadc190ae921500103bb3b6": 19657, + "5cadc2e0ae9215051e1c21e7": 7439, + "5cadd954ae921500103bb3c2": 5793, + "5cadf6ddae9215051e1c23b2": 2561, + "5cadf6e5ae921500113bb973": 603, + "5cadfbf7ae92152ac412eeef": 64195, + "5caf1041ae92157c28402e3f": 34302, + "5caf1109ae9215753c44119f": 46390, + "5caf1691ae92152ac412efb9": 38671, + "5caf16a2ae92152ac412efbc": 14386, + "5caf17c9ae92150b30006be1": 16824, + "5caf187cae92157c28402e43": 22507, + "5cbda392ae92155f3c17c39f": 29398, + "5cbda9f4ae9215000e5b9bfc": 4160, + "5cbdc23eae9215001136a407": 40764, + "5cc6ea85e4a949000e1ea3c3": 54350, + "5cc70093e4a949033c734312": 33046, + "5cc700cae4a949035e43ba72": 12220, + "5cc700d4e4a949000f0f0f28": 36415, + "5cc700ede4a949033c734315": 33887, + "5cc70102e4a949035e43ba74": 31087, + "5cc7012ae4a949001252b43e": 46062, + "5cc70146e4a949000d73bf6b": 16803, + "5cc701aae4a949000e1ea45c": 293055, + "5cc80f79e4a949033c7343b2": 1178, + "5cc80f8fe4a949033b0224a2": 942, + "5cc82d76e24e8d00134b4b83": 66525, + "5cc86832d7f00c000d3a6e6c": 1243, + "5cc9a96cd7f00c011c04e04a": 26493, + "5cc9ad73d7f00c000e2579d4": 23210, + "5cc9b815d7f00c000e2579d6": 10649, + "5cc9bcaed7f00c011c04e179": 25316, + "5cc9c20cd7f00c001336c65d": 22875, + "5cdaa99dd7f00c002412d0b2": 26083, + "5cdd7685d7f00c000f260ed2": 15437, + "5cdd7693d7f00c0010373aa5": 13485, + "5cde739cd7f00c0010373bd3": 31050, + "5cde7afdd7f00c000d36b89d": 66980, + "5cde7b43d7f00c000d36b93e": 74333, + "5cdeac22d7f00c000f26168f": 23248, + "5cdeac42d7f00c000d36ba73": 16162, + "5cdeac5cd7f00c000f261694": 22234, + "5cdeaca5d7f00c00b61c4b70": 10877, + "5ce69cbad7f00c00b61c5098": 24406, + "5cebec00d7f00c065c53522a": 43222, + "5cebec38d7f00c00110a652a": 18963, + "5cf12a15d7f00c05464b293f": 42439, + "5cf13123d7f00c1085616a50": 24010, + "5cf4e3f3d7f00c06595bc7f0": 35888, + "5cf4fb76d7f00c065703d3ac": 10000, + "5cf50850d7f00c056e24104c": 12937, + "5cf508bfd7f00c056e24104e": 12436, + "5cf50fc5d7f00c056c53f83c": 35790, + "5cf518cfd7f00c065b422214": 28444, + "5cf54404d7f00c108840b2ef": 15385, + "5cf638cbd7f00c06595bc936": 16567, + "5cf656f2d7f00c06585fb6eb": 65562, + "5cf67a1bd7f00c06585fb6f3": 10673, + "5cf67cadd7f00c065a5abab7": 30574, + "5cf6935bd7f00c06585fb791": 24901, + "5cf6937cd7f00c056c53fb39": 79515, + "5cf78496d7f00c065703d6ca": 48860, + "5cf78720d7f00c06595bc93e": 18683, + "5cf79389d7f00c10941a0c4d": 7640, + "5cf79599d7f00c10875d9212": 16360, + "5cf8f3b0d7f00c00217872ef": 74050, + "5cff9e5ed7ad1a09407397d4": 33514, + "5cff9e84d7ad1a049e54ed55": 56868, + "5d00e0cbd7ad1a6c6566a42d": 17437, + "5d00ec68d7ad1a04a067e5be": 39436, + "5d00ede1d7ad1a0940739a76": 16758, + "5d00ef6dd7ad1a0940739b16": 32145, + "5d00f63bd7ad1a59283b1c1e": 18491, + "5d010d1cd7ad1a59283b1ce7": 22424, + "5d0236dad7ad1a0940739d29": 38528, + "5d023784d7ad1a049d4aa7f2": 15249, + "5d024f5cd7ad1a04a067e91a": 16418, + "5d025cc1d7ad1a53845279ef": 76451, + "5d02676dd7ad1a049e54f6dc": 28761, + "5d02677ad7ad1a04a15c0f95": 14713, + "5d026791d7ad1a04a067ea63": 38256, + "5d02778e86f774203e7dedbe": 38452, + "5d02797c86f774203f38e30a": 53567, + "5d0375ff86f774186372f685": 33090, + "5d0376a486f7747d8050965c": 37346, + "5d03775b86f774203e7e0c4b": 128398, + "5d0377ce86f774186372f689": 59034, + "5d03784a86f774203e7e0c4d": 39269, + "5d0378d486f77420421a5ff4": 85385, + "5d03794386f77420415576f5": 212067, + "5d0379a886f77420407aa271": 71886, + "5d08d21286f774736e7c94c3": 216100, + "5d0a29ead7ad1a0026013f27": 21186, + "5d0a29fed7ad1a002769ad08": 24901, + "5d0a3a58d7ad1a669c15ca14": 17096, + "5d0a3e8cd7ad1a6f6a3d35bd": 17278, + "5d10b49bd7ad1a1a560708b0": 11884, + "5d120a10d7ad1a4e1026ba85": 29441, + "5d120a28d7ad1a1c8962e295": 20005, + "5d122e7bd7ad1a07102d6d7f": 27038, + "5d123102d7ad1a004e475fe5": 19975, + "5d133067d7ad1a33013f95b4": 17902, + "5d1340b3d7ad1a0b52682ed7": 35191, + "5d1340bdd7ad1a0e8d245aab": 54922, + "5d1340cad7ad1a0b0b249869": 35124, + "5d135e83d7ad1a21b83f42d8": 52991, + "5d135ecbd7ad1a21c176542e": 42208, + "5d15ce51d7ad1a1eff619092": 13299, + "5d15cf3bd7ad1a67e71518b2": 56287, + "5d19cd96d7ad1a4a992c9f52": 18300, + "5d1b198cd7ad1a604869ad72": 12185, + "5d1b2f3f86f774252167a52c": 188749, + "5d1b2fa286f77425227d1674": 73211, + "5d1b2ffd86f77425243e8d17": 23132, + "5d1b304286f774253763a528": 29932, + "5d1b309586f77425227d1676": 25097, + "5d1b313086f77425227d1678": 26424, + "5d1b317c86f7742523398392": 41898, + "5d1b31ce86f7742523398394": 17727, + "5d1b327086f7742525194449": 46165, + "5d1b32c186f774252167a530": 28961, + "5d1b33a686f7742523398398": 158281, + "5d1b36a186f7742523398433": 197025, + "5d1b371186f774253763a656": 80334, + "5d1b376e86f774252519444e": 271355, + "5d1b385e86f774252167b98a": 106973, + "5d1b392c86f77425243e98fe": 19067, + "5d1b39a386f774252339976f": 16447, + "5d1b3a5d86f774252167ba22": 15788, + "5d1b3f2d86f774253763b735": 24278, + "5d1c702ad7ad1a632267f429": 26278, + "5d1c774f86f7746d6620f8db": 16407, + "5d1c819a86f774771b0acd6c": 19204, + "5d1f819086f7744b355c219b": 26814, + "5d235a5986f77443f6329bc6": 46211, + "5d235b4d86f7742e017bc88a": 33222, + "5d235bb686f77443f4331278": 6726434, + "5d2369418abbc306c62e0c80": 31714, + "5d25a4a98abbc30b917421a4": 27888, + "5d25a6538abbc306c62e630d": 30669, + "5d25a6a48abbc306c62e6310": 30899, + "5d25a7b88abbc3054f3e60bc": 36209, + "5d25af8f8abbc3055079fec5": 43739, + "5d25d0ac8abbc3054f3e61f7": 35650, + "5d2c76ed48f03532f2136169": 13697, + "5d2c770c48f0354b4a07c100": 89977, + "5d2c772c48f0355d95672c25": 21956, + "5d2c829448f0353a5c7d6674": 10390, + "5d2da1e948f035477b1ce2ba": 19254, + "5d2dc3e548f035404a1a4798": 40037, + "5d2f0d8048f0356c925bc3b0": 18083, + "5d2f213448f0355009199284": 13322, + "5d3eb3b0a4b93615055e84d2": 22273, + "5d3eb4aba4b93650d64e497d": 21117, + "5d3eb536a4b9363b1f22f8e2": 24666, + "5d3eb59ea4b9361c284bb4b2": 97659, + "5d3eb5b6a4b9361eab311902": 34389, + "5d3eb5eca4b9363b1f22f8e4": 21798, + "5d3ef698a4b9361182109872": 29090, + "5d403f9186f7743cac3f229b": 47080, + "5d40407c86f774318526545a": 31872, + "5d40412b86f7743cb332ac3a": 22435, + "5d40419286f774318526545f": 20073, + "5d4041f086f7743cac3f22a7": 9874, + "5d40425986f7743185265461": 12544, + "5d4042a986f7743185265463": 21730, + "5d43021ca4b9362eab4b5e25": 113347, + "5d4405aaa4b9361e6a4e6bd3": 24314, + "5d4405f0a4b9361e6a4e6bd9": 26553, + "5d440625a4b9361eec4ae6c5": 17699, + "5d44064fa4b9361e4f6eb8b5": 61865, + "5d44069ca4b9361ebd26fc37": 84687, + "5d4406a8a4b9361e4f6eb8b7": 76105, + "5d440b93a4b9364276578d4b": 86419, + "5d440b9fa4b93601354d480c": 92608, + "5d44334ba4b9362b346d1948": 42694, + "5d443f8fa4b93678dd4a01aa": 21318, + "5d4aaa54a4b9365392071170": 25637, + "5d4aaa73a4b9365392071175": 27402, + "5d4aab30a4b9365435358c55": 64231, + "5d5d646386f7742797261fd9": 96818, + "5d5d85c586f774279a21cbdb": 26548, + "5d5d8ca986f7742798716522": 13741, + "5d5d940f86f7742797262046": 94829, + "5d5e7d28a4b936645d161203": 57195, + "5d5e9c74a4b9364855191c40": 59235, + "5d5fca1ea4b93635fd598c07": 15112, + "5d63d33b86f7746ea9275524": 10387, + "5d67abc1a4b93614ec50137f": 21679, + "5d6d2e22a4b9361bd5780d05": 11340, + "5d6d2ef3a4b93618084f58bd": 12607, + "5d6d3716a4b9361bc8618872": 107405, + "5d6d3829a4b9361bc8618943": 76131, + "5d6d3943a4b9360dbc46d0cc": 18137, + "5d6d3be5a4b9361bc73bc763": 28365, + "5d6e6772a4b936088465b17c": 138, + "5d6e67fba4b9361bc73bc779": 434, + "5d6e6806a4b936088465b17e": 480, + "5d6e6869a4b9361c140bcfde": 122, + "5d6e6891a4b9361bd473feea": 212, + "5d6e689ca4b9361bc8618956": 504, + "5d6e68c4a4b9361b93413f79": 2776, + "5d6e68dea4b9361bcc29e659": 429, + "5d6e68e6a4b9361c140bcfe0": 592, + "5d6e6911a4b9361bd5780d52": 14531, + "5d6e69b9a4b9361bc8618958": 54, + "5d6e69c7a4b9360b6c0d54e4": 53, + "5d6e6a05a4b93618084f58d0": 571, + "5d6e6a42a4b9364f07165f52": 123, + "5d6e6a53a4b9361bd473feec": 46, + "5d6e6a5fa4b93614ec501745": 271, + "5d6fc78386f77449d825f9dc": 34000, + "5d6fc87386f77449db3db94e": 27567, + "5d7b6bafa4b93652786f4c76": 26175, + "5d80c60f86f77440373c4ece": 436935, + "5d80c62a86f7744036212b3f": 393082, + "5d80c66d86f774405611c7d6": 19692, + "5d80c6c586f77440351beef1": 277542, + "5d80c6fc86f774403a401e3c": 29201, + "5d80c78786f774403a401e3e": 13305, + "5d80c88d86f77440556dbf07": 33365, + "5d80c8f586f77440373c4ed0": 23725, + "5d80c93086f7744036212b41": 17533, + "5d80c95986f77440351beef3": 24938, + "5d80ca9086f774403a401e40": 27735, + "5d80cab086f77440535be201": 30634, + "5d80cb3886f77440556dbf09": 25171, + "5d80cb5686f77440545d1286": 26012, + "5d80cb8786f774405611c7d9": 8822, + "5d80cbd886f77470855c26c2": 33324, + "5d80ccac86f77470841ff452": 226969, + "5d80ccdd86f77474f7575e02": 147462, + "5d80cd1a86f77402aa362f42": 60453, + "5d8e0db586f7744450412a42": 29088, + "5d8e0e0e86f774321140eb56": 82988, + "5d8e15b686f774445103b190": 26742, + "5d8e3ecc86f774414c78d05e": 24567, + "5d947d3886f774447b415893": 150015, + "5d947d4e86f774447b415895": 143966, + "5d95d6be86f77424444eb3a7": 24656, + "5d95d6fa86f77424484aa5e9": 23652, + "5d96141523f0ea1b7f2aacab": 16452, + "5d9f1fa686f774726974a992": 73364, + "5da46e3886f774653b7a83fe": 25653, + "5da5cdcd86f774529238fb9b": 17431, + "5da743f586f7744014504f72": 58824, + "5dcbd6b46ec07c0c4347a564": 75547, + "5dcbd6dddbd3d91b3e5468de": 65354, + "5dcbe9431e1f4616d354987e": 100569, + "5de652c31b7e3716273428be": 24682, + "5de653abf76fdc1ce94a5a2a": 5015, + "5de7bd7bfd6b4e6e2276dc25": 21997, + "5de8e67c4a9f347bc92edbd7": 138888, + "5de8e8dafd6b4e6e2276dc32": 9531, + "5de8ea8ffd6b4e6e2276dc35": 24780, + "5de8eaadbbaf010b10528a6d": 32486, + "5de8eac42a78646d96665d91": 32615, + "5de8f2d5b74cd90030650c72": 30610, + "5de8fbad2fbe23140d3ee9c4": 28066, + "5de8fbf2b74cd90030650c79": 16512, + "5de8fc0b205ddc616a6bc51b": 13660, + "5df24cf80dee1b22f862e9bc": 54217, + "5df256570dee1b22f862e9c4": 89370, + "5df25b6c0b92095fd441e4cf": 69888, + "5df35e59c41b2312ea3334d5": 87708, + "5df35e7f2a78646d96665dd4": 5335, + "5df35e970b92095fd441e4d2": 85528, + "5df35ea9c41b2312ea3334d8": 36834, + "5df35eb2b11454561e3923e2": 11328, + "5df38a5fb74cd90030650cb6": 122662, + "5df8a2ca86f7740bfe6df777": 35916, + "5df8a42886f77412640e2e75": 46252, + "5df8a58286f77412631087ed": 13351, + "5df8e085bb49d91fb446d6a8": 12879, + "5df8e4080b92095fd441e594": 107520, + "5df8f535bb49d91fb446d6b0": 22497, + "5df8f541c41b2312ea3335e3": 36296, + "5df916dfbb49d91fb446d6b9": 25541, + "5df917564a9f347bc92edca3": 19684, + "5dfa397fb11454561e39246c": 38025, + "5dfa3cd1b33c0951220c079b": 10025, + "5dfa3d2b0dee1b22f862eade": 67932, + "5dfa3d45dfc58d14537c20b0": 12834, + "5dfa3d7ac41b2312ea33362a": 26841, + "5dfa3d950dee1b22f862eae0": 19768, + "5dfcd0e547101c39625f66f9": 24187, + "5dfce88fe9dc277128008b2e": 60874, + "5dfe14f30b92095fd441edaf": 14253, + "5dfe6104585a0c3e995c7b82": 33768, + "5dff772da3651922b360bf91": 18642, + "5dff77c759400025ea5150cf": 11636, + "5dff8db859400025ea5150d4": 78592, + "5e00903ae9dc277128008b87": 29706, + "5e00cfa786f77469dc6e5685": 112947, + "5e01e9e273d8eb11426f5bc3": 69937, + "5e01ea19e9dc277128008c0b": 53428, + "5e01f31d86f77465cf261343": 107409, + "5e023cf8186a883be655e54f": 364, + "5e023e53d4353e3302577c4c": 1217, + "5e023e6e34d52a55c3304f71": 1563, + "5e023e88277cce2b522ff2b1": 6418, + "5e208b9842457a4a7a33d074": 29757, + "5e217ba4c1434648c13568cd": 22199, + "5e2192a498a36665e8337386": 39135, + "5e21a3c67e40bd02257a008a": 45477, + "5e21ca18e4d47f0da15e77dd": 19424, + "5e2aedd986f7746d404f3aa4": 45511, + "5e2aee0a86f774755a234b62": 54962, + "5e2aef7986f7746d3f3c33f5": 20254, + "5e2af00086f7746d3f3c33f7": 13286, + "5e2af02c86f7746d420957d4": 22788, + "5e2af22086f7746d3f3c33fa": 12404, + "5e2af29386f7746d4159f077": 23871, + "5e2af2bc86f7746d3f3c33fc": 11942, + "5e2af37686f774755a234b65": 15785, + "5e2af41e86f774755a234b67": 34551, + "5e2af47786f7746d404f3aaa": 18457, + "5e2af4a786f7746d3f3c3400": 28058, + "5e2af4d286f7746d4159f07a": 20461, + "5e2af51086f7746d3f3c3402": 19384, + "5e2af55f86f7746d4159f07c": 321279, + "5e32f56fcb6d5863cc5e5ee4": 31826, + "5e340dcdcb6d5863cc5e5efb": 28575, + "5e42c71586f7747f245e1343": 133305, + "5e42c81886f7742a01529f57": 71310, + "5e42c83786f7742a021fdf3c": 40545, + "5e4abc1f86f774069619fbaa": 11674, + "5e4abc6786f77406812bd572": 70775, + "5e4abfed86f77406a2713cf7": 19438, + "5e4bfc1586f774264f7582d3": 79537, + "5e4d34ca86f774264f758330": 52040, + "5e54f62086f774219b0f1937": 33244, + "5e54f6af86f7742199090bf3": 35542, + "5e54f76986f7740366043752": 26634, + "5e54f79686f7744022011103": 58838, + "5e56991336989c75ab4f03f6": 24726, + "5e5699df2161e06ac158df6f": 18779, + "5e569a0156edd02abe09f27d": 26056, + "5e569a132642e66b0b68015c": 21272, + "5e569a2e56edd02abe09f280": 17410, + "5e71f70186f77429ee09f183": 760629, + "5e71fad086f77422443d4604": 610364, + "5e81c3cbac2bb513793cdc75": 17822, + "5e81c4ca763d9f754677befa": 13705, "5e81f423763d9f754677bf2e": 674, - "5e831507ea0a7c419c2f9bd9": 46069, - "5e8488fa988a8701445df1e4": 22674, - "5e848d51e4dbc5266a4ec63b": 79148, - "5e848db4681bea2ada00daa9": 157570, - "5e848dc4e4dbc5266a4ec63d": 61944, - "5e85a9a6eacf8c039e4e2ac1": 1760, - "5e85aa1a988a8701445df1f5": 1640, - "5e870397991fd70db46995c8": 36156, - "5e87071478f43e51ca2de5e1": 85692, - "5e87076ce2db31558c75a11d": 18340, - "5e87116b81c4ed43e83cefdd": 38898, - "5e8f3423fd7471236e6e3b64": 24816, - "5e997f0b86f7741ac73993e2": 33692, - "5e9db13186f7742f845ee9d3": 58580, - "5e9dcf5986f7746c417435b3": 27917, - "5ea034eb5aad6446a939737b": 10212, - "5ea034f65aad6446a939737e": 37368, - "5ea03f7400685063ec28bfa8": 44608, - "5ea058e01dbce517f324b3e2": 167134, - "5ea05cf85ad9772e6624305d": 25250, - "5ea16acdfadf1d18c87b0784": 16719, - "5ea16ada09aa976f2e7a51be": 33657, - "5ea16d4d5aad6446a939753d": 29269, - "5ea172e498dacb342978818e": 25090, - "5ea17bbc09aa976f2e7a51cd": 33003, - "5ea17ca01412a1425304d1c0": 88692, - "5ea18c84ecf1982c7712d9a2": 381250, - "5ea2a8e200685063ec28c05a": 1314, - "5ed515c8d380ab312177c0fa": 41040, - "5ed515e03a40a50460332579": 25746, - "5ed515ece452db0eb56fc028": 26115, - "5ed515f6915ec335206e4152": 30591, - "5ed5160a87bb8443d10680b5": 43646, - "5ed51652f6c34d2cc26336a1": 128785, - "5ed5166ad380ab312177c100": 38932, - "5ede4739e0350d05467f73e8": 22679, - "5ede475339ee016e8c534742": 20498, - "5ede475b549eed7c6d5c18fb": 25973, - "5ede7a8229445733cb4c18e2": 187068, - "5ede7b0c6d23e5473e6e8c66": 51647, - "5eea21647547d6330471b3c9": 9694, - "5eea217fc64c5d0dfc05712a": 14642, - "5eeb2ff5ea4f8b73c827350b": 14016, - "5ef1b9f0c64c5d0dfc0571a1": 7264, - "5ef1ba28c64c5d0dfc0571a5": 87576, - "5ef3448ab37dfd6af863525c": 26481, - "5ef366938cef260c0642acad": 7841, - "5ef61964ec7f42238c31e0c1": 12000, - "5efaf417aeb21837e749c7f2": 75210, - "5efb0d4f4bc50b58e81710f3": 710, - "5efb0e16aeb21837e749c7ff": 694, - "5efb0fc6aeb21837e749c801": 1022, - "5efde6b4f5448336730dbd61": 298119, - "5eff09cd30a7dc22fd1ddfed": 84928, - "5f0596629e22f464da6bbdd9": 1775, - "5f2a9575926fd9352339381f": 35973, - "5f2aa43ba9b91d26f20ae6d2": 40387, - "5f2aa4464b50c14bcf07acdb": 12050, - "5f2aa4559b44de6b1b4e68d1": 15239, - "5f2aa46b878ef416f538b567": 156679, - "5f2aa47a200e2c0ee46efa71": 160128, - "5f2aa493cd375f14e15eea72": 29936, - "5f2aa49f9b44de6b1b4e68d4": 61939, - "5f36a0e5fbf956000b716b65": 17912, - "5f3e76d86cda304dcc634054": 30000, - "5f3e778efcd9b651187d7201": 15473, - "5f3e77b26cda304dcc634057": 12636, - "5f3e77f59103d430b93f94c1": 12495, - "5f3e7801153b8571434a924c": 24340, - "5f3e7823ddc4f03b010e2045": 34709, - "5f3e7897ddc4f03b010e204a": 33777, - "5f3e78a7fbf956000b716b8e": 31017, - "5f4f9eb969cdc30ff33f09db": 45417, - "5f5e45cc5021ce62144be7aa": 11814, - "5f5e467b0bc58666c37e7821": 96760, - "5f5f41f56760b4138443b352": 29697, - "5f60b85bbdb8e27dee3dc985": 42867, - "5f60bf4558eff926626a60f2": 21987, - "5f60c076f2bcbb675b00dac2": 30980, - "5f60cd6cf2bcbb675b00dac6": 83735, - "5f60e6403b85f6263c14558c": 18928, - "5f60e7788adaa7100c3adb49": 17158, - "5f60e784f2bcbb675b00dac7": 20700, - "5f6331e097199b7db2128dc2": 25939, - "5f6336bbda967c74a42e9932": 31251, - "5f6339d53ada5942720e2dc3": 125941, - "5f633f68f5750b524b45f112": 46235, - "5f633f791b231926f2329f13": 40807, - "5f633ff5c444ce7e3c30a006": 49553, - "5f63405df5750b524b45f114": 27170, - "5f63407e1b231926f2329f15": 41163, - "5f6340d3ca442212f4047eb2": 30884, - "5f6341043ada5942720e2dc5": 29165, - "5f63418ef5750b524b45f116": 21596, - "5f6372e2865db925d54f3869": 20593, - "5f647d9f8499b57dc40ddb93": 111071, - "5f647f31b6238e5dd066e196": 706, - "5f745ee30acaeb0d490d8c5b": 37120, - "5f9949d869e2777a0e779ba5": 60023, - "5fb64bc92b1b027b1f50bcf2": 59805, - "5fb651dc85f90547f674b6f4": 113476, - "5fb65363d1409e5ca04b54f5": 75001, - "5fb653962b1b027b1f50bd03": 19916, - "5fb6558ad6f0b2136f2d7eb7": 36017, - "5fb655a72b1b027b1f50bd06": 8312, - "5fb655b748c711690e3a8d5a": 29038, - "5fb6564947ce63734e3fa1da": 15604, - "5fb6567747ce63734e3fa1dc": 16201, - "5fbb976df9986c4cff3fe5f2": 26731, - "5fbb978207e8a97d1f0902d3": 67593, - "5fbbaa86f9986c4cff3fe5f6": 20729, - "5fbbc34106bde7524f03cbe9": 10882, - "5fbbc366ca32ed67276c1557": 69218, - "5fbbc383d5cb881a7363194a": 77043, - "5fbbfacda56d053a3543f799": 177400, - "5fbc210bf24b94483f726481": 155116, - "5fbc226eca32ed67276c155d": 13213, - "5fbc227aa56d053a3543f79e": 31383, - "5fbc22ccf24b94483f726483": 16339, - "5fbcbcf593164a5b6278efb2": 16333, - "5fbcbd02900b1d5091531dd3": 18389, - "5fbcbd10ab884124df0cd563": 19993, - "5fbcbd6c187fea44d52eda14": 18145, - "5fbcc1d9016cce60e8341ab3": 77248, - "5fbcc429900b1d5091531dd7": 15770, - "5fbcc437d724d907e2077d5c": 17992, - "5fbe3ffdf8b6a877a729ea82": 253, - "5fbe760793164a5b6278efc8": 63925, - "5fbe7618d6fa9c00c571bb6c": 58454, - "5fc0f9b5d724d907e2077d82": 19376, - "5fc0f9cbd6fa9c00c571bb90": 22907, - "5fc23426900b1d5091531e15": 18887, - "5fc23636016cce60e8341b05": 7825, - "5fc2369685fd526b824a5713": 45454, - "5fc382c1016cce60e8341b20": 3116, - "5fc3e272f8b6a877a729eac5": 31132, - "5fc3e466187fea44d52eda90": 27068, - "5fc3e4a27283c4046c5814ab": 260139, - "5fc3e4ee7283c4046c5814af": 110000, - "5fc3f2d5900b1d5091531e57": 97379, - "5fc4b97bab884124df0cd5e3": 11067, - "5fc4b992187fea44d52edaa9": 20827, - "5fc4b9b17283c4046c5814d7": 30375, - "5fc5396e900b1d5091531e72": 21050, - "5fc64ea372b0dd78d51159dc": 36532, - "5fca138c2a7b221b2852a5c6": 51231, - "5fca13ca637ee0341a484f46": 57265, - "5fce0cf655375d18a253eff0": 24241, - "5fce0f9b55375d18a253eff2": 17315, - "5fce16961f152d4312622bc9": 14225, - "5fd4c4fa16cac650092f6771": 13028, - "5fd4c5477a8d854fa0105061": 26121, - "5fd4c60f875c30179f5d04c2": 21768, - "5fd8d28367cb5e077335170f": 29883, - "60098ad7c2240c0fe85c570a": 35472, - "60098af40accd37ef2175f27": 14838, - "60098b1705871270cd5352a1": 20105, - "601948682627df266209af05": 12008035, - "60194943740c5d77f6705eea": 604, - "602286df23506e50807090c6": 7103, - "602a95fe4e02ce1eaa358729": 10364, - "602a97060ddce744014caf6f": 19007, - "602a9740da11d6478d5a06dc": 16872, - "602e620f9b513876d4338d9a": 20815, - "602e71bd53a60014f9705bfa": 16988, - "60337f5dce399e10262255d1": 4340, - "60339954d62c9b14ed777c06": 31970, - "6033fa48ffd42c541047f728": 28627, - "603409c80ca681766b6a0fb2": 29008, - "6034cf5fffd42c541047f72e": 24326, - "6034d0230ca681766b6a0fb5": 12883, - "6034d103ca006d2dca39b3f0": 68128, - "6034e3cb0ddce744014cb870": 19940, - "6034e3d953a60014f970617b": 30989, - "6034e3e20ddce744014cb878": 23166, - "603618feffd42c541047f771": 15263, - "603619720ca681766b6a0fc4": 14340, - "60361a7497633951dc245eb4": 7579, - "60361b0b5a45383c122086a1": 4352, - "60361b5a9a15b10d96792291": 15601, - "60363c0c92ec1c31037959f5": 36749, - "603648ff5a45383c122086ac": 30718, - "6038d614d10cbf667352dd44": 40239, - "60391a8b3364dc22b04d0ce5": 104425, - "60391afc25aff57af81f7085": 78259, - "60391b0fb847c71012789415": 23013, - "6040dd4ddcf9592f401632d2": 25755, - "6040de02647ad86262233012": 8930, - "60658776f2cb2e02a42ace2b": 16925, - "6065878ac9cf8012264142fd": 213599, - "606587a88900dc2d9a55b659": 136720, - "606587bd6d0bd7580617bacc": 21292, - "606587d11246154cad35d635": 13106, - "606587e18900dc2d9a55b65f": 10310, - "6065880c132d4d12c81fd8da": 15847, - "6065881d1246154cad35d637": 23075, - "6065c6e7132d4d12c81fd8e1": 10804, - "6065dc8a132d4d12c81fd8e3": 42187, - "606dae0ab0e443224b421bb7": 61835, - "606ee5c81246154cad35d65e": 12125, - "606eef756d0bd7580617baf8": 18500, - "606ef0812535c57a13424d20": 7997, - "606f262c6d0bd7580617bafa": 13348, - "606f263a8900dc2d9a55b68d": 14083, - "606f2696f2cb2e02a42aceb1": 31364, - "6076c1b9f2cb2e02a42acedc": 12037, - "6076c87f232e5a31c233d50e": 15000, - "607f201b3c672b3b3a24a800": 24301, - "607f20859ee58b18e41ecd90": 37033, - "607ffb988900dc2d9a55b6e4": 12780, - "6086b5392535c57a13424d70": 16993, - "6086b5731246154cad35d6c7": 19531, - "6087e0336d0bd7580617bb7a": 30694, - "6087e2a5232e5a31c233d552": 51870, - "6087e663132d4d12c81fd96b": 83495, - "609269c3b0e443224b421cc1": 25620, - "60926df0132d4d12c81fd9df": 99057, - "609a4b4fe2ff132951242d04": 13440, - "609a63b6e2ff132951242d09": 18010, - "609b9e31506cf869cf3eaf41": 11488, - "609bab8b455afd752b2e6138": 49832, - "609e8540d5c319764c2bc2e9": 100326, - "60a23797a37c940de7062d02": 22300, - "60a272cc93ef783291411d8e": 42014, - "60a2828e8689911a226117f9": 26037, - "60a621c49c197e4e8c4455e6": 27551, - "60a6220e953894617404b00a": 29124, - "60a7acf20c5cb24b01346648": 17855, - "60b0f561c4449e4cb624c1d7": 32787, - "60b0f6c058e0b0481a09ad11": 28976, - "60b0f7057897d47c5b04ab94": 75121, - "60b0f93284c20f0feb453da7": 19422, - "60b0f988c4449e4cb624c1da": 28081, - "60b52e5bc7d8103275739d67": 9749, - "60bf74184a63fc79b60c57f6": 24121, - "60db29ce99594040e04c4a27": 24137, - "6113c3586c780c1e710c90bc": 18164, - "6113cc78d3a39d50044c065a": 50106, - "6113cce3d92c473c770200c7": 40031, - "6113d6c3290d254f5e6b27db": 9539, - "611a31ce5b7ffe001b4649d1": 3178, - "612e0cfc8004cc50514c2d9e": 70067, - "612e0d3767085e45ef14057f": 28872, - "612e0d81290d254f5e6b291a": 26838, - "612e0e3c290d254f5e6b291d": 14551, - "612e0e55a112697a4b3a66e7": 13152, - "6130c3dffaa1272e43151c7d": 14683, - "6130c43c67085e45ef1405a1": 126770, - "6130c4d51cb55961fa0fd49f": 38225, - "6130ca3fd92c473c77020dbd": 75582, - "615d8d878004cc50514c3233": 18664, - "615d8da4d3a39d50044c10e8": 17681, - "615d8dbd290d254f5e6b2ed6": 14417, - "615d8df08004cc50514c3236": 18519, - "615d8e2f1cb55961fa0fd9a4": 23541, - "615d8e9867085e45ef1409c6": 41612, - "615d8eb350224f204c1da1cf": 16113, - "615d8f5dd92c473c770212ef": 26330, - "615d8f8567085e45ef1409ca": 107757, - "615d8faecabb9b7ad90f4d5d": 14131, - "615d8fd3290d254f5e6b2edc": 14190, - "61605d88ffa6e502ac5e7eeb": 28883, - "61605e13ffa6e502ac5e7eef": 13781, - "616442e4faa1272e43152193": 15934, - "616554fe50224f204c1da2aa": 16151, - "61657230d92c473c770213d7": 17127, - "616584766ef05c2ce828ef57": 11261, - "61659f79d92c473c770213ee": 15214, - "6165ac8c290d254f5e6b2f6c": 15708, - "6165adcdd3a39d50044c120f": 66536, - "6165aeedfaa1272e431521e3": 25399, - "61695095d92c473c7702147a": 37176, - "61702be9faa1272e431522c3": 21489, - "61702d8a67085e45ef140b24": 18320, - "61702f1b67085e45ef140b26": 25171, - "61703001d92c473c77021497": 41273, - "617130016c780c1e710c9a24": 22785, - "617131a4568c120fdd29482d": 50848, - "61713308d92c473c770214a0": 16613, - "6171367e1cb55961fa0fdb36": 33111, - "61713a8fd92c473c770214a4": 22976, - "61713cc4d8e3106d9806c109": 16894, - "6171407e50224f204c1da3c5": 24683, - "61714b2467085e45ef140b2c": 14486, - "61714eec290d254f5e6b2ffc": 40836, - "617151c1d92c473c770214ab": 81151, - "617153016c780c1e710c9a2f": 13954, - "617155ee50224f204c1da3cd": 31274, - "61715e7e67085e45ef140b33": 23038, - "6176a40f0b8c0312ac75a3d3": 33457, - "6176a48d732a664031271438": 20750, - "617aa4dd8166f034d57de9c5": 24848, - "618167441cb55961fa0fdc71": 10617, - "618167616ef05c2ce828f1a8": 6774, - "618168dc8004cc50514c34fc": 36080, - "61816df1d3a39d50044c139e": 15376, - "61816dfa6ef05c2ce828f1ad": 14330, - "61816fcad92c473c770215cc": 8070, - "61817865d3a39d50044c13a4": 6812, - "618178aa1cb55961fa0fdc80": 15679, - "61825d06d92c473c770215de": 28865, - "61825d24d3a39d50044c13af": 21641, - "6183b0711cb55961fa0fdcad": 61497, - "6183b084a112697a4b3a6e6c": 65659, - "6183d53f1cb55961fa0fdcda": 34791, - "6183fc15d3a39d50044c13e9": 59984, - "6183fd911cb55961fa0fdce9": 60993, - "6183fd9e8004cc50514c358f": 102642, - "6184055050224f204c1da540": 54818, - "618407a850224f204c1da549": 4858, - "61840bedd92c473c77021635": 21044, - "61840d85568c120fdd2962a5": 16834, - "618428466ef05c2ce828f218": 56791, - "618a5d5852ecee1505530b2a": 7988, - "618a75c9a3884f56c957ca1b": 14673, - "618a75f0bd321d49084cd399": 14391, - "618aef6d0a5a59657e5f55ee": 16002, - "618b9643526131765025ab35": 32025, - "618b9671d14d6d5ab879c5ea": 39476, - "618b9682a3884f56c957ca78": 19448, - "618ba27d9008e4636a67f61d": 139481, - "618ba91477b82356f91ae0e8": 32013, - "618ba92152ecee1505530bd3": 19969, - "618bab21526131765025ab3f": 37359, - "618bb76513f5097c8d5aa2d5": 43788, - "618cfae774bb2d036a049e7c": 50536, - "619256e5f8af2c1a4e1f5d92": 14156, - "619386379fb0c665d5490dbe": 50531, - "6193a720f8ee7e52e42109ed": 17993, - "6193d3149fb0c665d5490e32": 14308, - "6193d338de3cdf1d2614a6fc": 22157, - "6193dcd0f8ee7e52e4210a28": 13381, - "6194ef39de3cdf1d2614a768": 40053, - "6194efe07c6c7b169525f11b": 54536, - "6194eff92d2c397d6600348b": 27391, - "6194f017ed0429009f543eaa": 35769, - "6194f02d9bb3d20b0946d2f0": 26248, - "6194f41f9fb0c665d5490e75": 24893, - "6194f5722d2c397d6600348f": 13897, - "6194f5a318a3974e5e7421eb": 28509, - "6194f5d418a3974e5e7421ef": 18366, - "619621a4de3cdf1d2614a7a7": 17111, - "619624b26db0f2477964e6b0": 17260, - "6196255558ef8c428c287d1c": 11365, - "6196364158ef8c428c287d9f": 763, - "6196365d58ef8c428c287da1": 662, - "619636be6db0f2477964e710": 1176, - "61963a852d2c397d660036ad": 18476, - "61965d9058ef8c428c287e0d": 15291, - "619666f4af1f5202c57a952d": 19112, - "6197b229af1f5202c57a9bea": 15397, - "619b5db699fb192e7430664f": 20274, - "619b69037b9de8162902673e": 20531, - "619bdd8886e01e16f839a99c": 48793, - "619bde7fc9546643a67df6f4": 40422, - "619bdef8c9546643a67df6f6": 102870, - "619bdfd4c9546643a67df6fa": 51761, - "619cbf476b8a1b37a54eebf8": 18957, - "619cbf7d23893217ec30b689": 302299, - "619cbf9e0a7c3a1a2731940a": 290275, - "619cbfccbedcde2f5b3f7bdd": 83228, - "619cbfeb6b8a1b37a54eebfa": 66549, - "619cc01e0a7c3a1a2731940c": 13260, - "619cf0335771dd3c390269ae": 55810, - "619d36da53b4d42ee724fae4": 5101, - "61a4c8884f95bc3b2c5dc96f": 19289, - "61a64428a8c6aa1b795f0ba1": 13434, - "61a6444b8c141d68246e2d2f": 22160, - "61a64492ba05ef10d62adcc1": 31684, - "61aa5aed32a4743c3453d319": 22720, - "61aa5b518f5e7a39b41416e2": 28218, - "61aa5b7db225ac1ead7957c1": 66035, - "61aa5ba8018e9821b7368da9": 70796, - "61aa81fcb225ac1ead7957c3": 33635, - "61bca7cda0eae612383adf57": 50702, - "61bf7b6302b3924be92fa8c3": 20585, - "61bf7c024770ee6f9c6b8b53": 72260, - "61bf83814088ec1a363d7097": 25302, - "61c18d83b00456371a66814b": 21604, - "61c18db6dfd64163ea78fbb4": 21613, - "61f7c9e189e6fb1a5e3ea78d": 20278, - "6217726288ed9f0845317459": 12615, - "62178be9d0050232da3485d9": 17503, - "622b38c56762c718e457e246": 38845, - "622b397c9a3d4327e41843b6": 22659, - "622b4d7df9cfc87d675d2ded": 21772, - "622efbcb99f4ea1a4d6c9a15": 9366, - "622f128cec80d870d349b4e8": 13617, - "622f140da5958f63c67f1735": 20376, - "622f14e899892a7f9e08f6c5": 25815, - "623063e994fc3f7b302a9696": 45211, - "62307b7b10d2321fa8741921": 25803, - "62330b3ed4dc74626d570b95": 897, - "62330bfadc5883093563729b": 573, - "62330c18744e5e31df12f516": 789, - "62330c40bdd19b369e1e53d1": 432, - "62389bc9423ed1685422dc57": 25024, - "62389be94d5d474bf712e709": 32340, - "623b2e9d11c3296b440d1638": 68779, - "623c2f4242aee3103f1c44b7": 12045, - "623c2f652febb22c2777d8d7": 23667, - "623c3be0484b5003161840dc": 16057, - "623c3c1f37b4b31470357737": 16807, - "624c0b3340357b5f566e8766": 12723, - "624c29ce09cd027dff2f8cd7": 16462, - "624c2e8614da335f1e034d8c": 14357, - "6259b864ebedf17603599e88": 34071, - "6259bdcabd28e4721447a2aa": 44259, - "6259c3387d6aab70bc23a18d": 24890, - "6259c3d8012d6678ec38eeb8": 21522, - "625eb0faa6e3a82193267ad9": 25554, - "625ff2eb9f5537057932257d": 19506, - "625ff3046d721f05d93bf2ee": 25388, - "625ff31daaaa8c1130599f64": 19254, - "626667e87379c44d557b7550": 24067, - "626673016f1edc06f30cf6d5": 43780, - "62669bccdb9ebb4daa44cd14": 14968, - "6267c6396b642f77f56f5c1c": 19146, - "6269220d70b6c02e665f2635": 40635, - "6269545d0e57f218e4548ca2": 15133, - "626a74340be03179a165e30c": 13159, - "626a8ae89e664a2e2a75f409": 8942, - "626a9cb151cb5849f6002890": 52607, - "626bb8532c923541184624b4": 22036, - "626becf9582c3e319310b837": 25822, - "6272370ee4013c5d7e31f418": 22084, - "6272379924e29f06af4d5ecb": 23690, - "627254cc9c563e6e442c398f": 25720, - "6272874a6c47bd74f92e2087": 24268, - "627bce33f21bc425b06ab967": 26007, - "62811f461d5df4475f46a332": 20141, - "62811fa609427b40ab14e765": 65625, - "628120fd5631d45211793c9f": 16190, - "6284bd5f95250a29bc628a30": 15826, - "62850c28da09541f43158cca": 59628, - "628a664bccaab13006640e47": 20884, - "628a665a86cbd9750d2ff5e5": 41409, - "628a6678ccaab13006640e49": 12660, - "628a66b41d5e41750e314f34": 8032, - "628a7b23b0f75035732dd565": 94762, - "628a83c29179c324ed269508": 32201, - "628a85ee6b1d481ff772e9d5": 11572, - "628b5638ad252a16da6dd245": 44153, - "628b8d83717774443b15e248": 54710, - "628b916469015a4e1711ed8d": 31008, - "628b9471078f94059a4b9bfb": 34500, - "628b9a40717774443b15e9f2": 29791, - "628b9be6cff66b70c002b14c": 1058410, - "628b9c37a733087d0d7fe84b": 52532, - "628baf0b967de16aab5a4f36": 76185, - "628bc7fb408e2b2e9c0801b1": 218313, - "628c9ab845c59e5b80768a81": 20447, - "628e1ffc83ec92260c0f437f": 203438, - "628e4dd1f477aa12234918aa": 30141, - "628e4e576d783146b124c64d": 204658, - "62987c658081af308d7558c6": 172504, - "62987cb98081af308d7558c8": 36226, - "62987da96188c076bc0d8c51": 65306, - "62987dfc402c7f69bf010923": 176252, - "62987e26a77ec735f90a2995": 24682, - "62a08f4c4f842e1bd12d9d62": 70735, - "62a091170b9d3c46de5b6cf2": 32136, - "62a09cb7a04c0c5c6e0a84f8": 31528, - "62a09cfe4f842e1bd12da3e4": 42834, - "62a09d3bcf4a99369e262447": 50530, - "62a09d79de7ac81993580530": 48190, - "62a09dd4621468534a797ac7": 22408, - "62a09e08de7ac81993580532": 32497, - "62a09e410b9d3c46de5b6e78": 32195, - "62a09e73af34e73a266d932a": 33199, - "62a09e974f842e1bd12da3f0": 41762, - "62a09ec84f842e1bd12da3f2": 19555, - "62a09ee4cf4a99369e262453": 9494, - "62a09f32621468534a797acb": 30685, - "62a0a043cf4a99369e2624a5": 18679, - "62a0a098de7ac8199358053b": 27516, - "62a0a0bb621468534a797ad5": 26059, - "62a0a124de7ac81993580542": 41776, - "62a0a16d0b9d3c46de5b6e97": 127579, - "62a1b7fbc30cfa1d366af586": 118224, - "62a5c2c98ec41a51b34739c0": 15857, - "62a5c333ec21e50cad3b5dc6": 17244, - "62a5c41e8ec41a51b34739c3": 14407, - "62a61c988ec41a51b34758d5": 27841, - "62a9cb937377a65d7b070cef": 66711, - "62e14904c2699c0ec93adc47": 40429, - "62e153bcdb1a5c41971c1b5b": 55745, - "62e292e7b6c0ee2f230cee00": 37222, - "62e2a7138e1ac9380579c122": 31066, - "62e2a754b6c0ee2f230cee0f": 19409, - "62e7c4fba689e8c9c50dfc38": 40622, - "62e7c7f3c34ea971710c32fc": 53889, - "62e7c98b550c8218d602cbb4": 26578, - "62ea7c793043d74a0306e19f": 26825, - "62ff9920fe938a24c90c10d2": 16535, - "63076701a987397c0816d21b": 18998, - "630767c37d50ff5e8a1ea71a": 27476, - "630769c4962d0247b029dc60": 16987, - "63088377b5cd696784087147": 17180, - "630e1adbbd357927e4007c09": 4334, - "630e295c984633f1fb0e7c30": 39147, - "630f27f04f3f6281050b94d7": 13744, - "630f2872911356c17d06abc5": 12887, - "630f291b9f66a28b37094bb8": 56701, - "630f2982cdb9e392db0cbcc7": 29549, - "63171672192e68c5460cebc5": 57939, - "633a98eab8b0506e48497c1a": 15861, - "633ec7c2a6918cb895019c6c": 76768, - "634959225289190e5e773b3b": 296418, - "634e61b0767cb15c4601a877": 11100, - "634eba08f69c710e0108d386": 34655, - "635267ab3c89e2112001f826": 418733, - "635a758bfefc88a93f021b8a": 22531, - "63611865ba5b90db0c0399d1": 70156, - "63626d904aa74b8fe30ab426": 410649, - "636270263f2495c26f00b007": 97330, - "637784c5f7b3f4ac1a0d1a9a": 6074, - "637b60c3b7afa97bfc3d7001": 54226, - "637b612fb7afa97bfc3d7005": 67703, - "637b6179104668754b72f8f5": 41844, - "637b620db7afa97bfc3d7009": 67700, - "637b6251104668754b72f8f9": 46482, - "637b6d610aef6cfc5e02dd14": 11778, - "637f57b78d137b27f70c496a": 23363, - "637f57c532b66e7e320a6676": 21441, - "637f57d2f5ef8c33840d36c4": 15705, - "637f589af5ef8c33840d36d3": 12667, - "6386120cd6baa055ad1e201c": 22923, - "638612b607dfed1ccb7206ba": 92746, - "63877c99e785640d436458ea": 61081, - "63888bbd28e5cc32cc09d2b6": 31591, - "6388c4478d895f557a0c6512": 40029, - "6388c4ac8d895f557a0c6515": 60943, - "6388c5d19c00405f4717c0f0": 16398, - "6389c6463485cf0eeb260715": 26830, - "6389c6c7dbfd5e4b95197e68": 18929, - "6389c70ca33d8c4cdf4932c6": 11782, - "6389c8c5dbfd5e4b95197e6b": 646795, - "6389f1dfc879ce63f72fc43e": 18113, - "638db77630c4240f9e06f8b6": 16324, - "638de3603a1a4031d8260b8c": 19036, - "638f1ff84822287cad04be9d": 8202, - "638f2003bbd47aeb9e0ff637": 23739, - "63969c9019971040b005049b": 12968, - "6396aaa9a52ace83df0840ab": 9885, - "63a0b208f444d32d6f03ea1e": 87734, - "63a39667c9b3aa4b61683e98": 26284, - "63a397d3af870e651d58e65b": 655301, - "63a399193901f439517cafb6": 53510, - "63a39c69af870e651d58e6aa": 24346, - "63a39c7964283b5e9c56b280": 45952, - "63a39cb1c9b3aa4b61683ee2": 18314, - "63a39ce4cd6db0635c1975fa": 15401, - "63a39df18a56922e82001f25": 12352, - "63a39dfe3901f439517cafba": 17359, - "63a39e49cd6db0635c1975fc": 17765, - "63a39f08cd6db0635c197600": 32145, - "63a39f18c2d53c2c6839c1d3": 34388, - "63a39f6e64283b5e9c56b289": 64758, - "63a39fc0af870e651d58e6ae": 1631742, - "63a39fd1c9b3aa4b61683efb": 21064, - "63a39fdf1e21260da44a0256": 16530, - "63a3a93f8a56922e82001f5d": 1023957, - "63a71e781031ac76fe773c7d": 18470, - "63a71e86b7f4570d3a293169": 61603, - "63a71e922b25f7513905ca20": 69483, - "63a71eb5b7f4570d3a29316b": 23583, - "63a71ed21031ac76fe773c7f": 27308, - "63ac5c9658d0485fc039f0b8": 18544, - "63d114019e35b334d82302f7": 40180, - "63d3ce0446bd475bcb50f55f": 35499, - "63d3ce281fe77d0f2801859e": 48540, - "63d3d44a2a49307baf09386d": 108175, - "63f4ba71f31d4a33b87bd046": 13506, - "63f4da90f31d4a33b87bd054": 18060, - "63f5ed14534b2c3d5479a677": 50422, - "63f5feead259b42f0b4d6d0f": 49836, - "6405ff6bd4578826ec3e377a": 12382, - "640b20359ab20e15ee445fa9": 35731, - "641074a07fd350b98c0b3f96": 49939, - "6422e1ea3c0f06190302161a": 19496, - "643ea5b23db6f9f57107d9fd": 92253, - "644a3df63b0b6f03e101e065": 37224, - "64639a9aab86f8fd4300146c": 23623, - "6464d870bb2c580352070cc4": 18065, - "64748cb8de82c85eaf0a273a": 22313, - "6477772ea8a38bb2050ed4db": 14009, - "64785e7c19d732620e045e15": 32791, - "648afce7ec6bb25b2608defb": 6790, - "6491c6f6ef312a876705191b": 31552, - "6492c6dd60fdb10a020621a2": 16254, - "6492c8bba6e68e06fb0bae87": 44175, - "6492d7847363b8a52206bc52": 22286, - "6492e3a97df7d749100e29ee": 32256, - "6492ef63cfcf7c89e701abf1": 14833, - "6499849fc93611967b034949": 69794, - "649ec127c93611967b034957": 27018, - "649ec2af961514b22506b10f": 47944, - "649ec2f3961514b22506b111": 107822, - "649ec30cb013f04a700e60fb": 31969, - "64a536392d2c4e6e970f4121": 66073, - "64a5366719bab53bd203bf33": 59164, - "64abd93857958b4249003418": 122469, - "64ace9d9b5bf5e95f50a4c1d": 42114, - "64acea09c4eda9354b0226ad": 3810, - "64acea0d03378853630da53b": 26400, - "64aceaecc4eda9354b0226b6": 16857, - "64aceafcb5bf5e95f50a4c20": 18102, - "64acee6903378853630da544": 58856, - "64b6979341772715af0f9c39": 474, - "64b7af434b75259c590fa893": 1722, - "64b7af5a8532cf95ee0a0dbd": 121, - "64b7af734b75259c590fa895": 159, - "64b7bbb74b75259c590fa897": 507, - "64b8725c4b75259c590fa899": 1959, - "64b8ee384b75259c590fa89b": 1503, - "64b8f7968532cf95ee0a0dbf": 246, - "64b8f7b5389d7ffd620ccba2": 339, - "64b8f7c241772715af0f9c3d": 493, - "64b9cf0ac12b9c38db26923a": 9288, - "64b9e2037fdfb81df81e3c25": 9747, - "64b9e265c94d0d15c5027e35": 5189, - "64be7095047e826eae02b0c1": 11193, - "64be7110bf597ba84a0a41ea": 13726, - "64be79c487d1510151095552": 51366, - "64be79e2bf8412471d0d9bcc": 46293, - "64c196ad26a15b84aa07132f": 71107, - "64ccc1d4a0f13c24561edf27": 34979, - "64ccc1ec1779ad6ba200a137": 26936, - "64ccc1f4ff54fb38131acf27": 30549, - "64ccc1fe088064307e14a6f7": 36980, - "64ccc206793ca11c8f450a38": 39514, - "64ccc2111779ad6ba200a139": 38962, - "64ccc246ff54fb38131acf29": 52040, - "64ccc24de61ea448b507d34d": 55502, - "64ccc25f95763a1ae376e447": 1008576, - "64ccc268c41e91416064ebc7": 13989, - "64ce572331dd890873175115": 90938, + "5e831507ea0a7c419c2f9bd9": 6664, + "5e8488fa988a8701445df1e4": 24386, + "5e848d1c264f7c180b5e35a9": 97360, + "5e848d2eea0a7c419c2f9bfd": 203930, + "5e848d51e4dbc5266a4ec63b": 45852, + "5e848db4681bea2ada00daa9": 129888, + "5e85a9a6eacf8c039e4e2ac1": 1989, + "5e85aa1a988a8701445df1f5": 1304, + "5e870397991fd70db46995c8": 36204, + "5e87071478f43e51ca2de5e1": 62650, + "5e87076ce2db31558c75a11d": 15389, + "5e87116b81c4ed43e83cefdd": 36382, + "5e8f3423fd7471236e6e3b64": 28196, + "5e997f0b86f7741ac73993e2": 34096, + "5e9db13186f7742f845ee9d3": 65206, + "5e9dcf5986f7746c417435b3": 32792, + "5ea034eb5aad6446a939737b": 5312, + "5ea034f65aad6446a939737e": 40641, + "5ea03f7400685063ec28bfa8": 37477, + "5ea058e01dbce517f324b3e2": 189254, + "5ea05cf85ad9772e6624305d": 23641, + "5ea16acdfadf1d18c87b0784": 17055, + "5ea16ada09aa976f2e7a51be": 40041, + "5ea16d4d5aad6446a939753d": 29849, + "5ea172e498dacb342978818e": 32405, + "5ea17bbc09aa976f2e7a51cd": 34806, + "5ea17ca01412a1425304d1c0": 91748, + "5ea18c84ecf1982c7712d9a2": 401619, + "5ea2a8e200685063ec28c05a": 1732, + "5ed515c8d380ab312177c0fa": 40610, + "5ed515e03a40a50460332579": 26378, + "5ed515ece452db0eb56fc028": 25921, + "5ed515f6915ec335206e4152": 30865, + "5ed5160a87bb8443d10680b5": 43118, + "5ed51652f6c34d2cc26336a1": 139273, + "5ed5166ad380ab312177c100": 38991, + "5ede4739e0350d05467f73e8": 31423, + "5ede475339ee016e8c534742": 28982, + "5ede475b549eed7c6d5c18fb": 32183, + "5ede7a8229445733cb4c18e2": 184718, + "5ede7b0c6d23e5473e6e8c66": 50681, + "5eea21647547d6330471b3c9": 15915, + "5eea217fc64c5d0dfc05712a": 12461, + "5eeb2ff5ea4f8b73c827350b": 14900, + "5ef1b9f0c64c5d0dfc0571a1": 17264, + "5ef1ba28c64c5d0dfc0571a5": 78966, + "5ef3448ab37dfd6af863525c": 18129, + "5ef366938cef260c0642acad": 9080, + "5ef61964ec7f42238c31e0c1": 11691, + "5efaf417aeb21837e749c7f2": 74180, + "5efb0d4f4bc50b58e81710f3": 694, + "5efb0e16aeb21837e749c7ff": 775, + "5efb0fc6aeb21837e749c801": 1071, + "5efde6b4f5448336730dbd61": 280615, + "5eff09cd30a7dc22fd1ddfed": 83839, + "5f0596629e22f464da6bbdd9": 2212, + "5f2a9575926fd9352339381f": 34987, + "5f2aa43ba9b91d26f20ae6d2": 36523, + "5f2aa4559b44de6b1b4e68d1": 13146, + "5f2aa46b878ef416f538b567": 137396, + "5f2aa47a200e2c0ee46efa71": 219780, + "5f2aa493cd375f14e15eea72": 40379, + "5f2aa49f9b44de6b1b4e68d4": 66187, + "5f36a0e5fbf956000b716b65": 13235, + "5f3e778efcd9b651187d7201": 8133, + "5f3e77b26cda304dcc634057": 18010, + "5f3e77f59103d430b93f94c1": 18798, + "5f3e7801153b8571434a924c": 20292, + "5f3e7823ddc4f03b010e2045": 34844, + "5f3e7897ddc4f03b010e204a": 22221, + "5f3e78a7fbf956000b716b8e": 22221, + "5f4f9eb969cdc30ff33f09db": 49763, + "5f5e45cc5021ce62144be7aa": 14060, + "5f5e467b0bc58666c37e7821": 107044, + "5f5f41f56760b4138443b352": 31518, + "5f60b85bbdb8e27dee3dc985": 43205, + "5f60bf4558eff926626a60f2": 24383, + "5f60c076f2bcbb675b00dac2": 30956, + "5f60cd6cf2bcbb675b00dac6": 105509, + "5f60e6403b85f6263c14558c": 16901, + "5f60e7788adaa7100c3adb49": 23109, + "5f60e784f2bcbb675b00dac7": 14832, + "5f6331e097199b7db2128dc2": 30674, + "5f6336bbda967c74a42e9932": 31417, + "5f6339d53ada5942720e2dc3": 101050, + "5f633f68f5750b524b45f112": 57756, + "5f633f791b231926f2329f13": 46379, + "5f633ff5c444ce7e3c30a006": 54601, + "5f63405df5750b524b45f114": 28611, + "5f63407e1b231926f2329f15": 39845, + "5f6340d3ca442212f4047eb2": 39126, + "5f6341043ada5942720e2dc5": 30892, + "5f63418ef5750b524b45f116": 23545, + "5f6372e2865db925d54f3869": 19266, + "5f647d9f8499b57dc40ddb93": 97445, + "5f647f31b6238e5dd066e196": 1116, + "5f745ee30acaeb0d490d8c5b": 39280, + "5f9949d869e2777a0e779ba5": 89863, + "5fb64bc92b1b027b1f50bcf2": 55756, + "5fb651dc85f90547f674b6f4": 87335, + "5fb65363d1409e5ca04b54f5": 51705, + "5fb653962b1b027b1f50bd03": 19853, + "5fb6558ad6f0b2136f2d7eb7": 46295, + "5fb655b748c711690e3a8d5a": 31126, + "5fb6564947ce63734e3fa1da": 25184, + "5fb6567747ce63734e3fa1dc": 18894, + "5fbb976df9986c4cff3fe5f2": 17702, + "5fbb978207e8a97d1f0902d3": 68514, + "5fbbaa86f9986c4cff3fe5f6": 22604, + "5fbbc34106bde7524f03cbe9": 8591, + "5fbbc366ca32ed67276c1557": 40518, + "5fbbc383d5cb881a7363194a": 227573, + "5fbbfabed5cb881a7363194e": 49896, + "5fbbfacda56d053a3543f799": 265981, + "5fbc226eca32ed67276c155d": 14798, + "5fbc227aa56d053a3543f79e": 26953, + "5fbc22ccf24b94483f726483": 18239, + "5fbcbcf593164a5b6278efb2": 17710, + "5fbcbd02900b1d5091531dd3": 18397, + "5fbcbd10ab884124df0cd563": 20051, + "5fbcbd6c187fea44d52eda14": 21253, + "5fbcc1d9016cce60e8341ab3": 81248, + "5fbcc3e4d6fa9c00c571bb58": 108936, + "5fbcc429900b1d5091531dd7": 16867, + "5fbcc437d724d907e2077d5c": 21189, + "5fbe3ffdf8b6a877a729ea82": 264, + "5fbe760793164a5b6278efc8": 65360, + "5fbe7618d6fa9c00c571bb6c": 62510, + "5fc0f9b5d724d907e2077d82": 20866, + "5fc0f9cbd6fa9c00c571bb90": 23481, + "5fc23426900b1d5091531e15": 21221, + "5fc23636016cce60e8341b05": 7792, + "5fc2369685fd526b824a5713": 50395, + "5fc382c1016cce60e8341b20": 3737, + "5fc3e272f8b6a877a729eac5": 31890, + "5fc3e466187fea44d52eda90": 27759, + "5fc3f2d5900b1d5091531e57": 123646, + "5fc4b97bab884124df0cd5e3": 8775, + "5fc4b992187fea44d52edaa9": 17638, + "5fc4b9b17283c4046c5814d7": 32709, + "5fc64ea372b0dd78d51159dc": 43409, + "5fca138c2a7b221b2852a5c6": 51769, + "5fca13ca637ee0341a484f46": 57577, + "5fce0cf655375d18a253eff0": 25292, + "5fce0f9b55375d18a253eff2": 24602, + "5fce16961f152d4312622bc9": 16135, + "5fd4c4fa16cac650092f6771": 13011, + "5fd4c5477a8d854fa0105061": 23456, + "5fd4c60f875c30179f5d04c2": 22307, + "5fd8d28367cb5e077335170f": 32169, + "60098ad7c2240c0fe85c570a": 40110, + "60098af40accd37ef2175f27": 14801, + "60098b1705871270cd5352a1": 24247, + "601948682627df266209af05": 13279130, + "60194943740c5d77f6705eea": 1834, + "602286df23506e50807090c6": 8595, + "602a95fe4e02ce1eaa358729": 12456, + "602a97060ddce744014caf6f": 19421, + "602a9740da11d6478d5a06dc": 16921, + "602e620f9b513876d4338d9a": 23052, + "602e71bd53a60014f9705bfa": 11427, + "603372b4da11d6478d5a07ff": 14250, + "60337f5dce399e10262255d1": 9676, + "60339954d62c9b14ed777c06": 34251, + "6033fa48ffd42c541047f728": 28941, + "603409c80ca681766b6a0fb2": 37808, + "6034cf5fffd42c541047f72e": 27580, + "6034d0230ca681766b6a0fb5": 12141, + "6034d103ca006d2dca39b3f0": 78460, + "6034e3cb0ddce744014cb870": 24954, + "6034e3d953a60014f970617b": 38446, + "6034e3e20ddce744014cb878": 25368, + "603618feffd42c541047f771": 36268, + "603619720ca681766b6a0fc4": 16540, + "60361a7497633951dc245eb4": 11677, + "60361b0b5a45383c122086a1": 10519, + "60361b5a9a15b10d96792291": 10990, + "60363c0c92ec1c31037959f5": 35448, + "603648ff5a45383c122086ac": 29738, + "6038d614d10cbf667352dd44": 41412, + "60391a8b3364dc22b04d0ce5": 105244, + "60391afc25aff57af81f7085": 78291, + "60391b0fb847c71012789415": 22988, + "6040dd4ddcf9592f401632d2": 27394, + "6040de02647ad86262233012": 17414, + "60658776f2cb2e02a42ace2b": 18206, + "6065878ac9cf8012264142fd": 224118, + "606587a88900dc2d9a55b659": 153972, + "606587bd6d0bd7580617bacc": 18191, + "606587d11246154cad35d635": 12002, + "606587e18900dc2d9a55b65f": 11982, + "6065880c132d4d12c81fd8da": 13303, + "6065881d1246154cad35d637": 28342, + "6065c6e7132d4d12c81fd8e1": 6651, + "6065dc8a132d4d12c81fd8e3": 36198, + "606dae0ab0e443224b421bb7": 75948, + "606ee5c81246154cad35d65e": 21526, + "606eef756d0bd7580617baf8": 11874, + "606ef0812535c57a13424d20": 10526, + "606f262c6d0bd7580617bafa": 14340, + "606f263a8900dc2d9a55b68d": 14630, + "606f2696f2cb2e02a42aceb1": 33158, + "6076c1b9f2cb2e02a42acedc": 15316, + "6076c87f232e5a31c233d50e": 25494, + "607d5aa50494a626335e12ed": 74646, + "607f201b3c672b3b3a24a800": 27482, + "607f20859ee58b18e41ecd90": 56249, + "607ffb988900dc2d9a55b6e4": 15218, + "6086b5392535c57a13424d70": 20989, + "6086b5731246154cad35d6c7": 20549, + "6087e0336d0bd7580617bb7a": 28811, + "6087e2a5232e5a31c233d552": 67673, + "6087e663132d4d12c81fd96b": 76458, + "609269c3b0e443224b421cc1": 25229, + "60926df0132d4d12c81fd9df": 132967, + "609a4b4fe2ff132951242d04": 9243, + "609a63b6e2ff132951242d09": 17646, + "609b9e31506cf869cf3eaf41": 10197, + "609bab8b455afd752b2e6138": 51761, + "609e8540d5c319764c2bc2e9": 123438, + "60a23797a37c940de7062d02": 24769, + "60a272cc93ef783291411d8e": 44566, + "60a2828e8689911a226117f9": 29574, + "60a621c49c197e4e8c4455e6": 28264, + "60a6220e953894617404b00a": 29252, + "60a7acf20c5cb24b01346648": 21069, + "60b0f561c4449e4cb624c1d7": 32478, + "60b0f6c058e0b0481a09ad11": 28719, + "60b0f7057897d47c5b04ab94": 76805, + "60b0f93284c20f0feb453da7": 22055, + "60b0f988c4449e4cb624c1da": 28636, + "60b52e5bc7d8103275739d67": 10806, + "60bf74184a63fc79b60c57f6": 24645, + "60db29ce99594040e04c4a27": 24654, + "6113c3586c780c1e710c90bc": 20179, + "6113cc78d3a39d50044c065a": 64759, + "6113cce3d92c473c770200c7": 51610, + "6113d6c3290d254f5e6b27db": 7357, + "611a31ce5b7ffe001b4649d1": 20000, + "612e0cfc8004cc50514c2d9e": 87552, + "612e0d3767085e45ef14057f": 32788, + "612e0d81290d254f5e6b291a": 31954, + "612e0e3c290d254f5e6b291d": 15226, + "612e0e55a112697a4b3a66e7": 14438, + "6130c3dffaa1272e43151c7d": 20103, + "6130c43c67085e45ef1405a1": 162816, + "6130c4d51cb55961fa0fd49f": 39167, + "6130ca3fd92c473c77020dbd": 77473, + "615d8d878004cc50514c3233": 14260, + "615d8da4d3a39d50044c10e8": 22544, + "615d8dbd290d254f5e6b2ed6": 14810, + "615d8df08004cc50514c3236": 17219, + "615d8e2f1cb55961fa0fd9a4": 25095, + "615d8e9867085e45ef1409c6": 45825, + "615d8eb350224f204c1da1cf": 19235, + "615d8f5dd92c473c770212ef": 24767, + "615d8f8567085e45ef1409ca": 123108, + "615d8faecabb9b7ad90f4d5d": 14765, + "615d8fd3290d254f5e6b2edc": 20361, + "61605d88ffa6e502ac5e7eeb": 31238, + "61605e13ffa6e502ac5e7eef": 14987, + "616442e4faa1272e43152193": 18463, + "616554fe50224f204c1da2aa": 15884, + "61657230d92c473c770213d7": 17130, + "616584766ef05c2ce828ef57": 11121, + "61659f79d92c473c770213ee": 16409, + "6165ac8c290d254f5e6b2f6c": 17798, + "6165aeedfaa1272e431521e3": 88351, + "61695095d92c473c7702147a": 30515, + "61702be9faa1272e431522c3": 19030, + "61702d8a67085e45ef140b24": 12828, + "61702f1b67085e45ef140b26": 33522, + "617130016c780c1e710c9a24": 17520, + "617131a4568c120fdd29482d": 51068, + "61713308d92c473c770214a0": 14444, + "6171367e1cb55961fa0fdb36": 40488, + "61713a8fd92c473c770214a4": 50764, + "61713cc4d8e3106d9806c109": 18194, + "6171407e50224f204c1da3c5": 28324, + "61714b2467085e45ef140b2c": 13382, + "61714eec290d254f5e6b2ffc": 41447, + "617151c1d92c473c770214ab": 84135, + "617153016c780c1e710c9a2f": 25715, + "617155ee50224f204c1da3cd": 36951, + "6176a40f0b8c0312ac75a3d3": 31775, + "6176a48d732a664031271438": 22624, + "617aa4dd8166f034d57de9c5": 20431, + "618167441cb55961fa0fdc71": 27613, + "618167528004cc50514c34f9": 23900, + "618167616ef05c2ce828f1a8": 7829, + "618168dc8004cc50514c34fc": 30142, + "61816df1d3a39d50044c139e": 13894, + "61816fcad92c473c770215cc": 14199, + "61817865d3a39d50044c13a4": 10176, + "618178aa1cb55961fa0fdc80": 15411, + "61825d136ef05c2ce828f1cc": 16364, + "61825d24d3a39d50044c13af": 12272, + "6183b0711cb55961fa0fdcad": 56946, + "6183b084a112697a4b3a6e6c": 80726, + "6183d53f1cb55961fa0fdcda": 39858, + "6183fc15d3a39d50044c13e9": 43060, + "6183fd911cb55961fa0fdce9": 89586, + "6183fd9e8004cc50514c358f": 75420, + "618405198004cc50514c3594": 59582, + "6184055050224f204c1da540": 52453, + "618407a850224f204c1da549": 6100, + "61840bedd92c473c77021635": 23488, + "61840d85568c120fdd2962a5": 19160, + "618426d96c780c1e710c9b9f": 47930, + "618428466ef05c2ce828f218": 53712, + "618a5d5852ecee1505530b2a": 7837, + "618a75c9a3884f56c957ca1b": 10377, + "618a75f0bd321d49084cd399": 16076, + "618aef6d0a5a59657e5f55ee": 16554, + "618b9643526131765025ab35": 32213, + "618b9671d14d6d5ab879c5ea": 36131, + "618b9682a3884f56c957ca78": 18368, + "618ba27d9008e4636a67f61d": 159569, + "618ba91477b82356f91ae0e8": 32562, + "618ba92152ecee1505530bd3": 15676, + "618bab21526131765025ab3f": 31904, + "618bb76513f5097c8d5aa2d5": 42750, + "618cfae774bb2d036a049e7c": 54188, + "619256e5f8af2c1a4e1f5d92": 13833, + "619386379fb0c665d5490dbe": 51674, + "6193a720f8ee7e52e42109ed": 18322, + "6193d3149fb0c665d5490e32": 12978, + "6193d338de3cdf1d2614a6fc": 17551, + "6193dcd0f8ee7e52e4210a28": 11320, + "6194efe07c6c7b169525f11b": 49934, + "6194eff92d2c397d6600348b": 35746, + "6194f017ed0429009f543eaa": 35894, + "6194f02d9bb3d20b0946d2f0": 37562, + "6194f41f9fb0c665d5490e75": 21329, + "6194f5722d2c397d6600348f": 17651, + "6194f5a318a3974e5e7421eb": 20495, + "6194f5d418a3974e5e7421ef": 15686, + "619621a4de3cdf1d2614a7a7": 15725, + "619624b26db0f2477964e6b0": 16184, + "6196255558ef8c428c287d1c": 11236, + "6196364158ef8c428c287d9f": 690, + "6196365d58ef8c428c287da1": 394, + "619636be6db0f2477964e710": 1198, + "61963a852d2c397d660036ad": 13630, + "61965d9058ef8c428c287e0d": 16278, + "619666f4af1f5202c57a952d": 24771, + "6197b229af1f5202c57a9bea": 16588, + "619b5db699fb192e7430664f": 18197, + "619b69037b9de8162902673e": 20562, + "619bdd8886e01e16f839a99c": 64290, + "619bde7fc9546643a67df6f4": 41057, + "619bdef8c9546643a67df6f6": 126892, + "619bdfd4c9546643a67df6fa": 52126, + "619cbf476b8a1b37a54eebf8": 20445, + "619cbf7d23893217ec30b689": 272693, + "619cbf9e0a7c3a1a2731940a": 291760, + "619cbfccbedcde2f5b3f7bdd": 83222, + "619cbfeb6b8a1b37a54eebfa": 66520, + "619cc01e0a7c3a1a2731940c": 13653, + "619cf0335771dd3c390269ae": 57532, + "619d36da53b4d42ee724fae4": 7629, + "61a4c8884f95bc3b2c5dc96f": 18578, + "61a64428a8c6aa1b795f0ba1": 15137, + "61a6444b8c141d68246e2d2f": 21682, + "61a64492ba05ef10d62adcc1": 27136, + "61aa5aed32a4743c3453d319": 19152, + "61aa5b518f5e7a39b41416e2": 28569, + "61aa5b7db225ac1ead7957c1": 52242, + "61aa5ba8018e9821b7368da9": 49414, + "61aa81fcb225ac1ead7957c3": 30375, + "61bca7cda0eae612383adf57": 51620, + "61bf7b6302b3924be92fa8c3": 23452, + "61bf7c024770ee6f9c6b8b53": 72367, + "61bf83814088ec1a363d7097": 25475, + "61c18d83b00456371a66814b": 22425, + "61c18db6dfd64163ea78fbb4": 29635, + "61f7c9e189e6fb1a5e3ea78d": 22759, + "61faa91878830f069b6b7967": 14881, + "6217726288ed9f0845317459": 15677, + "62178be9d0050232da3485d9": 24182, + "622b38c56762c718e457e246": 23639, + "622b397c9a3d4327e41843b6": 35578, + "622b4d7df9cfc87d675d2ded": 30761, + "622efbcb99f4ea1a4d6c9a15": 6549, + "622f0ee47762f55aaa68ac87": 31438, + "622f128cec80d870d349b4e8": 7170, + "622f14e899892a7f9e08f6c5": 30522, + "623063e994fc3f7b302a9696": 48644, + "62307b7b10d2321fa8741921": 32232, + "62330bfadc5883093563729b": 406, + "62330c40bdd19b369e1e53d1": 510, + "62389bc9423ed1685422dc57": 37680, + "62389be94d5d474bf712e709": 18520, + "623b2e9d11c3296b440d1638": 83430, + "623c2f4242aee3103f1c44b7": 9885, + "623c2f652febb22c2777d8d7": 26921, + "623c3be0484b5003161840dc": 17180, + "623c3c1f37b4b31470357737": 18887, + "624c29ce09cd027dff2f8cd7": 18509, + "624c2e8614da335f1e034d8c": 12409, + "6259b864ebedf17603599e88": 35727, + "6259c3387d6aab70bc23a18d": 23346, + "6259c3d8012d6678ec38eeb8": 25585, + "625eb0faa6e3a82193267ad9": 23294, + "625ff2eb9f5537057932257d": 22708, + "625ff3046d721f05d93bf2ee": 25693, + "625ff31daaaa8c1130599f64": 27349, + "626667e87379c44d557b7550": 27741, + "626673016f1edc06f30cf6d5": 48241, + "62669bccdb9ebb4daa44cd14": 18638, + "6267c6396b642f77f56f5c1c": 26471, + "6269220d70b6c02e665f2635": 47912, + "6269545d0e57f218e4548ca2": 15584, + "626a74340be03179a165e30c": 9137, + "626a8ae89e664a2e2a75f409": 8437, + "626a9cb151cb5849f6002890": 49108, + "626bb8532c923541184624b4": 22382, + "626becf9582c3e319310b837": 24351, + "6272370ee4013c5d7e31f418": 22039, + "6272379924e29f06af4d5ecb": 27318, + "627254cc9c563e6e442c398f": 27783, + "6272874a6c47bd74f92e2087": 27364, + "627bce33f21bc425b06ab967": 27050, + "62811f461d5df4475f46a332": 21904, + "62811fa609427b40ab14e765": 70050, + "628120fd5631d45211793c9f": 17657, + "6284bd5f95250a29bc628a30": 13837, + "62850c28da09541f43158cca": 61419, + "628a664bccaab13006640e47": 21059, + "628a665a86cbd9750d2ff5e5": 44371, + "628a6678ccaab13006640e49": 11207, + "628a66b41d5e41750e314f34": 10447, + "628a7b23b0f75035732dd565": 71668, + "628a83c29179c324ed269508": 33373, + "628a85ee6b1d481ff772e9d5": 12741, + "628b5638ad252a16da6dd245": 41973, + "628b916469015a4e1711ed8d": 43897, + "628b9a40717774443b15e9f2": 51882, + "628b9be6cff66b70c002b14c": 64269, + "628b9c37a733087d0d7fe84b": 54322, + "628baf0b967de16aab5a4f36": 95095, + "628bc7fb408e2b2e9c0801b1": 217510, + "628c9ab845c59e5b80768a81": 22221, + "628e1ffc83ec92260c0f437f": 193436, + "628e4dd1f477aa12234918aa": 30182, + "628e4e576d783146b124c64d": 250706, + "62987c658081af308d7558c6": 165356, + "62987cb98081af308d7558c8": 37268, + "62987da96188c076bc0d8c51": 66351, + "62987dfc402c7f69bf010923": 164516, + "62987e26a77ec735f90a2995": 20131, + "62a08f4c4f842e1bd12d9d62": 73422, + "62a091170b9d3c46de5b6cf2": 32128, + "62a09cb7a04c0c5c6e0a84f8": 31537, + "62a09cfe4f842e1bd12da3e4": 42846, + "62a09d3bcf4a99369e262447": 50732, + "62a09d79de7ac81993580530": 47338, + "62a09dd4621468534a797ac7": 22635, + "62a09e08de7ac81993580532": 33333, + "62a09e410b9d3c46de5b6e78": 39727, + "62a09e73af34e73a266d932a": 35411, + "62a09e974f842e1bd12da3f0": 43490, + "62a09ec84f842e1bd12da3f2": 19152, + "62a09ee4cf4a99369e262453": 9433, + "62a09f32621468534a797acb": 27716, + "62a0a043cf4a99369e2624a5": 18576, + "62a0a098de7ac8199358053b": 31888, + "62a0a0bb621468534a797ad5": 26396, + "62a0a124de7ac81993580542": 43496, + "62a0a16d0b9d3c46de5b6e97": 118030, + "62a1b7fbc30cfa1d366af586": 129014, + "62a5c2c98ec41a51b34739c0": 14413, + "62a5c333ec21e50cad3b5dc6": 18988, + "62a5c41e8ec41a51b34739c3": 14836, + "62a61c988ec41a51b34758d5": 30975, + "62a9cb937377a65d7b070cef": 98056, + "62e14904c2699c0ec93adc47": 39842, + "62e153bcdb1a5c41971c1b5b": 59061, + "62e292e7b6c0ee2f230cee00": 51422, + "62e2a7138e1ac9380579c122": 34426, + "62e2a754b6c0ee2f230cee0f": 10410, + "62e7c4fba689e8c9c50dfc38": 39996, + "62e7c7f3c34ea971710c32fc": 46000, + "62e7c98b550c8218d602cbb4": 31613, + "62ea7c793043d74a0306e19f": 24020, + "62ebd290c427473eff0baafb": 43522, + "62ff9920fe938a24c90c10d2": 17759, + "63076701a987397c0816d21b": 16163, + "630767c37d50ff5e8a1ea71a": 29548, + "630769c4962d0247b029dc60": 21833, + "63088377b5cd696784087147": 17435, + "630e1adbbd357927e4007c09": 7383, + "630e295c984633f1fb0e7c30": 49936, + "630f27f04f3f6281050b94d7": 14383, + "630f2872911356c17d06abc5": 8707, + "630f28f0cadb1fe05e06f004": 33926, + "630f2982cdb9e392db0cbcc7": 30271, + "63171672192e68c5460cebc5": 62425, + "633a98eab8b0506e48497c1a": 15951, + "633ec7c2a6918cb895019c6c": 77336, + "634e61b0767cb15c4601a877": 28645, + "634eba08f69c710e0108d386": 34936, + "635267ab3c89e2112001f826": 516079, + "635a758bfefc88a93f021b8a": 25736, + "63611865ba5b90db0c0399d1": 156377, + "63626d904aa74b8fe30ab426": 506322, + "636270263f2495c26f00b007": 117116, + "637b60c3b7afa97bfc3d7001": 55408, + "637b612fb7afa97bfc3d7005": 74310, + "637b6179104668754b72f8f5": 44222, + "637b620db7afa97bfc3d7009": 54641, + "637b6251104668754b72f8f9": 48926, + "637f57b78d137b27f70c496a": 15353, + "637f57c532b66e7e320a6676": 21836, + "637f57d2f5ef8c33840d36c4": 17556, + "637f589af5ef8c33840d36d3": 14835, + "6386120cd6baa055ad1e201c": 22083, + "638612b607dfed1ccb7206ba": 95349, + "6386300124a1dc425c00577a": 15850, + "63877c99e785640d436458ea": 68796, + "63888bbd28e5cc32cc09d2b6": 33740, + "6388c4478d895f557a0c6512": 46272, + "6388c4ac8d895f557a0c6515": 44303, + "6388c5d19c00405f4717c0f0": 16126, + "6389c6463485cf0eeb260715": 22216, + "6389c6c7dbfd5e4b95197e68": 18947, + "6389c70ca33d8c4cdf4932c6": 11667, + "6389c8c5dbfd5e4b95197e6b": 635252, + "6389f1dfc879ce63f72fc43e": 18444, + "638db77630c4240f9e06f8b6": 15765, + "638de3603a1a4031d8260b8c": 22000, + "638f1ff84822287cad04be9d": 9728, + "638f2003bbd47aeb9e0ff637": 25201, + "63969c9019971040b005049b": 15848, + "6396aaa9a52ace83df0840ab": 11900, + "63a0b208f444d32d6f03ea1e": 87845, + "63a39667c9b3aa4b61683e98": 26464, + "63a397d3af870e651d58e65b": 618506, + "63a399193901f439517cafb6": 49833, + "63a39c69af870e651d58e6aa": 24313, + "63a39c7964283b5e9c56b280": 45858, + "63a39cb1c9b3aa4b61683ee2": 18697, + "63a39ce4cd6db0635c1975fa": 17505, + "63a39df18a56922e82001f25": 14104, + "63a39dfe3901f439517cafba": 14152, + "63a39e49cd6db0635c1975fc": 17510, + "63a39f08cd6db0635c197600": 33069, + "63a39f18c2d53c2c6839c1d3": 36900, + "63a39f6e64283b5e9c56b289": 65001, + "63a39fc0af870e651d58e6ae": 1758321, + "63a39fd1c9b3aa4b61683efb": 17046, + "63a39fdf1e21260da44a0256": 17555, + "63a3a93f8a56922e82001f5d": 1143694, + "63a71e781031ac76fe773c7d": 16635, + "63a71e86b7f4570d3a293169": 53323, + "63a71e922b25f7513905ca20": 74516, + "63a71eb5b7f4570d3a29316b": 24613, + "63a71ed21031ac76fe773c7f": 36008, + "63ac5c9658d0485fc039f0b8": 23701, + "63d114019e35b334d82302f7": 41873, + "63d3ce0446bd475bcb50f55f": 37828, + "63d3ce281fe77d0f2801859e": 51463, + "63d3d44a2a49307baf09386d": 188834, + "63f4ba71f31d4a33b87bd046": 15166, + "63f4da90f31d4a33b87bd054": 16345, + "63f5ed14534b2c3d5479a677": 58282, + "63f5feead259b42f0b4d6d0f": 50031, + "6405ff6bd4578826ec3e377a": 15130, + "640b20359ab20e15ee445fa9": 36555, + "641074a07fd350b98c0b3f96": 55916, + "6422e1ea3c0f06190302161a": 24474, + "643ea5b23db6f9f57107d9fd": 85577, + "644a3df63b0b6f03e101e065": 36180, + "64639a9aab86f8fd4300146c": 25352, + "6464d870bb2c580352070cc4": 32240, + "64748cb8de82c85eaf0a273a": 23683, + "6477772ea8a38bb2050ed4db": 16447, + "64785e7c19d732620e045e15": 30749, + "648afce7ec6bb25b2608defb": 7862, + "6491c6f6ef312a876705191b": 30647, + "6492c6dd60fdb10a020621a2": 20117, + "6492c8bba6e68e06fb0bae87": 32500, + "6492d7847363b8a52206bc52": 23437, + "6492e3a97df7d749100e29ee": 14239, + "6492ef63cfcf7c89e701abf1": 13580, + "6499849fc93611967b034949": 88542, + "649ec127c93611967b034957": 28918, + "649ec2f3961514b22506b111": 267500, + "649ec30cb013f04a700e60fb": 40414, + "64a536392d2c4e6e970f4121": 78238, + "64a5366719bab53bd203bf33": 59735, + "64abd93857958b4249003418": 124091, + "64ace9f9c4eda9354b0226aa": 46766, + "64ace9ff03378853630da538": 22840, + "64acea09c4eda9354b0226ad": 8225, + "64acea2c03378853630da53e": 7500, + "64aceac0c4eda9354b0226b3": 19833, + "64aceaecc4eda9354b0226b6": 17382, + "64aceafcb5bf5e95f50a4c20": 33684, + "64acee6903378853630da544": 19196, + "64b6979341772715af0f9c39": 484, + "64b7af434b75259c590fa893": 2334, + "64b7af5a8532cf95ee0a0dbd": 129, + "64b7af734b75259c590fa895": 142, + "64b7bbb74b75259c590fa897": 544, + "64b8725c4b75259c590fa899": 2951, + "64b8ee384b75259c590fa89b": 1672, + "64b8f7968532cf95ee0a0dbf": 314, + "64b8f7b5389d7ffd620ccba2": 418, + "64b8f7c241772715af0f9c3d": 340, + "64b9cf0ac12b9c38db26923a": 10961, + "64b9e2037fdfb81df81e3c25": 12059, + "64b9e265c94d0d15c5027e35": 4982, + "64be7095047e826eae02b0c1": 12957, + "64be7110bf597ba84a0a41ea": 12777, + "64be79c487d1510151095552": 50644, + "64be79e2bf8412471d0d9bcc": 46783, + "64c196ad26a15b84aa07132f": 82346, + "64ccc1d4a0f13c24561edf27": 31226, + "64ccc1ec1779ad6ba200a137": 31259, + "64ccc1f4ff54fb38131acf27": 30909, + "64ccc1fe088064307e14a6f7": 40062, + "64ccc206793ca11c8f450a38": 37192, + "64ccc2111779ad6ba200a139": 36401, + "64ccc246ff54fb38131acf29": 52885, + "64ccc24de61ea448b507d34d": 57249, + "64ccc25f95763a1ae376e447": 1107218, + "64ccc268c41e91416064ebc7": 12167, + "64ce572331dd890873175115": 108608, + "5447ac644bdc2d6c208b4567": 26280, "560d75f54bdc2da74d8b4573": 40200, - "573722e82459776104581c21": 5296, - "573724b42459776125652ac2": 2032, - "5737266524597761006c6a8c": 672, - "573727c624597765cc785b5b": 4368, - "5737280e24597765cc785b5c": 2864, - "5737287724597765e1625ae2": 1248, - "573728cc24597765cc785b5d": 11824, + "573724b42459776125652ac2": 2080, + "5737256c2459776125652acd": 3072, + "573725b0245977612125bae2": 1664, + "5737260b24597761224311f2": 1696, + "5737266524597761006c6a8c": 624, + "5737280e24597765cc785b5c": 4464, + "5737287724597765e1625ae2": 6048, + "573728f324597765e5728561": 5312, "57372b832459776701014e41": 114000, "57372bd3245977670b7cd243": 28500, "57372c21245977670937c6c2": 28800, "57372c89245977685d4159b1": 7200, - "57372d1b2459776862260581": 43920, - "57372f7d245977699b53e301": 11760, - "5737330a2459776af32363a1": 4170, - "5737339e2459776af261abeb": 10440, - "5739d41224597779c3645501": 13760, + "57372d1b2459776862260581": 50880, + "57372ee1245977685d4159b5": 9480, + "57372f5c24597769917c0131": 2370, + "57372f7d245977699b53e301": 12600, + "5737300424597769942d5a01": 3150, + "5737330a2459776af32363a1": 1080, + "5737339e2459776af261abeb": 2040, + "573733c72459776b0b7b51b0": 1800, + "5739d41224597779c3645501": 11888, + "5c1127d0d174af29be75cf68": 2140, "5c1260dc86f7746b106e8748": 12080, "5c12619186f7743f871c8a32": 5936, "5c1262a286f7743f8a69aab2": 54300, @@ -2269,11 +2223,10 @@ "6489879db5a2df1c815a04ef": 36250, "648987d673c462723909a151": 36250, "64898838d5b4df6140000a20": 8550, - "64ace9f9c4eda9354b0226aa": 34440, - "64ace9ff03378853630da538": 3180, + "64ace9d9b5bf5e95f50a4c1d": 2580, + "64acea0d03378853630da53b": 26500, "64acea16c4eda9354b0226b0": 29900, - "64acea2c03378853630da53e": 1880, - "64aceab0426a303417060654": 6780, - "64aceac0c4eda9354b0226b3": 4920, - "627e14b21713922ded6f2c15": 250000 + "64aceab0426a303417060654": 8360, + "627e14b21713922ded6f2c15": 250000, + "634959225289190e5e773b3b": 15000 } \ No newline at end of file From f727b13215871313782f3b477fee3a0cbdefc626 Mon Sep 17 00:00:00 2001 From: Dev Date: Sun, 19 Nov 2023 20:29:41 +0000 Subject: [PATCH 14/27] prevent collection quests requesting more than 1 ammo per repeatable quest --- project/assets/database/templates/prices.json | 1 - project/src/generators/RepeatableQuestGenerator.ts | 9 +++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/project/assets/database/templates/prices.json b/project/assets/database/templates/prices.json index 94bb6f0d..eb5e6f5a 100644 --- a/project/assets/database/templates/prices.json +++ b/project/assets/database/templates/prices.json @@ -714,7 +714,6 @@ "5aa2b986e5b5b00014028f4c": 8889, "5aa2b9aee5b5b00015693121": 23371, "5aa2b9ede5b5b000137b758b": 19374, - "5aa2ba19e5b5b00014028f4e": 9622, "5aa2ba46e5b5b000137b758d": 39810, "5aa2ba71e5b5b000137b758f": 50525, "5aa66a9be5b5b0214e506e89": 27124, diff --git a/project/src/generators/RepeatableQuestGenerator.ts b/project/src/generators/RepeatableQuestGenerator.ts index fcb9086d..83b88ac4 100644 --- a/project/src/generators/RepeatableQuestGenerator.ts +++ b/project/src/generators/RepeatableQuestGenerator.ts @@ -565,6 +565,7 @@ export class RepeatableQuestGenerator } // Draw items to ask player to retrieve + let isAmmo = 0 for (let i = 0; i < distinctItemsToRetrieveCount; i++) { const itemSelected = itemSelection[this.randomUtil.randInt(itemSelection.length)]; @@ -573,6 +574,14 @@ export class RepeatableQuestGenerator let maxValue = completionConfig.maxRequestedAmount; if (this.itemHelper.isOfBaseclass(itemSelected[0], BaseClasses.AMMO)) { + // Prevent multiple ammo requirements from being picked, stop after 6 attempts + if (isAmmo > 0 && isAmmo < 6) + { + isAmmo++; + i--; + continue; + } + isAmmo++; minValue = completionConfig.minRequestedBulletAmount; maxValue = completionConfig.maxRequestedBulletAmount; } From 2132ea7adbbbb9e3a2adfe1a0f2e91b8ed3221a3 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 20 Nov 2023 10:14:21 +0000 Subject: [PATCH 15/27] Fix issue with hideout crafts being collectable twice --- project/src/controllers/HideoutController.ts | 23 +++++++++++-------- .../src/models/eft/common/tables/IBotBase.ts | 2 ++ project/src/routers/EventOutputHolder.ts | 21 ++++++++++------- 3 files changed, 29 insertions(+), 17 deletions(-) diff --git a/project/src/controllers/HideoutController.ts b/project/src/controllers/HideoutController.ts index c01df79d..28c5908b 100644 --- a/project/src/controllers/HideoutController.ts +++ b/project/src/controllers/HideoutController.ts @@ -721,19 +721,20 @@ export class HideoutController ): IItemEventRouterResponse { const output = this.eventOutputHolder.getOutput(sessionID); + const hideoutDb = this.databaseServer.getTables().hideout; if (request.recipeId === HideoutHelper.bitcoinFarm) { return this.hideoutHelper.getBTC(pmcData, request, sessionID); } - const recipe = this.databaseServer.getTables().hideout.production.find((r) => r._id === request.recipeId); + const recipe = hideoutDb.production.find((r) => r._id === request.recipeId); if (recipe) { return this.handleRecipe(sessionID, recipe, pmcData, request, output); } - const scavCase = this.databaseServer.getTables().hideout.scavcase.find((r) => r._id === request.recipeId); + const scavCase = hideoutDb.scavcase.find((r) => r._id === request.recipeId); if (scavCase) { return this.handleScavCase(sessionID, pmcData, request, output); @@ -831,7 +832,7 @@ export class HideoutController return this.httpResponse.appendErrorToOutput(output); } - // check if the recipe is the same as the last one + // Check if the recipe is the same as the last one const area = pmcData.Hideout.Areas.find((x) => x.type === recipe.areaType); if (area && request.recipeId !== area.lastRecipe) { @@ -848,13 +849,13 @@ export class HideoutController hoursCrafting -= this.hideoutConfig.hoursForSkillCrafting * multiplierCrafting; } - // increment + // Increment // if addItem passes validation: // - increment skill point for crafting // - delete the production in profile Hideout.Production const callback = () => { - // manager Hideout skill + // Manager Hideout skill // ? use a configuration variable for the value? const globals = this.databaseServer.getTables().globals; this.profileHelper.addSkillPointsToPlayer( @@ -876,12 +877,16 @@ export class HideoutController area.lastRecipe = request.recipeId; counterHoursCrafting.value = hoursCrafting; - // Null production data now it's complete - will be cleaned up later by update() process + // Continuous crafts have special handling in EventOutputHolder.updateOutputProperties() pmcData.Hideout.Production[prodId].sptIsComplete = true; - }; + pmcData.Hideout.Production[prodId].sptIsContinuous = recipe.continuous; - // Remove the old production from output object before its sent to client - delete output.profileChanges[sessionID].production[request.recipeId]; + // Flag normal crafts as complete + if (!recipe.continuous) + { + pmcData.Hideout.Production[prodId].inProgress = false; + } + }; // Handle the isEncoded flag from recipe if (recipe.isEncoded) diff --git a/project/src/models/eft/common/tables/IBotBase.ts b/project/src/models/eft/common/tables/IBotBase.ts index 4b283a28..fba422cb 100644 --- a/project/src/models/eft/common/tables/IBotBase.ts +++ b/project/src/models/eft/common/tables/IBotBase.ts @@ -390,6 +390,8 @@ export interface Productive sptIsScavCase?: boolean; /** Some crafts are always inProgress, but need to be reset, e.g. water collector */ sptIsComplete?: boolean; + /** Is the craft a Continuous, e.g bitcoins/water collector */ + sptIsContinuous?: boolean; } export interface Production extends Productive diff --git a/project/src/routers/EventOutputHolder.ts b/project/src/routers/EventOutputHolder.ts index 17676f21..27a9beed 100644 --- a/project/src/routers/EventOutputHolder.ts +++ b/project/src/routers/EventOutputHolder.ts @@ -84,8 +84,8 @@ export class EventOutputHolder profileChanges.improvements = this.jsonUtil.clone(this.getImprovementsFromProfileAndFlagComplete(pmcData)); profileChanges.traderRelations = this.constructTraderRelations(pmcData.TradersInfo); - // Fixes container craft from water collector not resetting after collection - this.resetSptIsCompleteFlaggedCrafts(pmcData.Hideout.Production); + // Fixes container craft from water collector not resetting after collection + removed completed normal crafts + this.cleanUpCompleteCraftsInProfile(pmcData.Hideout.Production); } /** @@ -156,9 +156,8 @@ export class EventOutputHolder continue; } - // Complete and is a water collector craft - // Needed as canister craft (water collector) is continuous - if (production.sptIsComplete && productionKey === "5d5589c1f934db045e6c5492") + // Complete and is Continuous e.g. water collector + if (production.sptIsComplete && production.sptIsContinuous) { continue; } @@ -184,7 +183,7 @@ export class EventOutputHolder } } - // Return null of there's no crafts to send to client to match live behaviour + // Return null if there's no crafts to send to client to match live behaviour return (Object.keys(productions).length > 0) ? productions : null } @@ -192,17 +191,23 @@ export class EventOutputHolder * Required as continuous productions don't reset and stay at 100% completion but client thinks it hasn't started * @param productions Productions in a profile */ - protected resetSptIsCompleteFlaggedCrafts(productions: Record): void + protected cleanUpCompleteCraftsInProfile(productions: Record): void { for (const productionKey in productions) { const production = productions[productionKey]; - if (production.sptIsComplete) + if (production.sptIsComplete && production.sptIsContinuous) { + // Water collector / Bitcoin etc production.sptIsComplete = false; production.Progress = 0; production.StartTimestamp = this.timeUtil.getTimestamp(); } + else if (!production.inProgress) + { + // Normal completed craft, delete + delete productions[productionKey]; + } } } } From ccc017c97669ced1b4556e6496c6469132cc4026 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 20 Nov 2023 10:22:03 +0000 Subject: [PATCH 16/27] Fix issue with scav case rewards being collectable twice --- project/src/controllers/HideoutController.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project/src/controllers/HideoutController.ts b/project/src/controllers/HideoutController.ts index 28c5908b..40650247 100644 --- a/project/src/controllers/HideoutController.ts +++ b/project/src/controllers/HideoutController.ts @@ -968,6 +968,8 @@ export class HideoutController { // Flag as complete - will be cleaned up later by update() process pmcData.Hideout.Production[prodId].sptIsComplete = true; + + pmcData.Hideout.Production[prodId].inProgress = false; }; return this.inventoryHelper.addItem(pmcData, newReq, output, sessionID, callback, true); From fc52c308bda66720eda267b470d54d021b00573d Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 20 Nov 2023 10:38:14 +0000 Subject: [PATCH 17/27] Lower chance of non-standard account PMCs --- project/assets/configs/pmc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/assets/configs/pmc.json b/project/assets/configs/pmc.json index f7686df9..3c32ec1f 100644 --- a/project/assets/configs/pmc.json +++ b/project/assets/configs/pmc.json @@ -6,7 +6,7 @@ "edge_of_darkness": 4 }, "accountTypeWeight": { - "0": 25, + "0": 75, "1": 1, "256": 2, "512": 2 From 1abc7e3604e536d1e45d5e2da196cb5c2c13ed6f Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 20 Nov 2023 11:19:11 +0000 Subject: [PATCH 18/27] Handle failing a quest while raiding as scav --- project/src/helpers/InRaidHelper.ts | 2 +- project/src/helpers/QuestHelper.ts | 15 +++++++++------ 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/project/src/helpers/InRaidHelper.ts b/project/src/helpers/InRaidHelper.ts index 523982ea..880e4a26 100644 --- a/project/src/helpers/InRaidHelper.ts +++ b/project/src/helpers/InRaidHelper.ts @@ -208,7 +208,7 @@ export class InRaidHelper } /** - * Look for quests not are now status = fail that were not failed pre-raid and run the failQuest() function + * Look for quests with status = fail that were not failed pre-raid and run the failQuest() function * @param sessionId Player id * @param pmcData Player profile * @param preRaidQuests Quests prior to starting raid diff --git a/project/src/helpers/QuestHelper.ts b/project/src/helpers/QuestHelper.ts index 506350b3..1c884217 100644 --- a/project/src/helpers/QuestHelper.ts +++ b/project/src/helpers/QuestHelper.ts @@ -735,7 +735,7 @@ export class QuestHelper /** * Give player quest rewards - Skills/exp/trader standing/items/assort unlocks - Returns reward items player earned - * @param pmcData Player profile + * @param profileData Player profile (scav or pmc) * @param questId questId of quest to get rewards for * @param state State of the quest to get rewards for * @param sessionId Session id @@ -743,14 +743,17 @@ export class QuestHelper * @returns Array of reward objects */ public applyQuestReward( - pmcData: IPmcData, + profileData: IPmcData, questId: string, state: QuestStatus, sessionId: string, questResponse: IItemEventRouterResponse, ): Reward[] { - let questDetails = this.getQuestFromDb(questId, pmcData); + // Repeatable quest base data is always in PMCProfile, `profileData` may be scav profile + // TODO: consider moving repeatable quest data to profile-agnostic location + const pmcProfile = this.profileHelper.getPmcProfile(sessionId); + let questDetails = this.getQuestFromDb(questId, pmcProfile); if (!questDetails) { this.logger.warning(`Unable to find quest: ${questId} from db, unable to give quest rewards`); @@ -759,7 +762,7 @@ export class QuestHelper } // Check for and apply intel center money bonus if it exists - const questMoneyRewardBonus = this.getQuestMoneyRewardBonus(pmcData); + const questMoneyRewardBonus = this.getQuestMoneyRewardBonus(pmcProfile); if (questMoneyRewardBonus > 0) { // Apply additional bonus from hideout skill @@ -774,7 +777,7 @@ export class QuestHelper { case QuestRewardType.SKILL: this.profileHelper.addSkillPointsToPlayer( - pmcData, + profileData, reward.target as SkillTypes, Number(reward.value), ); @@ -799,7 +802,7 @@ export class QuestHelper break; case QuestRewardType.PRODUCTIONS_SCHEME: this.findAndAddHideoutProductionIdToProfile( - pmcData, + pmcProfile, reward, questDetails, sessionId, From c1219ed37406f0b94f645c94446422afbb81a846 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 20 Nov 2023 11:20:40 +0000 Subject: [PATCH 19/27] Blacklist `Crye Precision AVS plate carrier (Tagilla Edition)` from scav case rewards --- project/assets/configs/scavcase.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/project/assets/configs/scavcase.json b/project/assets/configs/scavcase.json index c4c36050..82fc8ed9 100644 --- a/project/assets/configs/scavcase.json +++ b/project/assets/configs/scavcase.json @@ -40,7 +40,8 @@ "619bdeb986e01e16f839a99e", "619bddffc9546643a67df6f0", "619bdf9cc9546643a67df6f8", - "63a0b2eabea67a6d93009e52" + "63a0b2eabea67a6d93009e52", + "609e860ebd219504d8507525" ], "moneyRewards": { @@ -115,5 +116,5 @@ }, "allowMultipleMoneyRewardsPerRarity": false, "allowMultipleAmmoRewardsPerRarity": true, - "allowBossItemsAsRewards": false + "allowBossItemsAsRewards": false } From b55a0d03dfda6265b0d4aaea3fe67d8b85d1368d Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 20 Nov 2023 11:21:44 +0000 Subject: [PATCH 20/27] Add `Crye Precision AVS plate carrier (Tagilla Edition)` to boss items array --- project/assets/configs/item.json | 57 ++++++++++++++++---------------- 1 file changed, 29 insertions(+), 28 deletions(-) diff --git a/project/assets/configs/item.json b/project/assets/configs/item.json index 7ff0d04e..81cc5237 100644 --- a/project/assets/configs/item.json +++ b/project/assets/configs/item.json @@ -61,32 +61,33 @@ "6241c2c2117ad530666a5108" ], - "bossItems": [ - "6275303a9f372d6ea97f9ec7", - "62a61bbf8ec41a51b34758d2", - "628e4dd1f477aa12234918aa", - "628b9784bcf6e2659e09b8a2", - "628bc7fb408e2b2e9c0801b1", - "628baf0b967de16aab5a4f36", - "62963c18dbc8ab5f0d382d0b", - "628b9c7d45122232a872358f", - "5fc64ea372b0dd78d51159dc", - "64ca3d3954fc657e230529cc", - "64637076203536ad5600c990", - "5c0e874186f7745dc7616606", - "5c0e842486f77443a74d2976", - "5c0e541586f7747fa54205c9", - "5b3b713c5acfc4330140bd8d", - "5e997f0b86f7741ac73993e2", - "5d08d21286f774736e7c94c3", - "6087e570b998180e9f76dc24", - "60a7ad2a2198820d95707a2e", - "60a7ad3a0c5cb24b0134664a", - "60a7acf20c5cb24b01346648", - "636270263f2495c26f00b007", - "63626d904aa74b8fe30ab426", - "63611865ba5b90db0c0399d1", - "5eff09cd30a7dc22fd1ddfed", - "5efde6b4f5448336730dbd61" - ] + "bossItems": [ + "6275303a9f372d6ea97f9ec7", + "62a61bbf8ec41a51b34758d2", + "628e4dd1f477aa12234918aa", + "628b9784bcf6e2659e09b8a2", + "628bc7fb408e2b2e9c0801b1", + "628baf0b967de16aab5a4f36", + "62963c18dbc8ab5f0d382d0b", + "628b9c7d45122232a872358f", + "5fc64ea372b0dd78d51159dc", + "64ca3d3954fc657e230529cc", + "64637076203536ad5600c990", + "5c0e874186f7745dc7616606", + "5c0e842486f77443a74d2976", + "5c0e541586f7747fa54205c9", + "5b3b713c5acfc4330140bd8d", + "5e997f0b86f7741ac73993e2", + "5d08d21286f774736e7c94c3", + "6087e570b998180e9f76dc24", + "60a7ad2a2198820d95707a2e", + "60a7ad3a0c5cb24b0134664a", + "60a7acf20c5cb24b01346648", + "636270263f2495c26f00b007", + "63626d904aa74b8fe30ab426", + "63611865ba5b90db0c0399d1", + "5eff09cd30a7dc22fd1ddfed", + "5efde6b4f5448336730dbd61", + "609e860ebd219504d8507525" + ] } From 9929cf8c33493561f22764a5363f79cabf8224f6 Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 20 Nov 2023 13:47:47 +0000 Subject: [PATCH 21/27] Clone handbook data before caching it --- project/src/helpers/HandbookHelper.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/project/src/helpers/HandbookHelper.ts b/project/src/helpers/HandbookHelper.ts index a5662eb5..7ce431fd 100644 --- a/project/src/helpers/HandbookHelper.ts +++ b/project/src/helpers/HandbookHelper.ts @@ -2,6 +2,7 @@ import { inject, injectable } from "tsyringe"; import { Money } from "@spt-aki/models/enums/Money"; import { DatabaseServer } from "@spt-aki/servers/DatabaseServer"; +import { JsonUtil } from "@spt-aki/utils/JsonUtil"; class LookupItem { @@ -33,7 +34,10 @@ export class HandbookHelper protected lookupCacheGenerated = false; protected handbookPriceCache = new LookupCollection(); - constructor(@inject("DatabaseServer") protected databaseServer: DatabaseServer) + constructor( + @inject("DatabaseServer") protected databaseServer: DatabaseServer, + @inject("JsonUtil") protected jsonUtil: JsonUtil + ) {} /** @@ -41,7 +45,7 @@ export class HandbookHelper */ public hydrateLookup(): void { - const handbookDb = this.databaseServer.getTables().templates.handbook; + const handbookDb = this.jsonUtil.clone(this.databaseServer.getTables().templates.handbook); for (const handbookItem of handbookDb.Items) { this.handbookPriceCache.items.byId.set(handbookItem.Id, handbookItem.Price); From 525e5cd21b987682b3f9bdea557d0d430918199d Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 20 Nov 2023 15:05:35 +0000 Subject: [PATCH 22/27] Fix length comparison not working as its an object, not an array --- project/src/controllers/InraidController.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/src/controllers/InraidController.ts b/project/src/controllers/InraidController.ts index f949644d..e0910ff1 100644 --- a/project/src/controllers/InraidController.ts +++ b/project/src/controllers/InraidController.ts @@ -322,7 +322,7 @@ export class InraidController { for (const quest of scavProfile.Quests) { - const pmcQuest = pmcProfile.Quests.find((x) => x.qid === quest.qid); + const pmcQuest = pmcProfile.Quests.find(x => x.qid === quest.qid); if (!pmcQuest) { this.logger.warning(`No PMC quest found for ID: ${quest.qid}`); @@ -333,7 +333,7 @@ export class InraidController // Status values mismatch or statusTimers counts mismatch if ( quest.status !== QuestStatus[pmcQuest.status] - || quest.statusTimers.length !== pmcQuest.statusTimers.length + || Object.keys(quest.statusTimers).length !== Object.keys(pmcQuest.statusTimers).length ) { this.logger.warning( From d2209114c9d15332c6bbc8df339e37dec362989a Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 20 Nov 2023 15:07:59 +0000 Subject: [PATCH 23/27] Rename parameter as it can be scav or pmc profile --- project/src/services/ProfileFixerService.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/project/src/services/ProfileFixerService.ts b/project/src/services/ProfileFixerService.ts index 4ee9ce58..82c7ed8b 100644 --- a/project/src/services/ProfileFixerService.ts +++ b/project/src/services/ProfileFixerService.ts @@ -474,20 +474,20 @@ export class ProfileFixerService * Adjust profile quest status and statusTimers object values * quest.status is numeric e.g. 2 * quest.statusTimers keys are numeric as strings e.g. "2" - * @param pmcProfile profile to update + * @param profile profile to update */ - protected updateProfileQuestDataValues(pmcProfile: IPmcData): void + protected updateProfileQuestDataValues(profile: IPmcData): void { - if (!pmcProfile.Quests) + if (!profile.Quests) { return; } const fixes = new Map(); const questsToDelete: IQuestStatus[] = []; - const fullProfile = this.profileHelper.getFullProfile(pmcProfile.sessionId); + const fullProfile = this.profileHelper.getFullProfile(profile.sessionId); const isDevProfile = fullProfile?.info.edition.toLowerCase() === "spt developer"; - for (const quest of pmcProfile.Quests) + for (const quest of profile.Quests) { // Old profiles had quests with a bad status of 0 (invalid) added to profile, remove them // E.g. compensation for damage showing before standing check was added to getClientQuests() @@ -526,7 +526,7 @@ export class ProfileFixerService for (const questToDelete of questsToDelete) { - pmcProfile.Quests.splice(pmcProfile.Quests.indexOf(questToDelete), 1); + profile.Quests.splice(profile.Quests.indexOf(questToDelete), 1); } if (fixes.size > 0) From ddb9917c6b03cea4dc7d27f27d1c1b356f64edcd Mon Sep 17 00:00:00 2001 From: Dev Date: Mon, 20 Nov 2023 16:33:04 +0000 Subject: [PATCH 24/27] Rework of post-raid scav/pmc profile handling: Moved logic out of `updateProfileBaseStats()` and into separate functions for pmc/scav, left profile-agnostic code alone new functions `updatePmcProfileDataPostRaid` and `updateScavProfileDataPostRaid` scav - Only copy active quest progress from client profile to server scav profile scav - dont attempt to update trader standings, none exist on scav profile scav - dont transfer psot-raid limb damage to server profile Update quest status values similarly to PMC quests post raid to ensure they're consistent with existing quest data in profile Simplifies `migrateScavQuestProgressToPmcProfile` made various warnings debug instead --- project/src/controllers/InraidController.ts | 71 +++++++------ project/src/helpers/InRaidHelper.ts | 111 +++++++++++++------- project/src/servers/SaveServer.ts | 2 +- project/src/services/ProfileFixerService.ts | 9 ++ 4 files changed, 121 insertions(+), 72 deletions(-) diff --git a/project/src/controllers/InraidController.ts b/project/src/controllers/InraidController.ts index e0910ff1..4dc71241 100644 --- a/project/src/controllers/InraidController.ts +++ b/project/src/controllers/InraidController.ts @@ -107,19 +107,20 @@ export class InraidController */ protected savePmcProgress(sessionID: string, postRaidRequest: ISaveProgressRequestData): void { - const serverProfile = this.saveServer.getProfile(sessionID); - const locationName = serverProfile.inraid.location.toLowerCase(); + const serveProfile = this.saveServer.getProfile(sessionID); + const locationName = serveProfile.inraid.location.toLowerCase(); const map: ILocationBase = this.databaseServer.getTables().locations[locationName].base; const mapHasInsuranceEnabled = map.Insurance; - let serverPmcData = serverProfile.characters.pmc; + let serverPmcProfile = serveProfile.characters.pmc; const isDead = this.isPlayerDead(postRaidRequest.exit); - const preRaidGear = this.inRaidHelper.getPlayerGear(serverPmcData.Inventory.items); + const preRaidGear = this.inRaidHelper.getPlayerGear(serverPmcProfile.Inventory.items); - serverProfile.inraid.character = "pmc"; + serveProfile.inraid.character = "pmc"; - serverPmcData = this.inRaidHelper.updateProfileBaseStats(serverPmcData, postRaidRequest, sessionID); + this.inRaidHelper.updateProfileBaseStats(serverPmcProfile, postRaidRequest, sessionID); + this.inRaidHelper.updatePmcProfileDataPostRaid(serverPmcProfile, postRaidRequest, sessionID); // Check for exit status this.markOrRemoveFoundInRaidItems(postRaidRequest); @@ -127,20 +128,20 @@ export class InraidController postRaidRequest.profile.Inventory.items = this.itemHelper.replaceIDs( postRaidRequest.profile, postRaidRequest.profile.Inventory.items, - serverPmcData.InsuredItems, + serverPmcProfile.InsuredItems, postRaidRequest.profile.Inventory.fastPanel, ); this.inRaidHelper.addUpdToMoneyFromRaid(postRaidRequest.profile.Inventory.items); // Purge profile of equipment/container items - serverPmcData = this.inRaidHelper.setInventory(sessionID, serverPmcData, postRaidRequest.profile); + serverPmcProfile = this.inRaidHelper.setInventory(sessionID, serverPmcProfile, postRaidRequest.profile); - this.healthHelper.saveVitality(serverPmcData, postRaidRequest.health, sessionID); + this.healthHelper.saveVitality(serverPmcProfile, postRaidRequest.health, sessionID); // Remove inventory if player died and send insurance items if (mapHasInsuranceEnabled) { - this.insuranceService.storeLostGear(serverPmcData, postRaidRequest, preRaidGear, sessionID, isDead); + this.insuranceService.storeLostGear(serverPmcProfile, postRaidRequest, preRaidGear, sessionID, isDead); } else { @@ -151,7 +152,7 @@ export class InraidController if (locationName === "lighthouse" && postRaidRequest.profile.Info.Side.toLowerCase() === "usec") { // Decrement counter if it exists, don't go below 0 - const remainingCounter = serverPmcData?.Stats.Eft.OverallCounters.Items.find((x) => + const remainingCounter = serverPmcProfile?.Stats.Eft.OverallCounters.Items.find((x) => x.Key.includes("UsecRaidRemainKills") ); if (remainingCounter?.Value > 0) @@ -164,12 +165,12 @@ export class InraidController { this.pmcChatResponseService.sendKillerResponse( sessionID, - serverPmcData, + serverPmcProfile, postRaidRequest.profile.Stats.Eft.Aggressor, ); this.matchBotDetailsCacheService.clearCache(); - serverPmcData = this.performPostRaidActionsWhenDead(postRaidRequest, serverPmcData, sessionID); + serverPmcProfile = this.performPostRaidActionsWhenDead(postRaidRequest, serverPmcProfile, sessionID); } const victims = postRaidRequest.profile.Stats.Eft.Victims.filter((x) => @@ -177,12 +178,12 @@ export class InraidController ); if (victims?.length > 0) { - this.pmcChatResponseService.sendVictimResponse(sessionID, victims, serverPmcData); + this.pmcChatResponseService.sendVictimResponse(sessionID, victims, serverPmcProfile); } if (mapHasInsuranceEnabled) { - this.insuranceService.sendInsuredItems(serverPmcData, sessionID, map.Id); + this.insuranceService.sendInsuredItems(serverPmcProfile, sessionID, map.Id); } } @@ -274,39 +275,43 @@ export class InraidController */ protected savePlayerScavProgress(sessionID: string, postRaidRequest: ISaveProgressRequestData): void { - const pmcData = this.profileHelper.getPmcProfile(sessionID); - let scavData = this.profileHelper.getScavProfile(sessionID); + const serverPmcProfile = this.profileHelper.getPmcProfile(sessionID); + const serverScavProfile = this.profileHelper.getScavProfile(sessionID); const isDead = this.isPlayerDead(postRaidRequest.exit); this.saveServer.getProfile(sessionID).inraid.character = "scav"; - scavData = this.inRaidHelper.updateProfileBaseStats(scavData, postRaidRequest, sessionID); + this.inRaidHelper.updateProfileBaseStats(serverScavProfile, postRaidRequest, sessionID); + this.inRaidHelper.updateScavProfileDataPostRaid(serverScavProfile, postRaidRequest, sessionID); // Completing scav quests create ConditionCounters, these values need to be transported to the PMC profile - if (this.profileHasConditionCounters(scavData)) + if (this.profileHasConditionCounters(serverScavProfile)) { // Scav quest progress needs to be moved to pmc so player can see it in menu / hand them in - this.migrateScavQuestProgressToPmcProfile(scavData, pmcData); + this.migrateScavQuestProgressToPmcProfile(serverScavProfile, serverPmcProfile); } - // Check for exit status + // Change loot FiR status based on exit status this.markOrRemoveFoundInRaidItems(postRaidRequest); postRaidRequest.profile.Inventory.items = this.itemHelper.replaceIDs( postRaidRequest.profile, postRaidRequest.profile.Inventory.items, - pmcData.InsuredItems, + serverPmcProfile.InsuredItems, postRaidRequest.profile.Inventory.fastPanel, ); + + // Some items from client profile don't have upd objects when they're single stack items this.inRaidHelper.addUpdToMoneyFromRaid(postRaidRequest.profile.Inventory.items); - this.handlePostRaidPlayerScavProcess(scavData, sessionID, postRaidRequest, pmcData, isDead); + // Reset hp/regenerate loot + this.handlePostRaidPlayerScavProcess(serverScavProfile, sessionID, postRaidRequest, serverPmcProfile, isDead); } /** * Does provided profile contain any condition counters * @param profile Profile to check for condition counters - * @returns + * @returns Profile has condition counters */ protected profileHasConditionCounters(profile: IPmcData): boolean { @@ -318,6 +323,11 @@ export class InraidController return profile.ConditionCounters.Counters.length > 0; } + /** + * Scav quest progress isnt transferred automatically from scav to pmc, we do this manually + * @param scavProfile Scav profile with quest progress post-raid + * @param pmcProfile Server pmc profile to copy scav quest progress into + */ protected migrateScavQuestProgressToPmcProfile(scavProfile: IPmcData, pmcProfile: IPmcData): void { for (const quest of scavProfile.Quests) @@ -329,17 +339,16 @@ export class InraidController continue; } - // Post-raid status is enum word e.g. `Started` but pmc quest status is number e.g. 2 // Status values mismatch or statusTimers counts mismatch if ( - quest.status !== QuestStatus[pmcQuest.status] + quest.status !== pmcQuest.status || Object.keys(quest.statusTimers).length !== Object.keys(pmcQuest.statusTimers).length ) { - this.logger.warning( + this.logger.debug( `Quest: ${quest.qid} found in PMC profile has different status/statustimer. Scav: ${quest.status} vs PMC: ${pmcQuest.status}`, ); - pmcQuest.status = QuestStatus[quest.status]; + pmcQuest.status = quest.status; // Copy status timers over + fix bad enum key for each pmcQuest.statusTimers = quest.statusTimers; @@ -357,7 +366,7 @@ export class InraidController // Loop over all scav counters and add into pmc profile for (const scavCounter of scavProfile.ConditionCounters.Counters) { - this.logger.warning( + this.logger.debug( `Processing counter: ${scavCounter.id} value:${scavCounter.value} quest:${scavCounter.qid}`, ); const counterInPmcProfile = pmcProfile.ConditionCounters.Counters.find((x) => x.id === scavCounter.id); @@ -369,14 +378,14 @@ export class InraidController continue; } - this.logger.warning( + this.logger.debug( `Counter id: ${scavCounter.id} already exists in pmc profile! with value: ${counterInPmcProfile.value} for quest: ${counterInPmcProfile.qid}`, ); // Only adjust counter value if its changed if (counterInPmcProfile.value !== scavCounter.value) { - this.logger.warning(`OVERWRITING with values: ${scavCounter.value} quest: ${scavCounter.qid}`); + this.logger.debug(`OVERWRITING with values: ${scavCounter.value} quest: ${scavCounter.qid}`); counterInPmcProfile.value = scavCounter.value; } } diff --git a/project/src/helpers/InRaidHelper.ts b/project/src/helpers/InRaidHelper.ts index 880e4a26..686165c8 100644 --- a/project/src/helpers/InRaidHelper.ts +++ b/project/src/helpers/InRaidHelper.ts @@ -21,6 +21,7 @@ import { SaveServer } from "@spt-aki/servers/SaveServer"; import { LocalisationService } from "@spt-aki/services/LocalisationService"; import { ProfileFixerService } from "@spt-aki/services/ProfileFixerService"; import { JsonUtil } from "@spt-aki/utils/JsonUtil"; +import { ProfileHelper } from "./ProfileHelper"; @injectable() export class InRaidHelper @@ -35,6 +36,7 @@ export class InRaidHelper @inject("ItemHelper") protected itemHelper: ItemHelper, @inject("DatabaseServer") protected databaseServer: DatabaseServer, @inject("InventoryHelper") protected inventoryHelper: InventoryHelper, + @inject("ProfileHelper") protected profileHelper: ProfileHelper, @inject("QuestHelper") protected questHelper: QuestHelper, @inject("PaymentHelper") protected paymentHelper: PaymentHelper, @inject("LocalisationService") protected localisationService: LocalisationService, @@ -62,19 +64,16 @@ export class InRaidHelper */ public addUpdToMoneyFromRaid(items: Item[]): void { - for (const item of items) + for (const item of items.filter(x => this.paymentHelper.isMoneyTpl(x._tpl))) { - if (this.paymentHelper.isMoneyTpl(item._tpl)) + if (!item.upd) { - if (!item.upd) - { - item.upd = {}; - } + item.upd = {}; + } - if (!item.upd.StackObjectsCount) - { - item.upd.StackObjectsCount = 1; - } + if (!item.upd.StackObjectsCount) + { + item.upd.StackObjectsCount = 1; } } } @@ -140,18 +139,44 @@ export class InRaidHelper profileData: IPmcData, saveProgressRequest: ISaveProgressRequestData, sessionID: string, - ): IPmcData - { - // remove old skill fatigue + ): void + { + // Remove skill fatigue values this.resetSkillPointsEarnedDuringRaid(saveProgressRequest.profile); - // set profile data + // Set profile data profileData.Info.Level = saveProgressRequest.profile.Info.Level; profileData.Skills = saveProgressRequest.profile.Skills; profileData.Stats.Eft = saveProgressRequest.profile.Stats.Eft; profileData.Encyclopedia = saveProgressRequest.profile.Encyclopedia; profileData.ConditionCounters = saveProgressRequest.profile.ConditionCounters; + this.validateBackendCounters(saveProgressRequest, profileData); + + profileData.SurvivorClass = saveProgressRequest.profile.SurvivorClass; + + // Add experience points + profileData.Info.Experience += profileData.Stats.Eft.TotalSessionExperience; + profileData.Stats.Eft.TotalSessionExperience = 0; + + this.setPlayerInRaidLocationStatusToNone(sessionID); + } + + /** + * Reset the skill points earned in a raid to 0, ready for next raid + * @param profile Profile to update + */ + protected resetSkillPointsEarnedDuringRaid(profile: IPmcData): void + { + for (const skill of profile.Skills.Common) + { + skill.PointsEarnedDuringSession = 0.0; + } + } + + /** Check counters are correct in profile */ + protected validateBackendCounters(saveProgressRequest: ISaveProgressRequestData, profileData: IPmcData): void + { for (const backendCounterKey in saveProgressRequest.profile.BackendCounters) { // Skip counters with no id @@ -178,33 +203,47 @@ export class InRaidHelper if (matchingPreRaidCounter.value !== postRaidValue) { this.logger.error( - `Backendcounter: ${backendCounterKey} value is different post raid, old: ${matchingPreRaidCounter.value} new: ${postRaidValue}`, + `Backendcounter: ${backendCounterKey} value is different post raid, old: ${matchingPreRaidCounter.value} new: ${postRaidValue}` ); } } + } - this.processFailedQuests(sessionID, profileData, profileData.Quests, saveProgressRequest.profile.Quests); - profileData.Quests = saveProgressRequest.profile.Quests; + /** + * Update various serverPMC profile values; quests/limb hp/trader standing with values post-raic + * @param pmcData Server PMC profile + * @param saveProgressRequest Post-raid request data + * @param sessionId Session id + */ + public updatePmcProfileDataPostRaid(pmcData: IPmcData, saveProgressRequest: ISaveProgressRequestData, sessionId: string): void + { + // Process failed quests then copy everything + this.processFailedQuests(sessionId, pmcData, pmcData.Quests, saveProgressRequest.profile.Quests); + pmcData.Quests = saveProgressRequest.profile.Quests; - // Transfer effects from request to profile - this.transferPostRaidLimbEffectsToProfile(saveProgressRequest, profileData); + // No need to do this for scav, old scav is deleted and new one generated + this.transferPostRaidLimbEffectsToProfile(saveProgressRequest, pmcData); - this.applyTraderStandingAdjustments(profileData.TradersInfo, saveProgressRequest.profile.TradersInfo); + // Trader standing only occur on pmc profile, scav kills are handled in handlePostRaidPlayerScavKarmaChanges() + // Scav client data has standing values of 0 for all traders, DO NOT RUN ON SCAV RAIDS + this.applyTraderStandingAdjustments(pmcData.TradersInfo, saveProgressRequest.profile.TradersInfo); - profileData.SurvivorClass = saveProgressRequest.profile.SurvivorClass; + this.profileFixerService.checkForAndFixPmcProfileIssues(pmcData); + } - // Add experience points - profileData.Info.Experience += profileData.Stats.Eft.TotalSessionExperience; - profileData.Stats.Eft.TotalSessionExperience = 0; + /** + * Update scav quest values on server profile with updated values post-raid + * @param scavData Server scav profile + * @param saveProgressRequest Post-raid request data + * @param sessionId Session id + */ + public updateScavProfileDataPostRaid(scavData: IPmcData, saveProgressRequest: ISaveProgressRequestData, sessionId: string): void + { + // Only copy active quests into scav profile // Progress will later to copied over to PMC profile + const existingActiveQuestIds = scavData.Quests.filter(x => x.status !== QuestStatus.AvailableForStart).map(x => x.qid); + scavData.Quests = saveProgressRequest.profile.Quests.filter(x => existingActiveQuestIds.includes(x.qid)); - this.setPlayerInRaidLocationStatusToNone(sessionID); - - if (!saveProgressRequest.isPlayerScav) - { - this.profileFixerService.checkForAndFixPmcProfileIssues(profileData); - } - - return profileData; + this.profileFixerService.checkForAndFixScavProfileIssues(scavData); } /** @@ -250,14 +289,6 @@ export class InRaidHelper } } - protected resetSkillPointsEarnedDuringRaid(profile: IPmcData): void - { - for (const skill of profile.Skills.Common) - { - skill.PointsEarnedDuringSession = 0.0; - } - } - /** * Take body part effects from client profile and apply to server profile * @param saveProgressRequest post-raid request diff --git a/project/src/servers/SaveServer.ts b/project/src/servers/SaveServer.ts index 95152dee..d5c2beba 100644 --- a/project/src/servers/SaveServer.ts +++ b/project/src/servers/SaveServer.ts @@ -185,7 +185,7 @@ export class SaveServer { const filePath = `${this.profileFilepath}${sessionID}.json`; - // run callbacks + // Run pre-save callbacks before we save into json for (const callback in this.onBeforeSaveCallbacks) { const previous = this.profiles[sessionID]; diff --git a/project/src/services/ProfileFixerService.ts b/project/src/services/ProfileFixerService.ts index 82c7ed8b..ae5bef13 100644 --- a/project/src/services/ProfileFixerService.ts +++ b/project/src/services/ProfileFixerService.ts @@ -162,6 +162,15 @@ export class ProfileFixerService } } + /** + * Find issues in the scav profile data that may cause issues + * @param scavProfile profile to check and fix + */ + public checkForAndFixScavProfileIssues(scavProfile: IPmcData): void + { + this.updateProfileQuestDataValues(scavProfile); + } + protected addMissingGunStandContainerImprovements(pmcProfile: IPmcData): void { const weaponStandArea = pmcProfile.Hideout.Areas.find((x) => x.type === HideoutAreas.WEAPON_STAND); From 112bbbea090238559cbbfe55a2fd347ed78f200a Mon Sep 17 00:00:00 2001 From: Dev Date: Tue, 21 Nov 2023 19:35:48 +0000 Subject: [PATCH 25/27] Adjust `modloader-missing_package_json` locale text --- project/assets/database/locales/server/en.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/assets/database/locales/server/en.json b/project/assets/database/locales/server/en.json index bc976917..78ff456b 100644 --- a/project/assets/database/locales/server/en.json +++ b/project/assets/database/locales/server/en.json @@ -143,7 +143,7 @@ "modloader-main_property_points_to_nothing": "Mod %s package.json main property points to non-existing file", "modloader-missing_akiversion_field": "Mod %s is missing the akiVersion field, most likely due to being out of date and incompatible with the current version of AKI", "modloader-missing_dependency": "Mod {{mod}} requires {{modDependency}} to be installed.", - "modloader-missing_package_json": "Mod (%s) is missing package.json", + "modloader-missing_package_json": "Mod (%s) is missing package.json. Make sure you have checked the mods hub page for install instructions", "modloader-missing_package_json_property": "Mod {{modName}} package.json requires {{prop}} property", "modloader-mod_incompatible": "ModLoader: Mod (%s) is incompatible. It must implement at least one of IPostAkiLoadMod, IPostDBLoadMod, IPreAkiLoadMod", "modloader-mod_has_no_main_property": "ModLoader: Mod (%s) is incompatible. It lacks a 'main' property", From 5559b938c33ab6214ad3a09a48891270e7660d8b Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 22 Nov 2023 14:15:36 +0000 Subject: [PATCH 26/27] Add thicc case barter for completing `special equipment` (peacekeeper l4) --- .../5935c25fb3acc3127c3d8cd9/assort.json | 10279 ++++++++-------- .../5935c25fb3acc3127c3d8cd9/questassort.json | 67 +- 2 files changed, 5187 insertions(+), 5159 deletions(-) diff --git a/project/assets/database/traders/5935c25fb3acc3127c3d8cd9/assort.json b/project/assets/database/traders/5935c25fb3acc3127c3d8cd9/assort.json index 76601f2c..eb91d769 100644 --- a/project/assets/database/traders/5935c25fb3acc3127c3d8cd9/assort.json +++ b/project/assets/database/traders/5935c25fb3acc3127c3d8cd9/assort.json @@ -1,4 +1,4200 @@ { + "barter_scheme": { + "6492e44bf4287b13040fca51": [ + [ + { + "_tpl": "6389c8c5dbfd5e4b95197e6b", + "count": 20 + }, + { + "_tpl": "61bf7c024770ee6f9c6b8b53", + "count": 30 + }, + { + "_tpl": "590c621186f774138d11ea29", + "count": 30 + } + ] + ], + "6507ff2a644a656aee0f7fbb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 108.04 + } + ] + ], + "6507ff2a644a656aee0f7fbd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 404.87 + } + ] + ], + "6507ff2a644a656aee0f7fc6": [ + [ + { + "_tpl": "590c595c86f7747884343ad7", + "count": 1 + }, + { + "_tpl": "5e2aedd986f7746d404f3aa4", + "count": 2 + } + ] + ], + "6507ff2a644a656aee0f7fc8": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 62.73 + } + ] + ], + "6507ff2a644a656aee0f7fca": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 34.47 + } + ] + ], + "6507ff2a644a656aee0f7fcc": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 16.47 + } + ] + ], + "6507ff2a644a656aee0f7fce": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 374.88 + } + ] + ], + "6507ff2a644a656aee0f7fd0": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 17.31 + } + ] + ], + "6507ff2a644a656aee0f7fd2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 6647.14 + } + ] + ], + "6507ff2a644a656aee0f7fd4": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 98.84 + } + ] + ], + "6507ff2a644a656aee0f7fd6": [ + [ + { + "_tpl": "57e26ea924597715ca604a09", + "count": 4 + } + ] + ], + "6507ff2a644a656aee0f7fde": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 277.48 + } + ] + ], + "6507ff2a644a656aee0f7fe7": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 28.29 + } + ] + ], + "6507ff2a644a656aee0f7fe9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 42.77 + } + ] + ], + "6507ff2a644a656aee0f7feb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 24.75 + } + ] + ], + "6507ff2a644a656aee0f7fed": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 167.67 + } + ] + ], + "6507ff2a644a656aee0f7fef": [ + [ + { + "_tpl": "59f32c3b86f77472a31742f0", + "count": 7, + "level": 8, + "side": "Any" + } + ] + ], + "6507ff2a644a656aee0f7ffe": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 30.01 + } + ] + ], + "6507ff2a644a656aee0f8000": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 7.13 + } + ] + ], + "6507ff2a644a656aee0f8002": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 132.35 + } + ] + ], + "6507ff2a644a656aee0f8004": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 28.51 + } + ] + ], + "6507ff2a644a656aee0f8006": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 162.75 + } + ] + ], + "6507ff2a644a656aee0f8008": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1286.37 + } + ] + ], + "6507ff2a644a656aee0f800a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 313.98 + } + ] + ], + "6507ff2a644a656aee0f800c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 25.69 + } + ] + ], + "6507ff2a644a656aee0f800e": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 256.76 + } + ] + ], + "6507ff2a644a656aee0f8010": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 12.77 + } + ] + ], + "6507ff2a644a656aee0f8012": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 13.96 + } + ] + ], + "6507ff2a644a656aee0f8014": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 924.63 + } + ] + ], + "6507ff2a644a656aee0f8019": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 83.58 + } + ] + ], + "6507ff2a644a656aee0f801b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 337.09 + } + ] + ], + "6507ff2a644a656aee0f801d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1.25 + } + ] + ], + "6507ff2a644a656aee0f801f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 175.92 + } + ] + ], + "6507ff2a644a656aee0f8021": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 12.52 + } + ] + ], + "6507ff2a644a656aee0f8023": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 358.18 + } + ] + ], + "6507ff2a644a656aee0f8025": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 105.69 + } + ] + ], + "6507ff2a644a656aee0f8027": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 19.28 + } + ] + ], + "6507ff2a644a656aee0f8029": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 418.21 + } + ] + ], + "6507ff2a644a656aee0f8039": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 51.29 + } + ] + ], + "6507ff2a644a656aee0f803b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 259 + } + ] + ], + "6507ff2a644a656aee0f803d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 65.74 + } + ] + ], + "6507ff2a644a656aee0f803f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 107.82 + } + ] + ], + "6507ff2a644a656aee0f8041": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 31.51 + } + ] + ], + "6507ff2a644a656aee0f8043": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 23.89 + } + ] + ], + "6507ff2a644a656aee0f8045": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 87.37 + } + ] + ], + "6507ff2a644a656aee0f8047": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 89.9 + } + ] + ], + "6507ff2a644a656aee0f8049": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 34.54 + } + ] + ], + "6507ff2a644a656aee0f804b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 51.5 + } + ] + ], + "6507ff2a644a656aee0f804d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 186.25 + } + ] + ], + "6507ff2a644a656aee0f804f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 27.93 + } + ] + ], + "6507ff2a644a656aee0f8051": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 35.19 + } + ] + ], + "6507ff2a644a656aee0f8053": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 109.1 + } + ] + ], + "6507ff2a644a656aee0f8055": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 29.48 + } + ] + ], + "6507ff2a644a656aee0f8057": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 29.07 + } + ] + ], + "6507ff2a644a656aee0f8059": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 12.43 + } + ] + ], + "6507ff2a644a656aee0f805b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 335.72 + } + ] + ], + "6507ff2a644a656aee0f805d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 94.21 + } + ] + ], + "6507ff2a644a656aee0f805f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 28.29 + } + ] + ], + "6507ff2a644a656aee0f8061": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 28.29 + } + ] + ], + "6507ff2a644a656aee0f8063": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 62.27 + } + ] + ], + "6507ff2a644a656aee0f8065": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 127.4 + } + ] + ], + "6507ff2a644a656aee0f8067": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 192 + } + ] + ], + "6507ff2a644a656aee0f8069": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 107.57 + } + ] + ], + "6507ff2a644a656aee0f8071": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 150.36 + } + ] + ], + "6507ff2a644a656aee0f8073": [ + [ + { + "_tpl": "5d03794386f77420415576f5", + "count": 1 + }, + { + "_tpl": "5d0377ce86f774186372f689", + "count": 3 + }, + { + "_tpl": "5c05308086f7746b2101e90b", + "count": 3 + }, + { + "_tpl": "5d0375ff86f774186372f685", + "count": 5 + } + ] + ], + "6507ff2a644a656aee0f8075": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 9.8 + } + ] + ], + "6507ff2a644a656aee0f8077": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 44.84 + } + ] + ], + "6507ff2a644a656aee0f8079": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 142.66 + } + ] + ], + "6507ff2a644a656aee0f807b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 12.95 + } + ] + ], + "6507ff2a644a656aee0f807d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 48.57 + } + ] + ], + "6507ff2a644a656aee0f807f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 0.44 + } + ] + ], + "6507ff2a644a656aee0f8081": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 61.57 + } + ] + ], + "6507ff2a644a656aee0f8083": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 16.5 + } + ] + ], + "6507ff2b644a656aee0f8085": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 28.29 + } + ] + ], + "6507ff2b644a656aee0f8087": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 59.71 + } + ] + ], + "6507ff2b644a656aee0f8089": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 10.8 + } + ] + ], + "6507ff2b644a656aee0f808b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 318.21 + } + ] + ], + "6507ff2b644a656aee0f809a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 29.83 + } + ] + ], + "6507ff2b644a656aee0f809c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 43.21 + } + ] + ], + "6507ff2b644a656aee0f809e": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 63.01 + } + ] + ], + "6507ff2b644a656aee0f80a0": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 154 + } + ] + ], + "6507ff2b644a656aee0f80a3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 21.73 + } + ] + ], + "6507ff2b644a656aee0f80a5": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 41.31 + } + ] + ], + "6507ff2b644a656aee0f80a7": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 15.53 + } + ] + ], + "6507ff2b644a656aee0f80a9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 19.53 + } + ] + ], + "6507ff2b644a656aee0f80ab": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 528.98 + } + ] + ], + "6507ff2b644a656aee0f80ad": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 230.2 + } + ] + ], + "6507ff2b644a656aee0f80af": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 167.47 + } + ] + ], + "6507ff2b644a656aee0f80b1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 48.53 + } + ] + ], + "6507ff2b644a656aee0f80b3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 58.06 + } + ] + ], + "6507ff2b644a656aee0f80b5": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 63.64 + } + ] + ], + "6507ff2b644a656aee0f80b7": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 57.01 + } + ] + ], + "6507ff2b644a656aee0f80b9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 227.76 + } + ] + ], + "6507ff2b644a656aee0f80bb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 55.11 + } + ] + ], + "6507ff2b644a656aee0f80bd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 184.45 + } + ] + ], + "6507ff2b644a656aee0f80bf": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 32.08 + } + ] + ], + "6507ff2b644a656aee0f80c1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 33.54 + } + ] + ], + "6507ff2b644a656aee0f80c3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 150.21 + } + ] + ], + "6507ff2b644a656aee0f80c5": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 80.53 + } + ] + ], + "6507ff2b644a656aee0f80c7": [ + [ + { + "_tpl": "590a386e86f77429692b27ab", + "count": 1 + } + ] + ], + "6507ff2b644a656aee0f80c9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 222.7 + } + ] + ], + "6507ff2b644a656aee0f80cb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 19.26 + } + ] + ], + "6507ff2b644a656aee0f80cd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1.1 + } + ] + ], + "6507ff2b644a656aee0f80cf": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 33.53 + } + ] + ], + "6507ff2b644a656aee0f80d1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1.06 + } + ] + ], + "6507ff2b644a656aee0f80d3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 319.46 + } + ] + ], + "6507ff2b644a656aee0f80d5": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 36.14 + } + ] + ], + "6507ff2b644a656aee0f80d7": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 59.71 + } + ] + ], + "6507ff2b644a656aee0f80d9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 9.23 + } + ] + ], + "6507ff2b644a656aee0f80db": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 23.62 + } + ] + ], + "6507ff2b644a656aee0f80dd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 58.91 + } + ] + ], + "6507ff2b644a656aee0f80df": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 6.16 + } + ] + ], + "6507ff2b644a656aee0f80e1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 12.96 + } + ] + ], + "6507ff2b644a656aee0f80e3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 93.12 + } + ] + ], + "6507ff2b644a656aee0f80e5": [ + [ + { + "_tpl": "5d403f9186f7743cac3f229b", + "count": 3 + }, + { + "_tpl": "5d40407c86f774318526545a", + "count": 1 + } + ] + ], + "6507ff2b644a656aee0f80fd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 683.57 + } + ] + ], + "6507ff2b644a656aee0f80ff": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 37.23 + } + ] + ], + "6507ff2b644a656aee0f8101": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 63.62 + } + ] + ], + "6507ff2b644a656aee0f8103": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 298.57 + } + ] + ], + "6507ff2b644a656aee0f8105": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 82.1 + } + ] + ], + "6507ff2b644a656aee0f8107": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1100.23 + } + ] + ], + "6507ff2b644a656aee0f8111": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 134.31 + } + ] + ], + "6507ff2b644a656aee0f8113": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 201.62 + } + ] + ], + "6507ff2b644a656aee0f8115": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 73.27 + } + ] + ], + "6507ff2b644a656aee0f8117": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 62.66 + } + ] + ], + "6507ff2b644a656aee0f8119": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 15.81 + } + ] + ], + "6507ff2b644a656aee0f811b": [ + [ + { + "_tpl": "590a3b0486f7743954552bdb", + "count": 2 + }, + { + "_tpl": "5672cb724bdc2dc2088b456b", + "count": 1 + } + ] + ], + "6507ff2b644a656aee0f811d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 66.72 + } + ] + ], + "6507ff2b644a656aee0f811f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 29.07 + } + ] + ], + "6507ff2b644a656aee0f8121": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 129.71 + } + ] + ], + "6507ff2b644a656aee0f8123": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 42.85 + } + ] + ], + "6507ff2b644a656aee0f8125": [ + [ + { + "_tpl": "5d235b4d86f7742e017bc88a", + "count": 6 + } + ] + ], + "6507ff2b644a656aee0f8134": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 307.51 + } + ] + ], + "6507ff2b644a656aee0f8136": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 16.29 + } + ] + ], + "6507ff2b644a656aee0f8138": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 59.97 + } + ] + ], + "6507ff2b644a656aee0f813a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 193.03 + } + ] + ], + "6507ff2b644a656aee0f813c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 88 + } + ] + ], + "6507ff2b644a656aee0f813e": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 188.43 + } + ] + ], + "6507ff2b644a656aee0f8140": [ + [ + { + "_tpl": "57e26fc7245977162a14b800", + "count": 4 + }, + { + "_tpl": "54491bb74bdc2d09088b4567", + "count": 1 + } + ] + ], + "6507ff2b644a656aee0f8149": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 12.27 + } + ] + ], + "6507ff2b644a656aee0f814b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 209.86 + } + ] + ], + "6507ff2b644a656aee0f814d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 28.29 + } + ] + ], + "6507ff2b644a656aee0f814f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 3 + } + ] + ], + "6507ff2b644a656aee0f8151": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 28.51 + } + ] + ], + "6507ff2b644a656aee0f8153": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 312.26 + } + ] + ], + "6507ff2b644a656aee0f8155": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 2.8 + } + ] + ], + "6507ff2b644a656aee0f8157": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 25.6 + } + ] + ], + "6507ff2b644a656aee0f8159": [ + [ + { + "_tpl": "5909e99886f7740c983b9984", + "count": 10 + } + ] + ], + "6507ff2b644a656aee0f8162": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 646.64 + } + ] + ], + "6507ff2b644a656aee0f816b": [ + [ + { + "_tpl": "590a386e86f77429692b27ab", + "count": 3 + }, + { + "_tpl": "57347baf24597738002c6178", + "count": 2 + } + ] + ], + "6507ff2b644a656aee0f8175": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 145.7 + } + ] + ], + "6507ff2b644a656aee0f8177": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 28.44 + } + ] + ], + "6507ff2b644a656aee0f8179": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 789.34 + } + ] + ], + "6507ff2b644a656aee0f817b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 19.39 + } + ] + ], + "6507ff2b644a656aee0f817d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 720.23 + } + ] + ], + "6507ff2b644a656aee0f818a": [ + [ + { + "_tpl": "573477e124597737dd42e191", + "count": 3 + }, + { + "_tpl": "5734779624597737e04bf329", + "count": 3 + } + ] + ], + "6507ff2b644a656aee0f8198": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 867.86 + } + ] + ], + "6507ff2b644a656aee0f81a2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 21.84 + } + ] + ], + "6507ff2b644a656aee0f81a4": [ + [ + { + "_tpl": "56742c2e4bdc2d95058b456d", + "count": 2 + } + ] + ], + "6507ff2b644a656aee0f81a6": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 628.85 + } + ] + ], + "6507ff2b644a656aee0f81b4": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 497.27 + } + ] + ], + "6507ff2b644a656aee0f81bb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 2.44 + } + ] + ], + "6507ff2b644a656aee0f81bd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 543.61 + } + ] + ], + "6507ff2b644a656aee0f81bf": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 192.89 + } + ] + ], + "6507ff2b644a656aee0f81c1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 21.99 + } + ] + ], + "6507ff2b644a656aee0f81c3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 14.16 + } + ] + ], + "6507ff2b644a656aee0f81c5": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 150.07 + } + ] + ], + "6507ff2b644a656aee0f81c7": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 45.59 + } + ] + ], + "6507ff2b644a656aee0f81c9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 41.01 + } + ] + ], + "6507ff2b644a656aee0f81cb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 14.62 + } + ] + ], + "6507ff2b644a656aee0f81cd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 127.26 + } + ] + ], + "6507ff2b644a656aee0f81cf": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1.12 + } + ] + ], + "6507ff2b644a656aee0f81d1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 20.88 + } + ] + ], + "6507ff2b644a656aee0f81d3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 167.4 + } + ] + ], + "6507ff2b644a656aee0f81d5": [ + [ + { + "_tpl": "5b43575a86f77424f443fe62", + "count": 1 + } + ] + ], + "6507ff2b644a656aee0f81d7": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 587.71 + } + ] + ], + "6507ff2b644a656aee0f81d9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1310.21 + } + ] + ], + "6507ff2b644a656aee0f81db": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 217.35 + } + ] + ], + "6507ff2b644a656aee0f81dd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 69.84 + } + ] + ], + "6507ff2b644a656aee0f81df": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 402.29 + } + ] + ], + "6507ff2b644a656aee0f81e1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 18.86 + } + ] + ], + "6507ff2b644a656aee0f81e3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 18.86 + } + ] + ], + "6507ff2b644a656aee0f81e5": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 921.35 + } + ] + ], + "6507ff2b644a656aee0f81f2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 399.11 + } + ] + ], + "6507ff2b644a656aee0f81f4": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 314.6 + } + ] + ], + "6507ff2b644a656aee0f81f9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 314.49 + } + ] + ], + "6507ff2b644a656aee0f81fb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 31.63 + } + ] + ], + "6507ff2b644a656aee0f81fd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 26.13 + } + ] + ], + "6507ff2b644a656aee0f81ff": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 17.55 + } + ] + ], + "6507ff2b644a656aee0f8201": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1094.67 + } + ] + ], + "6507ff2b644a656aee0f8203": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 321.4 + } + ] + ], + "6507ff2b644a656aee0f8205": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 31.47 + } + ] + ], + "6507ff2b644a656aee0f8207": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 17.68 + } + ] + ], + "6507ff2b644a656aee0f8209": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 24.36 + } + ] + ], + "6507ff2b644a656aee0f820b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 211.24 + } + ] + ], + "6507ff2b644a656aee0f820d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 18.86 + } + ] + ], + "6507ff2b644a656aee0f820f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 17.31 + } + ] + ], + "6507ff2c644a656aee0f8211": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1.27 + } + ] + ], + "6507ff2c644a656aee0f8213": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 363 + } + ] + ], + "6507ff2c644a656aee0f8215": [ + [ + { + "_tpl": "5d1b376e86f774252519444e", + "count": 1 + } + ] + ], + "6507ff2c644a656aee0f8217": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 20.04 + } + ] + ], + "6507ff2c644a656aee0f8219": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 50.29 + } + ] + ], + "6507ff2c644a656aee0f821b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 48.95 + } + ] + ], + "6507ff2c644a656aee0f821d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 56.52 + } + ] + ], + "6507ff2c644a656aee0f821f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 25.11 + } + ] + ], + "6507ff2c644a656aee0f8221": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 2.84 + } + ] + ], + "6507ff2c644a656aee0f8223": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 818.32 + } + ] + ], + "6507ff2c644a656aee0f822f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 51.07 + } + ] + ], + "6507ff2c644a656aee0f8231": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 200.6 + } + ] + ], + "6507ff2c644a656aee0f8239": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 21.98 + } + ] + ], + "6507ff2c644a656aee0f823b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 818.31 + } + ] + ], + "6507ff2c644a656aee0f8249": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 13.36 + } + ] + ], + "6507ff2c644a656aee0f824b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 15.32 + } + ] + ], + "6507ff2c644a656aee0f824d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 6.47 + } + ] + ], + "6507ff2c644a656aee0f824f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 29.86 + } + ] + ], + "6507ff2c644a656aee0f8251": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 95.7 + } + ] + ], + "6507ff2c644a656aee0f8253": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 24.46 + } + ] + ], + "6507ff2c644a656aee0f8255": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1.05 + } + ] + ], + "6507ff2c644a656aee0f8257": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 179.93 + } + ] + ], + "6507ff2c644a656aee0f8259": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 218.33 + } + ] + ], + "6507ff2c644a656aee0f8260": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 385.79 + } + ] + ], + "6507ff2c644a656aee0f8262": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 36.21 + } + ] + ], + "6507ff2c644a656aee0f8264": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 24.46 + } + ] + ], + "6507ff2c644a656aee0f8266": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 48.53 + } + ] + ], + "6507ff2c644a656aee0f8268": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 12.36 + } + ] + ], + "6507ff2c644a656aee0f826a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 30.64 + } + ] + ], + "6507ff2c644a656aee0f826c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 99.59 + } + ] + ], + "6507ff2c644a656aee0f8275": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 75.43 + } + ] + ], + "6507ff2c644a656aee0f8277": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 383.63 + } + ] + ], + "6507ff2c644a656aee0f8279": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 14.14 + } + ] + ], + "6507ff2c644a656aee0f827b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 36.93 + } + ] + ], + "6507ff2c644a656aee0f827d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 86.74 + } + ] + ], + "6507ff2c644a656aee0f827f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 29.83 + } + ] + ], + "6507ff2c644a656aee0f8281": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 14.14 + } + ] + ], + "6507ff2c644a656aee0f8283": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 6.29 + } + ] + ], + "6507ff2c644a656aee0f8285": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 385 + } + ] + ], + "6507ff2c644a656aee0f8287": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1288.57 + } + ] + ], + "6507ff2c644a656aee0f8289": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 39.68 + } + ] + ], + "6507ff2c644a656aee0f828b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 225.5 + } + ] + ], + "6507ff2c644a656aee0f828d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 19.25 + } + ] + ], + "6507ff2c644a656aee0f828f": [ + [ + { + "_tpl": "5c1265fc86f7743f896a21c2", + "count": 1 + }, + { + "_tpl": "5af0561e86f7745f5f3ad6ac", + "count": 1 + } + ] + ], + "6507ff2c644a656aee0f8296": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 95.07 + } + ] + ], + "6507ff2c644a656aee0f8298": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 26.91 + } + ] + ], + "6507ff2c644a656aee0f829a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 381.23 + } + ] + ], + "6507ff2c644a656aee0f829c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 9.43 + } + ] + ], + "6507ff2c644a656aee0f829e": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 117.64 + } + ] + ], + "6507ff2c644a656aee0f82a0": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 106.07 + } + ] + ], + "6507ff2c644a656aee0f82a2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1224.14 + } + ] + ], + "6507ff2c644a656aee0f82a4": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 27.7 + } + ] + ], + "6507ff2c644a656aee0f82a6": [ + [ + { + "_tpl": "5bc9b720d4351e450201234b", + "count": 1 + }, + { + "_tpl": "573477e124597737dd42e191", + "count": 1 + } + ] + ], + "6507ff2c644a656aee0f82a8": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 64.22 + } + ] + ], + "6507ff2c644a656aee0f82aa": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 24.36 + } + ] + ], + "6507ff2c644a656aee0f82ac": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 26.64 + } + ] + ], + "6507ff2c644a656aee0f82ae": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 77.39 + } + ] + ], + "6507ff2c644a656aee0f82b0": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 77.79 + } + ] + ], + "6507ff2c644a656aee0f82b2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 403.31 + } + ] + ], + "6507ff2c644a656aee0f82b4": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 279.71 + } + ] + ], + "6507ff2c644a656aee0f82b6": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 20.44 + } + ] + ], + "6507ff2c644a656aee0f82b8": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 151.19 + } + ] + ], + "6507ff2c644a656aee0f82c0": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 287.31 + } + ] + ], + "6507ff2c644a656aee0f82c2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 63.64 + } + ] + ], + "6507ff2c644a656aee0f82c4": [ + [ + { + "_tpl": "590c645c86f77412b01304d9", + "count": 4 + }, + { + "_tpl": "590c651286f7741e566b6461", + "count": 4 + }, + { + "_tpl": "62a0a124de7ac81993580542", + "count": 1 + } + ] + ], + "6507ff2c644a656aee0f82c6": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 32.21 + } + ] + ], + "6507ff2c644a656aee0f82c8": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 59.71 + } + ] + ], + "6507ff2c644a656aee0f82ca": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 73.07 + } + ] + ], + "6507ff2c644a656aee0f82cc": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 13.99 + } + ] + ], + "6507ff2c644a656aee0f82ce": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 73.46 + } + ] + ], + "6507ff2c644a656aee0f82d0": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 28.29 + } + ] + ], + "6507ff2c644a656aee0f82d2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 28.76 + } + ] + ], + "6507ff2c644a656aee0f82d4": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 16.19 + } + ] + ], + "6507ff2c644a656aee0f82d6": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 30.54 + } + ] + ], + "6507ff2c644a656aee0f82d8": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 326.86 + } + ] + ], + "6507ff2c644a656aee0f82da": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 57.75 + } + ] + ], + "6507ff2c644a656aee0f82dc": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 22.39 + } + ] + ], + "6507ff2c644a656aee0f82de": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 13.75 + } + ] + ], + "6507ff2c644a656aee0f82e0": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 9.43 + } + ] + ], + "6507ff2c644a656aee0f82e2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 91.85 + } + ] + ], + "6507ff2c644a656aee0f82e4": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 30.64 + } + ] + ], + "6507ff2c644a656aee0f82e6": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 20.74 + } + ] + ], + "6507ff2c644a656aee0f82e8": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 86.43 + } + ] + ], + "6507ff2c644a656aee0f82ea": [ + [ + { + "_tpl": "5d0375ff86f774186372f685", + "count": 2 + } + ] + ], + "6507ff2c644a656aee0f82f5": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 385 + } + ] + ], + "6507ff2c644a656aee0f82f7": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 10.53 + } + ] + ], + "6507ff2c644a656aee0f82f9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 131.14 + } + ] + ], + "6507ff2c644a656aee0f82fb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 40.65 + } + ] + ], + "6507ff2c644a656aee0f82fd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 11.39 + } + ] + ], + "6507ff2c644a656aee0f82ff": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 224.71 + } + ] + ], + "6507ff2c644a656aee0f8301": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 31.19 + } + ] + ], + "6507ff2c644a656aee0f8303": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 24.51 + } + ] + ], + "6507ff2c644a656aee0f8305": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 85.25 + } + ] + ], + "6507ff2c644a656aee0f8307": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 33 + } + ] + ], + "6507ff2c644a656aee0f8309": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 113.14 + } + ] + ], + "6507ff2c644a656aee0f830b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 80.6 + } + ] + ], + "6507ff2c644a656aee0f830d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 218.33 + } + ] + ], + "6507ff2c644a656aee0f8314": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 9.53 + } + ] + ], + "6507ff2c644a656aee0f8316": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 845.42 + } + ] + ], + "6507ff2c644a656aee0f831d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 23.1 + } + ] + ], + "6507ff2c644a656aee0f831f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 80.14 + } + ] + ], + "6507ff2c644a656aee0f8321": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 103.4 + } + ] + ], + "6507ff2c644a656aee0f8323": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 0.86 + } + ] + ], + "6507ff2c644a656aee0f8325": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 18.86 + } + ] + ], + "6507ff2c644a656aee0f8327": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 82.5 + } + ] + ], + "6507ff2c644a656aee0f8329": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 80.08 + } + ] + ], + "6507ff2c644a656aee0f832b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 8.25 + } + ] + ], + "6507ff2c644a656aee0f832d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 232.57 + } + ] + ], + "6507ff2c644a656aee0f832f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 22.39 + } + ] + ], + "6507ff2c644a656aee0f8331": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1.63 + } + ] + ], + "6507ff2c644a656aee0f8333": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 27.5 + } + ] + ], + "6507ff2c644a656aee0f8335": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 169.87 + } + ] + ], + "6507ff2c644a656aee0f8337": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 56.41 + } + ] + ], + "6507ff2c644a656aee0f8339": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 383.63 + } + ] + ], + "6507ff2c644a656aee0f833b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 97.27 + } + ] + ], + "6507ff2c644a656aee0f833d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 29.46 + } + ] + ], + "6507ff2c644a656aee0f833f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 179.14 + } + ] + ], + "6507ff2c644a656aee0f8341": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 124.14 + } + ] + ], + "6507ff2c644a656aee0f8343": [ + [ + { + "_tpl": "59f32bb586f774757e1e8442", + "count": 8, + "level": 15, + "side": "Bear" + }, + { + "_tpl": "59f32c3b86f77472a31742f0", + "count": 8, + "level": 15, + "side": "Usec" + } + ] + ], + "6507ff2c644a656aee0f834d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 13.75 + } + ] + ], + "6507ff2c644a656aee0f834f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 298.1 + } + ] + ], + "6507ff2c644a656aee0f8351": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 48.31 + } + ] + ], + "6507ff2c644a656aee0f8353": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1191.21 + } + ] + ], + "6507ff2c644a656aee0f835a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 12.36 + } + ] + ], + "6507ff2d644a656aee0f835c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 489.7 + } + ] + ], + "6507ff2d644a656aee0f835e": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 16.5 + } + ] + ], + "6507ff2d644a656aee0f8360": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 33 + } + ] + ], + "6507ff2d644a656aee0f8362": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 0.86 + } + ] + ], + "6507ff2d644a656aee0f8364": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 55 + } + ] + ], + "6507ff2d644a656aee0f8366": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 25.14 + } + ] + ], + "6507ff2d644a656aee0f8368": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 159.11 + } + ] + ], + "6507ff2d644a656aee0f8372": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 728.88 + } + ] + ], + "6507ff2d644a656aee0f8382": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 349.64 + } + ] + ], + "6507ff2d644a656aee0f8384": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 298.57 + } + ] + ], + "6507ff2d644a656aee0f8386": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 30.64 + } + ] + ], + "6507ff2d644a656aee0f8388": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 9.66 + } + ] + ], + "6507ff2d644a656aee0f838a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 20.04 + } + ] + ], + "6507ff2d644a656aee0f838c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 330 + } + ] + ], + "6507ff2d644a656aee0f838e": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 166.57 + } + ] + ], + "6507ff2d644a656aee0f8390": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 4.71 + } + ] + ], + "6507ff2d644a656aee0f8392": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 6.3 + } + ] + ], + "6507ff2d644a656aee0f8394": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 62.07 + } + ] + ], + "6507ff2d644a656aee0f8396": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 145.36 + } + ] + ], + "6507ff2d644a656aee0f8398": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 408.73 + } + ] + ], + "6507ff2d644a656aee0f839a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 40.07 + } + ] + ], + "6507ff2d644a656aee0f839c": [ + [ + { + "_tpl": "5efde6b4f5448336730dbd61", + "count": 1 + } + ] + ], + "6507ff2d644a656aee0f83ab": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 521.16 + } + ] + ], + "6507ff2d644a656aee0f83ad": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 8.12 + } + ] + ], + "6507ff2d644a656aee0f83af": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 428.37 + } + ] + ], + "6507ff2d644a656aee0f83b1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 857.03 + } + ] + ], + "6507ff2d644a656aee0f83c1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 29.46 + } + ] + ], + "6507ff2d644a656aee0f83c3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 27.11 + } + ] + ], + "6507ff2d644a656aee0f83c5": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 196.43 + } + ] + ], + "6507ff2d644a656aee0f83c7": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 16.5 + } + ] + ], + "6507ff2d644a656aee0f83c9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1.87 + } + ] + ], + "6507ff2d644a656aee0f83cb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 14.46 + } + ] + ], + "6507ff2d644a656aee0f83cd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 239.64 + } + ] + ], + "6507ff2d644a656aee0f83cf": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1067.56 + } + ] + ], + "6507ff2d644a656aee0f83df": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 192.5 + } + ] + ], + "6507ff2d644a656aee0f83e1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 176.29 + } + ] + ], + "6507ff2d644a656aee0f83e3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 14.93 + } + ] + ], + "6507ff2d644a656aee0f83e5": [ + [ + { + "_tpl": "5909e99886f7740c983b9984", + "count": 2 + }, + { + "_tpl": "590c2c9c86f774245b1f03f2", + "count": 1 + } + ] + ], + "6507ff2d644a656aee0f83e7": [ + [ + { + "_tpl": "60098b1705871270cd5352a1", + "count": 1 + } + ] + ], + "6507ff2d644a656aee0f83e9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 48.71 + } + ] + ], + "6507ff2d644a656aee0f83eb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 51.07 + } + ] + ], + "6507ff2d644a656aee0f83ed": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 732 + } + ] + ], + "6507ff2d644a656aee0f83fd": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 18.86 + } + ] + ], + "6507ff2d644a656aee0f83ff": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 0.68 + } + ] + ], + "6507ff2d644a656aee0f8401": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 18.07 + } + ] + ], + "6507ff2d644a656aee0f8403": [ + [ + { + "_tpl": "5d403f9186f7743cac3f229b", + "count": 1 + }, + { + "_tpl": "590c37d286f77443be3d7827", + "count": 1 + } + ] + ], + "6507ff2d644a656aee0f8405": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1169.02 + } + ] + ], + "6507ff2d644a656aee0f8407": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 24.36 + } + ] + ], + "6507ff2d644a656aee0f8409": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 59.71 + } + ] + ], + "6507ff2d644a656aee0f840b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 90.03 + } + ] + ], + "6507ff2d644a656aee0f8416": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 8.64 + } + ] + ], + "6507ff2d644a656aee0f8418": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 62.07 + } + ] + ], + "6507ff2d644a656aee0f841a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 42.43 + } + ] + ], + "6507ff2d644a656aee0f841c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 25.14 + } + ] + ], + "6507ff2d644a656aee0f841e": [ + [ + { + "_tpl": "590a386e86f77429692b27ab", + "count": 1 + }, + { + "_tpl": "5734781f24597737e04bf32a", + "count": 1 + } + ] + ], + "6507ff2d644a656aee0f8420": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 2.48 + } + ] + ], + "6507ff2d644a656aee0f8422": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 27.5 + } + ] + ], + "6507ff2d644a656aee0f8424": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 463.57 + } + ] + ], + "6507ff2d644a656aee0f8426": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 327.97 + } + ] + ], + "6507ff2d644a656aee0f8428": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 75.82 + } + ] + ], + "6507ff2d644a656aee0f842a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 18.95 + } + ] + ], + "6507ff2d644a656aee0f842c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 223.3 + } + ] + ], + "6507ff2d644a656aee0f8434": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 81.71 + } + ] + ], + "6507ff2d644a656aee0f8436": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 22 + } + ] + ], + "6507ff2d644a656aee0f8438": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 27.5 + } + ] + ], + "6507ff2d644a656aee0f843a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 17.29 + } + ] + ], + "6507ff2d644a656aee0f843c": [ + [ + { + "_tpl": "5d1c819a86f774771b0acd6c", + "count": 1 + }, + { + "_tpl": "590c5bbd86f774785762df04", + "count": 1 + } + ] + ], + "6507ff2d644a656aee0f843e": [ + [ + { + "_tpl": "5c05300686f7746dce784e5d", + "count": 1 + }, + { + "_tpl": "5d0376a486f7747d8050965c", + "count": 5 + }, + { + "_tpl": "5d0375ff86f774186372f685", + "count": 5 + } + ] + ], + "6507ff2d644a656aee0f8441": [ + [ + { + "_tpl": "57e26ea924597715ca604a09", + "count": 4 + }, + { + "_tpl": "54491bb74bdc2d09088b4567", + "count": 1 + } + ] + ], + "6507ff2d644a656aee0f8449": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 194.46 + } + ] + ], + "6507ff2d644a656aee0f8455": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 43.21 + } + ] + ], + "6507ff2d644a656aee0f8457": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 236.53 + } + ] + ], + "6507ff2d644a656aee0f845f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 398.77 + } + ] + ], + "6507ff2d644a656aee0f8461": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 27.5 + } + ] + ], + "6507ff2d644a656aee0f8463": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 150.07 + } + ] + ], + "6507ff2d644a656aee0f8465": [ + [ + { + "_tpl": "59f32bb586f774757e1e8442", + "count": 10, + "level": 30, + "side": "Bear" + } + ] + ], + "6507ff2d644a656aee0f8467": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 58.93 + } + ] + ], + "6507ff2d644a656aee0f8469": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 2.19 + } + ] + ], + "6507ff2d644a656aee0f846b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 19.64 + } + ] + ], + "6507ff2d644a656aee0f846d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 188.57 + } + ] + ], + "6507ff2d644a656aee0f846f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 35.36 + } + ] + ], + "6507ff2d644a656aee0f8471": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 22 + } + ] + ], + "6507ff2d644a656aee0f8473": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 20.43 + } + ] + ], + "6507ff2d644a656aee0f8475": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 770.26 + } + ] + ], + "6507ff2d644a656aee0f847f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 0.68 + } + ] + ], + "6507ff2d644a656aee0f8481": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 66 + } + ] + ], + "6507ff2d644a656aee0f8483": [ + [ + { + "_tpl": "590a3efd86f77437d351a25b", + "count": 1 + } + ] + ], + "6507ff2d644a656aee0f8485": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 251.43 + } + ] + ], + "6507ff2d644a656aee0f8487": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 11.79 + } + ] + ], + "6507ff2d644a656aee0f8489": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 173.64 + } + ] + ], + "6507ff2d644a656aee0f848b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 45.57 + } + ] + ], + "6507ff2d644a656aee0f848d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1370.09 + } + ] + ], + "6507ff2d644a656aee0f848f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 19.64 + } + ] + ], + "6507ff2d644a656aee0f8491": [ + [ + { + "_tpl": "59f32bb586f774757e1e8442", + "count": 9, + "level": 25, + "side": "Bear" + } + ] + ], + "6507ff2d644a656aee0f8493": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 167.36 + } + ] + ], + "6507ff2d644a656aee0f8495": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 63.71 + } + ] + ], + "6507ff2d644a656aee0f8497": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 69.93 + } + ] + ], + "6507ff2d644a656aee0f8499": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 48.71 + } + ] + ], + "6507ff2d644a656aee0f849b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 1112.23 + } + ] + ], + "6507ff2d644a656aee0f84ab": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 31.43 + } + ] + ], + "6507ff2d644a656aee0f84ad": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 11.16 + } + ] + ], + "6507ff2d644a656aee0f84af": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 331.57 + } + ] + ], + "6507ff2d644a656aee0f84b1": [ + [ + { + "_tpl": "5d1b309586f77425227d1676", + "count": 2 + } + ] + ], + "6507ff2d644a656aee0f84b3": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 67.57 + } + ] + ], + "6507ff2d644a656aee0f84b5": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 23.57 + } + ] + ], + "6507ff2d644a656aee0f84b7": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 18.46 + } + ] + ], + "6507ff2d644a656aee0f84b9": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 12.36 + } + ] + ], + "6507ff2d644a656aee0f84bb": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 62.86 + } + ] + ], + "6507ff2d644a656aee0f84bf": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 66.79 + } + ] + ], + "6507ff2d644a656aee0f84c1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 545.07 + } + ] + ], + "6507ff2d644a656aee0f84ca": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 31.43 + } + ] + ], + "6507ff2d644a656aee0f84cc": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 34.51 + } + ] + ], + "6507ff2d644a656aee0f84ce": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 215.29 + } + ] + ], + "6507ff2d644a656aee0f84d0": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 11 + } + ] + ], + "6507ff2d644a656aee0f84d2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 43.21 + } + ] + ], + "6507ff2d644a656aee0f84d4": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 448.04 + } + ] + ], + "6507ff2e644a656aee0f84e2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 419.08 + } + ] + ], + "6507ff2e644a656aee0f84ed": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 337.58 + } + ] + ], + "6507ff2e644a656aee0f84ef": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 11.19 + } + ] + ], + "6507ff2e644a656aee0f84f1": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 165.85 + } + ] + ], + "6507ff2e644a656aee0f84fc": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 48.71 + } + ] + ], + "6507ff2e644a656aee0f84fe": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 70.71 + } + ] + ], + "6507ff2e644a656aee0f8500": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 557.86 + } + ] + ], + "6507ff2e644a656aee0f8502": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 31.43 + } + ] + ], + "6507ff2e644a656aee0f8504": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 54.21 + } + ] + ], + "6507ff2e644a656aee0f8506": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 129.64 + } + ] + ], + "6507ff2e644a656aee0f8508": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 110 + } + ] + ], + "6507ff2e644a656aee0f850a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 7.86 + } + ] + ], + "6507ff2e644a656aee0f850c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 138.25 + } + ] + ], + "6507ff2e644a656aee0f8510": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 63.75 + } + ] + ], + "6507ff2e644a656aee0f8512": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 29.86 + } + ] + ], + "6507ff2e644a656aee0f8514": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 62.86 + } + ] + ], + "6507ff2e644a656aee0f8516": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 461.41 + } + ] + ], + "6507ff2e644a656aee0f8520": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 7.46 + } + ] + ], + "6507ff2e644a656aee0f8522": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 17.29 + } + ] + ], + "6507ff2e644a656aee0f8524": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 8.12 + } + ] + ], + "6507ff2e644a656aee0f8526": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 74.64 + } + ] + ], + "6507ff2e644a656aee0f8528": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 7.86 + } + ] + ], + "6507ff2e644a656aee0f852a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 16.5 + } + ] + ], + "6507ff2e644a656aee0f852c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 200.88 + } + ] + ], + "6507ff2e644a656aee0f852e": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 33 + } + ] + ], + "6507ff2e644a656aee0f8530": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 41.01 + } + ] + ], + "6507ff2e644a656aee0f8532": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 40.07 + } + ] + ], + "6507ff2e644a656aee0f8534": [ + [ + { + "_tpl": "62a0a124de7ac81993580542", + "count": 2 + } + ] + ], + "6507ff2e644a656aee0f8536": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 55.79 + } + ] + ], + "6507ff2e644a656aee0f8538": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 16.83 + } + ] + ], + "6507ff2e644a656aee0f853a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 47.14 + } + ] + ], + "6507ff2e644a656aee0f853c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 26.71 + } + ] + ], + "6507ff2e644a656aee0f853e": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 15.71 + } + ] + ], + "6507ff2e644a656aee0f8540": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 23.57 + } + ] + ], + "6507ff2e644a656aee0f8542": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 70.71 + } + ] + ], + "6507ff2e644a656aee0f8544": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 66.79 + } + ] + ], + "6507ff2e644a656aee0f8546": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 9.7 + } + ] + ], + "6507ff2e644a656aee0f8548": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 102.58 + } + ] + ], + "6507ff2e644a656aee0f854a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 259.29 + } + ] + ], + "6507ff2e644a656aee0f854c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 46.36 + } + ] + ], + "6507ff2e644a656aee0f854e": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 44.31 + } + ] + ], + "6507ff2e644a656aee0f8550": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 15.97 + } + ] + ], + "6507ff2e644a656aee0f8552": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 20.19 + } + ] + ], + "6507ff2e644a656aee0f8554": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 463.57 + } + ] + ], + "6507ff2e644a656aee0f8556": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 23.57 + } + ] + ], + "6507ff2e644a656aee0f8558": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 165 + } + ] + ], + "6507ff2e644a656aee0f855a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 18.46 + } + ] + ], + "6507ff2e644a656aee0f855c": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 19.64 + } + ] + ], + "6507ff2e644a656aee0f855e": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 13.36 + } + ] + ], + "6507ff2e644a656aee0f8560": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 39.36 + } + ] + ], + "6507ff2e644a656aee0f8562": [ + [ + { + "_tpl": "5c12613b86f7743bbe2c3f76", + "count": 1 + }, + { + "_tpl": "6389c70ca33d8c4cdf4932c6", + "count": 4 + } + ] + ], + "6507ff2e644a656aee0f8564": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 12.76 + } + ] + ], + "6507ff2e644a656aee0f8566": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 525.05 + } + ] + ], + "6507ff2e644a656aee0f8571": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 505.61 + } + ] + ], + "6507ff2e644a656aee0f857d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 11.79 + } + ] + ], + "6507ff2e644a656aee0f857f": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 33.54 + } + ] + ], + "6507ff2e644a656aee0f8581": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 3.93 + } + ] + ], + "6507ff2e644a656aee0f8583": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 223.93 + } + ] + ], + "6507ff2e644a656aee0f8585": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 51.07 + } + ] + ], + "6507ff2e644a656aee0f8587": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 58.93 + } + ] + ], + "6507ff2e644a656aee0f8589": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 47.14 + } + ] + ], + "6507ff2e644a656aee0f858b": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 51.07 + } + ] + ], + "6507ff2e644a656aee0f858d": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 158.26 + } + ] + ], + "6507ff2e644a656aee0f858f": [ + [ + { + "_tpl": "5e54f79686f7744022011103", + "count": 1 + } + ] + ], + "6507ff2e644a656aee0f8596": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 31.43 + } + ] + ], + "6507ff2e644a656aee0f8598": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 9.82 + } + ] + ], + "6507ff2e644a656aee0f859a": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 452.12 + } + ] + ], + "6507ff2e644a656aee0f85a2": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 146.14 + } + ] + ], + "6507ff2e644a656aee0f85a4": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 29.86 + } + ] + ], + "6507ff2e644a656aee0f85a6": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 70.71 + } + ] + ], + "6507ff2e644a656aee0f85a8": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 35.18 + } + ] + ], + "6507ff2e644a656aee0f85aa": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 0.6 + } + ] + ], + "6507ff2e644a656aee0f85ac": [ + [ + { + "_tpl": "5696686a4bdc2da3298b456a", + "count": 3.7 + } + ] + ] + }, "items": [ { "_id": "6507ff2a644a656aee0f7fbb", @@ -6,9 +4202,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1975, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1975 } }, { @@ -17,13 +4213,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14882, - "BuyRestrictionMax": 4, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 4, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 14882 } }, { @@ -74,9 +4270,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 49721, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 49721 } }, { @@ -94,9 +4290,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 17744, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 17744 } }, { @@ -105,8 +4301,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -115,9 +4311,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14947, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14947 } }, { @@ -126,9 +4322,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14849, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14849 } }, { @@ -137,9 +4333,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1499, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1499 } }, { @@ -157,9 +4353,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14977, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 32, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14977 } }, { @@ -204,13 +4400,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "UnlimitedCount": true, "StackObjectsCount": 1600000, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "UnlimitedCount": true } }, { @@ -270,9 +4466,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14859, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14859 } }, { @@ -299,9 +4495,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14948, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14948 } }, { @@ -397,9 +4593,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14975, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14975 } }, { @@ -408,9 +4604,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14878, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14878 } }, { @@ -419,9 +4615,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 296623, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 296623 } }, { @@ -430,9 +4626,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 12277, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 12277 } }, { @@ -441,9 +4637,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1141, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1141 } }, { @@ -452,9 +4648,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 6048, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 6048 } }, { @@ -463,9 +4659,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14965, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14965 } }, { @@ -474,9 +4670,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 29876, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 29876 } }, { @@ -485,9 +4681,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 12014, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 12014 } }, { @@ -496,9 +4692,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14058, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14058 } }, { @@ -507,9 +4703,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19958, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19958 } }, { @@ -536,9 +4732,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14771, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14771 } }, { @@ -547,9 +4743,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14800, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14800 } }, { @@ -558,8 +4754,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 2780000 + "StackObjectsCount": 2780000, + "UnlimitedCount": true } }, { @@ -568,9 +4764,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 2490, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2490 } }, { @@ -615,9 +4811,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14918, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14918 } }, { @@ -710,9 +4906,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14854, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14854 } }, { @@ -721,9 +4917,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 13049, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 13049 } }, { @@ -732,9 +4928,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14389, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14389 } }, { @@ -743,9 +4939,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14803, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14803 } }, { @@ -754,8 +4950,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -800,9 +4996,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14441, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14441 } }, { @@ -811,9 +5007,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4293, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4293 } }, { @@ -822,9 +5018,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4244, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4244 } }, { @@ -833,9 +5029,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1974, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1974 } }, { @@ -844,9 +5040,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1971, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1971 } }, { @@ -855,9 +5051,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14825, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14825 } }, { @@ -866,9 +5062,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14863, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14863 } }, { @@ -877,9 +5073,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 148755, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 148755 } }, { @@ -888,9 +5084,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14925, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14925 } }, { @@ -935,9 +5131,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 20595, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 20595 } }, { @@ -946,9 +5142,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5300, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5300 } }, { @@ -957,9 +5153,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14569, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14569 } }, { @@ -1004,9 +5200,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14798, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14798 } }, { @@ -1015,9 +5211,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 272, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 272 } }, { @@ -1035,9 +5231,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14980, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14980 } }, { @@ -1046,9 +5242,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 12313, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 12313 } }, { @@ -1057,9 +5253,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5573, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5573 } }, { @@ -1077,8 +5273,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -1087,9 +5283,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14757, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14757 } }, { @@ -1098,9 +5294,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14940, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14940 } }, { @@ -1109,9 +5305,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14846, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14846 } }, { @@ -1129,9 +5325,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 762980, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 50, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 762980 } }, { @@ -1140,9 +5336,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14806, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14806 } }, { @@ -1229,9 +5425,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 10169, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 10169 } }, { @@ -1240,9 +5436,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14092, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14092 } }, { @@ -1251,10 +5447,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -1263,8 +5459,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 6500000 + "StackObjectsCount": 6500000, + "UnlimitedCount": true } }, { @@ -1282,9 +5478,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14852, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14852 } }, { @@ -1293,9 +5489,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 13327, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 13327 } }, { @@ -1304,9 +5500,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 16286, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 16286 } }, { @@ -1315,9 +5511,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5910, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5910 } }, { @@ -1335,9 +5531,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5545, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5545 } }, { @@ -1355,9 +5551,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14826, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14826 } }, { @@ -1366,9 +5562,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14425, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14425 } }, { @@ -1377,9 +5573,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14059, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14059 } }, { @@ -1388,9 +5584,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14871, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14871 } }, { @@ -1408,9 +5604,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14788, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14788 } }, { @@ -1419,9 +5615,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 13250, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 13250 } }, { @@ -1430,9 +5626,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19581, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19581 } }, { @@ -1450,9 +5646,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14983 } }, { @@ -1461,9 +5657,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 149902, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 149902 } }, { @@ -1472,9 +5668,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14862, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14862 } }, { @@ -1483,9 +5679,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14574, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14574 } }, { @@ -1494,8 +5690,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -1504,9 +5700,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14787, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14787 } }, { @@ -1515,8 +5711,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -1534,9 +5730,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1921, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1921 } }, { @@ -1572,9 +5768,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 13754, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 13754 } }, { @@ -1583,9 +5779,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 229381, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 90, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 229381 } }, { @@ -1594,9 +5790,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14964, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14964 } }, { @@ -1605,9 +5801,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 11750, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 11750 } }, { @@ -1616,13 +5812,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1990, - "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 1990 } }, { @@ -1640,9 +5836,9 @@ { "_id": "6507ff2b644a656aee0f80e8", "_tpl": "54527a984bdc2d4e668b4567", + "location": 0, "parentId": "6507ff2b644a656aee0f80e7", "slotId": "cartridges", - "location": 0, "upd": { "StackObjectsCount": 30 } @@ -1767,9 +5963,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5929, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5929 } }, { @@ -1778,9 +5974,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14713, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14713 } }, { @@ -1798,9 +5994,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14812, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14812 } }, { @@ -1809,9 +6005,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14980, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14980 } }, { @@ -1820,13 +6016,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19928, - "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 19928 } }, { @@ -1892,9 +6088,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1984, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1984 } }, { @@ -1903,9 +6099,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4619, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4619 } }, { @@ -1914,9 +6110,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 98690, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 98690 } }, { @@ -1925,8 +6121,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -1935,9 +6131,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 6475, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 6475 } }, { @@ -1946,9 +6142,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14166, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14166 } }, { @@ -1957,9 +6153,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14853, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14853 } }, { @@ -1968,9 +6164,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 13764, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 13764 } }, { @@ -1979,9 +6175,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14755, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14755 } }, { @@ -1990,9 +6186,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 2993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2993 } }, { @@ -2079,9 +6275,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4968, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4968 } }, { @@ -2090,8 +6286,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -2100,9 +6296,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14274, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14274 } }, { @@ -2111,9 +6307,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14869, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14869 } }, { @@ -2122,9 +6318,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4441, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4441 } }, { @@ -2133,9 +6329,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 9744, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 9744 } }, { @@ -2144,12 +6340,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 14758, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14758 } }, { @@ -2200,9 +6396,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19638, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19638 } }, { @@ -2211,9 +6407,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14824, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14824 } }, { @@ -2231,10 +6427,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 2030000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2030000, + "UnlimitedCount": true } }, { @@ -2252,9 +6448,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 7951, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 7951 } }, { @@ -2263,10 +6459,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1980000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 100, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1980000, + "UnlimitedCount": true } }, { @@ -2284,13 +6480,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 360, - "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 360 } }, { @@ -2341,13 +6537,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19711, - "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 19711 } }, { @@ -2398,9 +6594,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 197, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 197 } }, { @@ -2457,9 +6653,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 6069, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 6069 } }, { @@ -2477,9 +6673,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1929, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1929 } }, { @@ -2488,10 +6684,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -2500,12 +6696,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 3963, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 3963 } }, { @@ -2580,13 +6776,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 452, - "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 452 } }, { @@ -2667,9 +6863,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1985, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1985 } }, { @@ -2726,8 +6922,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -2736,9 +6932,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19664, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19664 } }, { @@ -2747,14 +6943,14 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000, - "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -2835,9 +7031,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4963, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4963 } }, { @@ -2876,9 +7072,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 190, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 190, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 190 } }, { @@ -2896,9 +7092,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18998, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18998 } }, { @@ -2907,8 +7103,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -2935,9 +7131,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 3401, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 3401 } }, { @@ -2946,9 +7142,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 7766, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 7766 } }, { @@ -2957,9 +7153,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1911, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1911 } }, { @@ -2968,9 +7164,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1991, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1991 } }, { @@ -2979,10 +7175,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1780000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1780000, + "UnlimitedCount": true } }, { @@ -3000,9 +7196,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1965, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1965 } }, { @@ -3011,9 +7207,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 9935, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 9935 } }, { @@ -3022,9 +7218,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1934, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1934 } }, { @@ -3033,9 +7229,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1616, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1616 } }, { @@ -3044,9 +7240,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1954, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1954 } }, { @@ -3064,9 +7260,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1880, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1880 } }, { @@ -3084,9 +7280,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18498, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18498 } }, { @@ -3095,9 +7291,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1989, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1989 } }, { @@ -3172,9 +7368,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1993 } }, { @@ -3213,10 +7409,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1605000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1605000, + "UnlimitedCount": true } }, { @@ -3252,9 +7448,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5934, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5934 } }, { @@ -3263,9 +7459,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1993 } }, { @@ -3292,8 +7488,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -3302,9 +7498,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1964, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1964 } }, { @@ -3331,9 +7527,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 276264, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 276264 } }, { @@ -3342,9 +7538,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18757, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18757 } }, { @@ -3353,9 +7549,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1675, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1675 } }, { @@ -3364,9 +7560,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19905, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19905 } }, { @@ -3393,9 +7589,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19822, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19822 } }, { @@ -3404,9 +7600,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18077, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18077 } }, { @@ -3415,9 +7611,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 223298, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 180, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 223298 } }, { @@ -3426,12 +7622,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1976, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1976 } }, { @@ -3500,9 +7696,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1908, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1908 } }, { @@ -3511,15 +7707,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19889, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 19889 } }, { @@ -3564,9 +7760,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19796, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19796 } }, { @@ -3575,12 +7771,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19652, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19652 } }, { @@ -3661,9 +7857,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4952, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4952 } }, { @@ -3672,9 +7868,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 6830, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 6830 } }, { @@ -3683,9 +7879,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1826, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1826 } }, { @@ -3703,9 +7899,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1988, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1988 } }, { @@ -3723,9 +7919,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 119880, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 119880 } }, { @@ -3734,9 +7930,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1912, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1912 } }, { @@ -3745,12 +7941,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19847, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19847 } }, { @@ -3789,9 +7985,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19848, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19848 } }, { @@ -3800,9 +7996,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4651, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4651 } }, { @@ -3811,9 +8007,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18696, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18696 } }, { @@ -3852,8 +8048,8 @@ "FireMode": { "FireMode": "single" }, - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -3904,9 +8100,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19906, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19906 } }, { @@ -3915,9 +8111,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1849, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1849 } }, { @@ -3926,9 +8122,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19783, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19783 } }, { @@ -3937,9 +8133,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19400, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19400 } }, { @@ -3948,9 +8144,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 8725, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 8725 } }, { @@ -3968,8 +8164,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -3978,9 +8174,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1964, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1964 } }, { @@ -3989,9 +8185,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1924, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1924 } }, { @@ -4000,9 +8196,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 3867, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 3867 } }, { @@ -4011,9 +8207,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1911, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1911 } }, { @@ -4022,9 +8218,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1993 } }, { @@ -4033,9 +8229,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18948, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18948 } }, { @@ -4044,9 +8240,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1984, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1984 } }, { @@ -4103,9 +8299,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1892, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1892 } }, { @@ -4132,9 +8328,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 6692, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 6692 } }, { @@ -4143,9 +8339,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1993 } }, { @@ -4163,9 +8359,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1940, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1940 } }, { @@ -4192,9 +8388,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4514, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4514 } }, { @@ -4203,9 +8399,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4533, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4533 } }, { @@ -4223,9 +8419,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4626, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4626 } }, { @@ -4234,9 +8430,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1943, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1943 } }, { @@ -4254,12 +8450,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19773, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19773 } }, { @@ -4304,9 +8500,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1845, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1845 } }, { @@ -4315,9 +8511,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1995, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1995 } }, { @@ -4326,9 +8522,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 475, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 475 } }, { @@ -4337,9 +8533,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18215, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18215 } }, { @@ -4384,9 +8580,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1905, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1905 } }, { @@ -4395,9 +8591,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18139, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18139 } }, { @@ -4406,9 +8602,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1923, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1923 } }, { @@ -4426,9 +8622,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1761, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1761 } }, { @@ -4437,9 +8633,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1925, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1925 } }, { @@ -4475,9 +8671,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1980, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1980 } }, { @@ -4513,12 +8709,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1917, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1917 } }, { @@ -4581,9 +8777,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1859, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1859 } }, { @@ -4592,9 +8788,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1957, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1957 } }, { @@ -4603,9 +8799,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1923, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1923 } }, { @@ -4623,8 +8819,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -4633,9 +8829,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5893, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5893 } }, { @@ -4644,9 +8840,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1205, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1205 } }, { @@ -4655,10 +8851,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -4676,9 +8872,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1644, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1644 } }, { @@ -4696,9 +8892,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1959, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1959 } }, { @@ -4707,12 +8903,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 4, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 29957, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 29957 } }, { @@ -4751,10 +8947,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -4763,12 +8959,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 6955, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 6955 } }, { @@ -4807,9 +9003,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19402, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19402 } }, { @@ -4818,9 +9014,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1922, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1922 } }, { @@ -4829,9 +9025,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1988, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1988 } }, { @@ -4840,9 +9036,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1226245, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1226245 } }, { @@ -4851,9 +9047,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1996, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1996 } }, { @@ -4862,9 +9058,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18428, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18428 } }, { @@ -4891,9 +9087,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1996, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1996 } }, { @@ -4911,10 +9107,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1980000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1980000, + "UnlimitedCount": true } }, { @@ -4932,9 +9128,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 2706, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2706 } }, { @@ -4952,9 +9148,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1934, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1934 } }, { @@ -4981,9 +9177,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14482, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14482 } }, { @@ -4992,9 +9188,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1928, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1928 } }, { @@ -5003,13 +9199,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19849, - "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 19849 } }, { @@ -5075,9 +9271,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1811, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1811 } }, { @@ -5086,9 +9282,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1418, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1418 } }, { @@ -5097,12 +9293,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 4910, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4910 } }, { @@ -5141,9 +9337,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19973, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19973 } }, { @@ -5152,9 +9348,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 229, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 229 } }, { @@ -5163,8 +9359,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -5173,9 +9369,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1956, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1956 } }, { @@ -5184,9 +9380,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 563163, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 563163 } }, { @@ -5195,9 +9391,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19575, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19575 } }, { @@ -5206,8 +9402,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -5216,12 +9412,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19947, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19947 } }, { @@ -5278,15 +9474,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 49989, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 49989 } }, { @@ -5379,9 +9575,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1978, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1978 } }, { @@ -5390,9 +9586,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1987, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1987 } }, { @@ -5401,9 +9597,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1996, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1996 } }, { @@ -5412,9 +9608,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 2989, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2989 } }, { @@ -5423,8 +9619,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -5433,9 +9629,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1997, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1997 } }, { @@ -5444,9 +9640,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19885, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19885 } }, { @@ -5473,9 +9669,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19508, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19508 } }, { @@ -5484,9 +9680,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19811, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19811 } }, { @@ -5495,9 +9691,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19392, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19392 } }, { @@ -5506,9 +9702,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 7776, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 7776 } }, { @@ -5517,12 +9713,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1987, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1987 } }, { @@ -5609,9 +9805,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 2995, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2995 } }, { @@ -5620,9 +9816,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19958, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19958 } }, { @@ -5631,9 +9827,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19588, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19588 } }, { @@ -5642,15 +9838,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19997, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 19997 } }, { @@ -5743,9 +9939,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1997, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1997 } }, { @@ -5754,9 +9950,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 2734, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2734 } }, { @@ -5765,9 +9961,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 3982, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 3982 } }, { @@ -5776,9 +9972,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19191, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19191 } }, { @@ -5787,9 +9983,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1181691, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 100, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1181691 } }, { @@ -5798,9 +9994,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19976, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19976 } }, { @@ -5809,9 +10005,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1973, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1973 } }, { @@ -5820,15 +10016,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1990, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 1990 } }, { @@ -5921,9 +10117,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19976, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19976 } }, { @@ -5932,9 +10128,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19994, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19994 } }, { @@ -5943,9 +10139,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1840, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1840 } }, { @@ -5954,9 +10150,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1999 } }, { @@ -5965,9 +10161,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1965, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1965 } }, { @@ -5976,9 +10172,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1996, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1996 } }, { @@ -5987,9 +10183,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1993 } }, { @@ -5998,15 +10194,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 59985, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 59985 } }, { @@ -6099,9 +10295,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1986, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1986 } }, { @@ -6110,8 +10306,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -6120,8 +10316,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -6130,9 +10326,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1989, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1989 } }, { @@ -6141,9 +10337,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1858, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1858 } }, { @@ -6152,9 +10348,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1994, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1994 } }, { @@ -6163,9 +10359,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4968, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4968 } }, { @@ -6174,12 +10370,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 199611, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199611 } }, { @@ -6242,10 +10438,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1605000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1605000, + "UnlimitedCount": true } }, { @@ -6254,9 +10450,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19084, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19084 } }, { @@ -6265,9 +10461,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199804, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199804 } }, { @@ -6276,9 +10472,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1937, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1937 } }, { @@ -6287,9 +10483,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 11911, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 11911 } }, { @@ -6298,9 +10494,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 398140, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 398140 } }, { @@ -6309,10 +10505,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -6321,9 +10517,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1998, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1998 } }, { @@ -6332,9 +10528,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 7634, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 7634 } }, { @@ -6343,9 +10539,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19884, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19884 } }, { @@ -6354,9 +10550,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 78962, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 78962 } }, { @@ -6365,15 +10561,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 7, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 199643, - "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 199643 } }, { @@ -6418,9 +10614,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4797, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4797 } }, { @@ -6429,9 +10625,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1908, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1908 } }, { @@ -6440,9 +10636,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1990, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1990 } }, { @@ -6451,8 +10647,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -6461,9 +10657,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1999 } }, { @@ -6472,15 +10668,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1993, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 1993 } }, { @@ -6495,15 +10691,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 14696, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 14696 } }, { @@ -6548,12 +10744,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 4931, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4931 } }, { @@ -6622,9 +10818,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1980, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1980 } }, { @@ -6633,12 +10829,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 10, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 199471, - "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199471 } }, { @@ -6683,9 +10879,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18984, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18984 } }, { @@ -6694,9 +10890,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1999 } }, { @@ -6705,9 +10901,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 8946, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 8946 } }, { @@ -6716,9 +10912,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 175, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 175 } }, { @@ -6727,9 +10923,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19135, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19135 } }, { @@ -6738,9 +10934,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 474427, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 474427 } }, { @@ -6749,9 +10945,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19607, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19607 } }, { @@ -6760,9 +10956,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1983 } }, { @@ -6771,9 +10967,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19741, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19741 } }, { @@ -6782,9 +10978,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 3966, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 3966 } }, { @@ -6793,9 +10989,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1898, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1898 } }, { @@ -6804,9 +11000,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1972, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1972 } }, { @@ -6863,9 +11059,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 508793, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 508793 } }, { @@ -6874,9 +11070,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19719, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19719 } }, { @@ -6885,9 +11081,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19981, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19981 } }, { @@ -6896,9 +11092,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1975, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1975 } }, { @@ -6907,9 +11103,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1924, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1924 } }, { @@ -6918,10 +11114,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -6930,9 +11126,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19807, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19807 } }, { @@ -6941,9 +11137,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1953, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1953 } }, { @@ -6952,9 +11148,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1986, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1986 } }, { @@ -6963,9 +11159,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 238, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 238 } }, { @@ -6974,9 +11170,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1917, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1917 } }, { @@ -6985,9 +11181,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199203, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199203 } }, { @@ -6996,9 +11192,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19380, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19380 } }, { @@ -7007,9 +11203,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1992, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1992 } }, { @@ -7018,15 +11214,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1981, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 1981 } }, { @@ -7119,9 +11315,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19458, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19458 } }, { @@ -7130,9 +11326,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4989, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4989 } }, { @@ -7141,9 +11337,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1992, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1992 } }, { @@ -7152,9 +11348,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1985, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1985 } }, { @@ -7163,9 +11359,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19951, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19951 } }, { @@ -7174,9 +11370,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19990, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19990 } }, { @@ -7185,10 +11381,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1605000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1605000, + "UnlimitedCount": true } }, { @@ -7197,9 +11393,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19919, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19919 } }, { @@ -7208,9 +11404,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19998, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19998 } }, { @@ -7219,9 +11415,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19998, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19998 } }, { @@ -7230,16 +11426,16 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19952, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 19952 } }, { @@ -7290,9 +11486,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19888, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19888 } }, { @@ -7301,9 +11497,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19924, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19924 } }, { @@ -7312,9 +11508,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19999 } }, { @@ -7323,9 +11519,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19988, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19988 } }, { @@ -7334,9 +11530,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19999 } }, { @@ -7345,15 +11541,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 4, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19786, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 19786 } }, { @@ -7434,15 +11630,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 4, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19987, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 19987 } }, { @@ -7505,9 +11701,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19942, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19942 } }, { @@ -7516,10 +11712,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1605000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1605000, + "UnlimitedCount": true } }, { @@ -7528,12 +11724,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19964, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19964 } }, { @@ -7596,10 +11792,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1605000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1605000, + "UnlimitedCount": true } }, { @@ -7608,9 +11804,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 20000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 20000 } }, { @@ -7619,9 +11815,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19961, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19961 } }, { @@ -7630,9 +11826,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19881, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19881 } }, { @@ -7641,9 +11837,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 20000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 20000 } }, { @@ -7652,9 +11848,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19980, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19980 } }, { @@ -7663,9 +11859,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19955, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19955 } }, { @@ -7674,9 +11870,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19992, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19992 } }, { @@ -7685,9 +11881,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19931, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19931 } }, { @@ -7696,9 +11892,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19823, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19823 } }, { @@ -7707,9 +11903,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19898, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19898 } }, { @@ -7718,8 +11914,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1605000 + "StackObjectsCount": 1605000, + "UnlimitedCount": true } }, { @@ -7728,15 +11924,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 4, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 20000, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 20000 } }, { @@ -7793,10 +11989,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1605000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1605000, + "UnlimitedCount": true } }, { @@ -7805,9 +12001,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19994, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19994 } }, { @@ -7816,9 +12012,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19803, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19803 } }, { @@ -7827,9 +12023,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19998, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19998 } }, { @@ -7838,9 +12034,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19988, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19988 } }, { @@ -7849,9 +12045,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19980, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19980 } }, { @@ -7860,9 +12056,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19981, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19981 } }, { @@ -7871,9 +12067,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19995, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19995 } }, { @@ -7882,9 +12078,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19993 } }, { @@ -7893,9 +12089,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 15619, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 15619 } }, { @@ -7904,9 +12100,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199646, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199646 } }, { @@ -7915,9 +12111,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19800, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19800 } }, { @@ -7926,9 +12122,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19997, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19997 } }, { @@ -7937,9 +12133,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19998, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19998 } }, { @@ -7948,9 +12144,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 28939, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 28939 } }, { @@ -7959,9 +12155,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19983 } }, { @@ -7970,9 +12166,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19993 } }, { @@ -7981,9 +12177,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19990, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19990 } }, { @@ -7992,9 +12188,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19984, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19984 } }, { @@ -8003,10 +12199,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -8015,9 +12211,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19997, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19997 } }, { @@ -8026,9 +12222,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19981, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19981 } }, { @@ -8037,9 +12233,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19994, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19994 } }, { @@ -8048,9 +12244,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19993 } }, { @@ -8059,10 +12255,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1605000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1605000, + "UnlimitedCount": true } }, { @@ -8071,9 +12267,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19958, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19958 } }, { @@ -8082,9 +12278,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19990, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19990 } }, { @@ -8093,9 +12289,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19991, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19991 } }, { @@ -8104,9 +12300,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19999 } }, { @@ -8115,9 +12311,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19987, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19987 } }, { @@ -8126,9 +12322,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19954, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19954 } }, { @@ -8137,9 +12333,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19979, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19979 } }, { @@ -8148,9 +12344,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19976, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19976 } }, { @@ -8159,9 +12355,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1994, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1994 } }, { @@ -8170,9 +12366,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19996, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19996 } }, { @@ -8181,15 +12377,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 4, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19998, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 19998 } }, { @@ -8252,15 +12448,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 4, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19988, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 19988 } }, { @@ -8329,10 +12525,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1605000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1605000, + "UnlimitedCount": true } }, { @@ -8341,9 +12537,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19961, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19961 } }, { @@ -8352,9 +12548,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19973, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19973 } }, { @@ -8363,9 +12559,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19985, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19985 } }, { @@ -8374,9 +12570,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 20000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 20000 } }, { @@ -8385,9 +12581,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19935, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19935 } }, { @@ -8396,9 +12592,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19982, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19982 } }, { @@ -8407,9 +12603,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19990, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19990 } }, { @@ -8418,9 +12614,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 15257, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 15257 } }, { @@ -8429,12 +12625,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 9989, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 9989 } }, { @@ -8473,9 +12669,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19980, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19980 } }, { @@ -8484,9 +12680,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19981, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19981 } }, { @@ -8495,16 +12691,16 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 29871, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 29871 } }, { @@ -8549,9 +12745,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19995, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19995 } }, { @@ -8560,9 +12756,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19853, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19853 } }, { @@ -8571,9 +12767,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19998, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19998 } }, { @@ -8582,9 +12778,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19939, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19939 } }, { @@ -8593,8 +12789,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1600000 + "StackObjectsCount": 1600000, + "UnlimitedCount": true } }, { @@ -8603,4193 +12799,24 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19979, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19979 + } + }, + { + "_id": "6492e44bf4287b13040fca51", + "_tpl": "5c0a840b86f7742ffa4f2482", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "BuyRestrictionMax": 1, + "StackObjectsCount": 10 } } ], - "barter_scheme": { - "6507ff2a644a656aee0f7fbb": [ - [ - { - "count": 108.04, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fbd": [ - [ - { - "count": 404.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fc6": [ - [ - { - "count": 1, - "_tpl": "590c595c86f7747884343ad7" - }, - { - "count": 2, - "_tpl": "5e2aedd986f7746d404f3aa4" - } - ] - ], - "6507ff2a644a656aee0f7fc8": [ - [ - { - "count": 62.73, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fca": [ - [ - { - "count": 34.47, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fcc": [ - [ - { - "count": 16.47, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fce": [ - [ - { - "count": 374.88, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fd0": [ - [ - { - "count": 17.31, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fd2": [ - [ - { - "count": 6647.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fd4": [ - [ - { - "count": 98.84, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fd6": [ - [ - { - "count": 4, - "_tpl": "57e26ea924597715ca604a09" - } - ] - ], - "6507ff2a644a656aee0f7fde": [ - [ - { - "count": 277.48, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fe7": [ - [ - { - "count": 28.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fe9": [ - [ - { - "count": 42.77, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7feb": [ - [ - { - "count": 24.75, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fed": [ - [ - { - "count": 167.67, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f7fef": [ - [ - { - "count": 7, - "_tpl": "59f32c3b86f77472a31742f0", - "level": 8, - "side": "Any" - } - ] - ], - "6507ff2a644a656aee0f7ffe": [ - [ - { - "count": 30.01, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8000": [ - [ - { - "count": 7.13, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8002": [ - [ - { - "count": 132.35, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8004": [ - [ - { - "count": 28.51, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8006": [ - [ - { - "count": 162.75, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8008": [ - [ - { - "count": 1286.37, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f800a": [ - [ - { - "count": 313.98, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f800c": [ - [ - { - "count": 25.69, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f800e": [ - [ - { - "count": 256.76, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8010": [ - [ - { - "count": 12.77, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8012": [ - [ - { - "count": 13.96, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8014": [ - [ - { - "count": 924.63, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8019": [ - [ - { - "count": 83.58, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f801b": [ - [ - { - "count": 337.09, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f801d": [ - [ - { - "count": 1.25, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f801f": [ - [ - { - "count": 175.92, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8021": [ - [ - { - "count": 12.52, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8023": [ - [ - { - "count": 358.18, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8025": [ - [ - { - "count": 105.69, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8027": [ - [ - { - "count": 19.28, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8029": [ - [ - { - "count": 418.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8039": [ - [ - { - "count": 51.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f803b": [ - [ - { - "count": 259, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f803d": [ - [ - { - "count": 65.74, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f803f": [ - [ - { - "count": 107.82, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8041": [ - [ - { - "count": 31.51, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8043": [ - [ - { - "count": 23.89, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8045": [ - [ - { - "count": 87.37, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8047": [ - [ - { - "count": 89.9, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8049": [ - [ - { - "count": 34.54, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f804b": [ - [ - { - "count": 51.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f804d": [ - [ - { - "count": 186.25, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f804f": [ - [ - { - "count": 27.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8051": [ - [ - { - "count": 35.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8053": [ - [ - { - "count": 109.1, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8055": [ - [ - { - "count": 29.48, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8057": [ - [ - { - "count": 29.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8059": [ - [ - { - "count": 12.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f805b": [ - [ - { - "count": 335.72, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f805d": [ - [ - { - "count": 94.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f805f": [ - [ - { - "count": 28.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8061": [ - [ - { - "count": 28.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8063": [ - [ - { - "count": 62.27, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8065": [ - [ - { - "count": 127.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8067": [ - [ - { - "count": 192, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8069": [ - [ - { - "count": 107.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8071": [ - [ - { - "count": 150.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8073": [ - [ - { - "count": 1, - "_tpl": "5d03794386f77420415576f5" - }, - { - "count": 3, - "_tpl": "5d0377ce86f774186372f689" - }, - { - "count": 3, - "_tpl": "5c05308086f7746b2101e90b" - }, - { - "count": 5, - "_tpl": "5d0375ff86f774186372f685" - } - ] - ], - "6507ff2a644a656aee0f8075": [ - [ - { - "count": 9.8, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8077": [ - [ - { - "count": 44.84, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8079": [ - [ - { - "count": 142.66, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f807b": [ - [ - { - "count": 12.95, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f807d": [ - [ - { - "count": 48.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f807f": [ - [ - { - "count": 0.44, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8081": [ - [ - { - "count": 61.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2a644a656aee0f8083": [ - [ - { - "count": 16.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8085": [ - [ - { - "count": 28.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8087": [ - [ - { - "count": 59.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8089": [ - [ - { - "count": 10.8, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f808b": [ - [ - { - "count": 318.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f809a": [ - [ - { - "count": 29.83, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f809c": [ - [ - { - "count": 43.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f809e": [ - [ - { - "count": 63.01, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80a0": [ - [ - { - "count": 154, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2b644a656aee0f80a3": [ - [ - { - "count": 21.73, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80a5": [ - [ - { - "count": 41.31, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80a7": [ - [ - { - "count": 15.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80a9": [ - [ - { - "count": 19.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80ab": [ - [ - { - "count": 528.98, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80ad": [ - [ - { - "count": 230.2, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80af": [ - [ - { - "count": 167.47, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80b1": [ - [ - { - "count": 48.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80b3": [ - [ - { - "count": 58.06, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80b5": [ - [ - { - "count": 63.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80b7": [ - [ - { - "count": 57.01, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80b9": [ - [ - { - "count": 227.76, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80bb": [ - [ - { - "count": 55.11, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80bd": [ - [ - { - "count": 184.45, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80bf": [ - [ - { - "count": 32.08, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80c1": [ - [ - { - "count": 33.54, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80c3": [ - [ - { - "count": 150.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80c5": [ - [ - { - "count": 80.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80c7": [ - [ - { - "count": 1, - "_tpl": "590a386e86f77429692b27ab" - } - ] - ], - "6507ff2b644a656aee0f80c9": [ - [ - { - "count": 222.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80cb": [ - [ - { - "count": 19.26, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80cd": [ - [ - { - "count": 1.1, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80cf": [ - [ - { - "count": 33.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80d1": [ - [ - { - "count": 1.06, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80d3": [ - [ - { - "count": 319.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80d5": [ - [ - { - "count": 36.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80d7": [ - [ - { - "count": 59.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80d9": [ - [ - { - "count": 9.23, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80db": [ - [ - { - "count": 23.62, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80dd": [ - [ - { - "count": 58.91, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80df": [ - [ - { - "count": 6.16, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80e1": [ - [ - { - "count": 12.96, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80e3": [ - [ - { - "count": 93.12, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80e5": [ - [ - { - "count": 3, - "_tpl": "5d403f9186f7743cac3f229b" - }, - { - "count": 1, - "_tpl": "5d40407c86f774318526545a" - } - ] - ], - "6507ff2b644a656aee0f80fd": [ - [ - { - "count": 683.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f80ff": [ - [ - { - "count": 37.23, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8101": [ - [ - { - "count": 63.62, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8103": [ - [ - { - "count": 298.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8105": [ - [ - { - "count": 82.1, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8107": [ - [ - { - "count": 1100.23, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8111": [ - [ - { - "count": 134.31, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8113": [ - [ - { - "count": 201.62, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8115": [ - [ - { - "count": 73.27, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8117": [ - [ - { - "count": 62.66, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8119": [ - [ - { - "count": 15.81, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f811b": [ - [ - { - "count": 2, - "_tpl": "590a3b0486f7743954552bdb" - }, - { - "count": 1, - "_tpl": "5672cb724bdc2dc2088b456b" - } - ] - ], - "6507ff2b644a656aee0f811d": [ - [ - { - "count": 66.72, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f811f": [ - [ - { - "count": 29.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8121": [ - [ - { - "count": 129.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8123": [ - [ - { - "count": 42.85, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8125": [ - [ - { - "count": 6, - "_tpl": "5d235b4d86f7742e017bc88a" - } - ] - ], - "6507ff2b644a656aee0f8134": [ - [ - { - "count": 307.51, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8136": [ - [ - { - "count": 16.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8138": [ - [ - { - "count": 59.97, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f813a": [ - [ - { - "count": 193.03, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f813c": [ - [ - { - "count": 88, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f813e": [ - [ - { - "count": 188.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8140": [ - [ - { - "count": 4, - "_tpl": "57e26fc7245977162a14b800" - }, - { - "count": 1, - "_tpl": "54491bb74bdc2d09088b4567" - } - ] - ], - "6507ff2b644a656aee0f8149": [ - [ - { - "count": 12.27, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f814b": [ - [ - { - "count": 209.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f814d": [ - [ - { - "count": 28.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f814f": [ - [ - { - "count": 3, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8151": [ - [ - { - "count": 28.51, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8153": [ - [ - { - "count": 312.26, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8155": [ - [ - { - "count": 2.8, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8157": [ - [ - { - "count": 25.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8159": [ - [ - { - "count": 10, - "_tpl": "5909e99886f7740c983b9984" - } - ] - ], - "6507ff2b644a656aee0f8162": [ - [ - { - "count": 646.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f816b": [ - [ - { - "count": 3, - "_tpl": "590a386e86f77429692b27ab" - }, - { - "count": 2, - "_tpl": "57347baf24597738002c6178" - } - ] - ], - "6507ff2b644a656aee0f8175": [ - [ - { - "count": 145.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8177": [ - [ - { - "count": 28.44, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8179": [ - [ - { - "count": 789.34, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f817b": [ - [ - { - "count": 19.39, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f817d": [ - [ - { - "count": 720.23, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f818a": [ - [ - { - "count": 3, - "_tpl": "573477e124597737dd42e191" - }, - { - "count": 3, - "_tpl": "5734779624597737e04bf329" - } - ] - ], - "6507ff2b644a656aee0f8198": [ - [ - { - "count": 867.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81a2": [ - [ - { - "count": 21.84, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81a4": [ - [ - { - "count": 2, - "_tpl": "56742c2e4bdc2d95058b456d" - } - ] - ], - "6507ff2b644a656aee0f81a6": [ - [ - { - "count": 628.85, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81b4": [ - [ - { - "count": 497.27, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81bb": [ - [ - { - "count": 2.44, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81bd": [ - [ - { - "count": 543.61, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81bf": [ - [ - { - "count": 192.89, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81c1": [ - [ - { - "count": 21.99, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81c3": [ - [ - { - "count": 14.16, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81c5": [ - [ - { - "count": 150.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81c7": [ - [ - { - "count": 45.59, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81c9": [ - [ - { - "count": 41.01, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81cb": [ - [ - { - "count": 14.62, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81cd": [ - [ - { - "count": 127.26, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81cf": [ - [ - { - "count": 1.12, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81d1": [ - [ - { - "count": 20.88, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81d3": [ - [ - { - "count": 167.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81d5": [ - [ - { - "count": 1, - "_tpl": "5b43575a86f77424f443fe62" - } - ] - ], - "6507ff2b644a656aee0f81d7": [ - [ - { - "count": 587.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81d9": [ - [ - { - "count": 1310.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81db": [ - [ - { - "count": 217.35, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81dd": [ - [ - { - "count": 69.84, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81df": [ - [ - { - "count": 402.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81e1": [ - [ - { - "count": 18.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81e3": [ - [ - { - "count": 18.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81e5": [ - [ - { - "count": 921.35, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81f2": [ - [ - { - "count": 399.11, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81f4": [ - [ - { - "count": 314.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81f9": [ - [ - { - "count": 314.49, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81fb": [ - [ - { - "count": 31.63, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81fd": [ - [ - { - "count": 26.13, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f81ff": [ - [ - { - "count": 17.55, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8201": [ - [ - { - "count": 1094.67, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8203": [ - [ - { - "count": 321.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8205": [ - [ - { - "count": 31.47, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8207": [ - [ - { - "count": 17.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f8209": [ - [ - { - "count": 24.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f820b": [ - [ - { - "count": 211.24, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f820d": [ - [ - { - "count": 18.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2b644a656aee0f820f": [ - [ - { - "count": 17.31, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8211": [ - [ - { - "count": 1.27, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8213": [ - [ - { - "count": 363, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8215": [ - [ - { - "count": 1, - "_tpl": "5d1b376e86f774252519444e" - } - ] - ], - "6507ff2c644a656aee0f8217": [ - [ - { - "count": 20.04, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8219": [ - [ - { - "count": 50.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f821b": [ - [ - { - "count": 48.95, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f821d": [ - [ - { - "count": 56.52, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f821f": [ - [ - { - "count": 25.11, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8221": [ - [ - { - "count": 2.84, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8223": [ - [ - { - "count": 818.32, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f822f": [ - [ - { - "count": 51.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8231": [ - [ - { - "count": 200.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8239": [ - [ - { - "count": 21.98, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f823b": [ - [ - { - "count": 818.31, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8249": [ - [ - { - "count": 13.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f824b": [ - [ - { - "count": 15.32, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f824d": [ - [ - { - "count": 6.47, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f824f": [ - [ - { - "count": 29.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8251": [ - [ - { - "count": 95.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8253": [ - [ - { - "count": 24.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8255": [ - [ - { - "count": 1.05, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8257": [ - [ - { - "count": 179.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8259": [ - [ - { - "count": 218.33, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8260": [ - [ - { - "count": 385.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8262": [ - [ - { - "count": 36.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8264": [ - [ - { - "count": 24.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8266": [ - [ - { - "count": 48.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8268": [ - [ - { - "count": 12.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f826a": [ - [ - { - "count": 30.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f826c": [ - [ - { - "count": 99.59, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8275": [ - [ - { - "count": 75.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8277": [ - [ - { - "count": 383.63, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8279": [ - [ - { - "count": 14.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f827b": [ - [ - { - "count": 36.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f827d": [ - [ - { - "count": 86.74, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f827f": [ - [ - { - "count": 29.83, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8281": [ - [ - { - "count": 14.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8283": [ - [ - { - "count": 6.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8285": [ - [ - { - "count": 385, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8287": [ - [ - { - "count": 1288.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8289": [ - [ - { - "count": 39.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f828b": [ - [ - { - "count": 225.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f828d": [ - [ - { - "count": 19.25, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f828f": [ - [ - { - "count": 1, - "_tpl": "5c1265fc86f7743f896a21c2" - }, - { - "count": 1, - "_tpl": "5af0561e86f7745f5f3ad6ac" - } - ] - ], - "6507ff2c644a656aee0f8296": [ - [ - { - "count": 95.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8298": [ - [ - { - "count": 26.91, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f829a": [ - [ - { - "count": 381.23, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f829c": [ - [ - { - "count": 9.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f829e": [ - [ - { - "count": 117.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82a0": [ - [ - { - "count": 106.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82a2": [ - [ - { - "count": 1224.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82a4": [ - [ - { - "count": 27.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82a6": [ - [ - { - "count": 1, - "_tpl": "5bc9b720d4351e450201234b" - }, - { - "count": 1, - "_tpl": "573477e124597737dd42e191" - } - ] - ], - "6507ff2c644a656aee0f82a8": [ - [ - { - "count": 64.22, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82aa": [ - [ - { - "count": 24.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82ac": [ - [ - { - "count": 26.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82ae": [ - [ - { - "count": 77.39, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82b0": [ - [ - { - "count": 77.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82b2": [ - [ - { - "count": 403.31, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82b4": [ - [ - { - "count": 279.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82b6": [ - [ - { - "count": 20.44, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82b8": [ - [ - { - "count": 151.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82c0": [ - [ - { - "count": 287.31, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82c2": [ - [ - { - "count": 63.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82c4": [ - [ - { - "count": 4, - "_tpl": "590c645c86f77412b01304d9" - }, - { - "count": 4, - "_tpl": "590c651286f7741e566b6461" - }, - { - "count": 1, - "_tpl": "62a0a124de7ac81993580542" - } - ] - ], - "6507ff2c644a656aee0f82c6": [ - [ - { - "count": 32.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82c8": [ - [ - { - "count": 59.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82ca": [ - [ - { - "count": 73.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82cc": [ - [ - { - "count": 13.99, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82ce": [ - [ - { - "count": 73.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82d0": [ - [ - { - "count": 28.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82d2": [ - [ - { - "count": 28.76, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82d4": [ - [ - { - "count": 16.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82d6": [ - [ - { - "count": 30.54, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82d8": [ - [ - { - "count": 326.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82da": [ - [ - { - "count": 57.75, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82dc": [ - [ - { - "count": 22.39, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82de": [ - [ - { - "count": 13.75, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82e0": [ - [ - { - "count": 9.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82e2": [ - [ - { - "count": 91.85, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82e4": [ - [ - { - "count": 30.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82e6": [ - [ - { - "count": 20.74, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82e8": [ - [ - { - "count": 86.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82ea": [ - [ - { - "count": 2, - "_tpl": "5d0375ff86f774186372f685" - } - ] - ], - "6507ff2c644a656aee0f82f5": [ - [ - { - "count": 385, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82f7": [ - [ - { - "count": 10.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82f9": [ - [ - { - "count": 131.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82fb": [ - [ - { - "count": 40.65, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82fd": [ - [ - { - "count": 11.39, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f82ff": [ - [ - { - "count": 224.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8301": [ - [ - { - "count": 31.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8303": [ - [ - { - "count": 24.51, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8305": [ - [ - { - "count": 85.25, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8307": [ - [ - { - "count": 33, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8309": [ - [ - { - "count": 113.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f830b": [ - [ - { - "count": 80.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f830d": [ - [ - { - "count": 218.33, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8314": [ - [ - { - "count": 9.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8316": [ - [ - { - "count": 845.42, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f831d": [ - [ - { - "count": 23.1, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f831f": [ - [ - { - "count": 80.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8321": [ - [ - { - "count": 103.4, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8323": [ - [ - { - "count": 0.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8325": [ - [ - { - "count": 18.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8327": [ - [ - { - "count": 82.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8329": [ - [ - { - "count": 80.08, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f832b": [ - [ - { - "count": 8.25, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f832d": [ - [ - { - "count": 232.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f832f": [ - [ - { - "count": 22.39, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8331": [ - [ - { - "count": 1.63, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8333": [ - [ - { - "count": 27.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8335": [ - [ - { - "count": 169.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8337": [ - [ - { - "count": 56.41, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8339": [ - [ - { - "count": 383.63, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f833b": [ - [ - { - "count": 97.27, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f833d": [ - [ - { - "count": 29.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f833f": [ - [ - { - "count": 179.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8341": [ - [ - { - "count": 124.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8343": [ - [ - { - "count": 8, - "_tpl": "59f32bb586f774757e1e8442", - "level": 15, - "side": "Bear" - }, - { - "count": 8, - "_tpl": "59f32c3b86f77472a31742f0", - "level": 15, - "side": "Usec" - } - ] - ], - "6507ff2c644a656aee0f834d": [ - [ - { - "count": 13.75, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f834f": [ - [ - { - "count": 298.1, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8351": [ - [ - { - "count": 48.31, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f8353": [ - [ - { - "count": 1191.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2c644a656aee0f835a": [ - [ - { - "count": 12.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f835c": [ - [ - { - "count": 489.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f835e": [ - [ - { - "count": 16.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8360": [ - [ - { - "count": 33, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8362": [ - [ - { - "count": 0.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8364": [ - [ - { - "count": 55, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8366": [ - [ - { - "count": 25.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8368": [ - [ - { - "count": 159.11, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8372": [ - [ - { - "count": 728.88, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8382": [ - [ - { - "count": 349.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8384": [ - [ - { - "count": 298.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8386": [ - [ - { - "count": 30.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8388": [ - [ - { - "count": 9.66, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f838a": [ - [ - { - "count": 20.04, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f838c": [ - [ - { - "count": 330, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f838e": [ - [ - { - "count": 166.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8390": [ - [ - { - "count": 4.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8392": [ - [ - { - "count": 6.3, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8394": [ - [ - { - "count": 62.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8396": [ - [ - { - "count": 145.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8398": [ - [ - { - "count": 408.73, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f839a": [ - [ - { - "count": 40.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f839c": [ - [ - { - "count": 1, - "_tpl": "5efde6b4f5448336730dbd61" - } - ] - ], - "6507ff2d644a656aee0f83ab": [ - [ - { - "count": 521.16, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83ad": [ - [ - { - "count": 8.12, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83af": [ - [ - { - "count": 428.37, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83b1": [ - [ - { - "count": 857.03, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83c1": [ - [ - { - "count": 29.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83c3": [ - [ - { - "count": 27.11, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83c5": [ - [ - { - "count": 196.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83c7": [ - [ - { - "count": 16.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83c9": [ - [ - { - "count": 1.87, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83cb": [ - [ - { - "count": 14.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83cd": [ - [ - { - "count": 239.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83cf": [ - [ - { - "count": 1067.56, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83df": [ - [ - { - "count": 192.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83e1": [ - [ - { - "count": 176.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83e3": [ - [ - { - "count": 14.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83e5": [ - [ - { - "count": 2, - "_tpl": "5909e99886f7740c983b9984" - }, - { - "count": 1, - "_tpl": "590c2c9c86f774245b1f03f2" - } - ] - ], - "6507ff2d644a656aee0f83e7": [ - [ - { - "count": 1, - "_tpl": "60098b1705871270cd5352a1" - } - ] - ], - "6507ff2d644a656aee0f83e9": [ - [ - { - "count": 48.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83eb": [ - [ - { - "count": 51.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83ed": [ - [ - { - "count": 732, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83fd": [ - [ - { - "count": 18.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f83ff": [ - [ - { - "count": 0.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8401": [ - [ - { - "count": 18.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8403": [ - [ - { - "count": 1, - "_tpl": "5d403f9186f7743cac3f229b" - }, - { - "count": 1, - "_tpl": "590c37d286f77443be3d7827" - } - ] - ], - "6507ff2d644a656aee0f8405": [ - [ - { - "count": 1169.02, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8407": [ - [ - { - "count": 24.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8409": [ - [ - { - "count": 59.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f840b": [ - [ - { - "count": 90.03, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8416": [ - [ - { - "count": 8.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8418": [ - [ - { - "count": 62.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f841a": [ - [ - { - "count": 42.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f841c": [ - [ - { - "count": 25.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f841e": [ - [ - { - "count": 1, - "_tpl": "590a386e86f77429692b27ab" - }, - { - "count": 1, - "_tpl": "5734781f24597737e04bf32a" - } - ] - ], - "6507ff2d644a656aee0f8420": [ - [ - { - "count": 2.48, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8422": [ - [ - { - "count": 27.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8424": [ - [ - { - "count": 463.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8426": [ - [ - { - "count": 327.97, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8428": [ - [ - { - "count": 75.82, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f842a": [ - [ - { - "count": 18.95, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f842c": [ - [ - { - "count": 223.3, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8434": [ - [ - { - "count": 81.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8436": [ - [ - { - "count": 22, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8438": [ - [ - { - "count": 27.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f843a": [ - [ - { - "count": 17.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f843c": [ - [ - { - "count": 1, - "_tpl": "5d1c819a86f774771b0acd6c" - }, - { - "count": 1, - "_tpl": "590c5bbd86f774785762df04" - } - ] - ], - "6507ff2d644a656aee0f843e": [ - [ - { - "count": 1, - "_tpl": "5c05300686f7746dce784e5d" - }, - { - "count": 5, - "_tpl": "5d0376a486f7747d8050965c" - }, - { - "count": 5, - "_tpl": "5d0375ff86f774186372f685" - } - ] - ], - "6507ff2d644a656aee0f8441": [ - [ - { - "count": 4, - "_tpl": "57e26ea924597715ca604a09" - }, - { - "count": 1, - "_tpl": "54491bb74bdc2d09088b4567" - } - ] - ], - "6507ff2d644a656aee0f8449": [ - [ - { - "count": 194.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8455": [ - [ - { - "count": 43.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8457": [ - [ - { - "count": 236.53, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f845f": [ - [ - { - "count": 398.77, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8461": [ - [ - { - "count": 27.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8463": [ - [ - { - "count": 150.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8465": [ - [ - { - "count": 10, - "_tpl": "59f32bb586f774757e1e8442", - "level": 30, - "side": "Bear" - } - ] - ], - "6507ff2d644a656aee0f8467": [ - [ - { - "count": 58.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8469": [ - [ - { - "count": 2.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f846b": [ - [ - { - "count": 19.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f846d": [ - [ - { - "count": 188.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f846f": [ - [ - { - "count": 35.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8471": [ - [ - { - "count": 22, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8473": [ - [ - { - "count": 20.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8475": [ - [ - { - "count": 770.26, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f847f": [ - [ - { - "count": 0.68, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8481": [ - [ - { - "count": 66, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8483": [ - [ - { - "count": 1, - "_tpl": "590a3efd86f77437d351a25b" - } - ] - ], - "6507ff2d644a656aee0f8485": [ - [ - { - "count": 251.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8487": [ - [ - { - "count": 11.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8489": [ - [ - { - "count": 173.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f848b": [ - [ - { - "count": 45.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f848d": [ - [ - { - "count": 1370.09, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f848f": [ - [ - { - "count": 19.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8491": [ - [ - { - "count": 9, - "_tpl": "59f32bb586f774757e1e8442", - "level": 25, - "side": "Bear" - } - ] - ], - "6507ff2d644a656aee0f8493": [ - [ - { - "count": 167.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8495": [ - [ - { - "count": 63.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8497": [ - [ - { - "count": 69.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f8499": [ - [ - { - "count": 48.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f849b": [ - [ - { - "count": 1112.23, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84ab": [ - [ - { - "count": 31.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84ad": [ - [ - { - "count": 11.16, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84af": [ - [ - { - "count": 331.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84b1": [ - [ - { - "count": 2, - "_tpl": "5d1b309586f77425227d1676" - } - ] - ], - "6507ff2d644a656aee0f84b3": [ - [ - { - "count": 67.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84b5": [ - [ - { - "count": 23.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84b7": [ - [ - { - "count": 18.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84b9": [ - [ - { - "count": 12.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84bb": [ - [ - { - "count": 62.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84bf": [ - [ - { - "count": 66.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84c1": [ - [ - { - "count": 545.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84ca": [ - [ - { - "count": 31.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84cc": [ - [ - { - "count": 34.51, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84ce": [ - [ - { - "count": 215.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84d0": [ - [ - { - "count": 11, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84d2": [ - [ - { - "count": 43.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2d644a656aee0f84d4": [ - [ - { - "count": 448.04, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f84e2": [ - [ - { - "count": 419.08, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f84ed": [ - [ - { - "count": 337.58, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f84ef": [ - [ - { - "count": 11.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f84f1": [ - [ - { - "count": 165.85, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f84fc": [ - [ - { - "count": 48.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f84fe": [ - [ - { - "count": 70.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8500": [ - [ - { - "count": 557.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8502": [ - [ - { - "count": 31.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8504": [ - [ - { - "count": 54.21, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8506": [ - [ - { - "count": 129.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8508": [ - [ - { - "count": 110, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f850a": [ - [ - { - "count": 7.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f850c": [ - [ - { - "count": 138.25, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8510": [ - [ - { - "count": 63.75, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8512": [ - [ - { - "count": 29.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8514": [ - [ - { - "count": 62.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8516": [ - [ - { - "count": 461.41, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8520": [ - [ - { - "count": 7.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8522": [ - [ - { - "count": 17.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8524": [ - [ - { - "count": 8.12, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8526": [ - [ - { - "count": 74.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8528": [ - [ - { - "count": 7.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f852a": [ - [ - { - "count": 16.5, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f852c": [ - [ - { - "count": 200.88, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f852e": [ - [ - { - "count": 33, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8530": [ - [ - { - "count": 41.01, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8532": [ - [ - { - "count": 40.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8534": [ - [ - { - "count": 2, - "_tpl": "62a0a124de7ac81993580542" - } - ] - ], - "6507ff2e644a656aee0f8536": [ - [ - { - "count": 55.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8538": [ - [ - { - "count": 16.83, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f853a": [ - [ - { - "count": 47.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f853c": [ - [ - { - "count": 26.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f853e": [ - [ - { - "count": 15.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8540": [ - [ - { - "count": 23.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8542": [ - [ - { - "count": 70.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8544": [ - [ - { - "count": 66.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8546": [ - [ - { - "count": 9.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8548": [ - [ - { - "count": 102.58, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f854a": [ - [ - { - "count": 259.29, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f854c": [ - [ - { - "count": 46.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f854e": [ - [ - { - "count": 44.31, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8550": [ - [ - { - "count": 15.97, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8552": [ - [ - { - "count": 20.19, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8554": [ - [ - { - "count": 463.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8556": [ - [ - { - "count": 23.57, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8558": [ - [ - { - "count": 165, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f855a": [ - [ - { - "count": 18.46, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f855c": [ - [ - { - "count": 19.64, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f855e": [ - [ - { - "count": 13.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8560": [ - [ - { - "count": 39.36, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8562": [ - [ - { - "count": 1, - "_tpl": "5c12613b86f7743bbe2c3f76" - }, - { - "count": 4, - "_tpl": "6389c70ca33d8c4cdf4932c6" - } - ] - ], - "6507ff2e644a656aee0f8564": [ - [ - { - "count": 12.76, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8566": [ - [ - { - "count": 525.05, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8571": [ - [ - { - "count": 505.61, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f857d": [ - [ - { - "count": 11.79, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f857f": [ - [ - { - "count": 33.54, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8581": [ - [ - { - "count": 3.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8583": [ - [ - { - "count": 223.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8585": [ - [ - { - "count": 51.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8587": [ - [ - { - "count": 58.93, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8589": [ - [ - { - "count": 47.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f858b": [ - [ - { - "count": 51.07, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f858d": [ - [ - { - "count": 158.26, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f858f": [ - [ - { - "count": 1, - "_tpl": "5e54f79686f7744022011103" - } - ] - ], - "6507ff2e644a656aee0f8596": [ - [ - { - "count": 31.43, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f8598": [ - [ - { - "count": 9.82, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f859a": [ - [ - { - "count": 452.12, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f85a2": [ - [ - { - "count": 146.14, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f85a4": [ - [ - { - "count": 29.86, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f85a6": [ - [ - { - "count": 70.71, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f85a8": [ - [ - { - "count": 35.18, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f85aa": [ - [ - { - "count": 0.6, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ], - "6507ff2e644a656aee0f85ac": [ - [ - { - "count": 3.7, - "_tpl": "5696686a4bdc2da3298b456a" - } - ] - ] - }, "loyal_level_items": { + "6492e44bf4287b13040fca51": 4, "6507ff2a644a656aee0f7fbb": 3, "6507ff2a644a656aee0f7fbd": 2, "6507ff2a644a656aee0f7fc6": 4, @@ -13303,4 +13330,4 @@ "6507ff2e644a656aee0f85aa": 1, "6507ff2e644a656aee0f85ac": 2 } -} \ No newline at end of file +} diff --git a/project/assets/database/traders/5935c25fb3acc3127c3d8cd9/questassort.json b/project/assets/database/traders/5935c25fb3acc3127c3d8cd9/questassort.json index 723eb3e9..fd43dc23 100644 --- a/project/assets/database/traders/5935c25fb3acc3127c3d8cd9/questassort.json +++ b/project/assets/database/traders/5935c25fb3acc3127c3d8cd9/questassort.json @@ -1,40 +1,41 @@ { + "fail": {}, "started": {}, "success": { - "6507ff2c644a656aee0f82b2": "5ac244c486f77413e12cf945", - "6507ff2c644a656aee0f8335": "639872fe8871e1272b10ccf6", + "6492e44bf4287b13040fca51": "60e71ce009d7c801eb0c0ec6", "6507ff2a644a656aee0f7fbd": "5a27b7d686f77460d847e6a6", - "6507ff2c644a656aee0f8231": "5a27b7a786f774579c3eb376", - "6507ff2b644a656aee0f81d3": "5a27b75b86f7742e97191958", - "6507ff2b644a656aee0f8159": "5a27b75b86f7742e97191958", - "6507ff2a644a656aee0f8029": "5a27b80086f774429a5d7e20", - "6507ff2d644a656aee0f843e": "5a27bc8586f7741b543d8ea4", - "6507ff2b644a656aee0f80df": "5a27b9de86f77464e5044585", - "6507ff2b644a656aee0f817d": "5a27bc1586f7741f6d40fa2f", - "6507ff2b644a656aee0f8089": "5a27ba9586f7741b543d8e85", - "6507ff2c644a656aee0f82a2": "5edac63b930f5454f51e128b", - "6507ff2d644a656aee0f8493": "5edac63b930f5454f51e128b", - "6507ff2c644a656aee0f8353": "5a27bc3686f7741c73584026", - "6507ff2b644a656aee0f81f2": "5c0d4e61d09282029f53920e", - "6507ff2b644a656aee0f8179": "5c0d4e61d09282029f53920e", - "6507ff2a644a656aee0f800e": "5c0d4e61d09282029f53920e", - "6507ff2a644a656aee0f800a": "5edac020218d181e29451446", - "6507ff2c644a656aee0f8287": "5edac020218d181e29451446", - "6507ff2b644a656aee0f8201": "5c0d0f1886f77457b8210226", - "6507ff2b644a656aee0f809e": "5a03173786f77451cb427172", "6507ff2a644a656aee0f7fc6": "5a27bbf886f774333a418eeb", - "6507ff2d644a656aee0f848d": "5c0d4c12d09282029f539173", "6507ff2a644a656aee0f7fce": "5a27bb3d86f77411ea361a21", - "6507ff2b644a656aee0f8107": "5a27bc6986f7741c7358402b", - "6507ff2d644a656aee0f845f": "5a27bc6986f7741c7358402b", - "6507ff2c644a656aee0f830d": "6179b4d1bca27a099552e04e", - "6507ff2d644a656aee0f835c": "5b47825886f77468074618d3", - "6507ff2c644a656aee0f8260": "61958c366726521dd96828ec", - "6507ff2d644a656aee0f83b1": "639135f286e646067c176a87", - "6507ff2b644a656aee0f816b": "6179aff8f57fb279792c60a1", + "6507ff2a644a656aee0f800a": "5edac020218d181e29451446", + "6507ff2a644a656aee0f800e": "5c0d4e61d09282029f53920e", + "6507ff2a644a656aee0f8029": "5a27b80086f774429a5d7e20", + "6507ff2b644a656aee0f8089": "5a27ba9586f7741b543d8e85", + "6507ff2b644a656aee0f809e": "5a03173786f77451cb427172", + "6507ff2b644a656aee0f80df": "5a27b9de86f77464e5044585", "6507ff2b644a656aee0f80e3": "5b477f7686f7744d1b23c4d2", - "6507ff2e644a656aee0f8562": "63a9b229813bba58a50c9ee5", - "6507ff2d644a656aee0f838c": "63a9b229813bba58a50c9ee5" - }, - "fail": {} -} \ No newline at end of file + "6507ff2b644a656aee0f8107": "5a27bc6986f7741c7358402b", + "6507ff2b644a656aee0f8159": "5a27b75b86f7742e97191958", + "6507ff2b644a656aee0f816b": "6179aff8f57fb279792c60a1", + "6507ff2b644a656aee0f8179": "5c0d4e61d09282029f53920e", + "6507ff2b644a656aee0f817d": "5a27bc1586f7741f6d40fa2f", + "6507ff2b644a656aee0f81d3": "5a27b75b86f7742e97191958", + "6507ff2b644a656aee0f81f2": "5c0d4e61d09282029f53920e", + "6507ff2b644a656aee0f8201": "5c0d0f1886f77457b8210226", + "6507ff2c644a656aee0f8231": "5a27b7a786f774579c3eb376", + "6507ff2c644a656aee0f8260": "61958c366726521dd96828ec", + "6507ff2c644a656aee0f8287": "5edac020218d181e29451446", + "6507ff2c644a656aee0f82a2": "5edac63b930f5454f51e128b", + "6507ff2c644a656aee0f82b2": "5ac244c486f77413e12cf945", + "6507ff2c644a656aee0f830d": "6179b4d1bca27a099552e04e", + "6507ff2c644a656aee0f8335": "639872fe8871e1272b10ccf6", + "6507ff2c644a656aee0f8353": "5a27bc3686f7741c73584026", + "6507ff2d644a656aee0f835c": "5b47825886f77468074618d3", + "6507ff2d644a656aee0f838c": "63a9b229813bba58a50c9ee5", + "6507ff2d644a656aee0f83b1": "639135f286e646067c176a87", + "6507ff2d644a656aee0f843e": "5a27bc8586f7741b543d8ea4", + "6507ff2d644a656aee0f845f": "5a27bc6986f7741c7358402b", + "6507ff2d644a656aee0f848d": "5c0d4c12d09282029f539173", + "6507ff2d644a656aee0f8493": "5edac63b930f5454f51e128b", + "6507ff2e644a656aee0f8562": "63a9b229813bba58a50c9ee5" + } +} From a5200e08d973bb8d5d3e27d347d3c99fb3bcb991 Mon Sep 17 00:00:00 2001 From: Dev Date: Wed, 22 Nov 2023 14:20:17 +0000 Subject: [PATCH 27/27] Add Zvezda assort for completing `Our Own Land` (prapor l4) --- .../54cb50c76803fa8b248b4571/assort.json | 7159 +++++++++-------- .../54cb50c76803fa8b248b4571/questassort.json | 47 +- 2 files changed, 3613 insertions(+), 3593 deletions(-) diff --git a/project/assets/database/traders/54cb50c76803fa8b248b4571/assort.json b/project/assets/database/traders/54cb50c76803fa8b248b4571/assort.json index 49ff5662..a624e4d2 100644 --- a/project/assets/database/traders/54cb50c76803fa8b248b4571/assort.json +++ b/project/assets/database/traders/54cb50c76803fa8b248b4571/assort.json @@ -1,4 +1,2928 @@ { + "barter_scheme": { + "648a275aa937dd374c0d7399": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3381 + } + ] + ], + "6507ff2f644a656aee0f85b2": [ + [ + { + "_tpl": "573475fb24597737fb1379e1", + "count": 5 + }, + { + "_tpl": "573476d324597737da2adc13", + "count": 3 + } + ] + ], + "6507ff2f644a656aee0f85ba": [ + [ + { + "_tpl": "590c346786f77423e50ed342", + "count": 1 + } + ] + ], + "6507ff2f644a656aee0f85bc": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 36154 + } + ] + ], + "6507ff2f644a656aee0f85c2": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1638 + } + ] + ], + "6507ff2f644a656aee0f85c4": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 35859 + } + ] + ], + "6507ff2f644a656aee0f85ce": [ + [ + { + "_tpl": "590a3cd386f77436f20848cb", + "count": 2 + } + ] + ], + "6507ff2f644a656aee0f85d0": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 874 + } + ] + ], + "6507ff2f644a656aee0f85d2": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2196 + } + ] + ], + "6507ff2f644a656aee0f85d4": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 46 + } + ] + ], + "6507ff2f644a656aee0f85d6": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 47 + } + ] + ], + "6507ff2f644a656aee0f85d8": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1793 + } + ] + ], + "6507ff2f644a656aee0f85da": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 8194 + } + ] + ], + "6507ff2f644a656aee0f85df": [ + [ + { + "_tpl": "5d1b31ce86f7742523398394", + "count": 1 + } + ] + ], + "6507ff2f644a656aee0f85e1": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 15260 + } + ] + ], + "6507ff2f644a656aee0f85e3": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 33336 + } + ] + ], + "6507ff2f644a656aee0f85e5": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 522 + } + ] + ], + "6507ff2f644a656aee0f85e7": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 354 + } + ] + ], + "6507ff2f644a656aee0f85e9": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 87 + } + ] + ], + "6507ff2f644a656aee0f85eb": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 43 + } + ] + ], + "6507ff2f644a656aee0f85ed": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 50090 + } + ] + ], + "6507ff2f644a656aee0f85f5": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 43069 + } + ] + ], + "6507ff2f644a656aee0f85ff": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2929 + } + ] + ], + "6507ff2f644a656aee0f8601": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 35475 + } + ] + ], + "6507ff2f644a656aee0f860a": [ + [ + { + "_tpl": "59e3658a86f7741776641ac4", + "count": 1 + }, + { + "_tpl": "5909e99886f7740c983b9984", + "count": 2 + }, + { + "_tpl": "573476d324597737da2adc13", + "count": 1 + } + ] + ], + "6507ff2f644a656aee0f8613": [ + [ + { + "_tpl": "5d4042a986f7743185265463", + "count": 1 + }, + { + "_tpl": "5c052f6886f7746b1e3db148", + "count": 1 + }, + { + "_tpl": "5733279d245977289b77ec24", + "count": 1 + } + ] + ], + "6507ff2f644a656aee0f861a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1674 + } + ] + ], + "6507ff2f644a656aee0f861c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 21565 + } + ] + ], + "6507ff2f644a656aee0f861e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 32 + } + ] + ], + "6507ff2f644a656aee0f8620": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 121 + } + ] + ], + "6507ff2f644a656aee0f8622": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 86 + } + ] + ], + "6507ff2f644a656aee0f8624": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3597 + } + ] + ], + "6507ff2f644a656aee0f8626": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3015 + } + ] + ], + "6507ff2f644a656aee0f8628": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 661 + } + ] + ], + "6507ff2f644a656aee0f862a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 144499 + } + ] + ], + "6507ff2f644a656aee0f8632": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 694 + } + ] + ], + "6507ff2f644a656aee0f8634": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 21514 + } + ] + ], + "6507ff2f644a656aee0f863e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1922 + } + ] + ], + "6507ff2f644a656aee0f8640": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 38468 + } + ] + ], + "6507ff2f644a656aee0f8642": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 48193 + } + ] + ], + "6507ff2f644a656aee0f864c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 35961 + } + ] + ], + "6507ff2f644a656aee0f864e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 145 + } + ] + ], + "6507ff2f644a656aee0f8650": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 38938 + } + ] + ], + "6507ff2f644a656aee0f8652": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 514 + } + ] + ], + "6507ff2f644a656aee0f8654": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 69 + } + ] + ], + "6507ff2f644a656aee0f8656": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 151 + } + ] + ], + "6507ff2f644a656aee0f8658": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2152 + } + ] + ], + "6507ff2f644a656aee0f865a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 22670 + } + ] + ], + "6507ff2f644a656aee0f865d": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 52512 + } + ] + ], + "6507ff2f644a656aee0f865f": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 54 + } + ] + ], + "6507ff2f644a656aee0f8661": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 69 + } + ] + ], + "6507ff2f644a656aee0f8663": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 109 + } + ] + ], + "6507ff2f644a656aee0f8665": [ + [ + { + "_tpl": "54491c4f4bdc2db1078b4568", + "count": 2 + } + ] + ], + "6507ff2f644a656aee0f8669": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 10194 + } + ] + ], + "6507ff2f644a656aee0f866b": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1307 + } + ] + ], + "6507ff2f644a656aee0f866d": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 161 + } + ] + ], + "6507ff30644a656aee0f866f": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 14 + } + ] + ], + "6507ff30644a656aee0f8671": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 45660 + } + ] + ], + "6507ff30644a656aee0f8673": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 77 + } + ] + ], + "6507ff30644a656aee0f8675": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 165 + } + ] + ], + "6507ff30644a656aee0f8677": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2179 + } + ] + ], + "6507ff30644a656aee0f8679": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2640 + } + ] + ], + "6507ff30644a656aee0f867b": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 805 + } + ] + ], + "6507ff30644a656aee0f867d": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 44 + } + ] + ], + "6507ff30644a656aee0f867f": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2941 + } + ] + ], + "6507ff30644a656aee0f8681": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 73 + } + ] + ], + "6507ff30644a656aee0f8683": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 10489 + } + ] + ], + "6507ff30644a656aee0f8685": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 21467 + } + ] + ], + "6507ff30644a656aee0f868a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 23427 + } + ] + ], + "6507ff30644a656aee0f868e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1683 + } + ] + ], + "6507ff30644a656aee0f8690": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 50 + } + ] + ], + "6507ff30644a656aee0f8692": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 980 + } + ] + ], + "6507ff30644a656aee0f8694": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2634 + } + ] + ], + "6507ff30644a656aee0f8696": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1642 + } + ] + ], + "6507ff30644a656aee0f8698": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 71 + } + ] + ], + "6507ff30644a656aee0f869a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 9156 + } + ] + ], + "6507ff30644a656aee0f869c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 371 + } + ] + ], + "6507ff30644a656aee0f869e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 41873 + } + ] + ], + "6507ff30644a656aee0f86a8": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 767 + } + ] + ], + "6507ff30644a656aee0f86aa": [ + [ + { + "_tpl": "590a3cd386f77436f20848cb", + "count": 1 + } + ] + ], + "6507ff30644a656aee0f86ac": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 109 + } + ] + ], + "6507ff30644a656aee0f86ae": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 57 + } + ] + ], + "6507ff30644a656aee0f86b0": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 13816 + } + ] + ], + "6507ff30644a656aee0f86b4": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 54 + } + ] + ], + "6507ff30644a656aee0f86b6": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 4251 + } + ] + ], + "6507ff30644a656aee0f86b8": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 70 + } + ] + ], + "6507ff30644a656aee0f86ba": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3136 + } + ] + ], + "6507ff30644a656aee0f86bc": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 70827 + } + ] + ], + "6507ff30644a656aee0f86c5": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 301 + } + ] + ], + "6507ff30644a656aee0f86c7": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 164 + } + ] + ], + "6507ff30644a656aee0f86c9": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 4051 + } + ] + ], + "6507ff30644a656aee0f86cb": [ + [ + { + "_tpl": "573477e124597737dd42e191", + "count": 1 + } + ] + ], + "6507ff30644a656aee0f86cf": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 8828 + } + ] + ], + "6507ff30644a656aee0f86d1": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1947 + } + ] + ], + "6507ff30644a656aee0f86d3": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 784 + } + ] + ], + "6507ff30644a656aee0f86d5": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 71 + } + ] + ], + "6507ff30644a656aee0f86d7": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 24 + } + ] + ], + "6507ff30644a656aee0f86d9": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 24605 + } + ] + ], + "6507ff30644a656aee0f86e2": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 21349 + } + ] + ], + "6507ff30644a656aee0f86e6": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1025 + } + ] + ], + "6507ff30644a656aee0f86e8": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1262 + } + ] + ], + "6507ff30644a656aee0f86ea": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2214 + } + ] + ], + "6507ff30644a656aee0f86ec": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2014 + } + ] + ], + "6507ff30644a656aee0f86ee": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1306 + } + ] + ], + "6507ff30644a656aee0f86f0": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 15177 + } + ] + ], + "6507ff30644a656aee0f86f2": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 514 + } + ] + ], + "6507ff30644a656aee0f86f4": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 10124 + } + ] + ], + "6507ff30644a656aee0f86fa": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 5055 + } + ] + ], + "6507ff30644a656aee0f86fc": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3391 + } + ] + ], + "6507ff30644a656aee0f86fe": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 757 + } + ] + ], + "6507ff30644a656aee0f8700": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 236 + } + ] + ], + "6507ff30644a656aee0f8702": [ + [ + { + "_tpl": "5d1b32c186f774252167a530", + "count": 1 + } + ] + ], + "6507ff30644a656aee0f8704": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 55 + } + ] + ], + "6507ff30644a656aee0f8706": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 11822 + } + ] + ], + "6507ff30644a656aee0f8708": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 269 + } + ] + ], + "6507ff30644a656aee0f870a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 513 + } + ] + ], + "6507ff30644a656aee0f870c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 513 + } + ] + ], + "6507ff30644a656aee0f870e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 14968 + } + ] + ], + "6507ff30644a656aee0f8710": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 38072 + } + ] + ], + "6507ff30644a656aee0f871a": [ + [ + { + "_tpl": "57347c5b245977448d35f6e1", + "count": 1 + }, + { + "_tpl": "57347c77245977448d35f6e2", + "count": 1 + } + ] + ], + "6507ff30644a656aee0f8720": [ + [ + { + "_tpl": "590c2b4386f77425357b6123", + "count": 4 + } + ] + ], + "6507ff30644a656aee0f8722": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 559 + } + ] + ], + "6507ff30644a656aee0f8724": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 30305 + } + ] + ], + "6507ff30644a656aee0f872c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 4745 + } + ] + ], + "6507ff30644a656aee0f872e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1205 + } + ] + ], + "6507ff30644a656aee0f8730": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 13446 + } + ] + ], + "6507ff30644a656aee0f8732": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 34309 + } + ] + ], + "6507ff30644a656aee0f873c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3909 + } + ] + ], + "6507ff30644a656aee0f873e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 4104 + } + ] + ], + "6507ff30644a656aee0f8740": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 39037 + } + ] + ], + "6507ff30644a656aee0f874a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2255 + } + ] + ], + "6507ff30644a656aee0f874c": [ + [ + { + "_tpl": "59e358a886f7741776641ac3", + "count": 2 + } + ] + ], + "6507ff30644a656aee0f874e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 926 + } + ] + ], + "6507ff30644a656aee0f8750": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 7002 + } + ] + ], + "6507ff30644a656aee0f8752": [ + [ + { + "_tpl": "590a3c0a86f774385a33c450", + "count": 2 + } + ] + ], + "6507ff30644a656aee0f8754": [ + [ + { + "_tpl": "590c5a7286f7747884343aea", + "count": 2 + }, + { + "_tpl": "5d1c819a86f774771b0acd6c", + "count": 3 + } + ] + ], + "6507ff30644a656aee0f8762": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1114 + } + ] + ], + "6507ff30644a656aee0f8764": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1373 + } + ] + ], + "6507ff30644a656aee0f8766": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 39278 + } + ] + ], + "6507ff30644a656aee0f8768": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 20956 + } + ] + ], + "6507ff30644a656aee0f876a": [ + [ + { + "_tpl": "5751496424597720a27126da", + "count": 2 + }, + { + "_tpl": "573476d324597737da2adc13", + "count": 2 + } + ] + ], + "6507ff30644a656aee0f876c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 35043 + } + ] + ], + "6507ff30644a656aee0f8773": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2637 + } + ] + ], + "6507ff30644a656aee0f8775": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3747 + } + ] + ], + "6507ff30644a656aee0f8777": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 43063 + } + ] + ], + "6507ff30644a656aee0f8781": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 7406 + } + ] + ], + "6507ff30644a656aee0f8783": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 861 + } + ] + ], + "6507ff30644a656aee0f8785": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 53888 + } + ] + ], + "6507ff30644a656aee0f878f": [ + [ + { + "_tpl": "59faf98186f774067b6be103", + "count": 2 + } + ] + ], + "6507ff30644a656aee0f8791": [ + [ + { + "_tpl": "590a373286f774287540368b", + "count": 1 + } + ] + ], + "6507ff30644a656aee0f8793": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 285 + } + ] + ], + "6507ff30644a656aee0f8795": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 47826 + } + ] + ], + "6507ff30644a656aee0f879f": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 544 + } + ] + ], + "6507ff30644a656aee0f87a1": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 526 + } + ] + ], + "6507ff30644a656aee0f87a3": [ + [ + { + "_tpl": "5672cb304bdc2dc2088b456a", + "count": 5 + }, + { + "_tpl": "5672cb124bdc2d1a0f8b4568", + "count": 8 + } + ] + ], + "6507ff30644a656aee0f87ad": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 18857 + } + ] + ], + "6507ff30644a656aee0f87af": [ + [ + { + "_tpl": "5734795124597738002c6176", + "count": 2 + } + ] + ], + "6507ff30644a656aee0f87b1": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 17502 + } + ] + ], + "6507ff30644a656aee0f87b3": [ + [ + { + "_tpl": "5b4329075acfc400153b78ff", + "count": 2 + } + ] + ], + "6507ff30644a656aee0f87b5": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 44093 + } + ] + ], + "6507ff30644a656aee0f87bf": [ + [ + { + "_tpl": "57347da92459774491567cf5", + "count": 2 + } + ] + ], + "6507ff30644a656aee0f87c1": [ + [ + { + "_tpl": "59e35ef086f7741777737012", + "count": 1 + }, + { + "_tpl": "57347c5b245977448d35f6e1", + "count": 1 + } + ] + ], + "6507ff30644a656aee0f87c7": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2660 + } + ] + ], + "6507ff30644a656aee0f87c9": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 15864 + } + ] + ], + "6507ff30644a656aee0f87cf": [ + [ + { + "_tpl": "5734770f24597738025ee254", + "count": 1 + } + ] + ], + "6507ff30644a656aee0f87d1": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1628 + } + ] + ], + "6507ff30644a656aee0f87d3": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1136 + } + ] + ], + "6507ff30644a656aee0f87d5": [ + [ + { + "_tpl": "60391afc25aff57af81f7085", + "count": 1 + }, + { + "_tpl": "5e2aee0a86f774755a234b62", + "count": 1 + } + ] + ], + "6507ff30644a656aee0f87d9": [ + [ + { + "_tpl": "5c0fa877d174af02a012e1cf", + "count": 2 + }, + { + "_tpl": "590c595c86f7747884343ad7", + "count": 1 + } + ] + ], + "6507ff30644a656aee0f87db": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 833 + } + ] + ], + "6507ff30644a656aee0f87dd": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1106 + } + ] + ], + "6507ff30644a656aee0f87df": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3003 + } + ] + ], + "6507ff30644a656aee0f87e1": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 7320 + } + ] + ], + "6507ff30644a656aee0f87e3": [ + [ + { + "_tpl": "590c5a7286f7747884343aea", + "count": 1 + } + ] + ], + "6507ff30644a656aee0f87e6": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 42203 + } + ] + ], + "6507ff30644a656aee0f87ed": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 24533 + } + ] + ], + "6507ff30644a656aee0f87ef": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 34825 + } + ] + ], + "6507ff30644a656aee0f87f6": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 806 + } + ] + ], + "6507ff30644a656aee0f87f8": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 25448 + } + ] + ], + "6507ff30644a656aee0f87fa": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 301 + } + ] + ], + "6507ff30644a656aee0f87fc": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1086 + } + ] + ], + "6507ff30644a656aee0f87fe": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 40049 + } + ] + ], + "6507ff30644a656aee0f8800": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 24198 + } + ] + ], + "6507ff30644a656aee0f8802": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 24427 + } + ] + ], + "6507ff30644a656aee0f8804": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 6649 + } + ] + ], + "6507ff30644a656aee0f8806": [ + [ + { + "_tpl": "57347cd0245977445a2d6ff1", + "count": 4 + } + ] + ], + "6507ff31644a656aee0f8810": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1773 + } + ] + ], + "6507ff31644a656aee0f8812": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2163 + } + ] + ], + "6507ff31644a656aee0f8814": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 20475 + } + ] + ], + "6507ff31644a656aee0f8816": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1114 + } + ] + ], + "6507ff31644a656aee0f8818": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2344 + } + ] + ], + "6507ff31644a656aee0f881a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1766 + } + ] + ], + "6507ff31644a656aee0f881c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 872 + } + ] + ], + "6507ff31644a656aee0f881e": [ + [ + { + "_tpl": "5c13cef886f774072e618e82", + "count": 2 + }, + { + "_tpl": "57347c93245977448d35f6e3", + "count": 2 + } + ] + ], + "6507ff31644a656aee0f8828": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 572 + } + ] + ], + "6507ff31644a656aee0f882a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 958 + } + ] + ], + "6507ff31644a656aee0f882c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 10770 + } + ] + ], + "6507ff31644a656aee0f882e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2434 + } + ] + ], + "6507ff31644a656aee0f8830": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 39120 + } + ] + ], + "6507ff31644a656aee0f8832": [ + [ + { + "_tpl": "5d40407c86f774318526545a", + "count": 2 + } + ] + ], + "6507ff31644a656aee0f883a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 7194 + } + ] + ], + "6507ff31644a656aee0f883c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 572 + } + ] + ], + "6507ff31644a656aee0f883e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1962 + } + ] + ], + "6507ff31644a656aee0f8840": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 4088 + } + ] + ], + "6507ff31644a656aee0f8842": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 27468 + } + ] + ], + "6507ff31644a656aee0f8844": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 13298 + } + ] + ], + "6507ff31644a656aee0f8846": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1086 + } + ] + ], + "6507ff31644a656aee0f8848": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1743 + } + ] + ], + "6507ff31644a656aee0f884a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 872 + } + ] + ], + "6507ff31644a656aee0f884c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 93894 + } + ] + ], + "6507ff31644a656aee0f8859": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 19385 + } + ] + ], + "6507ff31644a656aee0f885b": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 21810 + } + ] + ], + "6507ff31644a656aee0f8860": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 68698 + } + ] + ], + "6507ff31644a656aee0f886d": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1908 + } + ] + ], + "6507ff31644a656aee0f886f": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 371 + } + ] + ], + "6507ff31644a656aee0f8871": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2364 + } + ] + ], + "6507ff31644a656aee0f8873": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1223 + } + ] + ], + "6507ff31644a656aee0f8875": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 436 + } + ] + ], + "6507ff31644a656aee0f8877": [ + [ + { + "_tpl": "57347d7224597744596b4e72", + "count": 3 + } + ] + ], + "6507ff31644a656aee0f8881": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 15805 + } + ] + ], + "6507ff31644a656aee0f8883": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1441 + } + ] + ], + "6507ff31644a656aee0f8885": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 628 + } + ] + ], + "6507ff31644a656aee0f8887": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2050 + } + ] + ], + "6507ff31644a656aee0f8889": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 958 + } + ] + ], + "6507ff31644a656aee0f888b": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 872 + } + ] + ], + "6507ff31644a656aee0f888d": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 4905 + } + ] + ], + "6507ff31644a656aee0f888f": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 6301 + } + ] + ], + "6507ff31644a656aee0f8891": [ + [ + { + "_tpl": "5d0376a486f7747d8050965c", + "count": 1 + }, + { + "_tpl": "5c06779c86f77426e00dd782", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f8898": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 31610 + } + ] + ], + "6507ff31644a656aee0f889a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 809 + } + ] + ], + "6507ff31644a656aee0f889c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2289 + } + ] + ], + "6507ff31644a656aee0f889e": [ + [ + { + "_tpl": "59e3639286f7741777737013", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f88a0": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 351 + } + ] + ], + "6507ff31644a656aee0f88a2": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 654 + } + ] + ], + "6507ff31644a656aee0f88a4": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2148 + } + ] + ], + "6507ff31644a656aee0f88a6": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 7154 + } + ] + ], + "6507ff31644a656aee0f88a8": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 258 + } + ] + ], + "6507ff31644a656aee0f88aa": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 10038 + } + ] + ], + "6507ff31644a656aee0f88ac": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 33790 + } + ] + ], + "6507ff31644a656aee0f88ae": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1036 + } + ] + ], + "6507ff31644a656aee0f88b0": [ + [ + { + "_tpl": "590c2c9c86f774245b1f03f2", + "count": 5 + }, + { + "_tpl": "57347cd0245977445a2d6ff1", + "count": 5 + }, + { + "_tpl": "5909e99886f7740c983b9984", + "count": 5 + } + ] + ], + "6507ff31644a656aee0f88b7": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2794 + } + ] + ], + "6507ff31644a656aee0f88b9": [ + [ + { + "_tpl": "590c639286f774151567fa95", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f88bb": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2180 + } + ] + ], + "6507ff31644a656aee0f88bd": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 5394 + } + ] + ], + "6507ff31644a656aee0f88bf": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1036 + } + ] + ], + "6507ff31644a656aee0f88c1": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 22345 + } + ] + ], + "6507ff31644a656aee0f88c3": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 7630 + } + ] + ], + "6507ff31644a656aee0f88c5": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 657 + } + ] + ], + "6507ff31644a656aee0f88c7": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 17440 + } + ] + ], + "6507ff31644a656aee0f88c9": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 120 + } + ] + ], + "6507ff31644a656aee0f88cb": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 280 + } + ] + ], + "6507ff31644a656aee0f88cd": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 178405 + } + ] + ], + "6507ff31644a656aee0f88cf": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3052 + } + ] + ], + "6507ff31644a656aee0f88d1": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1867 + } + ] + ], + "6507ff31644a656aee0f88d3": [ + [ + { + "_tpl": "57347d9c245977448b40fa85", + "count": 2 + }, + { + "_tpl": "590c5d4b86f774784e1b9c45", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f88d5": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2747 + } + ] + ], + "6507ff31644a656aee0f88d7": [ + [ + { + "_tpl": "575146b724597720a27126d5", + "count": 1 + }, + { + "_tpl": "57347d90245977448f7b7f65", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f88d9": [ + [ + { + "_tpl": "59e35cbb86f7741778269d83", + "count": 1 + }, + { + "_tpl": "619cbf476b8a1b37a54eebf8", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f88df": [ + [ + { + "_tpl": "59f32c3b86f77472a31742f0", + "count": 9, + "level": 25, + "side": "Usec" + } + ] + ], + "6507ff31644a656aee0f88e1": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 138 + } + ] + ], + "6507ff31644a656aee0f88e3": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 18137 + } + ] + ], + "6507ff31644a656aee0f88ea": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 14416 + } + ] + ], + "6507ff31644a656aee0f88ec": [ + [ + { + "_tpl": "59fafb5d86f774067a6f2084", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f88ee": [ + [ + { + "_tpl": "590c645c86f77412b01304d9", + "count": 4 + } + ] + ], + "6507ff31644a656aee0f88f0": [ + [ + { + "_tpl": "5d1c819a86f774771b0acd6c", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f88f2": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 26599 + } + ] + ], + "6507ff31644a656aee0f88fa": [ + [ + { + "_tpl": "5d40407c86f774318526545a", + "count": 2 + }, + { + "_tpl": "590c5f0d86f77413997acfab", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f88fc": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 17004 + } + ] + ], + "6507ff31644a656aee0f88fe": [ + [ + { + "_tpl": "590c651286f7741e566b6461", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f8900": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 7848 + } + ] + ], + "6507ff31644a656aee0f8902": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 663 + } + ] + ], + "6507ff31644a656aee0f8904": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 15587 + } + ] + ], + "6507ff31644a656aee0f8906": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2868 + } + ] + ], + "6507ff31644a656aee0f8908": [ + [ + { + "_tpl": "59fafb5d86f774067a6f2084", + "count": 2 + }, + { + "_tpl": "5b43575a86f77424f443fe62", + "count": 2 + } + ] + ], + "6507ff31644a656aee0f890a": [ + [ + { + "_tpl": "60391a8b3364dc22b04d0ce5", + "count": 4 + }, + { + "_tpl": "60391b0fb847c71012789415", + "count": 4 + } + ] + ], + "6507ff31644a656aee0f890c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1500 + } + ] + ], + "6507ff31644a656aee0f890e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2725 + } + ] + ], + "6507ff31644a656aee0f8910": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 872 + } + ] + ], + "6507ff31644a656aee0f8912": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 654 + } + ] + ], + "6507ff31644a656aee0f8914": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1003 + } + ] + ], + "6507ff31644a656aee0f8916": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 8448 + } + ] + ], + "6507ff31644a656aee0f8918": [ + [ + { + "_tpl": "5e2aedd986f7746d404f3aa4", + "count": 1 + }, + { + "_tpl": "590a358486f77429692b2790", + "count": 2 + } + ] + ], + "6507ff31644a656aee0f8923": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1358 + } + ] + ], + "6507ff31644a656aee0f8925": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 37457 + } + ] + ], + "6507ff31644a656aee0f8927": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 833 + } + ] + ], + "6507ff31644a656aee0f8929": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1265 + } + ] + ], + "6507ff31644a656aee0f892b": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 981 + } + ] + ], + "6507ff31644a656aee0f892d": [ + [ + { + "_tpl": "590c2b4386f77425357b6123", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f892f": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1205 + } + ] + ], + "6507ff31644a656aee0f8931": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 6210 + } + ] + ], + "6507ff31644a656aee0f8933": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 526 + } + ] + ], + "6507ff31644a656aee0f8935": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 6210 + } + ] + ], + "6507ff31644a656aee0f8937": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 5263 + } + ] + ], + "6507ff31644a656aee0f8939": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1908 + } + ] + ], + "6507ff31644a656aee0f893b": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3107 + } + ] + ], + "6507ff31644a656aee0f893d": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2346 + } + ] + ], + "6507ff31644a656aee0f893f": [ + [ + { + "_tpl": "5c12613b86f7743bbe2c3f76", + "count": 1 + }, + { + "_tpl": "5d0379a886f77420407aa271", + "count": 2 + } + ] + ], + "6507ff31644a656aee0f8941": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 872 + } + ] + ], + "6507ff31644a656aee0f8943": [ + [ + { + "_tpl": "5d40407c86f774318526545a", + "count": 1 + } + ] + ], + "6507ff31644a656aee0f894a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2553 + } + ] + ], + "6507ff31644a656aee0f894c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 4273 + } + ] + ], + "6507ff31644a656aee0f894e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1698 + } + ] + ], + "6507ff31644a656aee0f8950": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 7072 + } + ] + ], + "6507ff31644a656aee0f8952": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 16772 + } + ] + ], + "6507ff31644a656aee0f8954": [ + [ + { + "_tpl": "6389c6463485cf0eeb260715", + "count": 4 + } + ] + ], + "6507ff31644a656aee0f895a": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 4654 + } + ] + ], + "6507ff31644a656aee0f895c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 52974 + } + ] + ], + "6507ff31644a656aee0f895e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 75025 + } + ] + ], + "6507ff32644a656aee0f896b": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3502 + } + ] + ], + "6507ff32644a656aee0f896d": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 757 + } + ] + ], + "6507ff32644a656aee0f896f": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 761 + } + ] + ], + "6507ff32644a656aee0f897b": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 25506 + } + ] + ], + "6507ff32644a656aee0f897d": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 188 + } + ] + ], + "6507ff32644a656aee0f897f": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2562 + } + ] + ], + "6507ff32644a656aee0f8981": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3815 + } + ] + ], + "6507ff32644a656aee0f8983": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3270 + } + ] + ], + "6507ff32644a656aee0f8985": [ + [ + { + "_tpl": "5d0375ff86f774186372f685", + "count": 1 + }, + { + "_tpl": "5672cb124bdc2d1a0f8b4568", + "count": 5 + } + ] + ], + "6507ff32644a656aee0f8989": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1092 + } + ] + ], + "6507ff32644a656aee0f898b": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 49506 + } + ] + ], + "6507ff32644a656aee0f898d": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2014 + } + ] + ], + "6507ff32644a656aee0f898f": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 7820 + } + ] + ], + "6507ff32644a656aee0f8991": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1090 + } + ] + ], + "6507ff32644a656aee0f8993": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1330 + } + ] + ], + "6507ff32644a656aee0f8995": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 981 + } + ] + ], + "6507ff32644a656aee0f8997": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2289 + } + ] + ], + "6507ff32644a656aee0f8999": [ + [ + { + "_tpl": "5d40407c86f774318526545a", + "count": 2 + }, + { + "_tpl": "57347d7224597744596b4e72", + "count": 3 + } + ] + ], + "6507ff32644a656aee0f89a7": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 62661 + } + ] + ], + "6507ff32644a656aee0f89b0": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1149 + } + ] + ], + "6507ff32644a656aee0f89b2": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3161 + } + ] + ], + "6507ff32644a656aee0f89b4": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 4088 + } + ] + ], + "6507ff32644a656aee0f89b6": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2260 + } + ] + ], + "6507ff32644a656aee0f89b8": [ + [ + { + "_tpl": "5d6fc78386f77449d825f9dc", + "count": 3 + }, + { + "_tpl": "61bf7b6302b3924be92fa8c3", + "count": 4 + } + ] + ], + "6507ff32644a656aee0f89c5": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 2293 + } + ] + ], + "6507ff32644a656aee0f89d6": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 4121 + } + ] + ], + "6507ff32644a656aee0f89d8": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 13625 + } + ] + ], + "6507ff32644a656aee0f89da": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 3636 + } + ] + ], + "6507ff32644a656aee0f89dc": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 382 + } + ] + ], + "6507ff32644a656aee0f89de": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 53688 + } + ] + ], + "6507ff32644a656aee0f89e7": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1308 + } + ] + ], + "6507ff32644a656aee0f89e9": [ + [ + { + "_tpl": "573475fb24597737fb1379e1", + "count": 5 + } + ] + ], + "6507ff32644a656aee0f89f3": [ + [ + { + "_tpl": "59e358a886f7741776641ac3", + "count": 3 + } + ] + ], + "6507ff32644a656aee0f89f9": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 900 + } + ] + ], + "6507ff32644a656aee0f89fb": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 91 + } + ] + ], + "6507ff32644a656aee0f89fd": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1092 + } + ] + ], + "6507ff32644a656aee0f89ff": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 872 + } + ] + ], + "6507ff32644a656aee0f8a01": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 1106 + } + ] + ], + "6507ff32644a656aee0f8a03": [ + [ + { + "_tpl": "590de71386f774347051a052", + "count": 2 + } + ] + ], + "6507ff32644a656aee0f8a0c": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 526 + } + ] + ], + "6507ff32644a656aee0f8a0e": [ + [ + { + "_tpl": "5449016a4bdc2d6f028b456f", + "count": 18912 + } + ] + ], + "652376e2f6c67195e4061507": [ + [ + { + "_tpl": "619cbfeb6b8a1b37a54eebfa", + "count": 1 + }, + { + "_tpl": "619cbfccbedcde2f5b3f7bdd", + "count": 1 + } + ] + ] + }, "items": [ { "_id": "6507ff2f644a656aee0f85b2", @@ -6,12 +2930,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1975, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1975 } }, { @@ -56,9 +2980,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5989, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5989 } }, { @@ -67,9 +2991,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4651, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4651 } }, { @@ -102,8 +3026,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -172,10 +3096,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -193,9 +3117,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 142769, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 142769 } }, { @@ -204,8 +3128,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -214,8 +3138,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -224,9 +3148,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 348702, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 348702 } }, { @@ -262,9 +3186,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4988, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4988 } }, { @@ -273,9 +3197,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5134, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5134 } }, { @@ -284,10 +3208,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1775000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1775000, + "UnlimitedCount": true } }, { @@ -296,10 +3220,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -308,9 +3232,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 873016, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 873016 } }, { @@ -328,9 +3252,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 146838, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 146838 } }, { @@ -339,13 +3263,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 4, "FireMode": { "FireMode": "single" }, - "UnlimitedCount": true, "StackObjectsCount": 1770000, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "UnlimitedCount": true } }, { @@ -456,15 +3380,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 6709, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 6709 } }, { @@ -515,15 +3439,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 962, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 962 } }, { @@ -574,9 +3498,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4999 } }, { @@ -615,8 +3539,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -625,10 +3549,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -637,8 +3561,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -647,9 +3571,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 213446, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 350, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 213446 } }, { @@ -658,10 +3582,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1800000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1800000, + "UnlimitedCount": true } }, { @@ -670,8 +3594,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -698,9 +3622,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 119, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 119 } }, { @@ -745,9 +3669,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 409663, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 409663 } }, { @@ -756,9 +3680,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 64737, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 64737 } }, { @@ -815,8 +3739,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -825,9 +3749,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19970, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19970 } }, { @@ -893,9 +3817,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 9886, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 9886 } }, { @@ -904,10 +3828,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -916,9 +3840,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5643, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5643 } }, { @@ -927,9 +3851,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 181069, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 181069 } }, { @@ -938,8 +3862,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -948,9 +3872,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 356071, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 450, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 356071 } }, { @@ -959,8 +3883,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -969,9 +3893,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19966, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19966 } }, { @@ -986,9 +3910,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1949, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1949 } }, { @@ -997,8 +3921,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1007,10 +3931,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1795000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1795000, + "UnlimitedCount": true } }, { @@ -1028,9 +3952,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14995, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14995 } }, { @@ -1051,9 +3975,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 59473, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 59473 } }, { @@ -1071,9 +3995,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 788703, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 800, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 788703 } }, { @@ -1082,8 +4006,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1092,9 +4016,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 11901, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 11901 } }, { @@ -1103,8 +4027,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1113,9 +4037,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 332276, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 450, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 332276 } }, { @@ -1124,8 +4048,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1134,8 +4058,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1144,9 +4068,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 120, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 120 } }, { @@ -1155,8 +4079,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1165,9 +4089,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14771, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14771 } }, { @@ -1176,10 +4100,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1910000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1910000, + "UnlimitedCount": true } }, { @@ -1188,9 +4112,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19971, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19971 } }, { @@ -1199,13 +4123,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1891, - "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 1891 } }, { @@ -1262,8 +4186,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1272,9 +4196,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 14951, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 14951 } }, { @@ -1292,8 +4216,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1790000 + "StackObjectsCount": 1790000, + "UnlimitedCount": true } }, { @@ -1302,8 +4226,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1312,10 +4236,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1324,9 +4248,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 234335, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 234335 } }, { @@ -1401,9 +4325,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 7310, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 7310 } }, { @@ -1412,10 +4336,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1424,8 +4348,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1455,8 +4379,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1465,9 +4389,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 29144, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 29144 } }, { @@ -1485,9 +4409,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 12982, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 12, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 12982 } }, { @@ -1496,15 +4420,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 14651, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 14651 } }, { @@ -1564,10 +4488,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 2110000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 350, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2110000, + "UnlimitedCount": true } }, { @@ -1576,9 +4500,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18265, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18265 } }, { @@ -1587,9 +4511,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1478, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1478 } }, { @@ -1610,10 +4534,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1622,9 +4546,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 49982, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 49982 } }, { @@ -1642,10 +4566,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 600, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1654,8 +4578,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1664,12 +4588,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, "FireMode": { "FireMode": "single" }, + "Foldable": { + "Folded": false + }, "StackObjectsCount": 698712 } }, @@ -1721,10 +4645,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1745,8 +4669,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1755,8 +4679,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1765,8 +4689,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1793,8 +4717,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1812,12 +4736,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1850,9 +4774,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 9976, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 8, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 9976 } }, { @@ -1861,9 +4785,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 9987, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 9987 } }, { @@ -1881,8 +4805,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1850000 + "StackObjectsCount": 1850000, + "UnlimitedCount": true } }, { @@ -1891,9 +4815,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 9663, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 9663 } }, { @@ -1902,8 +4826,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -1912,9 +4836,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 500956, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 500956 } }, { @@ -1923,9 +4847,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 716985, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 716985 } }, { @@ -1952,9 +4876,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19860, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19860 } }, { @@ -2020,13 +4944,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19994, - "BuyRestrictionMax": 5, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 19994 } }, { @@ -2059,9 +4983,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5940, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5940 } }, { @@ -2079,8 +5003,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -2125,9 +5049,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 36710, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 36710 } }, { @@ -2136,9 +5060,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19464, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19464 } }, { @@ -2147,9 +5071,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 18538, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18538 } }, { @@ -2236,8 +5160,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -2294,10 +5218,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -2306,9 +5230,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19874, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19874 } }, { @@ -2317,8 +5241,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -2336,9 +5260,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1984, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1984 } }, { @@ -2347,15 +5271,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1993, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 1993 } }, { @@ -2454,9 +5378,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 7650, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 6, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 7650 } }, { @@ -2465,9 +5389,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1951, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1951 } }, { @@ -2476,9 +5400,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 27834, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 27834 } }, { @@ -2490,8 +5414,8 @@ "FireMode": { "FireMode": "single" }, - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -2530,8 +5454,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -2540,9 +5464,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 7522, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 7522 } }, { @@ -2617,9 +5541,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19946, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19946 } }, { @@ -2685,9 +5609,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1999 } }, { @@ -2696,9 +5620,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19197, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19197 } }, { @@ -2791,9 +5715,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1954, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1954 } }, { @@ -2859,9 +5783,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1919, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 50, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1919 } }, { @@ -2870,8 +5794,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1775000 + "StackObjectsCount": 1775000, + "UnlimitedCount": true } }, { @@ -2880,8 +5804,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -2947,9 +5871,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 39313, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 39313 } }, { @@ -2991,9 +5915,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19386, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19386 } }, { @@ -3035,9 +5959,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4273, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4273 } }, { @@ -3046,9 +5970,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1986, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1986 } }, { @@ -3057,9 +5981,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4941, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4941 } }, { @@ -3068,12 +5992,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1991, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1991 } }, { @@ -3121,8 +6045,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -3131,9 +6055,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 193112, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 193112 } }, { @@ -3142,9 +6066,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 276, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 276 } }, { @@ -3198,9 +6122,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1983 } }, { @@ -3209,12 +6133,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 4, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 18744, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 18744 } }, { @@ -3262,9 +6186,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1994, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1994 } }, { @@ -3291,9 +6215,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1860, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1860 } }, { @@ -3302,9 +6226,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1990, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1990 } }, { @@ -3313,9 +6237,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 9658, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 9658 } }, { @@ -3324,9 +6248,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1988, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1988 } }, { @@ -3335,9 +6259,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1988, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1988 } }, { @@ -3394,9 +6318,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 2896, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2896 } }, { @@ -3405,9 +6329,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1636, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1636 } }, { @@ -3416,9 +6340,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1975, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1975 } }, { @@ -3436,9 +6360,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1991, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1991 } }, { @@ -3447,9 +6371,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5952, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5952 } }, { @@ -3467,12 +6391,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1994, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1994 } }, { @@ -3529,9 +6453,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5926, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5926 } }, { @@ -3549,9 +6473,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 17775, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 17775 } }, { @@ -3560,9 +6484,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1999 } }, { @@ -3571,9 +6495,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1977, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1977 } }, { @@ -3582,12 +6506,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1826, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1826 } }, { @@ -3632,9 +6556,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19864, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19864 } }, { @@ -3652,9 +6576,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 7, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1983 } }, { @@ -3663,8 +6587,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -3673,9 +6597,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1996, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1996 } }, { @@ -3684,9 +6608,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1999 } }, { @@ -3704,9 +6628,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5972, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5972 } }, { @@ -3724,15 +6648,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19394, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 19394 } }, { @@ -3807,9 +6731,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19571, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19571 } }, { @@ -3821,8 +6745,8 @@ "FireMode": { "FireMode": "single" }, - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -3849,15 +6773,15 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1992, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "Foldable": { + "Folded": false + }, + "StackObjectsCount": 1992 } }, { @@ -3932,9 +6856,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1974, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1974 } }, { @@ -3943,9 +6867,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 287924, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 300, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 287924 } }, { @@ -3981,9 +6905,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19873, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19873 } }, { @@ -4040,9 +6964,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19697, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19697 } }, { @@ -4051,9 +6975,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19298, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19298 } }, { @@ -4071,9 +6995,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1900, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1900 } }, { @@ -4082,9 +7006,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1994, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1994 } }, { @@ -4102,9 +7026,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1976, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1976 } }, { @@ -4113,9 +7037,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 6680, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 6680 } }, { @@ -4124,12 +7048,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1794, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1794 } }, { @@ -4168,9 +7092,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1997, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1997 } }, { @@ -4179,9 +7103,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 150, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 150, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 150 } }, { @@ -4199,9 +7123,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 3427, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 3427 } }, { @@ -4210,9 +7134,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 37846, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 200, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 37846 } }, { @@ -4221,9 +7145,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1994, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1994 } }, { @@ -4232,9 +7156,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 2771, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2771 } }, { @@ -4243,9 +7167,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 194764, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 30, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 194764 } }, { @@ -4254,10 +7178,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -4266,9 +7190,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 7967, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 7967 } }, { @@ -4277,9 +7201,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1993 } }, { @@ -4288,9 +7212,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1983 } }, { @@ -4299,12 +7223,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1946, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1946 } }, { @@ -4343,9 +7267,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 2000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 2000 } }, { @@ -4354,9 +7278,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1985, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1985 } }, { @@ -4365,8 +7289,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -4375,9 +7299,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5957, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5957 } }, { @@ -4386,9 +7310,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1983 } }, { @@ -4397,10 +7321,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -4409,10 +7333,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -4421,9 +7345,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1946, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1946 } }, { @@ -4432,9 +7356,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4553, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4553 } }, { @@ -4443,9 +7367,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 191073, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 25, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 191073 } }, { @@ -4454,9 +7378,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 188960, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 20, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 188960 } }, { @@ -4465,9 +7389,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19495, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19495 } }, { @@ -4476,8 +7400,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -4486,9 +7410,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 100, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 60, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 100 } }, { @@ -4497,9 +7421,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1996, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1996 } }, { @@ -4508,9 +7432,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1974, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1974 } }, { @@ -4519,9 +7443,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1990, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1990 } }, { @@ -4530,12 +7454,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 8772, - "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 8772 } }, { @@ -4568,9 +7492,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 668, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 668 } }, { @@ -4579,9 +7503,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 196955, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 40, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 196955 } }, { @@ -4590,12 +7514,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 39909, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 39909 } }, { @@ -4634,10 +7558,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -4646,9 +7570,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 5793, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 5793 } }, { @@ -4657,9 +7581,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 236, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 236 } }, { @@ -4668,9 +7592,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4976, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4976 } }, { @@ -4679,12 +7603,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 199648, - "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199648 } }, { @@ -4717,9 +7641,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1983 } }, { @@ -4728,9 +7652,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 7891, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 7891 } }, { @@ -4739,9 +7663,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1860, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1860 } }, { @@ -4750,9 +7674,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1998, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1998 } }, { @@ -4761,9 +7685,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1927, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1927 } }, { @@ -4772,9 +7696,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 8654, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 3, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 8654 } }, { @@ -4783,10 +7707,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -4795,9 +7719,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 3207, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 3207 } }, { @@ -4806,9 +7730,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 546, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 546 } }, { @@ -4817,8 +7741,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -4827,9 +7751,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19983 } }, { @@ -4838,9 +7762,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19977, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19977 } }, { @@ -4849,9 +7773,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19926, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19926 } }, { @@ -4860,10 +7784,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1775000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1775000, + "UnlimitedCount": true } }, { @@ -4881,13 +7805,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1131, - "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 1131 } }, { @@ -4950,9 +7874,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 20000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 20000 } }, { @@ -4961,9 +7885,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19997, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19997 } }, { @@ -4972,9 +7896,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19999 } }, { @@ -4983,9 +7907,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1976, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1976 } }, { @@ -4994,8 +7918,8 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1775000 + "StackObjectsCount": 1775000, + "UnlimitedCount": true } }, { @@ -5004,9 +7928,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4977, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 4977 } }, { @@ -5015,9 +7939,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 198986, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 198986 } }, { @@ -5026,10 +7950,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1950000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1950000, + "UnlimitedCount": true } }, { @@ -5038,10 +7962,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1950000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1950000, + "UnlimitedCount": true } }, { @@ -5050,10 +7974,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1775000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1775000, + "UnlimitedCount": true } }, { @@ -5062,9 +7986,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19999 } }, { @@ -5073,10 +7997,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1775000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1775000, + "UnlimitedCount": true } }, { @@ -5085,9 +8009,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19947, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19947 } }, { @@ -5096,10 +8020,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1775000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1775000, + "UnlimitedCount": true } }, { @@ -5108,9 +8032,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1987, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1987 } }, { @@ -5128,12 +8052,12 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 1972, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1972 } }, { @@ -5181,9 +8105,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199990, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199990 } }, { @@ -5192,9 +8116,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19985, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19985 } }, { @@ -5203,9 +8127,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199990, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199990 } }, { @@ -5214,9 +8138,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199983 } }, { @@ -5225,9 +8149,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 20000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 20000 } }, { @@ -5269,9 +8193,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19994, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 1, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19994 } }, { @@ -5280,13 +8204,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 4959, - "BuyRestrictionMax": 3, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 3, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 4959 } }, { @@ -5361,9 +8285,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199957, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199957 } }, { @@ -5372,9 +8296,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199975, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199975 } }, { @@ -5383,9 +8307,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19993 } }, { @@ -5394,9 +8318,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19522, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19522 } }, { @@ -5405,10 +8329,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 120, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -5417,10 +8341,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1775000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1775000, + "UnlimitedCount": true } }, { @@ -5429,9 +8353,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 27086, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 27086 } }, { @@ -5440,9 +8364,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 20000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 20000 } }, { @@ -5451,16 +8375,16 @@ "parentId": "hideout", "slotId": "hideout", "upd": { + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19955, - "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 19955 } }, { @@ -5481,10 +8405,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1775000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1775000, + "UnlimitedCount": true } }, { @@ -5493,9 +8417,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199798, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199798 } }, { @@ -5504,9 +8428,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19999 } }, { @@ -5515,9 +8439,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19999, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19999 } }, { @@ -5526,9 +8450,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19965, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19965 } }, { @@ -5537,9 +8461,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19983, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19983 } }, { @@ -5548,9 +8472,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19948, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19948 } }, { @@ -5559,9 +8483,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19904, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19904 } }, { @@ -5570,14 +8494,14 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, - "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -5658,14 +8582,14 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1950000, - "BuyRestrictionMax": 2, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 2, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 1950000, + "UnlimitedCount": true } }, { @@ -5716,9 +8640,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19990, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19990 } }, { @@ -5727,9 +8651,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19779, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 10, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19779 } }, { @@ -5738,9 +8662,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199587, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199587 } }, { @@ -5749,9 +8673,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199995, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199995 } }, { @@ -5760,11 +8684,11 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1997, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 1997 } }, { @@ -5839,9 +8763,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 20000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 20000 } }, { @@ -5850,9 +8774,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19993, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19993 } }, { @@ -5861,9 +8785,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19761, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19761 } }, { @@ -5881,10 +8805,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1950000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1950000, + "UnlimitedCount": true } }, { @@ -5893,19 +8817,19 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 5, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 19841, - "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0, + "Foldable": { + "Folded": false + }, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 19841 } }, { @@ -5956,9 +8880,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19884, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19884 } }, { @@ -5967,9 +8891,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19978, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19978 } }, { @@ -6026,9 +8950,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19989, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 2, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19989 } }, { @@ -6061,9 +8985,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1509911, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 180, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1509911 } }, { @@ -6072,10 +8996,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1770000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 400, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1770000, + "UnlimitedCount": true } }, { @@ -6084,10 +9008,10 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "UnlimitedCount": true, - "StackObjectsCount": 1775000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 1775000, + "UnlimitedCount": true } }, { @@ -6096,9 +9020,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199936, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199936 } }, { @@ -6107,9 +9031,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 199989, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 199989 } }, { @@ -6118,13 +9042,13 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 1799, - "BuyRestrictionMax": 1, "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 1, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 1799 } }, { @@ -6175,9 +9099,9 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 20000, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 20000 } }, { @@ -6186,9 +9110,19 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "StackObjectsCount": 19919, + "BuyRestrictionCurrent": 0, "BuyRestrictionMax": 5, - "BuyRestrictionCurrent": 0 + "StackObjectsCount": 19919 + } + }, + { + "_id": "648a275aa937dd374c0d7399", + "_tpl": "5e85a9f4add9fe03027d9bf1", + "parentId": "hideout", + "slotId": "hideout", + "upd": { + "BuyRestrictionMax": 10, + "StackObjectsCount": 1500 } }, { @@ -6197,19 +9131,19 @@ "parentId": "hideout", "slotId": "hideout", "upd": { - "Foldable": { - "Folded": false - }, + "BuyRestrictionCurrent": 0, + "BuyRestrictionMax": 4, "FireMode": { "FireMode": "single" }, - "StackObjectsCount": 20000, - "BuyRestrictionMax": 4, - "BuyRestrictionCurrent": 0, + "Foldable": { + "Folded": false + }, "Repairable": { "Durability": 100, "MaxDurability": 100 - } + }, + "StackObjectsCount": 20000 } }, { @@ -6261,2923 +9195,8 @@ "slotId": "mod_pistolgrip" } ], - "barter_scheme": { - "6507ff2f644a656aee0f85b2": [ - [ - { - "count": 5, - "_tpl": "573475fb24597737fb1379e1" - }, - { - "count": 3, - "_tpl": "573476d324597737da2adc13" - } - ] - ], - "6507ff2f644a656aee0f85ba": [ - [ - { - "count": 1, - "_tpl": "590c346786f77423e50ed342" - } - ] - ], - "6507ff2f644a656aee0f85bc": [ - [ - { - "count": 36154, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85c2": [ - [ - { - "count": 1638, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85c4": [ - [ - { - "count": 35859, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85ce": [ - [ - { - "count": 2, - "_tpl": "590a3cd386f77436f20848cb" - } - ] - ], - "6507ff2f644a656aee0f85d0": [ - [ - { - "count": 874, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85d2": [ - [ - { - "count": 2196, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85d4": [ - [ - { - "count": 46, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85d6": [ - [ - { - "count": 47, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85d8": [ - [ - { - "count": 1793, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85da": [ - [ - { - "count": 8194, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85df": [ - [ - { - "count": 1, - "_tpl": "5d1b31ce86f7742523398394" - } - ] - ], - "6507ff2f644a656aee0f85e1": [ - [ - { - "count": 15260, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85e3": [ - [ - { - "count": 33336, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85e5": [ - [ - { - "count": 522, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85e7": [ - [ - { - "count": 354, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85e9": [ - [ - { - "count": 87, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85eb": [ - [ - { - "count": 43, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85ed": [ - [ - { - "count": 50090, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85f5": [ - [ - { - "count": 43069, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f85ff": [ - [ - { - "count": 2929, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8601": [ - [ - { - "count": 35475, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f860a": [ - [ - { - "count": 1, - "_tpl": "59e3658a86f7741776641ac4" - }, - { - "count": 2, - "_tpl": "5909e99886f7740c983b9984" - }, - { - "count": 1, - "_tpl": "573476d324597737da2adc13" - } - ] - ], - "6507ff2f644a656aee0f8613": [ - [ - { - "count": 1, - "_tpl": "5d4042a986f7743185265463" - }, - { - "count": 1, - "_tpl": "5c052f6886f7746b1e3db148" - }, - { - "count": 1, - "_tpl": "5733279d245977289b77ec24" - } - ] - ], - "6507ff2f644a656aee0f861a": [ - [ - { - "count": 1674, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f861c": [ - [ - { - "count": 21565, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f861e": [ - [ - { - "count": 32, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8620": [ - [ - { - "count": 121, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8622": [ - [ - { - "count": 86, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8624": [ - [ - { - "count": 3597, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8626": [ - [ - { - "count": 3015, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8628": [ - [ - { - "count": 661, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f862a": [ - [ - { - "count": 144499, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8632": [ - [ - { - "count": 694, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8634": [ - [ - { - "count": 21514, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f863e": [ - [ - { - "count": 1922, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8640": [ - [ - { - "count": 38468, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8642": [ - [ - { - "count": 48193, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f864c": [ - [ - { - "count": 35961, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f864e": [ - [ - { - "count": 145, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8650": [ - [ - { - "count": 38938, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8652": [ - [ - { - "count": 514, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8654": [ - [ - { - "count": 69, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8656": [ - [ - { - "count": 151, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8658": [ - [ - { - "count": 2152, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f865a": [ - [ - { - "count": 22670, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f865d": [ - [ - { - "count": 52512, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f865f": [ - [ - { - "count": 54, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8661": [ - [ - { - "count": 69, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8663": [ - [ - { - "count": 109, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f8665": [ - [ - { - "count": 2, - "_tpl": "54491c4f4bdc2db1078b4568" - } - ] - ], - "6507ff2f644a656aee0f8669": [ - [ - { - "count": 10194, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f866b": [ - [ - { - "count": 1307, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff2f644a656aee0f866d": [ - [ - { - "count": 161, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f866f": [ - [ - { - "count": 14, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8671": [ - [ - { - "count": 45660, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8673": [ - [ - { - "count": 77, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8675": [ - [ - { - "count": 165, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8677": [ - [ - { - "count": 2179, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8679": [ - [ - { - "count": 2640, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f867b": [ - [ - { - "count": 805, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f867d": [ - [ - { - "count": 44, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f867f": [ - [ - { - "count": 2941, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8681": [ - [ - { - "count": 73, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8683": [ - [ - { - "count": 10489, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8685": [ - [ - { - "count": 21467, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f868a": [ - [ - { - "count": 23427, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f868e": [ - [ - { - "count": 1683, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8690": [ - [ - { - "count": 50, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8692": [ - [ - { - "count": 980, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8694": [ - [ - { - "count": 2634, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8696": [ - [ - { - "count": 1642, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8698": [ - [ - { - "count": 71, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f869a": [ - [ - { - "count": 9156, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f869c": [ - [ - { - "count": 371, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f869e": [ - [ - { - "count": 41873, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86a8": [ - [ - { - "count": 767, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86aa": [ - [ - { - "count": 1, - "_tpl": "590a3cd386f77436f20848cb" - } - ] - ], - "6507ff30644a656aee0f86ac": [ - [ - { - "count": 109, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86ae": [ - [ - { - "count": 57, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86b0": [ - [ - { - "count": 13816, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86b4": [ - [ - { - "count": 54, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86b6": [ - [ - { - "count": 4251, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86b8": [ - [ - { - "count": 70, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86ba": [ - [ - { - "count": 3136, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86bc": [ - [ - { - "count": 70827, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86c5": [ - [ - { - "count": 301, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86c7": [ - [ - { - "count": 164, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86c9": [ - [ - { - "count": 4051, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86cb": [ - [ - { - "count": 1, - "_tpl": "573477e124597737dd42e191" - } - ] - ], - "6507ff30644a656aee0f86cf": [ - [ - { - "count": 8828, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86d1": [ - [ - { - "count": 1947, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86d3": [ - [ - { - "count": 784, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86d5": [ - [ - { - "count": 71, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86d7": [ - [ - { - "count": 24, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86d9": [ - [ - { - "count": 24605, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86e2": [ - [ - { - "count": 21349, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86e6": [ - [ - { - "count": 1025, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86e8": [ - [ - { - "count": 1262, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86ea": [ - [ - { - "count": 2214, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86ec": [ - [ - { - "count": 2014, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86ee": [ - [ - { - "count": 1306, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86f0": [ - [ - { - "count": 15177, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86f2": [ - [ - { - "count": 514, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86f4": [ - [ - { - "count": 10124, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86fa": [ - [ - { - "count": 5055, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86fc": [ - [ - { - "count": 3391, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f86fe": [ - [ - { - "count": 757, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8700": [ - [ - { - "count": 236, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8702": [ - [ - { - "count": 1, - "_tpl": "5d1b32c186f774252167a530" - } - ] - ], - "6507ff30644a656aee0f8704": [ - [ - { - "count": 55, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8706": [ - [ - { - "count": 11822, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8708": [ - [ - { - "count": 269, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f870a": [ - [ - { - "count": 513, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f870c": [ - [ - { - "count": 513, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f870e": [ - [ - { - "count": 14968, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8710": [ - [ - { - "count": 38072, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f871a": [ - [ - { - "count": 1, - "_tpl": "57347c5b245977448d35f6e1" - }, - { - "count": 1, - "_tpl": "57347c77245977448d35f6e2" - } - ] - ], - "6507ff30644a656aee0f8720": [ - [ - { - "count": 4, - "_tpl": "590c2b4386f77425357b6123" - } - ] - ], - "6507ff30644a656aee0f8722": [ - [ - { - "count": 559, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8724": [ - [ - { - "count": 30305, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f872c": [ - [ - { - "count": 4745, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f872e": [ - [ - { - "count": 1205, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8730": [ - [ - { - "count": 13446, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8732": [ - [ - { - "count": 34309, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f873c": [ - [ - { - "count": 3909, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f873e": [ - [ - { - "count": 4104, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8740": [ - [ - { - "count": 39037, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f874a": [ - [ - { - "count": 2255, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f874c": [ - [ - { - "count": 2, - "_tpl": "59e358a886f7741776641ac3" - } - ] - ], - "6507ff30644a656aee0f874e": [ - [ - { - "count": 926, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8750": [ - [ - { - "count": 7002, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8752": [ - [ - { - "count": 2, - "_tpl": "590a3c0a86f774385a33c450" - } - ] - ], - "6507ff30644a656aee0f8754": [ - [ - { - "count": 2, - "_tpl": "590c5a7286f7747884343aea" - }, - { - "count": 3, - "_tpl": "5d1c819a86f774771b0acd6c" - } - ] - ], - "6507ff30644a656aee0f8762": [ - [ - { - "count": 1114, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8764": [ - [ - { - "count": 1373, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8766": [ - [ - { - "count": 39278, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8768": [ - [ - { - "count": 20956, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f876a": [ - [ - { - "count": 2, - "_tpl": "5751496424597720a27126da" - }, - { - "count": 2, - "_tpl": "573476d324597737da2adc13" - } - ] - ], - "6507ff30644a656aee0f876c": [ - [ - { - "count": 35043, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8773": [ - [ - { - "count": 2637, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8775": [ - [ - { - "count": 3747, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8777": [ - [ - { - "count": 43063, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8781": [ - [ - { - "count": 7406, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8783": [ - [ - { - "count": 861, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8785": [ - [ - { - "count": 53888, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f878f": [ - [ - { - "count": 2, - "_tpl": "59faf98186f774067b6be103" - } - ] - ], - "6507ff30644a656aee0f8791": [ - [ - { - "count": 1, - "_tpl": "590a373286f774287540368b" - } - ] - ], - "6507ff30644a656aee0f8793": [ - [ - { - "count": 285, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8795": [ - [ - { - "count": 47826, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f879f": [ - [ - { - "count": 544, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87a1": [ - [ - { - "count": 526, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87a3": [ - [ - { - "count": 5, - "_tpl": "5672cb304bdc2dc2088b456a" - }, - { - "count": 8, - "_tpl": "5672cb124bdc2d1a0f8b4568" - } - ] - ], - "6507ff30644a656aee0f87ad": [ - [ - { - "count": 18857, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87af": [ - [ - { - "count": 2, - "_tpl": "5734795124597738002c6176" - } - ] - ], - "6507ff30644a656aee0f87b1": [ - [ - { - "count": 17502, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87b3": [ - [ - { - "count": 2, - "_tpl": "5b4329075acfc400153b78ff" - } - ] - ], - "6507ff30644a656aee0f87b5": [ - [ - { - "count": 44093, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87bf": [ - [ - { - "count": 2, - "_tpl": "57347da92459774491567cf5" - } - ] - ], - "6507ff30644a656aee0f87c1": [ - [ - { - "count": 1, - "_tpl": "59e35ef086f7741777737012" - }, - { - "count": 1, - "_tpl": "57347c5b245977448d35f6e1" - } - ] - ], - "6507ff30644a656aee0f87c7": [ - [ - { - "count": 2660, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87c9": [ - [ - { - "count": 15864, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87cf": [ - [ - { - "count": 1, - "_tpl": "5734770f24597738025ee254" - } - ] - ], - "6507ff30644a656aee0f87d1": [ - [ - { - "count": 1628, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87d3": [ - [ - { - "count": 1136, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87d5": [ - [ - { - "count": 1, - "_tpl": "60391afc25aff57af81f7085" - }, - { - "count": 1, - "_tpl": "5e2aee0a86f774755a234b62" - } - ] - ], - "6507ff30644a656aee0f87d9": [ - [ - { - "count": 2, - "_tpl": "5c0fa877d174af02a012e1cf" - }, - { - "count": 1, - "_tpl": "590c595c86f7747884343ad7" - } - ] - ], - "6507ff30644a656aee0f87db": [ - [ - { - "count": 833, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87dd": [ - [ - { - "count": 1106, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87df": [ - [ - { - "count": 3003, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87e1": [ - [ - { - "count": 7320, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87e3": [ - [ - { - "count": 1, - "_tpl": "590c5a7286f7747884343aea" - } - ] - ], - "6507ff30644a656aee0f87e6": [ - [ - { - "count": 42203, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87ed": [ - [ - { - "count": 24533, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87ef": [ - [ - { - "count": 34825, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87f6": [ - [ - { - "count": 806, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87f8": [ - [ - { - "count": 25448, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87fa": [ - [ - { - "count": 301, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87fc": [ - [ - { - "count": 1086, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f87fe": [ - [ - { - "count": 40049, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8800": [ - [ - { - "count": 24198, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8802": [ - [ - { - "count": 24427, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8804": [ - [ - { - "count": 6649, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff30644a656aee0f8806": [ - [ - { - "count": 4, - "_tpl": "57347cd0245977445a2d6ff1" - } - ] - ], - "6507ff31644a656aee0f8810": [ - [ - { - "count": 1773, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8812": [ - [ - { - "count": 2163, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8814": [ - [ - { - "count": 20475, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8816": [ - [ - { - "count": 1114, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8818": [ - [ - { - "count": 2344, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f881a": [ - [ - { - "count": 1766, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f881c": [ - [ - { - "count": 872, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f881e": [ - [ - { - "count": 2, - "_tpl": "5c13cef886f774072e618e82" - }, - { - "count": 2, - "_tpl": "57347c93245977448d35f6e3" - } - ] - ], - "6507ff31644a656aee0f8828": [ - [ - { - "count": 572, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f882a": [ - [ - { - "count": 958, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f882c": [ - [ - { - "count": 10770, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f882e": [ - [ - { - "count": 2434, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8830": [ - [ - { - "count": 39120, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8832": [ - [ - { - "count": 2, - "_tpl": "5d40407c86f774318526545a" - } - ] - ], - "6507ff31644a656aee0f883a": [ - [ - { - "count": 7194, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f883c": [ - [ - { - "count": 572, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f883e": [ - [ - { - "count": 1962, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8840": [ - [ - { - "count": 4088, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8842": [ - [ - { - "count": 27468, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8844": [ - [ - { - "count": 13298, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8846": [ - [ - { - "count": 1086, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8848": [ - [ - { - "count": 1743, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f884a": [ - [ - { - "count": 872, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f884c": [ - [ - { - "count": 93894, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8859": [ - [ - { - "count": 19385, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f885b": [ - [ - { - "count": 21810, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8860": [ - [ - { - "count": 68698, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f886d": [ - [ - { - "count": 1908, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f886f": [ - [ - { - "count": 371, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8871": [ - [ - { - "count": 2364, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8873": [ - [ - { - "count": 1223, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8875": [ - [ - { - "count": 436, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8877": [ - [ - { - "count": 3, - "_tpl": "57347d7224597744596b4e72" - } - ] - ], - "6507ff31644a656aee0f8881": [ - [ - { - "count": 15805, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8883": [ - [ - { - "count": 1441, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8885": [ - [ - { - "count": 628, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8887": [ - [ - { - "count": 2050, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8889": [ - [ - { - "count": 958, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f888b": [ - [ - { - "count": 872, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f888d": [ - [ - { - "count": 4905, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f888f": [ - [ - { - "count": 6301, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8891": [ - [ - { - "count": 1, - "_tpl": "5d0376a486f7747d8050965c" - }, - { - "count": 1, - "_tpl": "5c06779c86f77426e00dd782" - } - ] - ], - "6507ff31644a656aee0f8898": [ - [ - { - "count": 31610, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f889a": [ - [ - { - "count": 809, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f889c": [ - [ - { - "count": 2289, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f889e": [ - [ - { - "count": 1, - "_tpl": "59e3639286f7741777737013" - } - ] - ], - "6507ff31644a656aee0f88a0": [ - [ - { - "count": 351, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88a2": [ - [ - { - "count": 654, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88a4": [ - [ - { - "count": 2148, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88a6": [ - [ - { - "count": 7154, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88a8": [ - [ - { - "count": 258, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88aa": [ - [ - { - "count": 10038, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88ac": [ - [ - { - "count": 33790, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88ae": [ - [ - { - "count": 1036, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88b0": [ - [ - { - "count": 5, - "_tpl": "590c2c9c86f774245b1f03f2" - }, - { - "count": 5, - "_tpl": "57347cd0245977445a2d6ff1" - }, - { - "count": 5, - "_tpl": "5909e99886f7740c983b9984" - } - ] - ], - "6507ff31644a656aee0f88b7": [ - [ - { - "count": 2794, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88b9": [ - [ - { - "count": 1, - "_tpl": "590c639286f774151567fa95" - } - ] - ], - "6507ff31644a656aee0f88bb": [ - [ - { - "count": 2180, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88bd": [ - [ - { - "count": 5394, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88bf": [ - [ - { - "count": 1036, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88c1": [ - [ - { - "count": 22345, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88c3": [ - [ - { - "count": 7630, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88c5": [ - [ - { - "count": 657, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88c7": [ - [ - { - "count": 17440, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88c9": [ - [ - { - "count": 120, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88cb": [ - [ - { - "count": 280, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88cd": [ - [ - { - "count": 178405, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88cf": [ - [ - { - "count": 3052, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88d1": [ - [ - { - "count": 1867, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88d3": [ - [ - { - "count": 2, - "_tpl": "57347d9c245977448b40fa85" - }, - { - "count": 1, - "_tpl": "590c5d4b86f774784e1b9c45" - } - ] - ], - "6507ff31644a656aee0f88d5": [ - [ - { - "count": 2747, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88d7": [ - [ - { - "count": 1, - "_tpl": "575146b724597720a27126d5" - }, - { - "count": 1, - "_tpl": "57347d90245977448f7b7f65" - } - ] - ], - "6507ff31644a656aee0f88d9": [ - [ - { - "count": 1, - "_tpl": "59e35cbb86f7741778269d83" - }, - { - "count": 1, - "_tpl": "619cbf476b8a1b37a54eebf8" - } - ] - ], - "6507ff31644a656aee0f88df": [ - [ - { - "count": 9, - "_tpl": "59f32c3b86f77472a31742f0", - "level": 25, - "side": "Usec" - } - ] - ], - "6507ff31644a656aee0f88e1": [ - [ - { - "count": 138, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88e3": [ - [ - { - "count": 18137, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88ea": [ - [ - { - "count": 14416, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88ec": [ - [ - { - "count": 1, - "_tpl": "59fafb5d86f774067a6f2084" - } - ] - ], - "6507ff31644a656aee0f88ee": [ - [ - { - "count": 4, - "_tpl": "590c645c86f77412b01304d9" - } - ] - ], - "6507ff31644a656aee0f88f0": [ - [ - { - "count": 1, - "_tpl": "5d1c819a86f774771b0acd6c" - } - ] - ], - "6507ff31644a656aee0f88f2": [ - [ - { - "count": 26599, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88fa": [ - [ - { - "count": 2, - "_tpl": "5d40407c86f774318526545a" - }, - { - "count": 1, - "_tpl": "590c5f0d86f77413997acfab" - } - ] - ], - "6507ff31644a656aee0f88fc": [ - [ - { - "count": 17004, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f88fe": [ - [ - { - "count": 1, - "_tpl": "590c651286f7741e566b6461" - } - ] - ], - "6507ff31644a656aee0f8900": [ - [ - { - "count": 7848, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8902": [ - [ - { - "count": 663, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8904": [ - [ - { - "count": 15587, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8906": [ - [ - { - "count": 2868, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8908": [ - [ - { - "count": 2, - "_tpl": "59fafb5d86f774067a6f2084" - }, - { - "count": 2, - "_tpl": "5b43575a86f77424f443fe62" - } - ] - ], - "6507ff31644a656aee0f890a": [ - [ - { - "count": 4, - "_tpl": "60391a8b3364dc22b04d0ce5" - }, - { - "count": 4, - "_tpl": "60391b0fb847c71012789415" - } - ] - ], - "6507ff31644a656aee0f890c": [ - [ - { - "count": 1500, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f890e": [ - [ - { - "count": 2725, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8910": [ - [ - { - "count": 872, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8912": [ - [ - { - "count": 654, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8914": [ - [ - { - "count": 1003, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8916": [ - [ - { - "count": 8448, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8918": [ - [ - { - "count": 1, - "_tpl": "5e2aedd986f7746d404f3aa4" - }, - { - "count": 2, - "_tpl": "590a358486f77429692b2790" - } - ] - ], - "6507ff31644a656aee0f8923": [ - [ - { - "count": 1358, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8925": [ - [ - { - "count": 37457, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8927": [ - [ - { - "count": 833, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8929": [ - [ - { - "count": 1265, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f892b": [ - [ - { - "count": 981, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f892d": [ - [ - { - "count": 1, - "_tpl": "590c2b4386f77425357b6123" - } - ] - ], - "6507ff31644a656aee0f892f": [ - [ - { - "count": 1205, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8931": [ - [ - { - "count": 6210, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8933": [ - [ - { - "count": 526, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8935": [ - [ - { - "count": 6210, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8937": [ - [ - { - "count": 5263, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8939": [ - [ - { - "count": 1908, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f893b": [ - [ - { - "count": 3107, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f893d": [ - [ - { - "count": 2346, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f893f": [ - [ - { - "count": 1, - "_tpl": "5c12613b86f7743bbe2c3f76" - }, - { - "count": 2, - "_tpl": "5d0379a886f77420407aa271" - } - ] - ], - "6507ff31644a656aee0f8941": [ - [ - { - "count": 872, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8943": [ - [ - { - "count": 1, - "_tpl": "5d40407c86f774318526545a" - } - ] - ], - "6507ff31644a656aee0f894a": [ - [ - { - "count": 2553, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f894c": [ - [ - { - "count": 4273, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f894e": [ - [ - { - "count": 1698, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8950": [ - [ - { - "count": 7072, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8952": [ - [ - { - "count": 16772, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f8954": [ - [ - { - "count": 4, - "_tpl": "6389c6463485cf0eeb260715" - } - ] - ], - "6507ff31644a656aee0f895a": [ - [ - { - "count": 4654, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f895c": [ - [ - { - "count": 52974, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff31644a656aee0f895e": [ - [ - { - "count": 75025, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f896b": [ - [ - { - "count": 3502, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f896d": [ - [ - { - "count": 757, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f896f": [ - [ - { - "count": 761, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f897b": [ - [ - { - "count": 25506, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f897d": [ - [ - { - "count": 188, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f897f": [ - [ - { - "count": 2562, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8981": [ - [ - { - "count": 3815, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8983": [ - [ - { - "count": 3270, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8985": [ - [ - { - "count": 1, - "_tpl": "5d0375ff86f774186372f685" - }, - { - "count": 5, - "_tpl": "5672cb124bdc2d1a0f8b4568" - } - ] - ], - "6507ff32644a656aee0f8989": [ - [ - { - "count": 1092, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f898b": [ - [ - { - "count": 49506, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f898d": [ - [ - { - "count": 2014, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f898f": [ - [ - { - "count": 7820, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8991": [ - [ - { - "count": 1090, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8993": [ - [ - { - "count": 1330, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8995": [ - [ - { - "count": 981, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8997": [ - [ - { - "count": 2289, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8999": [ - [ - { - "count": 2, - "_tpl": "5d40407c86f774318526545a" - }, - { - "count": 3, - "_tpl": "57347d7224597744596b4e72" - } - ] - ], - "6507ff32644a656aee0f89a7": [ - [ - { - "count": 62661, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89b0": [ - [ - { - "count": 1149, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89b2": [ - [ - { - "count": 3161, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89b4": [ - [ - { - "count": 4088, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89b6": [ - [ - { - "count": 2260, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89b8": [ - [ - { - "count": 3, - "_tpl": "5d6fc78386f77449d825f9dc" - }, - { - "count": 4, - "_tpl": "61bf7b6302b3924be92fa8c3" - } - ] - ], - "6507ff32644a656aee0f89c5": [ - [ - { - "count": 2293, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89d6": [ - [ - { - "count": 4121, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89d8": [ - [ - { - "count": 13625, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89da": [ - [ - { - "count": 3636, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89dc": [ - [ - { - "count": 382, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89de": [ - [ - { - "count": 53688, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89e7": [ - [ - { - "count": 1308, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89e9": [ - [ - { - "count": 5, - "_tpl": "573475fb24597737fb1379e1" - } - ] - ], - "6507ff32644a656aee0f89f3": [ - [ - { - "count": 3, - "_tpl": "59e358a886f7741776641ac3" - } - ] - ], - "6507ff32644a656aee0f89f9": [ - [ - { - "count": 900, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89fb": [ - [ - { - "count": 91, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89fd": [ - [ - { - "count": 1092, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f89ff": [ - [ - { - "count": 872, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8a01": [ - [ - { - "count": 1106, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8a03": [ - [ - { - "count": 2, - "_tpl": "590de71386f774347051a052" - } - ] - ], - "6507ff32644a656aee0f8a0c": [ - [ - { - "count": 526, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "6507ff32644a656aee0f8a0e": [ - [ - { - "count": 18912, - "_tpl": "5449016a4bdc2d6f028b456f" - } - ] - ], - "652376e2f6c67195e4061507": [ - [ - { - "count": 1, - "_tpl": "619cbfeb6b8a1b37a54eebfa" - }, - { - "count": 1, - "_tpl": "619cbfccbedcde2f5b3f7bdd" - } - ] - ] - }, "loyal_level_items": { + "648a275aa937dd374c0d7399": 3, "6507ff2f644a656aee0f85b2": 2, "6507ff2f644a656aee0f85ba": 1, "6507ff2f644a656aee0f85bc": 2, @@ -9532,4 +9551,4 @@ "6507ff32644a656aee0f8a0e": 4, "652376e2f6c67195e4061507": 4 } -} \ No newline at end of file +} diff --git a/project/assets/database/traders/54cb50c76803fa8b248b4571/questassort.json b/project/assets/database/traders/54cb50c76803fa8b248b4571/questassort.json index c884034d..8872a6be 100644 --- a/project/assets/database/traders/54cb50c76803fa8b248b4571/questassort.json +++ b/project/assets/database/traders/54cb50c76803fa8b248b4571/questassort.json @@ -1,34 +1,35 @@ { + "fail": {}, "started": {}, "success": { - "6507ff30644a656aee0f86c9": "5ae3270f86f77445ba41d4dd", - "6507ff31644a656aee0f8883": "5ac2426c86f774138762edfe", - "6507ff32644a656aee0f8999": "5d25e2e286f77444001e2e48", - "6507ff2f644a656aee0f85d8": "60e71bb4e456d449cd47ca75", - "6507ff30644a656aee0f86ac": "59674eb386f774539f14813a", - "6507ff2f644a656aee0f861c": "5967530a86f77462ba22226b", - "6507ff30644a656aee0f8702": "59675d6c86f7740a842fc482", - "6507ff31644a656aee0f88d1": "59c512ad86f7741f0d09de9b", - "6507ff31644a656aee0f88df": "6179ac7511973d018217d0b9", + "648a275aa937dd374c0d7399": "6179b5b06e9dd54ac275e409", "6507ff2f644a656aee0f85d2": "5c0bd94186f7747a727f09b2", + "6507ff2f644a656aee0f85d8": "60e71bb4e456d449cd47ca75", + "6507ff2f644a656aee0f85ed": "59c50a9e86f7745fef66f4ff", + "6507ff2f644a656aee0f861c": "5967530a86f77462ba22226b", + "6507ff2f644a656aee0f8620": "639135b04ed9512be67647d7", + "6507ff2f644a656aee0f8632": "59ca264786f77445a80ed044", + "6507ff2f644a656aee0f864c": "5967725e86f774601a446662", + "6507ff30644a656aee0f8673": "59c50c8886f7745fed3193bf", + "6507ff30644a656aee0f8675": "639135b04ed9512be67647d7", + "6507ff30644a656aee0f868a": "59c124d686f774189b3c843f", + "6507ff30644a656aee0f86ac": "59674eb386f774539f14813a", + "6507ff30644a656aee0f86bc": "5936d90786f7742b1420ba5b", + "6507ff30644a656aee0f86c9": "5ae3270f86f77445ba41d4dd", + "6507ff30644a656aee0f8702": "59675d6c86f7740a842fc482", "6507ff30644a656aee0f87cf": "5c0bd94186f7747a727f09b2", "6507ff31644a656aee0f8832": "5d4bec3486f7743cac246665", - "6507ff2f644a656aee0f864c": "5967725e86f774601a446662", - "6507ff30644a656aee0f868a": "59c124d686f774189b3c843f", - "6507ff2f644a656aee0f85ed": "59c50a9e86f7745fef66f4ff", - "6507ff30644a656aee0f86bc": "5936d90786f7742b1420ba5b", - "6507ff31644a656aee0f88e3": "59674cd986f7744ab26e32f2", - "6507ff30644a656aee0f8673": "59c50c8886f7745fed3193bf", - "6507ff2f644a656aee0f8632": "59ca264786f77445a80ed044", + "6507ff31644a656aee0f8883": "5ac2426c86f774138762edfe", "6507ff31644a656aee0f8898": "6179acbdc760af5ad2053585", "6507ff31644a656aee0f88a6": "5bc4893c86f774626f5ebf3e", - "6507ff2f644a656aee0f8620": "639135b04ed9512be67647d7", - "6507ff30644a656aee0f8675": "639135b04ed9512be67647d7", - "652376e2f6c67195e4061507": "64e7b9a4aac4cd0a726562cb", + "6507ff31644a656aee0f88d1": "59c512ad86f7741f0d09de9b", + "6507ff31644a656aee0f88df": "6179ac7511973d018217d0b9", + "6507ff31644a656aee0f88e3": "59674cd986f7744ab26e32f2", "6507ff31644a656aee0f893f": "63a9ae24009ffc6a551631a5", + "6507ff31644a656aee0f8954": "64e7b99017ab941a6f7bf9d7", "6507ff31644a656aee0f895c": "63a9ae24009ffc6a551631a5", + "6507ff32644a656aee0f8999": "5d25e2e286f77444001e2e48", "6507ff32644a656aee0f8a03": "64f5aac4b63b74469b6c14c2", - "6507ff31644a656aee0f8954": "64e7b99017ab941a6f7bf9d7" - }, - "fail": {} -} \ No newline at end of file + "652376e2f6c67195e4061507": "64e7b9a4aac4cd0a726562cb" + } +}