sreVadmiral\admiral.hC_description.extԹ>_vhull3\briefing\blufor.sqfw.I_}hull3\hull3.hC_hull3\LICENSE_0X8init.sqf?4I_initServer.sqf6I_mission.sqm8I_class Admiral { isEnabled = 1; class Camp { defaultUnitTemplate = "GM_PRL_80_SN"; defaultZoneTemplate = "Camp"; }; class Patrol { defaultUnitTemplate = "GM_PRL_80_SN"; defaultZoneTemplate = "Patrol"; }; class Cqc { defaultUnitTemplate = "GM_PRL_80_SN"; defaultZoneTemplate = "Cqc"; }; class UnitTemplates { class GM_PRL_80_SN { side = "east"; camouflage[] = {"snow"}; technicals[] = {"CUP_O_UAZ_MG_RU", "CUP_O_UAZ_MG_RU", "CUP_O_UAZ_AGS30_RU"}; armour[] = {"gm_pl_army_brdm2", "gm_pl_army_ot64a", "gm_pl_army_bmp1sp2", "gm_pl_army_pt76b","gm_pl_army_t55a","gm_pl_army_zsu234v1"}; }; }; }; #include "admiral\admiral.h" #include "hull3\hull3.h" enableDebugConsole = 1; disableChannels[]={{2,true,true},{4,true,true},{6,true,true}}; onLoadName = "Into the Breach"; onLoadMission = "Made with Hull3"; author = "Jarate"; loadScreen = "x\ark\addons\hull3\resources\hull3_logo.paa"; class Header { gameType = Coop; minPlayers = 1; maxPlayers = 77; }; respawn = 0; respawndelay = 3; respawnTemplates[] = {"Hull3_RespawnHandler"}; class Params { class Hull3_Date { title = "Moon Phase"; values[] = {0,1}; texts[] = {"New Moon", "Full Moon"}; default = 1; code = "hull3_mission_date = %1"; }; class Hull3_TimeOfDay { title = "Time of Day"; values[] = {0,1,2,3,4,5,6,7}; texts[] = {"Dawn", "Early Morning", "Morning", "Noon", "Afternoon", "Evening", "Dusk", "Night"}; default = 2; code = "hull3_mission_timeOfDay = %1"; }; class Hull3_Fog { title = "Fog"; values[] = {0,1,2}; texts[] = {"None", "Light", "Heavy"}; default = 0; code = "hull3_mission_fog = %1"; }; class Hull3_Weather { title = "Weather"; values[] = {0,1,2,3,4,5,6,7,8,9}; texts[] = {"Random", "Clear (Calm)", "Clear (Light Winds)", "Clear (Strong Winds)", "Overcast (Calm)", "Overcast (Light Winds)", "Overcast (Strong Winds)", "Rain (Light Winds)", "Rain (Strong Winds)", "Storm"}; default = 1; code = "hull3_mission_weather = %1"; }; class Hull3_SafetyTimer { title = "Safety Timer"; values[] = {9999,0}; texts[] = {"On", "Off"}; default = 9999; code = "hull3_mission_safetyTimerEnd = %1"; }; }; class CfgDebriefingSections { class acex_killTracker { title = "Acex Killed Events"; variable = "acex_killTracker_outputText"; }; }; allowProfileGlasses = 0; // OPFOR Notes // Credits player createDiaryRecord ["Diary", ["Credits", "
Made by Jarate. "]]; // Administration player createDiaryRecord ["Diary", ["Administration","
Do the objectives in the order shown.

Rearm and Refuel trucks for choppers are available here. ground vehicles can rearm off each other.

Trucks are available as a alternative to APCs and Commander gets a choice between personel Fuchs, Jeep or Truck. "]]; // Execution player createDiaryRecord ["Diary", ["Execution","
COMMANDER'S INTENT
Break Polish and East German forces in the area.

MOVEMENT PLAN
Use Fuchs to move troops near to objectives and MOVE WITH CAUTION. 7.62 is deadly.

FIRE SUPPORT PLAN
Use your assets to suppress enemy forces. If Slotted, DHAT have a backup MAAWS if their vehicle(s) are destroyed. "]]; // Mission player createDiaryRecord ["Diary", ["Mission","
Objective One:
Recapture Bahrdorf.

Objective Two:
Clear and destroy assets at the East German Heliport.

Objective Three:
Clear and destroy assets at the concealed Field Battery.

Objective Four:
Kill the Polish Divisional Commander at his Headquarters.

Objective Five:
Capture and hold the chemical Weapons Lab.


"]]; // Situation player createDiaryRecord ["Diary", ["Situation","
The Polish have made an incursion in our sector - push them back and remind them not to do it again.

ENEMY FORCES
Polish and East German forces.

FRIENDLY FORCES
Upto three squads of Panzergrendiers supported by a mixture of APCs, Tanks, AT choppers and/or Milan equipped Fuchs. "]]; class Hull3 { isEnabled = 1; class Briefing { blufor = "hull3\briefing\blufor.sqf"; opfor = "hull3\briefing\opfor.sqf"; indfor = "hull3\briefing\indfor.sqf"; civilian = "hull3\briefing\civilian.sqf"; }; class Faction { class CUP_GER_DE { gear = "G3A4_FRG"; uniform = "GM_FRG_80_SN"; }; }; };The MIT License (MIT) Copyright (c) 2014 László Major Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.{ _x setVariable ["gm_device_enabled", false] } forEach (entities [["land_gm_computer_teleraet_81_r","land_gm_computer_teleraet_81_m","land_gm_computer_teleraet_81_fs"], []]);ark_missionName_fnc_buildingFiller = { params ["_building"]; private _buildingPositions = _building buildingPos -1; private _unitTemplate = adm_camp_defaultUnitTemplate; private _side = [_unitTemplate] call adm_common_fnc_getUnitTemplateSide; private _grp = createGroup _side; private _unitArray = getArray (configfile >> "Admiral" >> "UnitTemplates" >> _unitTemplate >> "infantry"); private _scaledBuildingPositions = []; for "_i" from 0 to (count _buildingPositions -1) step 2 do { _scaledBuildingPositions pushBack (_buildingPositions select _i); }; { private _unitRandom = selectRandom _unitArray; private _unit = _grp createUnit [_unitRandom, _x, [], 0, "CAN_COLLIDE"]; [_unit,true] call ark_ai_sentry_fnc_make_sentry; _grp enableDynamicSimulation true; } forEach _scaledBuildingPositions; }; ark_fnc_cleanUpAI = { params ["_trigger"]; private _side = [adm_camp_defaultUnitTemplate] call adm_common_fnc_getUnitTemplateSide; { if ((side _x == _side) && (!isPlayer _x) && (_x inArea _trigger)) then { if (isNull objectParent _x) then { deleteVehicle _x; } else { private _vehicle = objectParent _x; {_vehicle deleteVehicleCrew _x} forEach crew _vehicle; deleteVehicle _vehicle; }; }; } forEach allUnits; };raPversion5EditorData addonsgm_vehicles_land_tracked_leopard1_ge_army_leopard1gm_coregm_structures_euro_80A3_Structures_F_Enoch_Military_BarracksA3_Modules_Fgm_vehicles_land_wheeled_iltis_ge_army_iltisgm_vehicles_land_wheeled_fuchs_ge_army_fuchsgm_objects_fortificationadmiralark_rotorgm_characters_pl_charactersgm_characters_gc_charactersark_clear_cargoark_ai_sentryA3_Modules_F_Curator_MiscCUP_Creatures_StaticWeaponsark_ace_rearmA3_Characters_FCUP_CAMiscgm_vehicles_air_helicopters_bo105_ge_army_bo105gm_vehicles_land_wheeled_kat1_ge_army_kat1A3_Ui_Fgm_weapons_pistols_pmgm_weapons_equipment_binoculars_df7x40A3_Weapons_Fgm_weapons_items_gc_itemsacre_mainark_vestsacre_sys_oe303gm_weapons_rifles_ak47gm_weapons_ammoboxesOPXmiscCUP_Misc3_ConfigA3_Props_F_Orange_Furnituregm_objects_barrelCUP_Editor_Structures_ConfigA3_Structures_F_Exp_Civilian_AccessoriesA3_Props_F_Enoch_Items_Documentsgm_vehicles_land_wheeled_brdm2_pl_army_brdm2gm_vehicles_land_tracked_bmp1_pl_army_bmp1CUP_Weapons_ItemsA3_Props_F_Orange_Humanitarian_CampsA3_Structures_F_Items_DocumentsA3_Structures_F_Civ_Campingcba_xehA3_Structures_F_Enoch_Civilian_AccessoriesA3_Props_F_Enoch_Civilian_GarbageCUP_Misc_e_ConfigA3_Structures_F_Enoch_Industrial_AgricultureA3_Structures_F_Mil_Helipadsgm_weapons_machineguns_pkA3_Weapons_F_OrangeA3_Structures_F_EPB_Items_Documentsgm_vehicles_air_helicopters_mi2_pl_airforce_mi2A3_Structures_F_Heli_Items_Electronicsgm_vehicles_land_wheeled_p601_gc_army_p601gm_objects_palletplp_containersgm_vehicles_land_tracked_pt76_pl_army_pt76A3_Structures_F_EPB_Furnituregm_vehicles_land_wheeled_ot64_pl_army_ot64gm_objects_tentsCUP_CAStructures_E_Misc_Misc_InterierCUP_CWA_Miscgm_vehicles_land_wheeled_ural4320_pl_army_ural4320gm_vehicles_land_wheeled_ural375d_pl_army_ural375dCUP_Editor_Buildings_ConfigA3_Structures_F_Heli_Ind_Airportark_custom_unitsA3_Characters_F_EnochA3_Weapons_F_Itemsace_medical_engineace_medical_treatmentgm_characters_ge_charactersmnp_opforA3_Missions_F_OldmanA3_Props_F_Orange_Humanitarian_GarbageA3_Props_F_Enoch_Military_DecontaminationA3_Structures_F_EPA_Items_ToolsA3_Props_F_Orange_Humanitarian_SuppliesA3_Structures_F_Items_VesselsA3_Structures_F_Enoch_Civilian_CampsA3_Structures_F_WallsA3_Structures_F_FurnitureA3_Structures_F_Heli_Items_AirportA3_Structures_F_EPA_Items_MedicalA3_Structures_F_Enoch_Industrial_GaragesA3_Structures_F_Heli_Civ_ConstructionsCUP_CAStructures_IndPipe1_todo_deleteA3_Structures_F_Enoch_Industrial_Pipesgm_objects_computersA3_Structures_F_Enoch_Military_RadarA3_Structures_F_Enoch_WrecksA3_Structures_F_Items_StationeryA3_Structures_F_Civ_ConstructionsCUP_CAStructures_E_Misc_Misc_cablesA3_Structures_F_Heli_Ind_MachinesA3_Props_F_Exp_Infrastructure_RailwaysA3_Structures_F_Argo_Infrastructure_WaterSupplyA3_Structures_F_Exp_Industrial_SugarCaneFactory_01A3_Structures_F_Enoch_Industrial_MaterialsA3_Props_F_Enoch_Industrial_ElectricA3_Structures_F_Orange_Signs_SpecialA3_Props_F_Exp_Commercial_Marketace_cargoace_draggingCUP_Weapons_MakarovCUP_Weapons_AmmunitionCUP_Creatures_Military_RussiaCUP_WheeledVehicles_UralA3_Supplies_F_Heli_CargoNetsA3_Structures_F_Argo_Decals_HorizontalA3_Structures_F_Enoch_Decals_HorizontalA3_Structures_F_SystemCUP_Terrains_Winter_Objectsgm_vehicles_land_wheeled_btr60_gc_army_btr60CUP_WheeledVehicles_UAZA3_Props_F_Orange_Items_DecorativeA3_Structures_F_Civ_MarketA3_Structures_F_Heli_Civ_MarketA3_Signs_FA3_Structures_F_Items_Toolsgm_objects_canisterA3_Structures_F_Bootcamp_Civ_SportsGroundsA3_Structures_F_Civ_AccessoriesA3_Structures_F_Exp_Industrial_Materialsgm_vehicles_air_helicopters_mi2_gc_airforce_mi2CUP_Misc_DBE1gm_vehicles_land_wheeled_ural4320_gc_army_ural4320gm_vehicles_land_wheeled_ural375d_gc_army_ural375dA3_Structures_F_Enoch_Military_TrainingA3_Structures_F_Oldman_DecalsA3_Modules_F_Effectsgm_vehicles_land_wheeled_ural4320_gc_bgs_ural4320gm_vehicles_land_wheeled_p601_gc_bgs_p601A3_Data_F_ParticleEffectsgm_vehicles_land_wheeled_brdm2_gc_army_brdm2AddonsMetaDataQrandomSeedScenarioDataHCustomAttributesGIMissionJ moveGridStep?angleGridStep >scaleGridStep?autoGroupingDist AtogglesItemIDProviderMarkerIDProviderLayerIndexProviderCameraQnextID"nextIDnextID,posE!EC@FtFdir m C>upo50?<aside>Pm?QListaHeitemsdItem0Item1Item27Item3Item4dItem5Item6Item7?Item8Item9Item10_Item11Item12wItem13Item14QItem15Item16/Item17Item18# Item19R Item20!Item21!Item22""Item23"Item24D#Item25#Item26R$Item27$Item28#%Item29%Item30&Item31&Item32&Item33&Item34'Item35(Item36Z(Item37(Item38{)Item39)*Item40*Item41+Item42+Item432,Item44o,Item45-Item46-Item47+.Item48.Item49O/Item500Item510Item52B1Item531Item541Item552Item56E3Item573Item58 4Item59S4Item60 5Item615Item626Item636Item64#7Item657Item668Item678Item688Item69F9Item709Item71C:Item72:Item73\;Item74;Item75K<Item76<Item77p=Item78>Item79^>Item80>Item81?Item82H?Item83?Item84?Item85y@Item86@Item87AItem88AItem89_BItem90BItem91xCItem92,DItem93aDItem94EItem95EItem96gFItem97GItem98GItem99?HHclassNamegm_vehicles_land_tracked_leopard1_ge_army_leopard1namegm_vehicles_land_tracked_leopard1_ge_army_leopard1authorGlobal Mobilizationurlglobal-mobilization.comclassNamegm_corenamegm_coreauthorGlobal Mobilizationurlglobal-mobilization.com7classNamegm_structures_euro_80namegm_structures_euro_80authorGlobal Mobilizationurlglobal-mobilization.comclassNameA3_Structures_F_Enoch_MilitarynameArma 3 Contact Platform - Military Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.comdclassNameA3_Modules_FnameArma 3 Alpha - Scripted ModulesauthorBohemia Interactiveurlhttps://www.arma3.comclassNamegm_vehicles_land_wheeled_iltis_ge_army_iltisnamegm_vehicles_land_wheeled_iltis_ge_army_iltisauthorGlobal Mobilizationurlglobal-mobilization.comclassNamegm_vehicles_land_wheeled_fuchs_ge_army_fuchsnamegm_vehicles_land_wheeled_fuchs_ge_army_fuchsauthorGlobal Mobilizationurlglobal-mobilization.com?classNamegm_objects_fortificationnamegm_objects_fortificationauthorGlobal Mobilizationurlglobal-mobilization.comclassNameAdmiralnameadmiralauthorKamiclassNameark_rotornameARK Inhouse - RotorauthorARKurlhttp://www.ark-group.org_classNamegm_characters_pl_charactersnamegm_characters_pl_charactersauthorGlobal Mobilizationurlglobal-mobilization.comclassNamegm_characters_gc_charactersnamegm_characters_gc_charactersauthorGlobal Mobilizationurlglobal-mobilization.comwclassNameark_clear_cargonameARK Inhouse - Clear CargoauthorARKurlhttp://www.ark-group.orgclassNameark_ai_sentrynameARK Inhouse - AI SentryauthorARKurlhttp://www.ark-group.orgQclassNameA3_Modules_F_CuratornameArma 3 Zeus Update - Scripted ModulesauthorBohemia Interactiveurlhttps://www.arma3.comclassNameCUP_Creatures_StaticWeaponsnameCUP_Creatures_StaticWeapons/classNameark_ace_rearmnameARK Inhouse - ACE RearmauthorARKurlhttp://www.ark-group.orgclassNameA3_Characters_FnameArma 3 Alpha - Characters and ClothingauthorBohemia Interactiveurlhttps://www.arma3.com# classNameCUP_CAMiscnameCUP_CAMiscR classNamegm_vehicles_air_helicopters_bo105_ge_army_bo105namegm_vehicles_air_helicopters_bo105_ge_army_bo105authorGlobal Mobilizationurlglobal-mobilization.com!classNamegm_vehicles_land_wheeled_kat1_ge_army_kat1namegm_vehicles_land_wheeled_kat1_ge_army_kat1authorGlobal Mobilizationurlglobal-mobilization.com!classNameA3_Ui_FnameArma 3 - User InterfaceauthorBohemia Interactiveurlhttps://www.arma3.com""classNamegm_weapons_pistols_pmnamegm_weapons_pistols_pmauthorGlobal Mobilizationurlglobal-mobilization.com"classNamegm_weapons_equipment_binoculars_df7x40namegm_weapons_equipment_binoculars_df7x40authorGlobal Mobilizationurlglobal-mobilization.comD#classNameA3_Weapons_FnameArma 3 Alpha - Weapons and AccessoriesauthorBohemia Interactiveurlhttps://www.arma3.com#classNamegm_weapons_items_gc_itemsnamegm_weapons_items_gc_itemsauthorGlobal Mobilizationurlglobal-mobilization.comR$classNameacre_mainnameACRE2 - MainauthorACRE2Teamurlhttps://github.com/IDI-Systems/acre2$classNameark_vestsnameARK Inhouse - VestsauthorARKurlhttp://www.ark-group.org#%classNameacre_sys_oe303nameACRE2 - OE-303authorACRE2Teamurlhttps://github.com/IDI-Systems/acre2%classNamegm_weapons_rifles_ak47namegm_weapons_rifles_ak47authorGlobal Mobilizationurlglobal-mobilization.com&classNamegm_weapons_ammoboxesnamegm_weapons_ammoboxesauthorGlobal Mobilizationurlglobal-mobilization.com&classNameOPXmiscnameOPXmisc&classNameCUP_Misc3_ConfignameCUP_Misc3_Config&classNameA3_Props_F_OrangenameArma 3 Orange - Decorative and Mission ObjectsauthorBohemia Interactiveurlhttps://www.arma3.com'classNamegm_objects_barrelnamegm_objects_barrelauthorGlobal Mobilizationurlglobal-mobilization.com(classNameCUP_Editor_Structures_ConfignameCUP_Editor_Structures_ConfigZ(classNameA3_Structures_F_Exp_CiviliannameArma 3 Apex - Civilian BuildingsauthorBohemia Interactiveurlhttps://www.arma3.com(classNameA3_Props_F_EnochnameArma 3 Enoch - Decorative and Mission ObjectsauthorBohemia Interactiveurlhttps://www.arma3.com{)classNamegm_vehicles_land_wheeled_brdm2_pl_army_brdm2namegm_vehicles_land_wheeled_brdm2_pl_army_brdm2authorGlobal Mobilizationurlglobal-mobilization.com)*classNamegm_vehicles_land_tracked_bmp1_pl_army_bmp1namegm_vehicles_land_tracked_bmp1_pl_army_bmp1authorGlobal Mobilizationurlglobal-mobilization.com*classNameCUP_Weapons_ItemsnameCUP_Weapons_Items+classNameA3_Structures_FnameArma 3 - Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.com+classNameA3_Structures_F_Enoch_CiviliannameArma 3 Contact Platform - Civilian BuildingsauthorBohemia Interactiveurlhttps://www.arma3.com2,classNameCUP_Misc_e_ConfignameCUP_Misc_e_Configo,classNameA3_Structures_F_Enoch_IndustrialnameArma 3 Contact Platform - Industrial StructuresauthorBohemia Interactiveurlhttps://www.arma3.com-classNameA3_Structures_F_MilnameArma 3 - Military Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.com-classNamegm_weapons_machineguns_pknamegm_weapons_machineguns_pkauthorGlobal Mobilizationurlglobal-mobilization.com+.classNameA3_Weapons_F_OrangenameArma 3 Orange - Weapons and AccessoriesauthorBohemia Interactiveurlhttps://www.arma3.com.classNameA3_Structures_F_EPBnameArma 3 Adapt Episode - Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.comO/classNamegm_vehicles_air_helicopters_mi2_pl_airforce_mi2namegm_vehicles_air_helicopters_mi2_pl_airforce_mi2authorGlobal Mobilizationurlglobal-mobilization.com0classNameA3_Structures_F_HelinameArma 3 Helicopters - Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.com0classNamegm_vehicles_land_wheeled_p601_gc_army_p601namegm_vehicles_land_wheeled_p601_gc_army_p601authorGlobal Mobilizationurlglobal-mobilization.comB1classNamegm_objects_palletnamegm_objects_palletauthorGlobal Mobilizationurlglobal-mobilization.com1classNameplp_containersnameplp_containers1classNamegm_vehicles_land_tracked_pt76_pl_army_pt76namegm_vehicles_land_tracked_pt76_pl_army_pt76authorGlobal Mobilizationurlglobal-mobilization.com2classNamegm_vehicles_land_wheeled_ot64_pl_army_ot64namegm_vehicles_land_wheeled_ot64_pl_army_ot64authorGlobal Mobilizationurlglobal-mobilization.comE3classNamegm_objects_tentsnamegm_objects_tentsauthorGlobal Mobilizationurlglobal-mobilization.com3classNameCUP_CAStructures_E_Misc_Misc_InteriernameCUP_CAStructures_E_Misc_Misc_Interier 4classNameCUP_CWA_MiscnameCUP_CWA_MiscS4classNamegm_vehicles_land_wheeled_ural4320_pl_army_ural4320namegm_vehicles_land_wheeled_ural4320_pl_army_ural4320authorGlobal Mobilizationurlglobal-mobilization.com 5classNamegm_vehicles_land_wheeled_ural375d_pl_army_ural375dnamegm_vehicles_land_wheeled_ural375d_pl_army_ural375dauthorGlobal Mobilizationurlglobal-mobilization.com5classNameCUP_Editor_Buildings_ConfignameCUP_Editor_Buildings_Config6classNameark_custom_unitsnameARK Inhouse - Custom UnitsauthorARKurlhttp://www.ark-group.org6classNameA3_Characters_F_EnochnameArma 3 Contact Platform - Characters and ClothingauthorBohemia Interactiveurlhttps://www.arma3.com#7classNameace_medical_enginenameACE3 - Medical EngineauthorACE-Teamurlhttp://ace3mod.com/7classNameace_medical_treatmentnameACE3 - Medical TreatmentauthorACE-Teamurlhttp://ace3mod.com/8classNamegm_characters_ge_charactersnamegm_characters_ge_charactersauthorGlobal Mobilizationurlglobal-mobilization.com8classNamemnp_opfornamemnp_opfor8classNameA3_Missions_F_OldmannameArma 3 Oldman - Playable ContentauthorBohemia Interactiveurlhttps://www.arma3.comF9classNameA3_Structures_F_EPAnameArma 3 Survive Episode - Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.com9classNameCUP_CAStructures_IndPipe1_todo_deletenameCUP_CAStructures_IndPipe1_todo_deleteC:classNamegm_objects_computersnamegm_objects_computersauthorGlobal Mobilizationurlglobal-mobilization.com:classNameA3_Structures_F_EnochnameArma 3 Contact Platform - Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.com\;classNameCUP_CAStructures_E_Misc_Misc_cablesnameCUP_CAStructures_E_Misc_Misc_cables;classNameA3_Props_F_ExpnameArma 3 Apex - Decorative and Mission ObjectsauthorBohemia Interactiveurlhttps://www.arma3.comK<classNameA3_Structures_F_ArgonameArma 3 Malden - Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.com<classNameA3_Structures_F_Exp_IndustrialnameArma 3 Apex - Industrial StructuresauthorBohemia Interactiveurlhttps://www.arma3.comp=classNameA3_Structures_F_OrangenameArma 3 Orange - Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.com>classNameace_cargonameACE3 - CargoauthorACE-Teamurlhttp://ace3mod.com/^>classNameace_draggingnameACE3 - DraggingauthorACE-Teamurlhttp://ace3mod.com/>classNameCUP_Weapons_MakarovnameCUP_Weapons_Makarov?classNameCUP_Weapons_AmmunitionnameCUP_Weapons_AmmunitionH?classNameCUP_Creatures_Military_RussianameCUP_Creatures_Military_Russia?classNameCUP_WheeledVehicles_UralnameCUP_WheeledVehicles_Ural?classNameA3_Supplies_F_HelinameArma 3 Helicopters - Ammoboxes and SuppliesauthorBohemia Interactiveurlhttps://www.arma3.comy@classNameCUP_Terrains_Winter_ObjectsnameCUP_Terrains_Winter_ObjectsauthorCUP Terrains - Community Upgrade Project@classNamegm_vehicles_land_wheeled_btr60_gc_army_btr60namegm_vehicles_land_wheeled_btr60_gc_army_btr60authorGlobal Mobilizationurlglobal-mobilization.comAclassNameCUP_WheeledVehicles_UAZnameCUP_WheeledVehicles_UAZAclassNameA3_Signs_FnameArma 3 - SignsauthorBohemia Interactiveurlhttps://www.arma3.com_BclassNamegm_objects_canisternamegm_objects_canisterauthorGlobal Mobilizationurlglobal-mobilization.comBclassNameA3_Structures_F_BootcampnameArma 3 Bootcamp Update - Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.comxCclassNamegm_vehicles_air_helicopters_mi2_gc_airforce_mi2namegm_vehicles_air_helicopters_mi2_gc_airforce_mi2authorGlobal Mobilizationurlglobal-mobilization.com,DclassNameCUP_Misc_DBE1nameCUP_Misc_DBE1aDclassNamegm_vehicles_land_wheeled_ural4320_gc_army_ural4320namegm_vehicles_land_wheeled_ural4320_gc_army_ural4320authorGlobal Mobilizationurlglobal-mobilization.comEclassNamegm_vehicles_land_wheeled_ural375d_gc_army_ural375dnamegm_vehicles_land_wheeled_ural375d_gc_army_ural375dauthorGlobal Mobilizationurlglobal-mobilization.comEclassNameA3_Structures_F_OldmannameArma 3 Oldman - Buildings and StructuresauthorBohemia Interactiveurlhttps://www.arma3.comgFclassNamegm_vehicles_land_wheeled_ural4320_gc_bgs_ural4320namegm_vehicles_land_wheeled_ural4320_gc_bgs_ural4320authorGlobal Mobilizationurlglobal-mobilization.comGclassNamegm_vehicles_land_wheeled_p601_gc_bgs_p601namegm_vehicles_land_wheeled_p601_gc_bgs_p601authorGlobal Mobilizationurlglobal-mobilization.comGclassNameA3_Data_FnameArma 3 - Main ConfigurationauthorBohemia Interactiveurlhttps://www.arma3.com?HclassNamegm_vehicles_land_wheeled_brdm2_gc_army_brdm2namegm_vehicles_land_wheeled_brdm2_gc_army_brdm2authorGlobal Mobilizationurlglobal-mobilization.comHauthorJarateHeaderIGIgameTypeCoopminPlayersmaxPlayersPGICategory0\IJnameMultiplayerAttribute0InAttributesJpropertyRespawnTemplatesexpressiontrueValueIJdataIJtypeJvalueJJtypeARRAYJitemsItem02JJdataBJJtypeoJvalueHull3_RespawnHandlerJtypeSTRINGJIntelJEntitiesnLConnections briefingNameark_co80_into_the_breachoverviewTextA chilly war goes hot. [Slot APC per Sqd, Mix and match AH/TNK/DHAT]timeOfChangesFstartWeather?startWind=startWaves=forecastWeather?forecastWind=forecastWaves=forecastLightnings=wavesForcedwindForcedyearmonthday hour minutestartFogBasezCstartFogDecayB`e<forecastFogDecayB`esposition.EB9VtFanglesu@|ssdataTypeLogicPositionInfo"tareaSize@@flagsidtypeModuleHideTerrainObjects_FatlOffsetCustomAttributesBtupositionE@B@tFBtAttribute0ztAttribute1unAttributesuproperty#filterexpression_this setVariable ["#filter",_value]ValuetudatatutypetvaluepAutypeSCALARuproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValuequudatauutypeuvalueutypeBOOLu dataTypeObjectPositionInfoNvsideEmptyflagsAttributesvidtypegm_ge_army_iltis_mg3atlOffset7CustomAttributesvĆpositionEB5ItFanglesd2@vlockLOCKEDtexturesgm_ge_olwv Attribute0wAttribute1pxAttribute2[yAttribute3~Attribute4|Attribute5gAttribute6OAttribute75Attribute8Attribute9 Attribute10Attribute11مnAttributes Ćpropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value0xpxdata@xpxtype[xvalue-1pxtypeSTRINGpxpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuey[ydata+y[ytypeFyvalue-1[ytypeSTRING[ypropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valuelz~data|z~typezvaluez~typeARRAYzitemsItem0zItem1{~dataz{typez{typeARRAY{data{~type2{valueF{~typeARRAYF{ items Item0{Item1|Item2O|Item3|Item4|Item5.}Item6o}Item7}Item8~Item9U~~data{|type{valuewindshield|typeSTRING|data|O|type:|valueO|typeSCALARO|data_||type|valuedoorBag_unhide|typeSTRING|data||type|value?|typeSCALAR|data|.}type}valuebeacon_01_org_unhide.}typeSTRING.}data>}o}typeZ}valueo}typeSCALARo}data}}type}valuebeacon_01_blu_unhide}typeSTRING}data}~type}value?~typeSCALAR~data~U~type@~valuecoldWeatherKit_unhideU~typeSTRINGU~datae~~type~value?~typeSCALAR~propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value<|dataL|typegvalue-1|typeSTRING|propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value'gdata7gtypeRvalue-1gtypeSTRINGgpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueOdataOtype:value-1OtypeSTRINGOpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value5data5type value-15typeSTRING5propertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value߂datatype value-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueʃ dataڃ typevalue-1 typeSTRING propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypeۄvalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueمdataمtypeąvalue-1مtypeSTRINGمpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueĆdataĆtypevalue-1ĆtypeSTRINGĆ dataTypeObjectPositionInfoisideEmptyflagsAttributesidtypegm_ge_army_fuchsa0_engineeratlOffsetX9CustomAttributes+positionPEBT>uFangles+@lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olw+Attribute0'Attribute1Attribute2Attribute3Attribute4|Attribute5bAttribute6MAttribute75Attribute8Attribute9^Attribute10HAttribute113Attribute12Attribute13nAttributespropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueΉdataމtypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValuedataɊtypevalue-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value datatype5valueItypeARRAYIitemsItem0qItem1datatypetypeARRAYdatatypeЌvaluetypeARRAYitemsItem0Item1Item2'Item3wItem4Item5 Item6KItem7Item8ޏItem9-Item10nItem11Item12Item13VdatatypeэvalueStowingBox_01_unhidetypeSTRINGdata'typevalue'typeSCALAR'data7wtypebvalueringbuoy_01_unhidewtypeSTRINGwdatatypevaluetypeSCALARdataȎ typevaluebeacon_01_org_unhide typeSTRING dataKtype6valueKtypeSCALARKdata[typevaluebeacon_01_blu_unhidetypeSTRINGdataޏtypeɏvalueޏtypeSCALARޏdata-typevalueCamoNet_01_unhide-typeSTRING-data=ntypeYvalue?ntypeSCALARndata~typevalueCamoNet_02_rack_unhidetypeSTRINGdataҐtypevaluetypeSCALARdataVtypeAvalueSignsExtraWide_unhideVtypeSTRINGVdataftypevaluetypeSCALARpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value<|dataL|typegvalue-1|typeSTRING|propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value"bdata2btypeMvalue-1btypeSTRINGbpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value MdataMtype8value-1MtypeSTRINGMpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value5data5type value-15typeSTRING5propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueەdatatypevalue-1typeSTRINGpropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Valueu^data^typeIvalue[[[["gm_p2a1_blk"],[1]],[["gm_handgrenade_frag_dm51a1","gm_smokeshell_wht_dm25","gm_smokeshell_grn_dm21","gm_smokeshell_red_dm23","gm_1Rnd_265mm_flare_multi_red_DM23","gm_1Rnd_265mm_flare_multi_grn_DM21","gm_1Rnd_265mm_flare_multi_nbc_DM47","gm_1Rnd_265mm_flare_single_wht_DM15","gm_1Rnd_265mm_flare_single_red_DM13","gm_1Rnd_265mm_flare_single_grn_DM11","gm_1Rnd_265mm_flare_single_yel_DM10","gm_120Rnd_762x51mm_B_T_DM21A1_mg3_grn","gm_20Rnd_762x51mm_B_DM41_g3_blk","gm_explosive_petn_charge","gm_mine_ap_dm31","gm_mine_at_dm21"],[12,4,4,4,4,4,4,4,4,4,4,8,20,8,8,4]],[["gm_ferod16_oli","gm_ge_army_gauzeBandage","gm_ge_army_burnBandage","gm_repairkit_01"],[1,4,4,4]],[[],[]]],false]^typeSTRING^propertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueHdataHtype3value-1HtypeSTRINGHpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value3data3typevalue-13typeSTRING3propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueٛdatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueœdataҜtypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatype؝value-1typeSTRINGdataTypeObjectPositionInfo}sideEmptyflagsAttributesidtypeland_gm_sandbags_01_round_01atlOffsetӞpositionEMBCtFangles6@disableSimulationӞdataTypeObjectPositionInfoSsideEmptyflagsAttributesidtypeland_gm_sandbags_01_short_01positionEB8]tFangles{4*@disableSimulation dataTypeObjectPositionInfoNsideEmptyflagsAttributesidtypegm_ge_army_fuchsa0_engineeratlOffset;CustomAttributesҶpositionE(B~uFangles)@;lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olwAttribute0 Attribute1Attribute2ޣAttribute3|Attribute4aAttribute5GAttribute62Attribute7Attribute8Attribute9CAttribute10-Attribute11Attribute12Attribute13nAttributesҶpropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedataâtypeޢvalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueޣdataޣtypeɣvalue-1ޣtypeSTRINGޣpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value|data|typevalue.|typeARRAY.itemsItem0VItem1|dataftypevtypeARRAYdata|typevalueɥ|typeARRAYɥitemsItem0yItem1˦Item2 Item3\Item4Item5Item60Item7Item8èItem9Item10SItem11Item12Item13;|data˦typevalueStowingBox_01_unhide˦typeSTRING˦dataۦ typevalue typeSCALAR data\typeGvalueringbuoy_01_unhide\typeSTRING\dataltypevaluetypeSCALARdatatypeڧvaluebeacon_01_org_unhidetypeSTRINGdata0typevalue0typeSCALAR0data@typemvaluebeacon_01_blu_unhidetypeSTRINGdataètypevalueètypeSCALARèdataӨtypevalueCamoNet_01_unhidetypeSTRINGdata"Stype>value?StypeSCALARSdatactypevalueCamoNet_02_rack_unhidetypeSTRINGdatatypeөvaluetypeSCALARdata;type&valueSignsExtraWide_unhide;typeSTRING;dataK|typegvalue|typeSCALAR|propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value!adata1atypeLvalue-1atypeSTRINGapropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueGdataGtype2value-1GtypeSTRINGGpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value2data2typevalue-12typeSTRING2propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueڭdatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValuedataЮtypevalue-1typeSTRINGpropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;ValueZCdatajCtype.value[[[["gm_p2a1_blk"],[1]],[["gm_handgrenade_frag_dm51a1","gm_smokeshell_wht_dm25","gm_smokeshell_grn_dm21","gm_smokeshell_red_dm23","gm_1Rnd_265mm_flare_multi_red_DM23","gm_1Rnd_265mm_flare_multi_grn_DM21","gm_1Rnd_265mm_flare_multi_nbc_DM47","gm_1Rnd_265mm_flare_single_wht_DM15","gm_1Rnd_265mm_flare_single_red_DM13","gm_1Rnd_265mm_flare_single_grn_DM11","gm_1Rnd_265mm_flare_single_yel_DM10","gm_120Rnd_762x51mm_B_T_DM21A1_mg3_grn","gm_20Rnd_762x51mm_B_DM41_g3_blk","gm_explosive_petn_charge","gm_mine_ap_dm31","gm_mine_at_dm21"],[12,4,4,4,4,4,4,4,4,4,4,8,20,8,8,4]],[["gm_ferod16_oli","gm_ge_army_gauzeBandage","gm_ge_army_burnBandage","gm_repairkit_01"],[1,4,4,4]],[[],[]]],false]CtypeSTRINGCpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value-data-typevalue-1-typeSTRING-propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueسdatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedataδtypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypeҵvalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueҶdataҶtypevalue-1ҶtypeSTRINGҶ dataTypeObjectPositionInfowsideEmptyflagsAttributesidtypegm_ge_army_fuchsa0_engineeratlOffset`CustomAttributes9positionEB,\uFanglesS(@lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olw9Attribute05Attribute1Attribute2Attribute3Attribute4Attribute5pAttribute6[Attribute7CAttribute8)Attribute9lAttribute10VAttribute11AAttribute12'Attribute13nAttributespropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueܹdatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueǺdata׺typevalue-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valuedata(typeCvalueWtypeARRAYWitemsItem0Item1datatypetypeARRAYdataütype޼valuetypeARRAYitemsItem0Item1Item25Item3Item4ƾItem5Item6YItem7Item8Item9;Item10|Item11Item12Item13ddatatype߽valueStowingBox_01_unhidetypeSTRINGdata5type value5typeSCALAR5dataEtypepvalueringbuoy_01_unhidetypeSTRINGdataƾtypevalueƾtypeSCALARƾdata־typevaluebeacon_01_org_unhidetypeSTRINGdata(YtypeDvalueYtypeSCALARYdataitypevaluebeacon_01_blu_unhidetypeSTRINGdatatype׿valuetypeSCALARdata;type&valueCamoNet_01_unhide;typeSTRING;dataK|typegvalue?|typeSCALAR|datatypevalueCamoNet_02_rack_unhidetypeSTRINGdatatypevaluetypeSCALARdata!dtypeOvalueSignsExtraWide_unhidedtypeSTRINGddatattypevaluetypeSCALARpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueJdataZtypeuvalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value0pdata@ptype[value-1ptypeSTRINGppropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value[data+[typeFvalue-1[typeSTRING[propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueCdataCtype.value-1CtypeSTRINGCpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value)data)typevalue-1)typeSTRING)propertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;ValueldataltypeWvalue[[[["gm_p2a1_blk"],[1]],[["gm_handgrenade_frag_dm51a1","gm_smokeshell_wht_dm25","gm_smokeshell_grn_dm21","gm_smokeshell_red_dm23","gm_1Rnd_265mm_flare_multi_red_DM23","gm_1Rnd_265mm_flare_multi_grn_DM21","gm_1Rnd_265mm_flare_multi_nbc_DM47","gm_1Rnd_265mm_flare_single_wht_DM15","gm_1Rnd_265mm_flare_single_red_DM13","gm_1Rnd_265mm_flare_single_grn_DM11","gm_1Rnd_265mm_flare_single_yel_DM10","gm_120Rnd_762x51mm_B_T_DM21A1_mg3_grn","gm_20Rnd_762x51mm_B_DM41_g3_blk","gm_explosive_petn_charge","gm_mine_ap_dm31","gm_mine_at_dm21"],[12,4,4,4,4,4,4,4,4,4,4,8,20,8,8,4]],[["gm_ferod16_oli","gm_ge_army_gauzeBandage","gm_ge_army_burnBandage","gm_repairkit_01"],[1,4,4,4]],[[],[]]],false]ltypeSTRINGlpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueVdata&VtypeAvalue-1VtypeSTRINGVpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueAdataAtype,value-1AtypeSTRINGApropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value'data'typevalue-1'typeSTRING'propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGdataTypeTriggerpositionVFЃBeFAttributesdidtypeEmptyDetectorAreaR250conditioncall{triggerActivated stage6}sizeAzCsizeBzCdataTypeTriggerposition-F1BFangleg@Attributes1idtypeEmptyDetectorAreaR250atlOffset&yconditioncall{triggerActivated stage1}sizeAd{CsizeBCydataTypeTriggerposition]FB ЗFangleg@AttributesidtypeEmptyDetectorAreaR250atlOffset&Fconditioncall{triggerActivated stage3}sizeAd{CsizeBCFdataTypeObjectPositionInfosideEmptyflagsAttributes ido typegm_ge_army_Leopard1a5CustomAttributespositionOElB8tFanglesՃ? initcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olwAttribute0Attribute1Attribute2Attribute3wAttribute4]Attribute5DAttribute6*Attribute7Attribute8Attribute9Attribute10Attribute11Attribute12Attribute135Attribute14 Attribute15Attribute16nAttributespropertygm_vehicleMarkings_tacticalNumber_Number_attributeexpression[_this,_value,2,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueadataqtypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueLdata\typewvalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value7wdataGwtypebvalue-1wtypeSTRINGwpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value]data-]typeHvalue-1]typeSTRING]propertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueDdataDtype/value-1DtypeSTRINGDpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value*data*typevalue-1*typeSTRING*propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalNumber_Numberfont_attributeexpression[_this,_value,2,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueydatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueadataqtypevalue-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value5data5typevalue5typeARRAYitemsItem0Item1M5data)Mtype9MtypeARRAYMdata]5typexvalue5typeARRAYitemsItem0Item1Item2Item3cItem4Item5Item64Item7Item8Item9Item10TItem11Item12Item13=Item14~Item15Item16Item17eItem18Item195datatypevalueCamoNet_01_unhidetypeSTRINGdatatypevalue?typeSCALARdata$ctypeNvalueCamoNet_02_unhidectypeSTRINGcdatastypevalue?typeSCALARdatatypevalueCamoNet_03_unhidetypeSTRINGdata4typevalue?4typeSCALAR4dataDtypenvalueAmmoBox_01_unhidetypeSTRINGdatatypevalue?typeSCALARdatatypevalueAmmoBox_02_unhidetypeSTRINGdata#Ttype?value?TtypeSCALARTdatadtypevalueFuelCanister_01_unhidetypeSTRINGdatatypevalue?typeSCALARdata=type(valueFuelCanister_02_unhide=typeSTRING=dataM~typeivalue?~typeSCALAR~datatypevalueFuelCanister_03_unhidetypeSTRINGdatatypevalue?typeSCALARdata#etypePvaluebeacon_01_org_unhideetypeSTRINGedatautypevaluetypeSCALARdatatypevaluesideskirt_unhidetypeSTRINGdata5type value?5typeSCALAR5propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value data type value-1 typeSTRING propertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Valuezdatatypevalue[[[["gm_p2a1_blk"],[1]],[["gm_handgrenade_frag_dm51a1","gm_smokeshell_wht_dm25","gm_smokeshell_grn_dm21","gm_smokeshell_red_dm23","gm_1Rnd_265mm_flare_multi_red_DM23","gm_1Rnd_265mm_flare_multi_grn_DM21","gm_1Rnd_265mm_flare_multi_nbc_DM47","gm_1Rnd_265mm_flare_single_wht_DM15","gm_1Rnd_265mm_flare_single_red_DM13","gm_1Rnd_265mm_flare_single_grn_DM11","gm_1Rnd_265mm_flare_single_yel_DM10","gm_32Rnd_9x19mm_B_DM11_mp2_blk"],[8,2,2,2,2,2,2,2,2,2,2,8]],[["gm_ferod16_oli","gm_ge_army_gauzeBandage","gm_ge_army_burnBandage","gm_repairkit_01"],[1,4,4,1]],[[],[]]],false]typeSTRINGpropertygm_vehicleMarkings_Insignias_nationPosition_attributeexpression[_this,_value,5,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRING dataTypeObjectPositionInforsideEmptyflagsAttributesid| typegm_ge_army_fuchsa0_reconnaissanceatlOffset7CustomAttributes4eposition!EBAtFangles8?7:lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olw4Attribute00Attribute1Attribute2Attribute3Attribute4Attribute5Attribute6Attribute7Attribute8{Attribute9Attribute10Attribute11Attribute12Attribute13znAttributesepropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valuedata#type>valueRtypeARRAYRitemsItem0zItem1datatypetypeARRAYdatatypevaluetypeARRAY items Item0Item1Item2Item3jItem4Item5Item6;Item7Item8Item9"Item10cItem11datatypevaluebeacon_01_org_unhidetypeSTRINGdatatypevaluetypeSCALARdata(jtypeUvaluebeacon_01_blu_unhidejtypeSTRINGjdataztypevaluetypeSCALARdatatypevalueCamoNet_01_unhidetypeSTRINGdata ;type&value?;typeSCALAR;dataKtypezvalueCamoNet_02_rack_unhidetypeSTRINGdatatypevaluetypeSCALARdata"type valueStowingBox_01_unhide"typeSTRING"data2ctypeNvaluectypeSCALARcdatastypevalueSignsExtraWide_unhidetypeSTRINGdatatypevaluetypeSCALARpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuemdata}typevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueUdataetypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value;{dataK{typefvalue-1{typeSTRING{propertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Valuedatatypevalue[[[["gm_p2a1_blk","gm_pzf44_2_oli"],[1,1]],[["gm_handgrenade_frag_dm51a1","gm_smokeshell_wht_dm25","gm_smokeshell_grn_dm21","gm_smokeshell_red_dm23","gm_1Rnd_265mm_flare_multi_red_DM23","gm_1Rnd_265mm_flare_multi_grn_DM21","gm_1Rnd_265mm_flare_multi_nbc_DM47","gm_1Rnd_265mm_flare_single_wht_DM15","gm_1Rnd_265mm_flare_single_red_DM13","gm_1Rnd_265mm_flare_single_grn_DM11","gm_1Rnd_265mm_flare_single_yel_DM10","gm_1Rnd_44x537mm_heat_dm32_pzf44_2","gm_120Rnd_762x51mm_B_T_DM21A1_mg3_grn","gm_20Rnd_762x51mm_B_DM41_g3_blk","gm_32Rnd_9x19mm_B_DM11_mp2_blk"],[12,4,4,4,4,4,4,4,4,4,4,2,8,20,8]],[["gm_ferod16_oli","gm_ge_army_gauzeBandage","gm_ge_army_burnBandage","gm_repairkit_01"],[1,4,4,1]],[[],[]]],false]typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuekdata{typevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueQdataatype|value-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value:zdataJztypeevalue-1ztypeSTRINGzpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value%edata5etypePvalue-1etypeSTRINGedataTypeObjectPositionInfosideEmptyflagsAttributes8id} typegm_ge_army_fuchsa0_reconnaissanceCustomAttributespositionF5EB;tFangles8?8lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olwAttribute0Attribute1Attribute2Attribute3 Attribute4j Attribute5PAttribute6BAttribute7*Attribute8Attribute9kAttribute10UAttribute11@Attribute12&Attribute13nAttributespropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueedatautypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValuePdata`type{value-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value data typevalue typeARRAYitemsItem0Item1< data<type(<typeARRAY<dataL typegvalue{ typeARRAY{ items Item0 Item1e Item2 Item3 Item49 Item5 Item6 Item7 Item8^ Item9 Item10 Item11D  data# e typeP valuebeacon_01_org_unhidee typeSTRINGe datau  type value typeSCALAR data  type valuebeacon_01_blu_unhide typeSTRING data 9 type$ value9 typeSCALAR9 dataI  types valueCamoNet_01_unhide typeSTRING data  type value? typeSCALAR data  type valueCamoNet_02_rack_unhide typeSTRING data- ^ typeI value^ typeSCALAR^ datan  type valueStowingBox_01_unhide typeSTRING data  type value typeSCALAR data D type/ valueSignsExtraWide_unhideD typeSTRINGD dataT  typep value typeSCALAR propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value* j data: j typeU value-1j typeSTRINGj propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValuePdata Ptype;value-1PtypeSTRINGPpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueBdata Btype-value#-### ###BtypeSTRINGBpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value*data*typevalue-1*typeSTRING*propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;ValuejkdatazktypeVvalue[[[["gm_p2a1_blk","gm_pzf44_2_oli"],[1,1]],[["gm_handgrenade_frag_dm51a1","gm_smokeshell_wht_dm25","gm_smokeshell_grn_dm21","gm_smokeshell_red_dm23","gm_1Rnd_265mm_flare_multi_red_DM23","gm_1Rnd_265mm_flare_multi_grn_DM21","gm_1Rnd_265mm_flare_multi_nbc_DM47","gm_1Rnd_265mm_flare_single_wht_DM15","gm_1Rnd_265mm_flare_single_red_DM13","gm_1Rnd_265mm_flare_single_grn_DM11","gm_1Rnd_265mm_flare_single_yel_DM10","gm_1Rnd_44x537mm_heat_dm32_pzf44_2","gm_120Rnd_762x51mm_B_T_DM21A1_mg3_grn","gm_20Rnd_762x51mm_B_DM41_g3_blk","gm_32Rnd_9x19mm_B_DM11_mp2_blk"],[12,4,4,4,4,4,4,4,4,4,4,2,8,20,8]],[["gm_ferod16_oli","gm_ge_army_gauzeBandage","gm_ge_army_burnBandage","gm_repairkit_01"],[1,4,4,1]],[[],[]]],false]ktypeSTRINGkpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueUdata%Utype@value-1UtypeSTRINGUpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value@data@type+value-1@typeSTRING@propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value&data&typevalue-1&typeSTRING&propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGdataTypeObjectPositionInfosideEmptyflagsAttributesid~ typegm_ge_army_fuchsa0_commandCustomAttributes@0positionoE(BٍtFangles1@initcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olw@Attribute0<Attribute1#Attribute2Attribute3[$Attribute4@%Attribute5&&Attribute6'Attribute7'Attribute8(Attribute9:,Attribute10$-Attribute11.Attribute12.Attribute13/nAttributes0propertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value#data#typevalue-1#typeSTRING#propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value[$data/[$typeJvalue^[$typeARRAY^itemsItem0Item1[$datatypetypeARRAYdata[$typevalue[$typeARRAYitemsItem0Item1 Item2O Item3 Item4 Item5;!Item6|!Item7!Item8"Item9^"Item10"Item11"Item124#Item13#Item14#Item15$[$data typevalueradio_04_unhide typeSTRING data O type: value?O typeSCALARO data_  type valueantennamast_01_elev_trigger typeSTRING data  type value typeSCALAR data ;!type&!valuebeacon_01_org_unhide;!typeSTRING;!dataK!|!typeg!value|!typeSCALAR|!data!!type!valuebeacon_01_blu_unhide!typeSTRING!data!"type!value"typeSCALAR"data"^"typeI"valueCamoNet_01_unhide^"typeSTRING^"datan""type"value?"typeSCALAR"data""type"valueCamoNet_02_rack_unhide"typeSTRING"data#4#type#value?4#typeSCALAR4#dataD##typeq#valueStowingBox_01_unhide#typeSTRING#data##type#value?#typeSCALAR#data#$type$valueSignsExtraWide_unhide$typeSTRING$data*$[$typeF$value[$typeSCALAR[$propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value%@%data%@%type+%value-1@%typeSTRING@%propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value%&&data%&&type&value-1&&typeSTRING&&propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value&'data&'type&value-1'typeSTRING'propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value''data''type'value-1'typeSTRING'propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value((data((type(value-1(typeSTRING(propertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Value9):,dataI):,type%,value[[[["gm_p2a1_blk","gm_pzf44_2_oli"],[1,1]],[["gm_handgrenade_frag_dm51a1","gm_smokeshell_wht_dm25","gm_smokeshell_grn_dm21","gm_smokeshell_red_dm23","gm_1Rnd_265mm_flare_multi_red_DM23","gm_1Rnd_265mm_flare_multi_grn_DM21","gm_1Rnd_265mm_flare_multi_nbc_DM47","gm_1Rnd_265mm_flare_single_wht_DM15","gm_1Rnd_265mm_flare_single_red_DM13","gm_1Rnd_265mm_flare_single_grn_DM11","gm_1Rnd_265mm_flare_single_yel_DM10","gm_1Rnd_44x537mm_heat_dm32_pzf44_2","gm_120Rnd_762x51mm_B_T_DM21A1_mg3_grn","gm_20Rnd_762x51mm_B_DM41_g3_blk","gm_32Rnd_9x19mm_B_DM11_mp2_blk"],[12,4,4,4,4,4,4,4,4,4,4,2,8,20,8]],[["gm_ferod16_oli","gm_ge_army_gauzeBandage","gm_ge_army_burnBandage","gm_repairkit_01"],[1,4,4,1]],[[],[]]],false]:,typeSTRING:,propertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value,$-data,$-type-value-1$-typeSTRING$-propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value-.data-.type-value-1.typeSTRING.propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value..data..type.value-1.typeSTRING.propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value//data//type/value-1/typeSTRING/propertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value00data00type0value-10typeSTRING0dataTypeTriggerpositionF$7FB>HFAttributesB1idz typeEmptyDetectorAreaR250atlOffsetj4A1conditioncall{triggerActivated stage2_5}sizeA3sKCsizeBDB1dataTypeTriggerposition0 7F6DB4FAttributes1id{ typeEmptyDetectorAreaR250?2conditioncall{triggerActivated stage2_5}sizeAzCsizeBzC?2dataTypeTriggerpositionfFmBAttribute3n?Attribute4*@Attribute5@Attribute6AAttribute7BAttribute8dCAttribute9+DnAttributes DpropertyAdmiral_PatrolZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];Value==data==type=value=typeSTRING=propertyAdmiral_PatrolZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];Valueq>>data>>type>value>typeSCALAR>propertyAdmiral_PatrolZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Value-?n?data=?n?typeY?valueBn?typeSCALARn?propertyAdmiral_PatrolZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value?*@data?*@type@valueB*@typeSCALAR*@propertyAdmiral_PatrolZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Value@@data@@type@value@typeBOOL@propertyAdmiral_PatrolZone_Admiral_PatrolArmourPoolexpression_this setVariable ['Admiral_PatrolArmourPool',_value,true];ValueuAAdataAAtypeAvalueAtypeSCALARApropertyAdmiral_PatrolZone_Admiral_PatrolTechnicalPoolexpression_this setVariable ['Admiral_PatrolTechnicalPool',_value,true];ValueMBBdata]BBtypeyBvalueBtypeSCALARBpropertyAdmiral_PatrolZone_Admiral_PatrolInfantryPoolexpression_this setVariable ['Admiral_PatrolInfantryPool',_value,true];Value#CdCdata3CdCtypeOCvalue@AdCtypeSCALARdCpropertyAdmiral_PatrolZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValueC+DdataC+DtypeDvalue+DtypeSTRING+DpropertyAdmiral_PatrolZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValueDDdataDDtypeDvalueDtypeSTRINGDdataTypeLogicPositionInfoQEid typeAdmiral_CqcZoneCustomAttributesqELposition7FxBeLFqE Attribute0FAttribute1FAttribute2GAttribute3OHAttribute4IAttribute5IAttribute6xJAttribute75KAttribute8LnAttributes LpropertyAdmiral_CqcZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValueFFdataFFtypeFvalueFtypeSTRINGFpropertyAdmiral_CqcZone_Admiral_MinHeightexpression_this setVariable ['Admiral_MinHeight',_value,true];ValueUGGdataeGGtypeGvalueGtypeSCALARGpropertyAdmiral_CqcZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValueHOHdataHOHtype:HvalueOHtypeSCALAROHpropertyAdmiral_CqcZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];ValueHIdataHItypeHvalueBItypeSCALARIpropertyAdmiral_CqcZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];ValueIIdataIItypeIvalueBItypeSCALARIpropertyAdmiral_CqcZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Value9JxJdataIJxJtypeeJvaluexJtypeBOOLxJpropertyAdmiral_CqcZone_Admiral_CqcPoolexpression_this setVariable ['Admiral_CqcPool',_value,true];ValueJ5KdataK5Ktype KvalueA5KtypeSCALAR5KpropertyAdmiral_CqcZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValueKLdataKLtypeKvalueGM_GDR_80_SNLtypeSTRINGLpropertyAdmiral_CqcZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValueLLdataLLtypeLvalueLtypeSTRINGLdataTypeLogicPositionInfo(Mid typeAdmiral_CqcZoneCustomAttributesHMTpositionT(;F9B'ڕFHM Attribute0MAttribute1NAttribute2mOAttribute3&PAttribute4PAttribute5QAttribute6ORAttribute7 SAttribute8SnAttributes TpropertyAdmiral_CqcZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValuenNNdata~NNtypeNvalueNtypeSTRINGNpropertyAdmiral_CqcZone_Admiral_MinHeightexpression_this setVariable ['Admiral_MinHeight',_value,true];Value,OmOdataJFBFangleo?Attributeseid typeEmptyDetectorAreaR250atlOffset7?fnamestage4conditioncall{{ if (!(_x isKindOf "Helicopter")) then {true} else {false}; } forEach thisList;}sizeA C#EsizeBzCactivationByWESTisRectanglefdataTypeTriggerposition9F$B FAttributesfid typeEmptyDetectorAreaR50,gconditioncall{triggerActivated stage4},gdataTypeLogicPositionInfogid typeARK_Rotor_ParadropatlOffset @CustomAttributesgkpositionF?B-FgAttribute0&hAttribute1hAttribute2iAttribute3jAttribute4AknAttributeskpropertyARK_Rotor_Paradrop_Vehicle_ClassNameexpression_this setVariable ['Vehicle_ClassName',_value,true];ValuehhdatahhtypehvalueCUP_O_Mi8AMT_RUhtypeSTRINGhpropertyARK_Rotor_Paradrop_Routine_Functionexpression_this setVariable ['Routine_Function',_value,true];Valuewiidataiitypeivalueark_rotor_fnc_paradropitypeSTRINGipropertyARK_Rotor_Paradrop_Fly_Heightexpression_this setVariable ['Fly_Height',_value,true];Value@jjdataPjjtypeljvalueHCjtypeSCALARjpropertyARK_Rotor_Paradrop_Crew_Percentageexpression_this setVariable ['Crew_Percentage',_value,true];ValuekAkdatakAktype,kvalueBAktypeSCALARAkpropertyARK_Rotor_Paradrop_Fly_Speedexpression_this setVariable ['Fly_Speed',_value,true];ValuekkdatakktypekvalueNORMALktypeSTRINGkdataTypeLogicPositionInfojlid typeARK_Rotor_ParadropatlOffset?CustomAttributeslppositionQFs/BJ FlAttribute0lAttribute1mAttribute2nAttribute3MoAttribute4 pnAttributesppropertyARK_Rotor_Paradrop_Vehicle_ClassNameexpression_this setVariable ['Vehicle_ClassName',_value,true];ValueummdatammtypemvalueCUP_O_Mi8AMT_RUmtypeSTRINGmpropertyARK_Rotor_Paradrop_Routine_Functionexpression_this setVariable ['Routine_Function',_value,true];ValueCnndataSnntypenvalueark_rotor_fnc_paradropntypeSTRINGnpropertyARK_Rotor_Paradrop_Fly_Heightexpression_this setVariable ['Fly_Height',_value,true];Value oModataoMotype8ovalueHCMotypeSCALARMopropertyARK_Rotor_Paradrop_Crew_Percentageexpression_this setVariable ['Crew_Percentage',_value,true];Valueo pdatao ptypeovalueB ptypeSCALAR ppropertyARK_Rotor_Paradrop_Fly_Speedexpression_this setVariable ['Fly_Speed',_value,true];ValueppdatapptypepvalueNORMALptypeSTRINGpdataTypeTriggerpositionZjF/B%S FAttributes,qid typeEmptyDetectorAreaR50\qconditioncall{triggerActivated stage4}\qdataTypeGroupsideCivilianEntitiesqAttributesIsid OsitemsItem0qItem1srItem2rIsdataTypeObjectPositionInfoMrsideCivilianflagsAttributesmrid typeC_Jeff_VRsrpositionjF"*BFmrsrdataTypeWaypointpositionSFY B`FEffectsrshowWPNEVERid typeMoverrdataTypeWaypointpositionFr[CEEffectsCsshowWPNEVERid typeMoveIsIsOsdataTypeGroupsideCivilianEntitiessAttributesLuid RuitemsItem0sItem1ftItem2tLudataTypeObjectPositionInfo@tsideCivilianflagsAttributes`tid typeC_Jeff_VRftpositionF]BF`tftdataTypeWaypointpositionD_F`BFEffectstshowWPNEVERid typeMovettdataTypeWaypointposition^nFL8CnEEffectsFushowWPNEVERid typeMoveatlOffset8LuLuRudataTypeLogicPositionInfouid typeAdmiral_OndemandCampZoneatlOffset7CustomAttributesv!positionFB},FanglesS>@vAttribute0vAttribute1wAttribute2xAttribute3OyAttribute4zAttribute5zAttribute6{Attribute7u|Attribute8:}Attribute9~Attribute10~Attribute11Attribute12Attribute13TnAttributes!propertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValuewwdatawwtypewvaluewtypeSTRINGwpropertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValueLxxdata\xxtypexxvaluextypeSCALARxpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];ValueyOydatayOytype:yvalueBOytypeSCALAROypropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];ValueyzdatayztypeyvalueBztypeSCALARzpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Valuezzdatazztypezvalue AztypeSCALARzpropertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Value\{{datal{{type{value{typeBOOL{propertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];Value4|u|dataD|u|type`|valueu|typeSCALARu|propertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];Value|:}data }:}type%}value:}typeSTRING:}propertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];Value}~data}~type}value~typeSCALAR~propertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];Value~~data~~type~value~typeSCALAR~propertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValuesdatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];Value?dataOtypekvalue?typeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValueTdata#Ttype?value@@TtypeSCALARTpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value!data!type value!typeSTRING!dataTypeTriggerpositionZpF=dBFAttributesid typeEmptyDetectorAreaR250҂conditioncall{triggerActivated stage7}sizeAQBsizeBB҂dataTypeLogicPositionInfo:id typeAdmiral_OndemandCampZoneCustomAttributesrposition#FfJcBxٗFanglesS>@rAttribute0nAttribute1;Attribute2Attribute3Attribute4Attribute5KAttribute6 Attribute7Attribute8Attribute9Attribute10TAttribute11$Attribute12Attribute13ĎnAttributespropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];Value;data ;type&value;typeSTRING;propertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];Valuedata̅typevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Value~datatypevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value@dataPtypelvalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Value KdataKtype6value AKtypeSCALARKpropertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Valuë data܈ typevalue typeBOOL propertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];ValuedatatypeЉvaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];Valueldata|typevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];ValueAdataQtypemvaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];ValueTdata#Ttype?valueTtypeSCALARTpropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];Value$data$typevalue$typeSCALAR$propertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];Valuedatatypeۍvalue@typeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValueĎdataĎtypevalueĎtypeSCALARĎpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValueSdatactype|valuetypeSTRINGdataTypeTriggerpositionCSF@B,8FAttributesid typeEmptyDetectorAreaR250Bconditioncall{triggerActivated stage2}sizeA~CsizeBٮCBdataTypeLogicPositionInfoid typeAdmiral_OndemandCampZoneatlOffset7CustomAttributespositioncSFaBGFanglesS>@Attribute0Attribute1Attribute2}Attribute3?Attribute4Attribute5˕Attribute6Attribute7eAttribute8*Attribute9Attribute10ԙAttribute11Attribute12pAttribute13DnAttributespropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];Value}datatypevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];Value<}dataL}typehvalue}typeSCALAR}propertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Value?data?type*valueB?typeSCALAR?propertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];ValuedataДtypevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Value˕data˕typevalue A˕typeSCALAR˕propertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValueLdata\typexvaluetypeBOOLpropertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];Value$edata4etypePvalueetypeSCALARepropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];Value*data*typevalue*typeSTRING*propertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];ValuedataјtypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];Valueԙdataԙtypevalue?ԙtypeSCALARԙpropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValuecdatastypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];Value/pdata?ptype[valueptypeSCALARppropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValueDdataDtype/value@@DtypeSCALARDpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValueӜdatatypevaluetypeSTRINGdataTypeTriggerpositionXFzKB8yFangle?Attributesid typeEmptyDetectorAreaR250Νconditioncall{triggerActivated stage6}sizeABsizeBL7BΝdataTypeLogicPositionInfo6id typeAdmiral_OndemandCampZoneCustomAttributesnpositionwXF4BJZFanglesl@nAttribute0jAttribute17Attribute2Attribute3Attribute4}Attribute5GAttribute6Attribute7Attribute8Attribute9~Attribute10PAttribute11 Attribute12Attribute13nAttributespropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];Value7data 7type"value7typeSTRING7propertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValuedataȠtypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];ValuezdatatypevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value<}dataL}typehvalueB}typeSCALAR}propertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];ValueGdataGtype2value AGtypeSCALARGpropertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValueȣdataأtypevaluetypeBOOLpropertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];Valuedatatype̤valuetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValuehdataxtypevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];Value=~dataM~typeivalue~typeSCALAR~propertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];ValuePdataPtype;valuePtypeSCALARPpropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];Valueߧ data type value typeSCALAR propertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];Valuedatatypeרvalue?typeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];Valuedatatypevalue@@typeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValueOdata_typexvaluetypeSTRINGdataTypeTriggerposition#SF.BFAttributesid typeEmptyDetectorAreaR250atlOffset$?Nconditioncall{triggerActivated stage3}sizeA쑡BsizeBnBNdataTypeLogicPositionInfo۫initcall{triggerActivated stage3}id typeAdmiral_OndemandCampZoneCustomAttributes2position>RF*B\Fangles;@Attribute0Attribute1ܭAttribute2Attribute3`Attribute4"Attribute5Attribute6Attribute7Attribute8KAttribute9#Attribute10Attribute11ŵAttribute12Attribute13enAttributes2propertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValueܭdataܭtypeǭvalueܭtypeSTRINGܭpropertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];Value]datamtypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Value`data/`typeKvalueB`typeSCALAR`propertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value"data"type valueB"typeSCALAR"propertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Valuedatatypeװvalue AtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Valuemdata}typevaluetypeBOOLpropertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];ValueEdataUtypeqvaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];Value KdataKtype6valueKtypeSTRINGKpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];Value#data#typevalue#typeSCALAR#propertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];ValuedataĴtypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValueŵdataŵtypevalueŵtypeSCALARŵpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];ValuePdata`type|value?typeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];Value$edata4etypePvalue@@etypeSCALARepropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value2data2typevalue2typeSTRING2dataTypeTriggerpositionx=F2BFAttributesid typeEmptyDetectorAreaR250atlOffset@<conditioncall{triggerActivated stage3}sizeAR8BsizeBf&BdataTypeLogicPositionInfo[id typeAdmiral_OndemandCampZoneCustomAttributesposition)=FBFangles9<@Attribute0Attribute1\Attribute2Attribute3Attribute4Attribute5lAttribute6,Attribute7Attribute8Attribute9Attribute10uAttribute11EAttribute12Attribute13nAttributespropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];Value\data.\typeGvalue\typeSTRING\propertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];Valueݻdatatype valuetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Valuedatatype˼valueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];ValueadataqtypevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Value+ldata;ltypeWvalue AltypeSCALARlpropertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Value,data,typevalue,typeBOOL,propertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];ValueſdataտtypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValuedatatypevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];Valuebdatartypevalue@AtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];Value4udataDutype`valueutypeSCALARupropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValueEdataEtype0value@EtypeSCALAREpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValuetdatatypevaluetypeSTRINGdataTypeGroupsideCivilianEntitiesAttributesid %itemsItem0>Item1Item2>Item3dataTypeObjectPositionInfosideCivilianflagsAttributesid typeC_Bob_VRpositionRFVB_kFdataTypeWaypointposition`-F"B-FEffects8showWPNEVERid typeMove>>dataTypeWaypointpositionY,FB؏FtypeSeekAndDestroyEffectsshowWPNEVERid dataTypeWaypointposition*2FtB։FtypeCycleEffectsshowWPNEVERid %dataTypeGroupsideCivilianEntitiesAttributesid atlOffset7itemsItem0Item1fItem2Item3FdataTypeObjectPositionInfo@sideCivilianflagsAttributes`id typeC_Bob_VRatlOffset7fposition XF-BF`fdataTypeWaypointposition \FK)BVxFEffectsshowWPNEVERid typeMovedataTypeWaypointpositionoSFDžBFtypeSeekAndDestroyEffects@showWPNEVERid FFdataTypeWaypointposition[F]yBaFtypeCycleEffectsshowWPNEVERid dataTypeGroupsideCivilianEntitiesAttributesid itemsItem0OItem1Item2OItem3Item4?dataTypeObjectPositionInfosideCivilianflagsAttributesid typeC_Bob_VRpositionb FBˏFdataTypeWaypointpositionHFB/5FEffectsIshowWPNEVERid typeMoveOOdataTypeWaypointposition(\FVfhF `lBkFEffects7showWPNEVERid typeMove==dataTypeWaypointpositiondF2yBASFtypeSeekAndDestroyEffectsshowWPNEVERid dataTypeWaypointpositionSdFu9jBFtypeCycleEffectsshowWPNEVERid $dataTypeTriggerpositionqefFmB^Fangleo?Attributesid typeEmptyDetectorAreaR250namestage7conditioncall{{ if (!(_x isKindOf "Helicopter")) then {true} else {false}; } forEach thisList;}onActivationcall{if (isServer) then {[secondClean] call ark_fnc_cleanUpAI};}sizeACsizeB CactivationByWESTisRectangledataTypeTriggerpositionFWFɏBݙFangleo?Attributesid typeEmptyDetectorAreaR250namestage6conditioncall{{ if (!(_x isKindOf "Helicopter")) then {true} else {false}; } forEach thisList;}sizeACsizeB CactivationByWESTisRectangledataTypeTriggerpositionFB趀FangleYc?AttributesIid typeEmptyDetectorAreaR250~conditioncall{true}sizeAd{CsizeBcD~dataTypeLogicPositionInfoid typeAdmiral_PatrolZoneatlOffset&@CustomAttributes(positionjPFgB #Fangles@( Attribute0Attribute1Attribute2[Attribute3Attribute4Attribute5Attribute6_Attribute77Attribute8 Attribute9nAttributes propertyAdmiral_PatrolZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValueadataqtypevaluetypeSTRINGpropertyAdmiral_PatrolZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];Value[data*[typeFvalue[typeSCALAR[propertyAdmiral_PatrolZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];ValuedatatypevalueBtypeSCALARpropertyAdmiral_PatrolZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];ValuedatatypevalueBtypeSCALARpropertyAdmiral_PatrolZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValueNdata^typezvaluetypeBOOLpropertyAdmiral_PatrolZone_Admiral_PatrolArmourPoolexpression_this setVariable ['Admiral_PatrolArmourPool',_value,true];Value_data._typeJvalue?_typeSCALAR_propertyAdmiral_PatrolZone_Admiral_PatrolTechnicalPoolexpression_this setVariable ['Admiral_PatrolTechnicalPool',_value,true];Value7data7type"value@7typeSCALAR7propertyAdmiral_PatrolZone_Admiral_PatrolInfantryPoolexpression_this setVariable ['Admiral_PatrolInfantryPool',_value,true];Value data typevalue A typeSCALAR propertyAdmiral_PatrolZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValuedatatypevaluetypeSTRINGpropertyAdmiral_PatrolZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];Value]datamtypevaluetypeSTRINGdataTypeGroupsideEastEntitiesAttributesid itemsItem0dataTypeObjectPositionInfosideEastflagsAttributesid typegm_pl_army_rifleman_akm_80_winpositionWFB9֙Fangles<K@˜D<dataTypeGroupsideEastEntitiesAttributesid itemsItem0.dataTypeObjectPositionInfosideEastflagsAttributesid typegm_pl_army_rifleman_akm_80_winpositionVFB1FanglesK@dataTypeTriggerposition#vF$cBFAttributeslid typeEmptyDetectorAreaR250atlOffsetconditioncall{triggerActivated stage7}sizeAzCsizeBzCdataTypeLogicPositionInfoid typeAdmiral_OndemandCampZoneCustomAttributesTsposition8wFkeB!Fangles#<@TAttribute0PAttribute1Attribute2Attribute3Attribute4cAttribute5-Attribute6Attribute7Attribute8Attribute9dAttribute106Attribute11Attribute12Attribute13nAttributesspropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValuedatatypevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Value`dataptypevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value"cdata2ctypeNvalueBctypeSCALARcpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Value-data-typevalue A-typeSCALAR-propertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValuedatatypevaluetypeBOOLpropertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValueNdata^typewvaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];Value#ddata3dtypeOvaluedtypeSCALARdpropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];Value6data6type!value6typeSCALAR6propertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];Valuedatatypevalue@typeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValueedatautypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value5sdataEstype^valuestypeSTRINGsdataTypeTriggerpositionFozBu؃Fangle_?Attributesid typeEmptyDetectorAreaR250namestage1conditioncall{{ if (!(_x isKindOf "Helicopter")) then {true} else {false}; } forEach thisList;}sizeA|EsizeBzCactivationByWESTisRectangledataTypeGroupsideCivilianEntitiesAttributesid itemsItem0$Item1Item2%dataTypeObjectPositionInfosideCivilianflagsAttributesid typeC_Jeff_VRpositionFښB-[sFdataTypeWaypointpositionsF#]B FEffectsshowWPNEVERid typeMove%%dataTypeWaypointposition~F#BFEffectsshowWPNEVERid typeMovedataTypeGroupsideCivilianEntitiesAttributesid itemsItem0Item1Item2dataTypeObjectPositionInfosideCivilianflagsAttributesid typeC_Jeff_VRpositionFViB`FdataTypeWaypointpositionZFRWBFVFEffectsshowWPNEVERidtypeMovedataTypeWaypointposition.F\BByFEffectsshowWPNEVERidtypeMoveatlOffsetdataTypeLogicPositionInfoid typeARK_Rotor_InsertCustomAttributes1cposition)F-BAsFanglesUe< <1Attribute0Attribute1WAttribute2)Attribute3Attribute4nAttributescpropertyARK_Rotor_Insert_Crew_Percentageexpression_this setVariable ['Crew_Percentage',_value,true];ValueWdata&WtypeBvalueBWtypeSCALARWpropertyARK_Rotor_Insert_Vehicle_ClassNameexpression_this setVariable ['Vehicle_ClassName',_value,true];Value)data)typevaluegm_gc_airforce_mi2p)typeSTRING)propertyARK_Rotor_Insert_Fly_Speedexpression_this setVariable ['Fly_Speed',_value,true];ValuedatatypevalueNORMALtypeSTRINGpropertyARK_Rotor_Insert_Fly_Heightexpression_this setVariable ['Fly_Height',_value,true];ValueQdataatype}valueHCtypeSCALARpropertyARK_Rotor_Insert_Routine_Functionexpression_this setVariable ['Routine_Function',_value,true];Valuecdata!ctypeNvalueark_rotor_fnc_insertctypeSTRINGcdataTypeLogicPositionInfoid typeARK_Rotor_InsertCustomAttributespositionFpB`FAttribute0KAttribute1 Attribute2Attribute3Attribute4DnAttributespropertyARK_Rotor_Insert_Crew_Percentageexpression_this setVariable ['Crew_Percentage',_value,true];Value data typevalueB typeSCALAR propertyARK_Rotor_Insert_Vehicle_ClassNameexpression_this setVariable ['Vehicle_ClassName',_value,true];Valuedatatypevaluegm_gc_airforce_mi2ptypeSTRINGpropertyARK_Rotor_Insert_Fly_Speedexpression_this setVariable ['Fly_Speed',_value,true];ValueLdata\type{valueNORMALtypeSTRINGpropertyARK_Rotor_Insert_Fly_Heightexpression_this setVariable ['Fly_Height',_value,true];ValueDdataDtype/valueHCDtypeSCALARDpropertyARK_Rotor_Insert_Routine_Functionexpression_this setVariable ['Routine_Function',_value,true];Valuedatatypevalueark_rotor_fnc_inserttypeSTRINGdataTypeTriggerposition׈FϕBsFAttributes}id typeEmptyDetectorAreaR50conditioncall{triggerActivated stage0}interuptabledataTypeTriggerpositionljFpB`FAttributes(id typeEmptyDetectorAreaR50Xconditioncall{triggerActivated stage0}XdataTypeTriggerposition{-FpBCFangle_?AttributesidtypeEmptyDetectorAreaR250namestage2conditioncall{{ if (!(_x isKindOf "Helicopter")) then {true} else {false}; } forEach thisList;}onActivationcall{[angry_barracks] call ark_missionName_fnc_buildingFiller;}sizeA|EsizeBzCactivationByWESTisRectangledataTypeTriggerposition6FBrFangleo?Attributes\idtypeEmptyDetectorAreaR250atlOffsetxsAfnamestage3conditioncall{{ if (!(_x isKindOf "Helicopter")) then {true} else {false}; } forEach thisList;}onActivationcall{if (isServer) then {[firstClean] call ark_fnc_cleanUpAI};}sizeA1h/CsizeBzCactivationByWESTisRectanglefdataTypeGroupsideEastEntitiesAttributesid+itemsItem0dataTypeObjectPositionInfohsideEastflagsAttributesidtypegm_pl_army_machinegunner_pk_80_winCustomAttributespositionx*FmB+Fangles/@C,d@!ڣ<Attribute0Attribute1Attribute2nAttributespropertyspeakerexpression_this setspeaker _value;Value8dataHtypejvalueMale02POLtypeSTRINGpropertypitchexpression_this setpitch _value;Valuedatatypevalue33s?typeSCALARpropertygm_rankinsigniaexpression[_this, [1,_value]] call gm_core_characters_fnc_setUnitAttribute;ValuedatatypevaluetypeSTRINGdataTypeGroupsideEastEntitiesAttributesid1$itemsItem0,dataTypeObjectPositionInfosideEastflagsAttributesidtypegm_pl_army_machinegunner_pk_80_winCustomAttributespositionz%F0…BPFangles<C,d@<Attribute0MAttribute1Attribute2enAttributespropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale01POLtypeSTRINGpropertypitchexpression_this setpitch _value;Value$edata4etypePvalue?etypeSCALARepropertygm_rankinsigniaexpression[_this, [1,_value]] call gm_core_characters_fnc_setUnitAttribute;Valuedatatype valuetypeSTRING$dataTypeGroupsideEastEntitiesnAttributes~ id4 itemsItem0~ dataTypeObjectPositionInfo'sideEastflagsAttributes_idtypegm_gc_army_rifleman_mpiak74n_80_winCustomAttributese~ positionk4FqZB׉FanglesG,d@_eAttribute0Attribute1>Attribute2nAttributes~ propertyspeakerexpression_this setspeaker _value;Value>data>type)valueMale02POL>typeSTRING>propertypitchexpression_this setpitch _value;Valuedatatypevalue?typeSCALARpropertygm_rankinsigniaexpression[_this, [1,_value]] call gm_core_characters_fnc_setUnitAttribute;Value@ ~ dataP ~ typei value~ typeSTRING~  dataTypeGroupsideEastEntities Attributes id7 itemsItem0  dataTypeObjectPositionInfo sideEastflagsAttributes idtypegm_gc_army_demolition_mpiaks74n_80_winCustomAttributes  position5F؞BFangles@  Attribute0 Attribute1 Attribute2( nAttributes propertyspeakerexpression_this setspeaker _value;ValueZ  dataj  type valueMale02POL typeSTRING propertypitchexpression_this setpitch _value;Value ( data ( type valueff?( typeSCALAR( propertygm_rankinsigniaexpression[_this, [1,_value]] call gm_core_characters_fnc_setUnitAttribute;Value  data  type value typeSTRING  dataTypeGroupsideEastEntities1 AttributesAid:GitemsItem0N AdataTypeObjectPositionInfo sideEastflagsAttributes"idtypegm_gc_army_rifleman_mpiak74n_80_winCustomAttributes(Aposition`H6F%BˉFanglesm_@"(Attribute0pAttribute1Attribute2nAttributesApropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale02POLtypeSTRINGpropertypitchexpression_this setpitch _value;ValueGdataWtypesvalue\?typeSCALARpropertygm_rankinsigniaexpression[_this, [1,_value]] call gm_core_characters_fnc_setUnitAttribute;ValueAdataAtype,valueAtypeSTRINGAGdataTypeLogicPositionInfoid@typeARK_Clear_Vehicleposition&FBq)Fanglesԣ<l@dataTypeLogicPositionInfo)idAtypeARK_Make_SentryCustomAttributesaLposition^bFdBz FanglesH=HH<=aAttribute0nAttributesLpropertyARK_Make_Sentry_Enabled_Nightvisionexpression_this setVariable ['Enabled_Nightvision',_value,true];Value LdataLtype9valueLtypeBOOLLdataTypeObjectPositionInfosideEmptyflagsAttributesidtypegm_ge_army_iltis_cargoCustomAttributesQ&positionE?BtFanglesA@lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olw Attribute0xAttribute1_Attribute2JAttribute3#Attribute4 Attribute5Attribute6 Attribute7!Attribute8"Attribute9#Attribute10}$Attribute11f%nAttributes Q&propertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value_data/_typeJvalue-1_typeSTRING_propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value JdataJtype5value-1JtypeSTRINGJpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value[#datak#typevalue#typeARRAYitemsItem0Item1#datatypetypeARRAYdata#type!value5#typeARRAY5itemsItem0Item1bItem2Item3Item41Item5Item6Item7Item8SItem9Item10Item11(Item12iItem13Item14Item15NItem16Item17#data%btypeMvalueradio_01_unhidebtypeSTRINGbdatartypevalue?typeSCALARdatatypevalueradio_02_unhidetypeSTRINGdata1typevalue?1typeSCALAR1dataAtypelvaluecover_hoops_unhidetypeSTRINGdatatypevalue?typeSCALARdatatypevaluecover_doors_unhidetypeSTRINGdata"Stype>value?StypeSCALARSdatactypevaluewindshieldtypeSTRINGdatatypevaluetypeSCALARdata(typevaluedoorBag_unhide(typeSTRING(data8itypeTvalue?itypeSCALARidataytypevaluebeacon_01_org_unhidetypeSTRINGdatatypevaluetypeSCALARdata Ntype9valuebeacon_01_blu_unhideNtypeSTRINGNdata^typezvaluetypeSCALARdatatypevaluecoldWeatherKit_unhidetypeSTRINGdata#typevalue?#typeSCALAR#propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value data typevalue-1 typeSTRING propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  data  type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value!!data!!type!value-1!typeSTRING!propertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuel""data|""type"value-1"typeSTRING"propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueW##datag##type#value-1#typeSTRING#propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value=$}$dataM$}$typeh$value-1}$typeSTRING}$propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value&%f%data6%f%typeQ%value-1f%typeSTRINGf%propertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value&Q&data!&Q&type<&value-1Q&typeSTRINGQ& dataTypeObjectPositionInfo&sideEmptyflagsAttributes)'idutypegm_ge_army_iltis_cargoatlOffsetCustomAttributes'f:position/FcB53Fangles:@^@;)'lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olw' Attribute0(Attribute1t)Attribute2_*Attribute382Attribute43Attribute5 4Attribute64Attribute75Attribute86Attribute97Attribute108Attribute11{9nAttributes f:propertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value4)t)dataD)t)type_)value-1t)typeSTRINGt)propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value*_*data/*_*typeJ*value-1_*typeSTRING_*propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valuep+82data+82type+value+82typeARRAY+itemsItem0+Item1 ,82data+ ,type+ ,typeARRAY ,data,82type6,valueJ,82typeARRAYJ,itemsItem0*-Item1w-Item2-Item3.Item4F.Item5.Item6.Item7'/Item8h/Item9/Item10/Item11=0Item12~0Item130Item141Item15c1Item161Item17182data:-w-typeb-valueradio_01_unhidew-typeSTRINGw-data--type-value?-typeSCALAR-data-.type-valueradio_02_unhide.typeSTRING.data.F.type1.value?F.typeSCALARF.dataV..type.valuecover_hoops_unhide.typeSTRING.data..type.value?.typeSCALAR.data.'/type/valuecover_doors_unhide'/typeSTRING'/data7/h/typeS/value?h/typeSCALARh/datax//type/valuewindshield/typeSTRING/data//type/value/typeSCALAR/data0=0type(0valuedoorBag_unhide=0typeSTRING=0dataM0~0typei0value?~0typeSCALAR~0data00type0valuebeacon_01_org_unhide0typeSTRING0data01type0value1typeSCALAR1data!1c1typeN1valuebeacon_01_blu_unhidec1typeSTRINGc1datas11type1value1typeSCALAR1data11type1valuecoldWeatherKit_unhide1typeSTRING1data282type#2value?82typeSCALAR82propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value23data23type 3value-13typeSTRING3propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value3 4data3 4type3value-1 4typeSTRING 4propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value44data44type4value-14typeSTRING4propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value55data55type5value-15typeSTRING5propertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value66data66type6value-16typeSTRING6propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuel77data|77type7value-17typeSTRING7propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueR88datab88type}8value-18typeSTRING8propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value;9{9dataK9{9typef9value-1{9typeSTRING{9propertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value&:f:data6:f:typeQ:value-1f:typeSTRINGf:dataTypeObjectPositionInfo:sideEmptyflagsAttributes.;id}typegm_ge_army_iltis_cargoCustomAttributes;kNpositionE9F7hBAttribute3=FAttribute4#GAttribute5HAttribute6HAttribute7IAttribute8JAttribute9KAttribute10LAttribute11MnAttributes kNpropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value9=y=dataI=y=typed=value-1y=typeSTRINGy=propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value$>d>data4>d>typeO>value-1d>typeSTRINGd>propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valueu?=Fdata?=Ftype?value?=FtypeARRAY?itemsItem0?Item1@=Fdata?@type?@typeARRAY@data @=Ftype;@valueO@=FtypeARRAYO@itemsItem0/AItem1|AItem2AItem3 BItem4KBItem5BItem6BItem7,CItem8mCItem9CItem10CItem11BDItem12DItem13DItem14EItem15hEItem16EItem17E=Fdata?A|AtypegAvalueradio_01_unhide|AtypeSTRING|AdataAAtypeAvalue?AtypeSCALARAdataA BtypeAvalueradio_02_unhide BtypeSTRING BdataBKBtype6Bvalue?KBtypeSCALARKBdata[BBtypeBvaluecover_hoops_unhideBtypeSTRINGBdataBBtypeBvalue?BtypeSCALARBdataB,CtypeCvaluecover_doors_unhide,CtypeSTRING,CdataRsideEmptyflagsAttributesvRidhtypeland_gm_sandbags_01_wall_01Rposition@EBGTtFangles>x?vRdisableSimulationRdataTypeGroupsideEastEntitiesRAttributesSidzSitemsItem0RSdataTypeObjectPositionInfo|SsideEastflagsAttributesSid{typegm_pl_army_rifleman_akm_80_winSposition;WF2B!Fanglesk.<;<:;SSSdataTypeLogicPositionInfoVTareaSizeE&"EareaIsRectangleflagsidtypeModuleCoverMap_FatlOffsetP Tposition:FZB&Fangles@@TdataTypeObjectPositionInfoUsideEmptyAttributes%UidtypeCUP_O_D30_ChDKZatlOffsetg ?+Uposition_`FBvvF%U+UdataTypeObjectPositionInfoUsideEmptyAttributesUidtypeCUP_O_D30_ChDKZatlOffsetg ?Upositionog`FB8vFUUdataTypeObjectPositionInfo?VsideEmptyAttributes_VidtypeCUP_O_D30_ChDKZatlOffsetg ?eVpositionaN`FBvF_VeVdataTypeLogicPositionInfoWareaSize@@flagsid6typeModuleHideTerrainObjects_FatlOffset@CustomAttributes%WXposition(4FhB59F%WAttribute0]WAttribute1WnAttributesXproperty#filterexpression_this setVariable ["#filter",_value]ValueWWdataWWtypeWvaluepAWtypeSCALARWproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueTXXdatadXXtypeXvalueXtypeBOOLXdataTypeTriggerposition"FxB]Fangle̬@AttributesYidtypeEmptyDetectorAreaR250=Yconditioncall{true}sizeA*ECsizeBcD=YdataTypeLogicPositionInfoYidtypeARK_ACE_RearmatlOffsetFBYposition= FQCFY dataTypeObjectPositionInfoSZsideEmptyflagsAttributesZid!typegm_ge_army_Leopard1a5atlOffsetٻCustomAttributesZbcposition 8FBf~Fangles#<!@(hItem4hItem5hItem6iItem7^iItem8iItem9iItem10/jItem11jItem12jItem13kItem14YkItem15kItem16kItem17@lItem18lItem19lmdataoggtypegvalueCamoNet_01_unhidegtypeSTRINGgdataggtypegvalue?gtypeSCALARgdatag>htype)hvalueCamoNet_02_unhide>htypeSTRING>hdataNhhtypejhvalue?htypeSCALARhdatahhtypehvalueCamoNet_03_unhidehtypeSTRINGhdatahitypehvalue?itypeSCALARidatai^itypeIivalueAmmoBox_01_unhide^itypeSTRING^idataniitypeivalue?itypeSCALARidataiitypeivalueAmmoBox_02_unhideitypeSTRINGidatai/jtypejvalue?/jtypeSCALAR/jdata?jjtypenjvalueFuelCanister_01_unhidejtypeSTRINGjdatajjtypejvalue?jtypeSCALARjdatajktypekvalueFuelCanister_02_unhidektypeSTRINGkdata(kYktypeDkvalue?YktypeSCALARYkdataikktypekvalueFuelCanister_03_unhidektypeSTRINGkdatakktypekvalue?ktypeSCALARkdatak@ltype+lvaluebeacon_01_org_unhide@ltypeSTRING@ldataPlltypellvalueltypeSCALARldatalltypelvaluesideskirt_unhideltypeSTRINGldatalmtypelvalue?mtypeSCALARm dataTypeObjectPositionInfomsideEmptyflagsAttributesmid#typegm_ge_army_fuchsa0_reconnaissanceatlOffset@CustomAttributesn;tpositionFvFB Fangles8 =hJ@QrItem6rItem7rItem8sItem9fsItem10sItem11s;tdatapqtypeqvaluebeacon_01_org_unhideqtypeSTRINGqdata+q\qtypeGqvalue\qtypeSCALAR\qdatalqqtypeqvaluebeacon_01_blu_unhideqtypeSTRINGqdataqqtypeqvalueqtypeSCALARqdataq>rtype)rvalueCamoNet_01_unhide>rtypeSTRING>rdataNrrtypejrvalue?rtypeSCALARrdatarrtypervalueCamoNet_02_rack_unhidertypeSTRINGrdatarstypervaluestypeSCALARsdata$sfstypeQsvalueStowingBox_01_unhidefstypeSTRINGfsdatavsstypesvaluestypeSCALARsdatasstypesvalueSignsExtraWide_unhidestypeSTRINGsdata t;ttype&tvalue;ttypeSCALAR;t dataTypeObjectPositionInfotsideEmptyflagsAttributesuid$typegm_ge_army_fuchsa0_reconnaissanceatlOffset@CustomAttributesIuposition_FďB?Fangles=_])@:@ulockUNLOCKEDtexturesgm_ge_olwIuAttribute0EvAttribute1,wAttribute2xAttribute3 ~Attribute4~Attribute5Attribute6ɀAttribute7Attribute8Attribute9Attribute10܆Attribute11LJAttribute12Attribute13nAttributespropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuev,wdatav,wtypewvalue-1,wtypeSTRING,wpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuewxdatawxtypexvalue-1xtypeSTRINGxpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value(y ~data8y ~typeSyvaluegy ~typeARRAYgyitemsItem0yItem1y ~datayytypeyytypeARRAYydatay ~typeyvaluez ~typeARRAYz items Item0zItem1zItem2-{Item3{Item4{Item5|Item6P|Item7|Item8|Item97}Item10x}Item11} ~datazztypezvaluebeacon_01_org_unhideztypeSTRINGzdataz-{type{value-{typeSCALAR-{data={{typej{valuebeacon_01_blu_unhide{typeSTRING{data{{type{value{typeSCALAR{data{|type{valueCamoNet_01_unhide|typeSTRING|data|P|type;|value?P|typeSCALARP|data`||type|valueCamoNet_02_rack_unhide|typeSTRING|data||type|value|typeSCALAR|data|7}type"}valueStowingBox_01_unhide7}typeSTRING7}dataG}x}typec}valuex}typeSCALARx}data}}type}valueSignsExtraWide_unhide}typeSTRING}data} ~type}value ~typeSCALAR ~propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value~~data~~type~value-1~typeSTRING~propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueɀdataɀtypevalue#-### ###ɀtypeSTRINGɀpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueqdatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueWdatagtypevalue-1typeSTRINGpropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Valuedatatype݅value[[[["gm_p2a1_blk","gm_pzf44_2_oli"],[1,1]],[["gm_handgrenade_frag_dm51a1","gm_smokeshell_wht_dm25","gm_smokeshell_grn_dm21","gm_smokeshell_red_dm23","gm_1Rnd_265mm_flare_multi_red_DM23","gm_1Rnd_265mm_flare_multi_grn_DM21","gm_1Rnd_265mm_flare_multi_nbc_DM47","gm_1Rnd_265mm_flare_single_wht_DM15","gm_1Rnd_265mm_flare_single_red_DM13","gm_1Rnd_265mm_flare_single_grn_DM11","gm_1Rnd_265mm_flare_single_yel_DM10","gm_1Rnd_44x537mm_heat_dm32_pzf44_2","gm_120Rnd_762x51mm_B_T_DM21A1_mg3_grn","gm_20Rnd_762x51mm_B_DM41_g3_blk","gm_32Rnd_9x19mm_B_DM11_mp2_blk"],[12,4,4,4,4,4,4,4,4,4,4,2,8,20,8]],[["gm_ferod16_oli","gm_ge_army_gauzeBandage","gm_ge_army_burnBandage","gm_repairkit_01"],[1,4,4,1]],[[],[]]],false]typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value܆data܆typedžvalue-1܆typeSTRING܆propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueLJdataLJtypevalue-1LJtypeSTRINGLJpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuemdata}typevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueVdataftypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueAdataQtypelvalue-1typeSTRINGdataTypeObjectPositionInfosideEmptyflagsAttributes4id%typeland_gm_camonet_04_nato:positionFBdFanglesMK@M@Ke<4:dataTypeObjectPositionInfoŋsideEmptyflagsAttributesid'typeland_gm_camonet_04_natoatlOffsetxpositionFҊB2FanglesxO4=G@1 @dataTypeObjectPositionInfo~sideEmptyflagsAttributesid(typeland_gm_camonet_04_natoposition_FfB>Fangles=y,@:@dataTypeObjectPositionInfo7sideEmptyflagsAttributesoid-typeland_gm_camonet_04_natoupositions4FHBFangles#<'@(Item1Item2̔Item3Item4ZItem5Item6Item7;Item8|Item9ĖItem10Item11QItem12Item13Item14%Item15wItem16Item17 LdataNtypevvalueradio_01_unhidetypeSTRINGdata̔typevalue?̔typeSCALAR̔dataܔtypevalueradio_02_unhidetypeSTRINGdata)ZtypeEvalue?ZtypeSCALARZdatajtypevaluecover_hoops_unhidetypeSTRINGdatatype֕value?typeSCALARdata;type&valuecover_doors_unhide;typeSTRING;dataK|typegvalue?|typeSCALAR|dataĖtypevaluewindshieldĖtypeSTRINGĖdataԖtypevaluetypeSCALARdataQtype<valuedoorBag_unhideQtypeSTRINGQdataatype}value?typeSCALARdatatypeϗvaluebeacon_01_org_unhidetypeSTRINGdata%typevalue%typeSCALAR%data5wtypebvaluebeacon_01_blu_unhidewtypeSTRINGwdatatypevaluetypeSCALARdataȘ typevaluecoldWeatherKit_unhide typeSTRING dataLtype7value?LtypeSCALARLpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value2data2typevalue-12typeSTRING2propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueݚdatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueśdata՛typevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatype֜value-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value՝data՝typevalue-1՝typeSTRING՝propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuefdatavtypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueOdata_typezvalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value:zdataJztypeevalue-1ztypeSTRINGzdataTypeGroupsideWestEntitiesġAttributesid.itemsItem0Item1Item2Item3dataTypeObjectPositionInfosideWestflagsAttributesid/typeB_officer_FCustomAttributespositionETB3tFangles7@skill?rankCAPTAINinit [this, ["faction", "CUP_GER_DE"], ["gear", "CO"], ["marker", "CO", "ColorYellow"]] call hull3_unit_fnc_init;descriptionWest German Army - Commanding Officer@COisPlayerisPlayableAttribute0Attribute1tnAttributespropertyspeakerexpression_this setspeaker _value;Value-tdata=ttype_valueMale11ENGttypeSTRINGtpropertypitchexpression_this setpitch _value;Valuedataʤtypevalueff?typeSCALARdataTypeObjectPositionInfowsideWestflagsAttributesid0typeB_medic_FatlOffset8positionEaBKtFangles7@skill?rankSERGEANTinit [this, ["faction", "CUP_GER_DE"], ["gear", "Medic"], ["marker", "COM", "ColorYellow"]] call hull3_unit_fnc_init;descriptionWest German Army - Platoon Medic@COisPlayabledataTypeObjectPositionInfo sideWestflagsAttributesCid1typeB_Soldier_FatlOffset8positionkEaBtFangles7@Cskill?rankCORPORALinit [this, ["faction", "CUP_GER_DE"], ["gear", "Rifleman"]] call hull3_unit_fnc_init;descriptionWest German Army - Platoon Rifleman@COisPlayabledataTypeObjectPositionInfosideWestflagsAttributesid2typeB_officer_FatlOffset8positionqEaBhtFangles7@skill?rankLIEUTENANTinit [this, ["faction", "CUP_GER_DE"], ["gear", "XO"], ["marker", "XO", "ColorYellow"]] call hull3_unit_fnc_init;descriptionWest German Army - Executive Officer@COisPlayabledataTypeGroupsideWestEntitiesAttributesrid3atlOffset7x itemsItem0eItem1jItem2UItem3/Item4Item5ǸItem6Item7r dataTypeObjectPositionInfosideWestflagsAttributes4id4typeB_Soldier_SL_FatlOffset7CustomAttributesjpositionBEնB|uFangles@4skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "SL"], ["marker", "ASL", "ColorRed"]] call hull3_unit_fnc_init;}descriptionWest German Army - Alpha Squad Leader@AlphaisPlayableAttribute0RAttribute1nAttributesjpropertyspeakerexpression_this setspeaker _value;ValuedatatypeάvalueMale12ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value)jdata9jtypeUvalue33s?jtypeSCALARjdataTypeObjectPositionInfosideWestflagsAttributes$id5typeB_medic_FCustomAttributesUpositionWE'BuFangles @$skill?rankCORPORALinit [this, ["faction", "CUP_GER_DE"], ["gear", "Medic"], ["marker", "AM", "ColorRed"]] call hull3_unit_fnc_init;descriptionWest German Army - Alpha Squad Medic@AlphaisPlayableAttribute0=Attribute1ίnAttributesUpropertyspeakerexpression_this setspeaker _value;ValueίdataίtypevalueMale01ENGίtypeSTRINGίpropertypitchexpression_this setpitch _value;ValueUdata$Utype@valueHz?UtypeSCALARUdataTypeObjectPositionInfoܰsideWestflagsAttributesid6typeB_Soldier_TL_FCustomAttributes߱/positionXE4BtFangles@skill?rankCORPORALinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "FTL"]] call hull3_unit_fnc_init;}descriptionWest German Army - Alpha Grenadier (2IC)@AlphaisPlayable߱Attribute0Attribute1nAttributes/propertyspeakerexpression_this setspeaker _value;ValueadataqtypevalueMale02ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value/data/typevalue ׃?/typeSCALAR/dataTypeObjectPositionInfosideWestflagsAttributesid7typeB_soldier_LAT_FCustomAttributespositionkEDB~tFangles @skill?init[this, ["faction", "CUP_GER_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;descriptionWest German Army - Alpha Rifleman (AT)@AlphaisPlayableAttribute0ٴAttribute1jnAttributespropertyspeakerexpression_this setspeaker _value;Value#jdata3jtypeUvalueMale09ENGjtypeSTRINGjpropertypitchexpression_this setpitch _value;Valuedatatypeܵvalue?typeSCALARdataTypeObjectPositionInfoxsideWestflagsAttributesid8typeB_soldier_AR_FCustomAttributeswǸpositionLE,BtFangles @skill?rankCORPORALinit [this, ["faction", "CUP_GER_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionWest German Army - Alpha Automatic Rifleman@AlphaisPlayablewAttribute0Attribute1@nAttributesǸpropertyspeakerexpression_this setspeaker _value;Value@data @type+valueMale06ENG@typeSTRING@propertypitchexpression_this setpitch _value;ValueǸdataǸtypevalueG?ǸtypeSCALARǸ dataTypeObjectPositionInfo]sideWestflagsAttributesid9typeB_Soldier_A_FatlOffset7CustomAttributesWposition+}E!BYtFangles@skill?init [this, ["faction", "CUP_GER_DE"], ["gear", "AAR"]] call hull3_unit_fnc_init;descriptionWest German Army - Alpha Assistant Automatic Rifleman@AlphaisPlayableWAttribute0Attribute1 nAttributespropertyspeakerexpression_this setspeaker _value;Valueٺ data type valueMale10ENG typeSTRING propertypitchexpression_this setpitch _value;ValuefdatavtypevalueQx?typeSCALAR dataTypeObjectPositionInfo>sideWestflagsAttributesvid:typeB_Soldier_TL_FatlOffset7CustomAttributes9positionyE!BtFangles @vskill?rankCORPORALinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "ENG"]] call hull3_unit_fnc_init;}descriptionWest German Army - Alpha Pioneer@AlphaisPlayable9Attribute0qAttribute1nAttributespropertyspeakerexpression_this setspeaker _value;Valuedata˽typevalueMale01ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValueHdataXtypetvalueG?typeSCALAR dataTypeObjectPositionInfo sideWestflagsAttributesXid;typeB_soldier_AR_FatlOffset7CustomAttributes"rpositionE!BtFangles @Xskill?rankCORPORALinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;}descriptionWest German Army - Alpha Rifleman (AT)@AlphaisPlayable"Attribute0ZAttribute1nAttributesrpropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale10ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value1rdataArtype]value ׃?rtypeSCALARrxdataTypeGroupsideWestEntitiesAttributesid< itemsItem0,Item1Item2Item3Item4Item5Item6`Item71dataTypeObjectPositionInfosideWestflagsAttributesid=typeB_Soldier_SL_FCustomAttributespositionEQBuFangles @skill?rankSERGEANTinit [this, ["faction", "CUP_GER_DE"], ["gear", "SL"], ["marker", "BSL", "ColorBlue"]] call hull3_unit_fnc_init;descriptionWest German Army - Bravo Squad Leader @BravoisPlayableAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValueOdata_typevalueMale02ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValuedatatypevalueHz?typeSCALAR dataTypeObjectPositionInfosideWestflagsAttributesid>typeB_medic_FatlOffset7CustomAttributespositionKETBuFangles @skill?rankCORPORALinit [this, ["faction", "CUP_GER_DE"], ["gear", "Medic"], ["marker", "BM", "ColorBlue"]] call hull3_unit_fnc_init;descriptionWest German Army - Bravo Squad Medic@BravoisPlayableAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValueKdata[type}valueMale11ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Valuedatatypevalue ׃?typeSCALARdataTypeObjectPositionInfosideWestflagsAttributesid?typeB_Soldier_TL_FCustomAttributespositionuETBuFangles@skill?rankCORPORALinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "FTL"]] call hull3_unit_fnc_init;}descriptionWest German Army - Bravo Grendier (2IC)@BravoisPlayableAttribute0Attribute1knAttributespropertyspeakerexpression_this setspeaker _value;Value$kdata4ktypeVvalueMale07ENGktypeSTRINGkpropertypitchexpression_this setpitch _value;Valuedatatypevalueff?typeSCALARdataTypeObjectPositionInfozsideWestflagsAttributesid@typeB_soldier_LAT_FCustomAttributesjpositionETBIuFangles @skill?initcall{[this, ["faction", "CUP_GER_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;}descriptionWest German Army - Bravo Rifleman (AT)@BravoisPlayablejAttribute0Attribute13nAttributespropertyspeakerexpression_this setspeaker _value;Value3data3typevalueMale09ENG3typeSTRING3propertypitchexpression_this setpitch _value;Valueydatatypevalue\?typeSCALARdataTypeObjectPositionInfoAsideWestflagsAttributesyidAtypeB_soldier_AR_FCustomAttributes@position*ETBtFangles @yskill?rankCORPORALinit [this, ["faction", "CUP_GER_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionWest German Army - Bravo Automatic Rifleman@BravoisPlayable@Attribute0xAttribute1 nAttributespropertyspeakerexpression_this setspeaker _value;Value data typevalueMale12ENG typeSTRING propertypitchexpression_this setpitch _value;ValueOdata_type{valueQx?typeSCALARdataTypeObjectPositionInfosideWestflagsAttributesNidBtypeB_Soldier_A_FCustomAttributes`positionETBtFangles @Nskill?init [this, ["faction", "CUP_GER_DE"], ["gear", "AAR"]] call hull3_unit_fnc_init;descriptionWest German Army - Bravo Assistant Automatic Rifleman@BravoisPlayableAttribute0HAttribute1nAttributes`propertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale02ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value`data/`typeKvalueG?`typeSCALAR` dataTypeObjectPositionInfosideWestflagsAttributes.idCtypeB_Soldier_A_FatlOffsetCustomAttributes1positionDEJBtFangles @.skill?initcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "ENG"]] call hull3_unit_fnc_init;}descriptionWest German Army - Bravo Pioneer@BravoisPlayableAttribute0Attribute1nAttributes1propertyspeakerexpression_this setspeaker _value;ValuecdatastypevalueMale04ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value1data1typevalue33s?1typeSCALAR1dataTypeObjectPositionInfosideWestflagsAttributesidDtypeB_soldier_LAT_FCustomAttributespositionETBtFangles@skill?initcall{[this, ["faction", "CUP_GER_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;}descriptionWest German Army - Bravo Rifleman (AT)@BravoisPlayableAttribute0Attribute1rnAttributespropertyspeakerexpression_this setspeaker _value;Value+rdata;rtype]valueMale06ENGrtypeSTRINGrpropertypitchexpression_this setpitch _value;Valuedatatypevalue?typeSCALARdataTypeGroupsideWestEntitiesIAttributesidE itemsItem0Item1Item2Item3pItem4FItem5 Item6Item7dataTypeObjectPositionInfo:sideWestflagsAttributesridFtypeB_Soldier_SL_FCustomAttributesXposition}ETBh)uFanglesA@rskill?rankSERGEANTinit [this, ["faction", "CUP_GER_DE"], ["gear", "SL"], ["marker", "CSL", "ColorGreen"]] call hull3_unit_fnc_init;descriptionWest German Army - Charlie Squad Leader@CharlieisPlayableXAttribute0Attribute1!nAttributespropertyspeakerexpression_this setspeaker _value;Value!data!type valueMale05ENG!typeSTRING!propertypitchexpression_this setpitch _value;ValuegdatawtypevalueHz?typeSCALARdataTypeObjectPositionInfo*sideWestflagsAttributesbidGtypeB_medic_FCustomAttributesIposition 5ETBF%uFanglesA@bskill?rankCORPORALinit [this, ["faction", "CUP_GER_DE"], ["gear", "Medic"], ["marker", "CM", "ColorGreen"]] call hull3_unit_fnc_init;descriptionWest German Army - Charlie Squad Medic@CharlieisPlayableIAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale07ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValueXdatahtypevalue?typeSCALARdataTypeObjectPositionInfo sideWestflagsAttributesXidHtypeB_Soldier_TL_FCustomAttributes pposition3ETBuFanglesA@Xskill?rankCORPORALinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "FTL"]] call hull3_unit_fnc_init;}descriptionWest German Army - Charlie Grendier@CharlieisPlayable Attribute0XAttribute1nAttributesppropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale06ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value/pdata?ptype[value\?ptypeSCALARp dataTypeObjectPositionInfosideWestflagsAttributes@idItypeB_soldier_LAT_FatlOffset7CustomAttributesFpositionIIEUB#uFanglesA@@skill?init[this, ["faction", "CUP_GER_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;descriptionWest German Army - Charlie Rifleman (AT)@CharlieisPlayableAttribute0.Attribute1nAttributesFpropertyspeakerexpression_this setspeaker _value;ValuexdatatypevalueMale06ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValueFdataFtype1valueG?FtypeSCALARFdataTypeObjectPositionInfosideWestflagsAttributesidJtypeB_soldier_AR_FCustomAttributes positionDETBuFanglesA@skill?rankCORPORALinit [this, ["faction", "CUP_GER_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionWest German Army - Charlie Automatic Rifleman@CharlieisPlayableAttribute0Attribute1nAttributes propertyspeakerexpression_this setspeaker _value;ValueRdatabtypevalueMale01ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value data type valuep}? typeSCALAR dataTypeObjectPositionInfosideWestflagsAttributesidKtypeB_Soldier_A_FCustomAttributesposition"]ETBuFanglesA@skill?init [this, ["faction", "CUP_GER_DE"], ["gear", "AAR"]] call hull3_unit_fnc_init;descriptionWest German Army - Charlie Assistant Automatic Rifleman@CharlieisPlayableAttribute0Attribute1mnAttributespropertyspeakerexpression_this setspeaker _value;Value&mdata6mtypeXvalueMale04ENGmtypeSTRINGmpropertypitchexpression_this setpitch _value;Valuedatatypevalueu?typeSCALARdataTypeObjectPositionInfozsideWestflagsAttributesidLtypeB_Soldier_A_FCustomAttributeshposition6[ETBHtFanglesA@skill?initcall{[this, ["faction", "CUP_GER_DE"], ["gear", "ENG"]] call hull3_unit_fnc_init;}descriptionWest German Army - Charlie Pioneer@CharlieisPlayablehAttribute0Attribute11nAttributespropertyspeakerexpression_this setspeaker _value;Value1data1typevalueMale05ENG1typeSTRING1propertypitchexpression_this setpitch _value;Valuewdatatypevalueu?typeSCALARdataTypeObjectPositionInfo@sideWestflagsAttributesxidMtypeB_soldier_LAT_FCustomAttributes4positionukETBNtFanglesA@xskill?initcall{[this, ["faction", "CUP_GER_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;}descriptionWest German Army - Charlie Rifleman (AT)@CharlieisPlayable4Attribute0lAttribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale08ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValueCdataStypeovalue?typeSCALARdataTypeGroupsideWestEntitiesAttributesidNatlOffset86itemsItem0 Item1 dataTypeObjectPositionInfosideWestflagsAttributesidOtypeB_Soldier_SL_FatlOffset8CustomAttributesposition8F\B`FanglesAf@="<skill?rankSERGEANTinit [this, ["faction", "CUP_GER_DE"], ["gear", "SL"], ["marker", "DSL", "ColorBrown"]] call hull3_unit_fnc_init;descriptionWest German Army - Delta Squad Leader [JIP]@Delta SLisPlayableAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValueHdataXtypezvalueMale02ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValuedatatypevalueQx?typeSCALAR dataTypeObjectPositionInfosideWestflagsAttributesidPtypeB_medic_FatlOffset8CustomAttributesposition F7ȇBFangles$@="<skill?rankCORPORALinit [this, ["faction", "CUP_GER_DE"], ["gear", "Medic"], ["marker", "DM", "ColorBrown"]] call hull3_unit_fnc_init;descriptionWest German Army - Delta Squad Medic [JIP]@Delta SLisPlayableAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValueNdata^typevalueMale04ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Valuedatatypevalue?typeSCALARformationDIAMOND6dataTypeGroupsideWestEntitiesAttributesridQitemsItem0Item1Item2Item3rdataTypeObjectPositionInfoEsideWestflagsAttributes}idRtypeB_Soldier_TL_FCustomAttributeslpositionFjmBFangles?f@=<}skill?rankCORPORALinit [this, ["faction", "CUP_GER_DE"], ["gear", "FTL"], ["marker", "D1", "ColorBrown"]] call hull3_unit_fnc_init;descriptionWest German Army - Delta 1 Fireteam Leader [JIP]@Delta 1isPlayablelAttribute0Attribute15nAttributespropertyspeakerexpression_this setspeaker _value;Value5data5type valueMale12ENG5typeSTRING5propertypitchexpression_this setpitch _value;Value{datatypevaluep}?typeSCALAR dataTypeObjectPositionInfoSsideWestflagsAttributesidStypeB_soldier_AR_FatlOffset 9CustomAttributes\position5FvׇBzFangles$@=K=skill?rankCORPORALinit [this, ["faction", "CUP_GER_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionWest German Army - Delta 1 Automatic Rifleman [JIP]@Delta 1isPlayable\Attribute0Attribute1%nAttributespropertyspeakerexpression_this setspeaker _value;Value%data%typevalueMale07ENG%typeSTRING%propertypitchexpression_this setpitch _value;Valuekdata{typevalueHz?typeSCALAR dataTypeObjectPositionInfoBsideWestflagsAttributeszidTtypeB_Soldier_A_FatlOffset7CustomAttributesFpositionFodBFangles@="sideWestflagsAttributesvid]typeB_soldier_AR_FatlOffset7CustomAttributesGpositionFZFB Fangles@="?positionzEmBHuFanglesh@9K=skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "SL"], ["marker", "APC-C", "ColorGreen"]] call hull3_unit_fnc_init;}descriptionWest German Army - Charlie APC (TPz Fuchs) Driver@Charlie APCisPlayableG>Attribute0>Attribute1?nAttributes?propertyspeakerexpression_this setspeaker _value;Value>?data>?type>valueMale02ENG?typeSTRING?propertypitchexpression_this setpitch _value;ValueV??dataf??type?valueHz??typeSCALAR? dataTypeObjectPositionInfo(@sideWestflagsAttributes`@idptypeB_crew_FatlOffsetCustomAttributes/ABpositionEBB=uFangles宴@`@skill?initcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "rifleman"]] call hull3_unit_fnc_init;}descriptionWest German Army - Charlie APC (TPz Fuchs) Gunner@Charlie APCisPlayable/AAttribute0gAAttribute1AnAttributesBpropertyspeakerexpression_this setspeaker _value;ValueAAdataAAtypeAvalueMale12ENGAtypeSTRINGApropertypitchexpression_this setpitch _value;Value>BBdataNBBtypejBvalue33s?BtypeSCALARBBdataTypeObjectPositionInfoBsideEmptyflagsAttributes-CidrtypeHeli_H_civil3CpositionE#BrFangles@dߎ?@-C3CdataTypeObjectPositionInfoCsideEmptyflagsAttributesCidstypeHeli_H_civilatlOffset7CpositionE$BpHsFangles;z?;CC dataTypeObjectPositionInfoDsideEmptyflagsAttributesDidvtypegm_ge_army_bo105p_pah1a1atlOffsetCustomAttributesCETpositionEGBjFsFangles6e;{F?6e;Dinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Car"]] call hull3_unit_fnc_init;}texturesgm_ge_oliCE Attribute0EAttribute1FAttribute2sKAttribute3XLAttribute4CMAttribute5+NAttribute6PAttribute7QAttribute8RAttribute9SnAttributes Tpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueFFdataFFtypeFvalue-1FtypeSTRINGFpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};ValueGsKdataHsKtype"Hvalue6HsKtypeARRAY6HitemsItem0^HItem1HsKdatanHHtype~HHtypeARRAYHdataHsKtypeHvalueHsKtypeARRAYH itemsItem0;IItem1IItem2IItem3JItem4WJItem5JItem6JItem72KsKdataKIItypesIvaluedoor_1_1_unhideItypeSTRINGIdataIItypeIvalue?ItypeSCALARIdataIJtypeJvaluedoor_1_2_unhideJtypeSTRINGJdata&JWJtypeBJvalue?WJtypeSCALARWJdatagJJtypeJvaluedoor_2_1_unhideJtypeSTRINGJdataJJtypeJvalue?JtypeSCALARJdataJ2KtypeKvaluedoor_2_2_unhide2KtypeSTRING2KdataBKsKtype^Kvalue?sKtypeSCALARsKpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueLXLdata(LXLtypeCLvalue-1XLtypeSTRINGXLpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueMCMdataMCMtype.Mvalue-1CMtypeSTRINGCMpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueM+NdataM+NtypeNvalue-1+NtypeSTRING+NpropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;ValueNPdataNPtypePvalue[[[["gm_p2a1_blk"],[1]],[["gm_handgrenade_frag_dm51a1","gm_smokeshell_wht_dm25","gm_smokeshell_grn_dm21","gm_smokeshell_red_dm23","gm_1Rnd_265mm_flare_multi_red_DM23","gm_1Rnd_265mm_flare_multi_grn_DM21","gm_1Rnd_265mm_flare_multi_nbc_DM47","gm_1Rnd_265mm_flare_single_wht_DM15","gm_1Rnd_265mm_flare_single_red_DM13","gm_1Rnd_265mm_flare_single_grn_DM11","gm_1Rnd_265mm_flare_single_yel_DM10","gm_8Rnd_9x19mm_B_DM51_p1_blk"],[4,1,1,1,1,1,1,1,1,1,1,6]],[["gm_ferod16_oli","gm_ge_army_gauzeBandage","gm_ge_army_burnBandage","gm_repairkit_01"],[1,4,4,2]],[[],[]]],false]PtypeSTRINGPpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueQQdataQQtypeQvalue-1QtypeSTRINGQpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueRRdataRRtypeRvalue-1RtypeSTRINGRpropertygm_vehicleMarkings_Insignias_flag_attributeexpression[_this,_value,5,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValuenSSdata~SStypeSvalue-1StypeSTRINGSpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueWTTdatagTTtypeTvalue-1TtypeSTRINGTdataTypeObjectPositionInfo)UsideEmptyflagsAttributesaUidwtypegm_ge_army_bo105p_pah1a1CustomAttributesU-eposition9EBrFangles@?@aUinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Car"]] call hull3_unit_fnc_init;}texturesgm_ge_oliU Attribute0VAttribute1|WAttribute2 \Attribute3\Attribute4]Attribute5^Attribute6aAttribute7{bAttribute8acAttribute9DdnAttributes -epropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value~dataN~typeivalue-1~typeSTRING~dataTypeObjectPositionInfo sideEmptyflagsAttributesAidztypeland_gm_camonet_04_natoatlOffset7Gposition9E#BsFangles_@Ű@AGdataTypeObjectPositionInfo„sideEmptyflagsAttributesid{typeland_gm_camonet_04_natopositionEȯBQsFangles@Շ@:;dataTypeGroupsideWestEntitiesJAttributes7id=itemsItem0}Item1Item2W7dataTypeObjectPositionInfosideWestflagsAttributes6idtypeB_crew_FCustomAttributes6positionEBtFangles0W?`3;6skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "MATAG"], ["marker", "DHAT-1", "ColorOrange"]] call hull3_unit_fnc_init;}descriptionWest German Army - DHAT 1 (TPz Fuchs MILAN) Commander@DHAT-1isPlayable6Attribute0nAttribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValuedataȇtypevalueMale02ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValueEdataUtypeqvalueHz?typeSCALARdataTypeObjectPositionInfosideWestflagsAttributes?idtypeB_crew_FCustomAttributesWpositionEBtFangles0W?`3;?skill?initcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "MATAC"]] call hull3_unit_fnc_init;}descriptionWest German Army - DHAT 1 (TPz Fuchs MILAN) Driver@DHAT-1isPlayableAttribute0?Attribute1ЊnAttributesWpropertyspeakerexpression_this setspeaker _value;ValueЊdataЊtypevalueMale12ENGЊtypeSTRINGЊpropertypitchexpression_this setpitch _value;ValueWdata&WtypeBvalue33s?WtypeSCALARW dataTypeObjectPositionInfosideWestflagsAttributes idtypeB_crew_FatlOffsetCustomAttributes7position1E[BtFangles0W?o2; skill?initcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "MATG"]] call hull3_unit_fnc_init;}descriptionWest German Army - DHAT 1 (TPz Fuchs MILAN) Gunner@DHAT-1isPlayableAttribute0Attribute1nAttributes7propertyspeakerexpression_this setspeaker _value;ValueidataytypevalueMale12ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value7data7type"value33s?7typeSCALAR7=dataTypeGroupsideWestEntitiesAttributesgidmitemsItem0Item1đItem2gdataTypeObjectPositionInfo;sideWestflagsAttributessidtypeB_crew_FCustomAttributestđposition+EB)tFangles4:r?C;sskill?rankSERGEANTinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "MATAG"], ["marker", "DHAT-2", "ColorOrange"]] call hull3_unit_fnc_init;}descriptionWest German Army - DHAT 2 (TPz Fuchs MILAN) Commander@DHAT-2isPlayabletAttribute0Attribute1=nAttributesđpropertyspeakerexpression_this setspeaker _value;Value=data=type(valueMale02ENG=typeSTRING=propertypitchexpression_this setpitch _value;ValueđdatađtypevalueQx?đtypeSCALARđdataTypeObjectPositionInfoEsideWestflagsAttributes}idtypeB_crew_FCustomAttributesFpositionE_B$tFanglesy:r?-;}skill?initcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "MATAC"]] call hull3_unit_fnc_init;}descriptionWest German Army - DHAT 2 (TPz Fuchs MILAN) Driver@DHAT-2isPlayableFAttribute0~Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValueȓdataؓtypevalueMale09ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValueUdataetypevalue ׃?typeSCALARdataTypeObjectPositionInfosideWestflagsAttributesOidtypeB_crew_FCustomAttributesgposition}EBBtFanglesr?-;Oskill?initcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "MATG"]] call hull3_unit_fnc_init;}descriptionWest German Army - DHAT 2 (TPz Fuchs MILAN) Gunner@DHAT-2isPlayableAttribute0OAttribute1nAttributesgpropertyspeakerexpression_this setspeaker _value;Valuedatatype˖valueMale12ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value&gdata6gtypeRvalue33s?gtypeSCALARgmdataTypeGroupsideWestEntitiesAttributesiditemsItem0ߗItem1ҚdataTypeObjectPositionInfo`sideWestflagsAttributesidtypeB_crew_FCustomAttributesҚpositioneEBarFangles0W?@skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "P"], ["marker", "AH-1", "ColorOrange"]] call hull3_unit_fnc_init;}descriptionWest German Army - AH-1 (PAH 1A1) Pilot@AH-1isPlayableAttribute0Attribute1KnAttributesҚpropertyspeakerexpression_this setspeaker _value;ValueKdataKtype6valueMale02ENGKtypeSTRINGKpropertypitchexpression_this setpitch _value;ValueҚdataҚtypevalueHz?ҚtypeSCALARҚ dataTypeObjectPositionInfocsideWestflagsAttributesidtypeB_crew_FatlOffset7CustomAttributesSpositionQEAB|rFangles;0W?P@skill?initcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "P"]] call hull3_unit_fnc_init;}descriptionWest German Army - AH-1 (PAH 1A1) Gunner@AH-1isPlayableSAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;Value՜datatypevalueMale12ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Valuebdatartypevalue33s?typeSCALARdataTypeGroupsideWestEntitiesAttributesϣidգitemsItem0Item1ϣdataTypeObjectPositionInfosideWestflagsAttributesԞidtypeB_crew_FCustomAttributesposition EBO!sFangles;r?@Ԟskill?rankSERGEANTinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "P"], ["marker", "AH-2", "ColorOrange"]] call hull3_unit_fnc_init;}descriptionWest German Army - AH-2 (PAH 1A1) Pilot@AH-2isPlayableAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;Value@dataPtypervalueMale02ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value͠dataݠtypevalueQx?typeSCALARdataTypeObjectPositionInfosideWestflagsAttributesǡidtypeB_crew_FCustomAttributesϣpositionEb­BsFangles;r?@ǡskill?initcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "P"]] call hull3_unit_fnc_init;}descriptionWest German Army - AH-2 (PAH 1A1) Gunner@AH-2isPlayableAttribute0Attribute1HnAttributesϣpropertyspeakerexpression_this setspeaker _value;ValueHdataHtype3valueMale12ENGHtypeSTRINGHpropertypitchexpression_this setpitch _value;Valueϣdataϣtypevalue33s?ϣtypeSCALARϣգdataTypeObjectPositionInfoesideEmptyflagsAttributesidtypegm_ge_army_iltis_cargoCustomAttributes'ڷposition-*E5BAsFangles@ٺ?lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olw' Attribute0Attribute1Attribute2ӧAttribute3Attribute4Attribute5}Attribute6eAttribute7KAttribute85Attribute9 Attribute10Attribute11nAttributes ڷpropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValuedatatypeӦvalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueӧdataӧtypevalue-1ӧtypeSTRINGӧpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valuedatatypevalue#typeARRAY#itemsItem0KItem1data[typektypeARRAYdatatypevaluetypeARRAYitemsItem0Item1Item2,Item3yItem4Item5 Item6KItem7Item8ܬItem9$Item10eItem11Item12Item13DItem14Item15׮Item16Item17kdatatype֪valueradio_01_unhidetypeSTRINGdata,typevalue?,typeSCALAR,data<ytypedvalueradio_02_unhideytypeSTRINGydatatypevalue?typeSCALARdataʫ typevaluecover_hoops_unhide typeSTRING dataKtype6value?KtypeSCALARKdata[typevaluecover_doors_unhidetypeSTRINGdataܬtypeǬvalue?ܬtypeSCALARܬdata$typevaluewindshield$typeSTRING$data4etypePvalueetypeSCALARedatautypevaluedoorBag_unhidetypeSTRINGdatatypeݭvalue?typeSCALARdataDtype/valuebeacon_01_org_unhideDtypeSTRINGDdataTtypepvaluetypeSCALARdata׮type®valuebeacon_01_blu_unhide׮typeSTRING׮datatypevaluetypeSCALARdata(ktypeVvaluecoldWeatherKit_unhidektypeSTRINGkdata{typevaluetypeSCALARpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueRdatabtype}value-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value=}dataM}typehvalue-1}typeSTRING}propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value%edata5etypePvalue-1etypeSTRINGepropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value KdataKtype6value-1KtypeSTRINGKpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value5data5type value-15typeSTRING5propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value data type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueƵdataֵtypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypeڶvalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueڷdataڷtypeŷvalue-1ڷtypeSTRINGڷdataTypeGroupsideWestEntities$AttributesiditemsItem0WItem1]Item27dataTypeObjectPositionInfoظsideWestflagsAttributesidtypeB_crew_FCustomAttributes ]positionm"Fh6B\Fangles@$@w4=skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "VC"], ["marker", "TNK-3", "ColorGreen"]] call hull3_unit_fnc_init;}descriptionWest German Army - Tank 3 (Leopard 1A5) Commander [JIP]@Tank 3isPlayable Attribute0EAttribute1ֺnAttributes]propertyspeakerexpression_this setspeaker _value;ValueֺdataֺtypevalueMale02ENGֺtypeSTRINGֺpropertypitchexpression_this setpitch _value;Value]data,]typeHvalueHz?]typeSCALAR] dataTypeObjectPositionInfosideWestflagsAttributes&idtypeB_crew_FatlOffset7CustomAttributes7positionF:BKaFangles<$@n<&skill?init [this, ["faction", "CUP_GER_DE"], ["gear", "VD"]] call hull3_unit_fnc_init;descriptionWest German Army - Tank 3 (Leopard 1A5) Driver [JIP]@Tank 3isPlayableAttribute0Attribute1nAttributes7propertyspeakerexpression_this setspeaker _value;ValueidataytypevalueMale12ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value7data7type"value33s?7typeSCALAR7 dataTypeObjectPositionInfoȾsideWestflagsAttributesidtypeB_crew_FatlOffsetCustomAttributespositionFPҊBq\Fangles@$@3=skill?init [this, ["faction", "CUP_GER_DE"], ["gear", "VD"]] call hull3_unit_fnc_init;descriptionWest German Army - Tank 3 (Leopard 1A5) Gunner [JIP]@Tank 3isPlayableAttribute0 Attribute1Attribute2!nAttributespropertyspeakerexpression_this setspeaker _value;ValueSdatactypevalueMale12ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value!data!type value33s?!typeSCALAR!propertyfaceexpression_this setface _value;ValueedatautypevaluetypeSTRINGdataTypeGroupsideWestEntitiesAttributesiditemsItem0&Item1,Item2dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FCustomAttributes,positiongFFْB}tFanglesQ< #@]@skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "VC"], ["marker", "TNK-4", "ColorBrown"]] call hull3_unit_fnc_init;}descriptionWest German Army - Tank 4 (Leopard 1A5) Commander [JIP]@Tank 4isPlayableAttribute0Attribute1nAttributes,propertyspeakerexpression_this setspeaker _value;Value^datantypevalueMale02ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value,data,typevalueQx?,typeSCALAR, dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FatlOffset7CustomAttributesposition`DFyBw{Fangles:; #@k.<skill?init [this, ["faction", "CUP_GER_DE"], ["gear", "VD"]] call hull3_unit_fnc_init;descriptionWest German Army - Tank 4 (Leopard 1A5) Driver [JIP]@Tank 4isPlayableAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;Value8dataHtypejvalueMale09ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Valuedatatypevalue ׃?typeSCALARdataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FCustomAttributesposition:FB`wFanglesQ< #@]@skill?init [this, ["faction", "CUP_GER_DE"], ["gear", "VD"]] call hull3_unit_fnc_init;descriptionWest German Army - Tank 4 (Leopard 1A5) Gunner [JIP]@Tank 4isPlayableAttribute0Attribute1InAttributespropertyspeakerexpression_this setspeaker _value;ValueIdataItype4valueMale12ENGItypeSTRINGIpropertypitchexpression_this setpitch _value;Valuedatatypevalue33s?typeSCALARdataTypeGroupsideWestEntities AttributesiditemsItem0SItem1bItem29dataTypeObjectPositionInfosideWestflagsAttributes idtypeB_crew_FCustomAttributesbpositionoFBFanglesP5@#@!ڣ< skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "MATAG"], ["marker", "DHAT-3", "ColorOrange"]] call hull3_unit_fnc_init;}descriptionWest German Army - DHAT 3 (TPz Fuchs MILAN) Commander [JIP]@DHAT-3isPlayableAttribute0JAttribute1nAttributesbpropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale02ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value!bdata1btypeMvalueHz?btypeSCALARbdataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FCustomAttributes9position~pFBBFangles]Em=#@E@skill?initcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "MATAC"]] call hull3_unit_fnc_init;}descriptionWest German Army - DHAT 3 (TPz Fuchs MILAN) Driver [JIP]@DHAT-3isPlayableAttribute0!Attribute1nAttributes9propertyspeakerexpression_this setspeaker _value;Valuekdata{typevalueMale12ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value9data9type$value33s?9typeSCALAR9dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FCustomAttributespositioneFnBFanglesnsD<#@!ڣ<skill?initcall{ [this, ["faction", "CUP_GER_DE"], ["gear", "MATG"]] call hull3_unit_fnc_init;}descriptionWest German Army - DHAT 3 (TPz Fuchs MILAN) Gunner [JIP]@DHAT-3isPlayableAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValueAdataQtypesvalueMale12ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Valuedatatypevalue33s?typeSCALARdataTypeGroupsideWestEntities_AttributesQidWitemsItem0Item1Item2zQdataTypeObjectPositionInfosideWestflagsAttributesKidtypeB_crew_FCustomAttributesRpositionګFB&FanglesA@dataTypeMarkerpositionFTӜB-FnamebahrdorftypeEmptyidatlOffset#dataTypeMarkerpositionE EB+sFnamespawntypeEmptyidxatlOffset@?P dataTypeObjectPositionInfosideEmptyflagsAttributes(idztypegm_ge_army_iltis_cargoatlOffset7CustomAttributesepositionWFMB~=FanglesE@(lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olw Attribute0Attribute1sAttribute2^Attribute37Attribute4Attribute5Attribute6Attribute7Attribute8Attribute9Attribute10Attribute11znAttributes epropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value3sdataCstype^value-1stypeSTRINGspropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value^data.^typeIvalue-1^typeSTRING^propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valueo7data7typevalue7typeARRAYitemsItem0Item1 7data type typeARRAY data7type5valueI7typeARRAYIitemsItem0)Item1vItem2Item3Item4EItem5Item6Item7&Item8gItem9Item10Item11<Item12}Item13Item14Item15bItem16Item177data9vtypeavalueradio_01_unhidevtypeSTRINGvdatatypevalue?typeSCALARdatatypevalueradio_02_unhidetypeSTRINGdataEtype0value?EtypeSCALAREdataUtypevaluecover_hoops_unhidetypeSTRINGdatatypevalue?typeSCALARdata&typevaluecover_doors_unhide&typeSTRING&data6gtypeRvalue?gtypeSCALARgdatawtypevaluewindshieldtypeSTRINGdatatypevaluetypeSCALARdata<type'valuedoorBag_unhide<typeSTRING<dataL}typehvalue?}typeSCALAR}datatypevaluebeacon_01_org_unhidetypeSTRINGdatatypevaluetypeSCALARdata btypeMvaluebeacon_01_blu_unhidebtypeSTRINGbdatartypevaluetypeSCALARdatatypevaluecoldWeatherKit_unhidetypeSTRINGdata7type"value?7typeSCALAR7propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuekdata{typevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueQdataatype|value-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value:zdataJztypeevalue-1ztypeSTRINGzpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value%edata5etypePvalue-1etypeSTRINGe dataTypeObjectPositionInfosideEmptyflagsAttributes@idtypegm_ge_army_kat1_451_cargoatlOffsetCustomAttributeswposition_EBGuFangles('@@lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olwAttribute0Attribute1Attribute2Attribute3^Attribute4IAttribute5/Attribute6Attribute7Attribute8Attribute9Attribute10Attribute11Attribute12nAttributes wpropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value\dataltypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_HazardSign_attributeexpression[_this,_value,4,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueEdataUtypepvalue-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value^data^typevalue^typeARRAYitemsItem0Item11^data 1type1typeARRAY1dataA^type\valuep^typeARRAYpitemsItem0PItem1Item2Item3+Item4lItem5Item6Item7MItem8Item9Item10Item11cItem12Item13Item147Item15Item16Item17^data`typevalueradio_01_unhidetypeSTRINGdatatypevalue?typeSCALARdata+typevalueradio_02_unhide+typeSTRING+data;ltypeWvalue?ltypeSCALARldata|typevaluecover_hoops_unhidetypeSTRINGdatatypevalue?typeSCALARdata Mtype8valuecover_doors_unhideMtypeSTRINGMdata]typeyvalue?typeSCALARdatatypevaluewindshieldtypeSTRINGdatatypevaluetypeSCALARdata'ctypeNvaluedoorBag_unhidectypeSTRINGcdatastypevalue?typeSCALARdatatypevaluebeacon_01_org_unhidetypeSTRINGdata7type"value7typeSCALAR7dataGtypetvaluebeacon_01_blu_unhidetypeSTRINGdatatypevaluetypeSCALARdatatypevaluecoldWeatherKit_unhidetypeSTRINGdata-^typeIvalue?^typeSCALAR^propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value IdataItype4value-1ItypeSTRINGIpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value/data/typevalue-1/typeSTRING/propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value}datatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuecdatastypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueLdata\typewvalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value7wdataGwtypebvalue-1wtypeSTRINGw dataTypeObjectPositionInfo sideEmptyflagsAttributesR idtypegm_ge_army_kat1_451_cargoatlOffset9CustomAttributes position7EBL+uFangles('@R lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olw Attribute0 Attribute1 Attribute2 Attribute3pAttribute4[Attribute5AAttribute6,Attribute7Attribute8Attribute9Attribute10Attribute11Attribute12nAttributes propertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuen  data~  type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_HazardSign_attributeexpression[_this,_value,4,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueW  datag  type value-1 typeSTRING propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value pdata ptype value ptypeARRAY itemsItem0Item1CpdataCtype/CtypeARRAYCdataSptypenvalueptypeARRAYitemsItem0bItem1Item2Item3=Item4~Item5Item6Item7_Item8Item9Item10)Item11uItem12Item13Item14IItem15Item16Item17/pdatartypevalueradio_01_unhidetypeSTRINGdatatypevalue?typeSCALARdata=type(valueradio_02_unhide=typeSTRING=dataM~typeivalue?~typeSCALAR~datatypevaluecover_hoops_unhidetypeSTRINGdatatypevalue?typeSCALARdata_typeJvaluecover_doors_unhide_typeSTRING_dataotypevalue?typeSCALARdatatypevaluewindshieldtypeSTRINGdata)typevalue)typeSCALAR)data9utype`valuedoorBag_unhideutypeSTRINGudatatypevalue?typeSCALARdatatypevaluebeacon_01_org_unhidetypeSTRINGdataItype4valueItypeSCALARIdataYtypevaluebeacon_01_blu_unhidetypeSTRINGdatatypevaluetypeSCALARdata/typevaluecoldWeatherKit_unhide/typeSTRING/data?ptype[value?ptypeSCALARppropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value[data+[typeFvalue-1[typeSTRING[propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueAdataAtype,value-1AtypeSTRINGApropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value,data,typevalue-1,typeSTRING,propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueudatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value^datantypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueIdataYtypetvalue-1typeSTRING dataTypeObjectPositionInfo,sideEmptyflagsAttributesdidtypegm_ge_army_kat1_451_cargoatlOffset9CustomAttributes2positionE0BfuFangles('@dlockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olwAttribute0Attribute1 Attribute2!Attribute3)Attribute4m*Attribute5S+Attribute6>,Attribute7&-Attribute8 .Attribute9.Attribute10/Attribute110Attribute121nAttributes 2propertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  data  type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_HazardSign_attributeexpression[_this,_value,4,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuei!!datay!!type!value-1!typeSTRING!propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value")data")type"value")typeARRAY"itemsItem0!#Item1U#)data1#U#typeA#U#typeARRAYU#datae#)type#value#)typeARRAY#itemsItem0t$Item1$Item2%Item3O%Item4%Item5%Item6!&Item7q&Item8&Item9&Item10;'Item11'Item12'Item13(Item14[(Item15(Item16(Item17A))data$$type$valueradio_01_unhide$typeSTRING$data$%type$value?%typeSCALAR%data%O%type:%valueradio_02_unhideO%typeSTRINGO%data_%%type{%value?%typeSCALAR%data%%type%valuecover_hoops_unhide%typeSTRING%data%!&type &value?!&typeSCALAR!&data1&q&type\&valuecover_doors_unhideq&typeSTRINGq&data&&type&value?&typeSCALAR&data&&type&valuewindshield&typeSTRING&data ';'type&'value;'typeSCALAR;'dataK''typer'valuedoorBag_unhide'typeSTRING'data''type'value?'typeSCALAR'data'(type(valuebeacon_01_org_unhide(typeSTRING(data*([(typeF(value[(typeSCALAR[(datak((type(valuebeacon_01_blu_unhide(typeSTRING(data((type(value(typeSCALAR(data(A)type,)valuecoldWeatherKit_unhideA)typeSTRINGA)dataQ))typem)value?)typeSCALAR)propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value-*m*data=*m*typeX*value-1m*typeSTRINGm*propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value+S+data#+S+type>+value-1S+typeSTRINGS+propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value+>,data,>,type),value-1>,typeSTRING>,propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value,&-data,&-type-value-1&-typeSTRING&-propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value- .data- .type-value-1 .typeSTRING .propertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value..data..type.value-1.typeSTRING.propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value//data//type/value-1/typeSTRING/propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value00data00type0value-10typeSTRING0propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuep11data11type1value-11typeSTRING1propertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value[22datak22type2value-12typeSTRING2 dataTypeObjectPositionInfo>3sideEmptyflagsAttributesv3idtypegm_ge_army_kat1_451_cargoatlOffset#CustomAttributes4GpositionCFB)Fangles@@?]@v3lockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olw4Attribute04Attribute15Attribute26Attribute3>Attribute4?Attribute5e@Attribute6PAAttribute78BAttribute8CAttribute9DAttribute10DAttribute11EAttribute12FnAttributes Gpropertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value55data55type5value-15typeSTRING5propertygm_vehicleMarkings_Insignias_HazardSign_attributeexpression[_this,_value,4,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value{66data66type6value-16typeSTRING6propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value7>data7>type7value 8>typeARRAY 8itemsItem038Item1g8>dataC8g8typeS8g8typeARRAYg8dataw8>type8value8>typeARRAY8itemsItem09Item19Item2:Item3a:Item4:Item5:Item63;Item7;Item8;Item9 <Item10M<Item11<Item12<Item13,=Item14m=Item15=Item16>Item17S>>data99type9valueradio_01_unhide9typeSTRING9data9:type9value?:typeSCALAR:data$:a:typeL:valueradio_02_unhidea:typeSTRINGa:dataq::type:value?:typeSCALAR:data::type:valuecover_hoops_unhide:typeSTRING:data;3;type;value?3;typeSCALAR3;dataC;;typen;valuecover_doors_unhide;typeSTRING;data;;type;value?;typeSCALAR;data; <type;valuewindshield <typeSTRING <data<M<type8<valueM<typeSCALARM<data]<<type<valuedoorBag_unhide<typeSTRING<data<<type<value?<typeSCALAR<data<,=type=valuebeacon_01_org_unhide,=typeSTRING,=data<=m=typeX=valuem=typeSCALARm=data}==type=valuebeacon_01_blu_unhide=typeSTRING=data=>type=value>typeSCALAR>data>S>type>>valuecoldWeatherKit_unhideS>typeSTRINGS>datac>>type>value?>typeSCALAR>propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value???dataO??typej?value-1?typeSTRING?propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value%@e@data5@e@typeP@value-1e@typeSTRINGe@propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueAPAdata APAtype;Avalue-1PAtypeSTRINGPApropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueA8BdataB8Btype#Bvalue-18BtypeSTRING8Bpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueBCdataBCtype Cvalue-1CtypeSTRINGCpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueCDdataCDtypeCvalue-1DtypeSTRINGDpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueDDdataDDtypeDvalue-1DtypeSTRINGDpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueEEdataEEtypeEvalue-1EtypeSTRINGEpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueFFdataFFtypeFvalue-1FtypeSTRINGFpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValuemGGdata}GGtypeGvalue-1GtypeSTRINGG dataTypeObjectPositionInfoPHsideEmptyflagsAttributesHidtypegm_ge_army_kat1_451_cargoatlOffsetCustomAttributesI\position!EdBtFangles@HlockUNLOCKEDinitcall{ [this, ["faction", "GM_FRG_80_SN"], ["gear", "Truck"]] call hull3_unit_fnc_init;}texturesgm_ge_olwIAttribute0IAttribute1JAttribute2KAttribute3SAttribute4TAttribute5wUAttribute6bVAttribute7JWAttribute80XAttribute9YAttribute10ZAttribute11ZAttribute12[nAttributes \propertygm_vehicleMarkings_tacticalSign_Icon_attributeexpression[_this,_value,1,2] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueJJdataJJtypeJvalue-1JtypeSTRINGJpropertygm_vehicleMarkings_Insignias_HazardSign_attributeexpression[_this,_value,4,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueKKdataKKtypeKvalue-1KtypeSTRINGKpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};ValueLSdataLStype MvalueMStypeARRAYMitemsItem0EMItem1yMSdataUMyMtypeeMyMtypeARRAYyMdataMStypeMvalueMStypeARRAYMitemsItem0NItem1NItem2&OItem3sOItem4OItem5PItem6EPItem7PItem8PItem9QItem10_QItem11QItem12QItem13>RItem14RItem15RItem16SItem17eSSdataNNtypeNvalueradio_01_unhideNtypeSTRINGNdataN&OtypeOvalue?&OtypeSCALAR&Odata6OsOtype^Ovalueradio_02_unhidesOtypeSTRINGsOdataOOtypeOvalue?OtypeSCALAROdataOPtypeOvaluecover_hoops_unhidePtypeSTRINGPdataPEPtype0Pvalue?EPtypeSCALAREPdataUPPtypePvaluecover_doors_unhidePtypeSTRINGPdataPPtypePvalue?PtypeSCALARPdataPQtype QvaluewindshieldQtypeSTRINGQdata.Q_QtypeJQvalue_QtypeSCALAR_QdataoQQtypeQvaluedoorBag_unhideQtypeSTRINGQdataQQtypeQvalue?QtypeSCALARQdataQ>Rtype)Rvaluebeacon_01_org_unhide>RtypeSTRING>RdataNRRtypejRvalueRtypeSCALARRdataRRtypeRvaluebeacon_01_blu_unhideRtypeSTRINGRdataRStypeRvalueStypeSCALARSdata"SeStypePSvaluecoldWeatherKit_unhideeStypeSTRINGeSdatauSStypeSvalue?StypeSCALARSpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueQTTdataaTTtype|Tvalue-1TtypeSTRINGTpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value7UwUdataGUwUtypebUvalue-1wUtypeSTRINGwUpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value"VbVdata2VbVtypeMVvalue-1bVtypeSTRINGbVpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value WJWdataWJWtype5Wvalue-1JWtypeSTRINGJWpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueW0XdataX0XtypeXvalue-10XtypeSTRING0Xpropertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueXYdataXYtypeYvalue-1YtypeSTRINGYpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueYZdataYZtypeYvalue-1ZtypeSTRINGZpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueZZdataZZtypeZvalue-1ZtypeSTRINGZpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value[[data[[type[value-1[typeSTRING[propertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value\\data\\type\value-1\typeSTRING\dataTypeTriggerpositiont5F#BSFangleYY@AttributesD]idtypeEmptyDetectorAreaR250atlOffsetM A^namestage2_5conditioncall{{ if (!(_x isKindOf "Helicopter")) then {true} else {false}; } forEach thisList;}sizeABsizeBBactivationByWESTisRectangle^dataTypeTriggerposition%RFSՠB|Fangle_?Attributes^idtypeEmptyDetectorAreaR250atlOffsetA_namestage0conditioncall{{ if (!(_x isKindOf "Helicopter")) then {true} else {false}; } forEach thisList;}sizeA|EsizeBzCactivationByWESTisRectangleA_dataTypeObjectPositionInfo_sideEmptyflagsAttributes_idwtypeland_gm_camonet_03_nato`positionFB8FanglesѠ='j@;_skillL>`dataTypeObjectPositionInfo`sideEmptyflagsAttributes`idztypeland_gm_camonet_03_nato`positionoF;BAFangles;2@Ԍ@`skillL>`dataTypeObjectPositionInfoFasideEmptyflagsAttributes~aid|typeland_gm_camonet_03_natoapositionsCFdBadataTypeLayernameHqEntitiesaidatlOffset!H?itemsoItem0 tItem1xItem2yItem3zItem4|Item5|Item6}Item7A~Item8Item9Item10Item11AItem12)Item13Item14Item15Item16Item17ՆItem18Item19Item20Item21Item22uItem23]Item24QItem25EItem26-Item27Item28Item29Item30Item31͓Item32Item33Item34Item35yItem36mItem37UItem38=Item39%Item40 Item41Item42ݝItem43ŞItem44Item45Item46yItem47aItem48Item49ߣItem50Item51Item52ZItem535Item54Item55Item56֩Item57Item58Item59wItem60RItem61-Item62Item63Item64ްItem65Item66Item67oItem68JItem69%Item70Item71Item72ƷItem73Item74|Item75WItem76BItem77-Item78Item79Item80Item81ɿItem82Item83Item84zItem85eItem86PItem87;Item88&Item89Item90Item91Item92Item93Item94xItem95SItem96>Item97Item98Item99Item100Item101Item102Item103[Item1046Item105Item106Item107Item108Item109Item110xItem111SItem112>Item113)Item114Item115Item116Item117Item118Item119{Item120fItem121AItem122Item123Item124Item125sItem126@Item127Item128Item129vItem130'Item131Item132Item133qItem134IItem135Item136Item137Item138Item139Item140Item141Item142}Item143pItem144cItem145VItem146IItem147<Item148/Item149"Item150Item151Item152Item153Item154}Item155RItem156+Item157 Item158 Item159 Item160 Item161l Item162I Item163"Item164 Item165Item166Item167Item168Item169Item170Item171Item172zItem173]Item174?Item175!Item176Item177Item178Item179IItem180Item181Item182AItem183Item184Item185q Item186$!Item187!Item188"Item189=#Item190$Item191$Item192]%Item193*&Item194&Item195'Item196(Item197Z)Item1987*Item199+Item200+Item201,Item202-Item203G.Item204/Item205/Item2060Item207x1Item208F2Item209"3Item2103Item2112<Item212<Item213=Item214>Item215yJItem216RKItem217+LItem218MItem219MItem220NItem221OItem222fPItem223=QItem224RItem225RItem226SItem227TItem228CUItem229YItem230bZItem231;[Item232[Item233\Item234]Item235C^Item236_Item237_Item238`Item239aItem240nbItem2416cItem242cItem243dItem244eItem245}fItem246RgItem247'hItem248hItem249iItem250jItem251kItem252lItem253}mItem254VnItem255/oItem256pItem257pItem258qItem259brItem260)sItem261tItem262tItem263uItem264wItem265yItem266zItem267|Item268~Item269Item270&Item271>Item272VItem273nItem274Item275Item276Item277Item278ƓItem279ΕItem280Item281ϘItem282Item283Item284Item285Item286Item287eItem288ZItem289OItem290(Item291Item292ڢItem293ϣItem294ĤItem295Item296jItem297CItem298Item299Item300ީItem301Item302Item303yItem304RItem305+Item306Item307ݯItem308Item309Item310xItem311QItem312:Item313#Item314 Item315Item316޷Item317ǸItem318Item319Item320Item321[Item322DItem323Item324Item325ϿItem326Item327Item328zItem329SItem330,Item331Item332Item333Item334Item335Item336bItem337KItem3384Item339 Item340Item341Item342Item343Item344zItem345SItem3464Item347Item348Item3498Item350Item351qItem352G Item353 Item354 Item355 Item356} Item357$ Item358 Item359Item360Item361NItem362Item363Item364Item365|Item366dataTypeGroupsideEastEntitiesjtAttributesxid xitemsItem0txdataTypeObjectPositionInfousideEastflagsAttributes>uid typegm_pl_army_officer_pm_80_winxpositionoZWF{BΙFanglesf>>uInventorySux handgunubinocularcvuniform~vvestMxmapItemMapcompassgm_gc_compass_f73watchItemWatchradioItemRadioheadgeargm_pl_headgear_beret_bdxxnamegm_pm_blkprimaryMuzzleMag+vcvnamegm_8Rnd_9x18mm_B_pst_pm_blkammoLeftcvnamegm_df7x40_grn~vtypeNamegm_pl_army_uniform_soldier_80_winisBackpackMagazineCargovItemCargoEwMxitemsItem0wEwnamegm_8Rnd_9x18mm_B_pst_pm_blkcountammoLeftEwitemsItem0wItem1wItem2wItem3xMxnamegm_gc_army_gauzeBandagecountwnamegm_gc_army_medkitcountwnamegm_pl_army_headgear_cap_80_morocountxnamegm_gc_army_facewear_schm41mcountMxtypeNamegm_pl_army_vest_80_rig_gryisBackpackxxdataTypeGroupsideEastEntitiesxAttributesyid yitemsItem0xydataTypeObjectPositionInfoxysideEastflagsAttributesyid typegm_pl_army_rifleman_akm_80_winypositionRWFBәFangles?@yyydataTypeGroupsideEastEntitieszAttributeszid zitemsItem0#zzdataTypeObjectPositionInfozsideEastflagsAttributeszid typegm_pl_army_rifleman_akm_80_winzpositionVFB3Fangles@zzzdataTypeGroupsideEastEntities2{Attributes|id}|itemsItem0O{|dataTypeObjectPositionInfo{sideEastflagsAttributes|id~typegm_pl_army_rifleman_akm_80_win|positionWFB%Fangles@|||dataTypeObjectPositionInfo|sideEmptyflagsAttributes|id} typeacre_oe_303|positionMCWFȗB%Fanglesk.<?˜D<||dataTypeObjectPositionInfoC}sideEmptyAttributes{}id*typegm_placeableweapon_akm_wudatlOffsetNE>}positionVF1BBFanglesx@@Ux@{}}dataTypeObjectPositionInfo~sideEmptyAttributes;~id+typegm_placeableweapon_akm_wudatlOffset>A~positionyVFJBFangles=>6@@;~A~dataTypeObjectPositionInfo~sideEmptyAttributes~id.typegm_placeableweapon_akm_wudatlOffset>positionVF5HBdFangles˖@\@t?~dataTypeObjectPositionInfosideEmptyAttributesidtypegm_placeableweapon_akm_wudatlOffsetDQ>positionzVFBFangles]>2@5@dataTypeObjectPositionInfoCsideEmptyAttributes{idtypegm_placeableweapon_akm_wudatlOffset<>positionVFBFangles%??vL>{dataTypeObjectPositionInfosideEmptyAttributes;id!typegm_placeableweapon_akm_wudatlOffset>ApositionVFtBFangles˖@L@SB@;AdataTypeObjectPositionInfosideEmptyAttributesid)typegm_AmmoBox_wood_02_emptyatlOffset`>)positionVF3B(Fangles]e<\@;texturesgm_olidisableSimulation)dataTypeObjectPositionInfosideEmptyflagsAttributesidtypegm_AmmoBox_wood_02_emptyatlOffset7positionzVFnBFangles(>@texturesgm_olidisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidNtypegm_AmmoBox_wood_03_emptyatlOffsetHg=positionBVFَBFangles@texturesgm_olidisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesՄidOtypegm_AmmoBox_wood_03_emptyatlOffset~=positionVFَBIFangles@@Մtexturesgm_olidisableSimulationdataTypeObjectPositionInfosideEmptyAttributesidPtypegm_AmmoBox_wood_03_emptyatlOffsetx4>positionVFCBIFangles@@texturesgm_olidisableSimulationdataTypeObjectPositionInfomsideEmptyAttributesidQtypegm_AmmoBox_wood_03_emptyatlOffsetx4>ՆpositionBVFCBFangles@texturesgm_olidisableSimulationՆdataTypeObjectPositionInfoUsideEmptyAttributesidTtypegm_AmmoBox_wood_03_emptyatlOffset?position%VFBFangles@texturesgm_olidisableSimulationdataTypeObjectPositionInfoIsideEmptyflagsAttributesidEtypegm_AmmoBox_wood_03_emptyatlOffsetu=position`VFюBFangles@texturesgm_olidisableSimulationdataTypeObjectPositionInfo=sideEmptyflagsAttributesuidFtypegm_AmmoBox_wood_03_emptyatlOffset=position1VFюBMFanglesMA@utexturesgm_olidisableSimulationdataTypeObjectPositionInfo%sideEmptyAttributes]idGtypegm_AmmoBox_wood_03_emptyatlOffsetx4>position1VF;BMFanglesMA@]texturesgm_olidisableSimulationdataTypeObjectPositionInfo sideEmptyAttributesEidHtypegm_AmmoBox_wood_03_emptyatlOffsetx4>uposition`VF;BFangles@Etexturesgm_olidisableSimulationudataTypeObjectPositionInfosideEmptyAttributes-idKtypegm_AmmoBox_wood_03_emptyatlOffset?]positionDVF BFangles@-texturesgm_olidisableSimulation]dataTypeObjectPositionInfosideEmptyflagsAttributes!id<typegm_AmmoBox_wood_03_emptyatlOffsetP;=Qposition)VFB'Fangles\@!texturesgm_olidisableSimulationQdataTypeObjectPositionInfoݍsideEmptyflagsAttributesid=typegm_AmmoBox_wood_03_emptyatlOffsetQ=EpositionVFBFangles?@texturesgm_olidisableSimulationEdataTypeObjectPositionInfoŎsideEmptyAttributesid>typegm_AmmoBox_wood_03_emptyatlOffsetx4>-positionVFBFangles?@texturesgm_olidisableSimulation-dataTypeObjectPositionInfosideEmptyAttributesid?typegm_AmmoBox_wood_03_emptyatlOffsetx4>position)VFB'Fangles\@texturesgm_olidisableSimulationdataTypeObjectPositionInfosideEmptyAttributes͐idBtypegm_AmmoBox_wood_03_emptyatlOffset?positionVFǏBFangles\@͐texturesgm_olidisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid3typegm_AmmoBox_wood_03_emptyatlOffsetԏ=positionVFgB2Fangles2@texturesgm_olidisableSimulationdataTypeObjectPositionInfo}sideEmptyflagsAttributesid4typegm_AmmoBox_wood_03_emptyatlOffset@=positionVFgB Fangles?texturesgm_olidisableSimulationdataTypeObjectPositionInfoesideEmptyAttributesid5typegm_AmmoBox_wood_03_emptyatlOffsetx4>͓positionVFюB Fangles?texturesgm_olidisableSimulation͓dataTypeObjectPositionInfoMsideEmptyAttributesid6typegm_AmmoBox_wood_03_emptyatlOffsetx4>positionVFюB2Fangles2@texturesgm_olidisableSimulationdataTypeObjectPositionInfo5sideEmptyAttributesmid9typegm_AmmoBox_wood_03_emptyatlOffset?positionXVFBFangles2@mtexturesgm_olidisableSimulationdataTypeObjectPositionInfo)sideEmptyflagsAttributesaid&typegm_AmmoBox_wood_03_emptyatlOffset=positionVFBFangles @6@2UypositionVF5BFangles)@6@wU@:=texturesgm_olidisableSimulationmdataTypeObjectPositionInfosideEmptyAttributes%idtypegm_AmmoBox_wood_03_emptyatlOffset g>UpositionVFqBFanglesU@(>@):%texturesgm_olidisableSimulationUdataTypeObjectPositionInfoՙsideEmptyAttributes idRtypegm_AmmoBox_wood_04_emptyatlOffset>=position VF"tBFangles? texturesgm_olidisableSimulation=dataTypeObjectPositionInfosideEmptyAttributesidStypegm_AmmoBox_wood_04_emptyatlOffset>%positionDVF"tBFanglesݭ@texturesgm_olidisableSimulation%dataTypeObjectPositionInfosideEmptyAttributesݛidItypegm_AmmoBox_wood_04_emptyatlOffset> position+VFkBFangles?ݛtexturesgm_olidisableSimulation dataTypeObjectPositionInfosideEmptyAttributesŜidJtypegm_AmmoBox_wood_04_emptyatlOffset>positioncVFkBFangles͒@Ŝtexturesgm_olidisableSimulationdataTypeObjectPositionInfousideEmptyAttributesid@typegm_AmmoBox_wood_04_emptyatlOffset>ݝpositionVF(BsFangleslC?texturesgm_olidisableSimulationݝdataTypeObjectPositionInfo]sideEmptyAttributesidAtypegm_AmmoBox_wood_04_emptyatlOffset>Şposition'VF(BFangles@texturesgm_olidisableSimulationŞdataTypeObjectPositionInfoEsideEmptyAttributes}id7typegm_AmmoBox_wood_04_emptyatlOffset>positionVFBFangles)@}texturesgm_olidisableSimulationdataTypeObjectPositionInfo-sideEmptyAttributeseid8typegm_AmmoBox_wood_04_emptyatlOffset>position!VFBFanglesv<@etexturesgm_olidisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesIid(typegm_AmmoBox_wood_04_emptyypositionVFnB$Fangles]e<\@;Itexturesgm_olidisableSimulationydataTypeObjectPositionInfosideEmptyAttributes1idtypegm_AmmoBox_wood_04_emptyatlOffset =apositionsVFBFangles(>@1texturesgm_olidisableSimulationadataTypeObjectPositionInfoբsideEmptyAttributesid~ typeLand_antennaatlOffset@positionqWFKB7͙FdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_ArmChair_01_Fߣposition،WF BkיFanglesx@disableSimulationߣdataTypeObjectPositionInfoSsideEmptyAttributesidmtypegm_banner_PLatlOffsetЉ?positionAVFBFangles@disableSimulationdataTypeObjectPositionInfo)sideEmptyflagsAttributesaidtypegm_banner_PLatlOffsetp@positionZUWFOB{ЙFangles@adisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes0idtypeland_gm_barbedwire_02ZpositionzWF~ BÙFangles<C7<@Σ<0skillL>disableSimulationZdataTypeObjectPositionInfoӦsideEmptyflagsAttributes idtypeland_gm_barbedwire_025positionΒWF=B;ƙFangles]e<C7<@]e< skillL>disableSimulation5dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02position oWFB™FanglesΣ<C7<@<skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02positionWF%=BqǙFangles<C7<@:;skillL>disableSimulationdataTypeObjectPositionInfotsideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset7֩positionWFM'BřFangles]e<C7<@k.<skillL>disableSimulation֩dataTypeObjectPositionInfoOsideEmptyflagsAttributesidtypeland_gm_barbedwire_02position WFBFanglesk.<=@˜D<skillL>disableSimulationdataTypeObjectPositionInfo:sideEmptyflagsAttributesridtypeland_gm_barbedwire_02atlOffset7positionWFSBFanglesk.<=@˜DdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesMidtypeland_gm_barbedwire_02wposition$VFc^BFanglesΣ<=@KedisableSimulationwdataTypeObjectPositionInfosideEmptyflagsAttributes(idtypeland_gm_barbedwire_02RpositionVF?nBFanglesΣ<=@Ke<(skillL>disableSimulationRdataTypeObjectPositionInfo˭sideEmptyflagsAttributesidtypeland_gm_barbedwire_02-positionWFzBٸFanglesk.<=@˜D<skillL>disableSimulation-dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset7position6WFB5Fanglesk.<=@]e<skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesٯidtypeland_gm_barbedwire_02atlOffsetposition+VF}UBFanglesk.<=@<ٯskillL>disableSimulationdataTypeObjectPositionInfo|sideEmptyflagsAttributesidtypeland_gm_barbedwire_02ްpositionBWF(BLFanglesk.<=@˜D<skillL>disableSimulationްdataTypeObjectPositionInfoWsideEmptyflagsAttributesidtypeland_gm_barbedwire_02position*WFPBFanglesk.<=@]e<skillL>disableSimulationdataTypeObjectPositionInfo2sideEmptyflagsAttributesjidtypeland_gm_barbedwire_02position cWFBbFanglesΣ<C7<@KedisableSimulationdataTypeObjectPositionInfo sideEmptyflagsAttributesEidtypeland_gm_barbedwire_02oposition=VFQBdFanglesΣ<=@};EskillL>disableSimulationodataTypeObjectPositionInfosideEmptyflagsAttributes idtypeland_gm_barbedwire_02Jposition5VF=OB|FanglesΣ<=@}; skillL>disableSimulationJdataTypeObjectPositionInfoôsideEmptyflagsAttributesidtypeland_gm_barbedwire_02%positionFVF*QBNFanglesn<=@:;skillL>disableSimulation%dataTypeObjectPositionInfosideEmptyflagsAttributesֵidtypeland_gm_barbedwire_02positionNVFPB6Fanglesn<=@:;ֵskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffsetpositionɪVFBƙFangles<P@;skillL>disableSimulationdataTypeObjectPositionInfodsideEmptyflagsAttributesidtypeland_gm_barbedwire_02ƷpositionVFY#B FanglesΣ<P@};skillL>disableSimulationƷdataTypeObjectPositionInfo?sideEmptyflagsAttributeswidtypeland_gm_barbedwire_02positionVFӎB̙Fangles]e<P@;wskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesRid typeland_gm_barbedwire_02|position=VFABFanglesn<P@:;RskillL>disableSimulation|dataTypeObjectPositionInfosideEmptyflagsAttributes-id typeland_gm_barbedwire_02WpositionVF1B Fangles<P@;-skillL>disableSimulationWdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset7Bposition1XF@&BFangles<=@:;skillL>disableSimulationBdataTypeObjectPositionInfo˻sideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset-positionVFsXBFanglesD<P@@skillL>disableSimulation-dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset7position XF|BߙFangles<=@<skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesٽidtypeland_gm_barbedwire_02atlOffset7positionXFk#BFangles<=@;ٽskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesľidtypeland_gm_barbedwire_02atlOffset7position&XF%BFangles<=@;ľskillL>disableSimulationdataTypeObjectPositionInfogsideEmptyflagsAttributesidtypeland_gm_barbedwire_02ɿpositionVF(BFangles]e<P@skillL>disableSimulationɿdataTypeObjectPositionInfoRsideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset7positionXFqBޙFangles<=@<skillL>disableSimulationdataTypeObjectPositionInfo=sideEmptyflagsAttributesuidtypeland_gm_barbedwire_02atlOffsetposition-VFBݙFangles]e<P@uskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesPidtypeland_gm_barbedwire_02zpositionߝVFjBFanglesD<P@PskillL>disableSimulationzdataTypeObjectPositionInfosideEmptyflagsAttributes;idtypeland_gm_barbedwire_02atlOffset7epositionzVFBљFangles]e<P@;;skillL>disableSimulationedataTypeObjectPositionInfosideEmptyflagsAttributes&idtypeland_gm_barbedwire_02atlOffset7PpositionSVFBיFanglesD<P@;&skillL>disableSimulationPdataTypeObjectPositionInfosideEmptyflagsAttributesid typeland_gm_barbedwire_02atlOffset7;position WF|OB0ҙFanglesΣ<x;@D<skillL>disableSimulation;dataTypeObjectPositionInfosideEmptyflagsAttributesid!typeland_gm_barbedwire_02atlOffset&positionWF5BpݙFangles<=@<skillL>disableSimulation&dataTypeObjectPositionInfosideEmptyflagsAttributesid"typeland_gm_barbedwire_02atlOffset7position&WFCBЙFanglesΣ<x;@D<skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid#typeland_gm_barbedwire_02positionBWF3BϙFangles<x;@˜D<skillL>disableSimulationdataTypeObjectPositionInfousideEmptyflagsAttributesid$typeland_gm_barbedwire_02atlOffset7position^WF.BWΙFangles<x;@:;skillL>disableSimulationdataTypeObjectPositionInfoPsideEmptyflagsAttributesidtypeland_gm_barbedwire_02positionVF^BeFangles#<P@_@skillL>disableSimulationdataTypeObjectPositionInfo+sideEmptyflagsAttributescidtypeland_gm_barbedwire_02positionQVFBlFangles#<P@@cskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesNidtypeland_gm_barbedwire_02atlOffset7xpositionzVF-%BpFangles#<P@@NskillL>disableSimulationxdataTypeObjectPositionInfosideEmptyflagsAttributes)idtypeland_gm_barbedwire_02Sposition,VFBh FanglesD<P@_@)skillL>disableSimulationSdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset7>positionǙVF7GBwFangles]e<P@@skillL>disableSimulation>dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02positionVFh3BsFangles]e<P@@skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02position{VF砍B"Fangles<@@skillL>disableSimulationdataTypeObjectPositionInfomsideEmptyflagsAttributesidtypeland_gm_barbedwire_02positionVF$B FanglesD<@P@skillL>disableSimulationdataTypeObjectPositionInfoXsideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset7position}VFB!FanglesD<@P@skillL>disableSimulationdataTypeObjectPositionInfo3sideEmptyflagsAttributeskidtypeland_gm_barbedwire_02positionWF4B(FanglesKe<@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesVidtypeland_gm_barbedwire_02atlOffsetpositionVFLjB&Fangles<@;VskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes1idtypeland_gm_barbedwire_02[positionVFB%Fangles]e<@:;1skillL>disableSimulation[dataTypeObjectPositionInfosideEmptyflagsAttributes idtypeland_gm_barbedwire_026positionVFB'Fangles<@:; skillL>disableSimulation6dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02positionVFVB#Fangles]e<@@skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02positionVFꉍB$FanglesD<@@skillL>disableSimulationdataTypeObjectPositionInfoesideEmptyflagsAttributesidtypeland_gm_barbedwire_02position8oWFB/Fanglesk.<=@:;skillL>disableSimulationdataTypeObjectPositionInfoPsideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffsetpositionRKWFBo,FanglesΣ<=@:;skillL>disableSimulationdataTypeObjectPositionInfo;sideEmptyflagsAttributessidtypeland_gm_barbedwire_02atlOffset7positionIWWFB-Fanglesn<=@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesNidtypeland_gm_barbedwire_02xpositionAcWFB.Fanglesk.<=@:;NskillL>disableSimulationxdataTypeObjectPositionInfosideEmptyflagsAttributes)idtypeland_gm_barbedwire_02SpositionY?WFBY+Fanglesn<=@;)skillL>disableSimulationSdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset7>positionj'WF\B))Fanglesn<=@:;skillL>disableSimulation>dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset)positionc3WF\BA*Fanglesn<=@;skillL>disableSimulation)dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02positiontWF=B(Fanglesn<=@:;skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidttypeland_gm_barbedwire_02atlOffset7position-WFB'Fanglesk.<{@:;skillL>disableSimulationdataTypeObjectPositionInfohsideEmptyflagsAttributesidutypeland_gm_barbedwire_02positionWF BK)Fanglesk.<{@};skillL>disableSimulationdataTypeObjectPositionInfoSsideEmptyflagsAttributesidvtypeland_gm_barbedwire_02atlOffset7position߿WFNB*Fanglesk.<{@};skillL>disableSimulationdataTypeObjectPositionInfo.sideEmptyflagsAttributesfidtypeland_gm_barbedwire_02positionWFoBB !Fangles< ?;fskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesQidtypeland_gm_barbedwire_02atlOffset7{positionWFB&Fanglesk.< ?;QskillL>disableSimulation{dataTypeObjectPositionInfosideEmptyflagsAttributes<idtypeland_gm_barbedwire_02atlOffsetfpositionvWF΍B,Fanglesk.<ƞ@:;<skillL>disableSimulationfdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02Aposition8xWFB&Fanglesk.<ƞ@:;skillL>disableSimulationAdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02positionyWFB Fanglesk.<ƞ@;skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid#typeland_gm_euro_misc_bargate_01_closedpositionҺWF0BؙFangles?@dataTypeObjectPositionInfohsideEmptyflagsAttributesidrtypeland_gm_euro_misc_bargate_01_closedpositionGWF5sdataTypeObjectPositionInfosideEmptyflagsAttributes.idntypegm_barrel_rustyatlOffset7@positionWFB Fanglesk.<@:;.skillL>@dataTypeObjectPositionInfosideEmptyAttributesidtypeCUP_bathatlOffset@^@position vWF;BԙFangles%g@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidUtypeland_gm_euro_furniture_bed_01positiondWFNBəFanglese@dataTypeObjectPositionInfo8sideEmptyflagsAttributespidtypeLand_Bench_05_FvpositionVVF$DBFangles>@pvdataTypeObjectPositionInfosideEmptyflagsAttributes!idtypeLand_Bench_05_F'positionWFaBOFangles@!'dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_Bench_05_Fposition#VFSB) FanglesA?dataTypeObjectPositionInfoKsideEmptyflagsAttributesidtypeLand_Bench_05_FpositionVFjrBFanglesś@dataTypeObjectPositionInfosideEmptyflagsAttributesSidtypeland_gm_euro_furniture_book_01atlOffset 8qposition `WF&BMיFanglesUp=SdisableSimulationqdataTypeObjectPositionInfosideEmptyflagsAttributes+idtypeland_gm_euro_furniture_book_01IpositionWFOBșFanglesn?+disableSimulationIdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeBook_02_FpositionlwWFBٙFdisableSimulationdataTypeObjectPositionInfoxsideEmptyflagsAttributesiditypegm_pl_army_brdm2atlOffsetpositionWFvB7ڙFangles<4@Ke<texturesgm_pl_olwdataTypeObjectPositionInfo\sideEmptyflagsAttributesidtypeland_gm_euro_furniture_bed_02atlOffset8positionYVFBFangles]e<|!?@@skillL>disableSimulationdataTypeObjectPositionInfoOsideEmptyflagsAttributesidtypeland_gm_euro_furniture_bed_02atlOffset8positionPVFЍBFanglesD<|!?@@skillL>disableSimulationdataTypeObjectPositionInfoBsideEmptyflagsAttributeszidtypeland_gm_euro_furniture_bed_02atlOffset8positionVFBFangles<\}?@@zskillL>disableSimulationdataTypeObjectPositionInfo5sideEmptyflagsAttributesmidtypeland_gm_euro_furniture_bed_02atlOffset8positionSVFzɍBFangles]e<|!?@@mskillL>disableSimulationdataTypeObjectPositionInfo(sideEmptyflagsAttributes`idtypeland_gm_euro_furniture_bed_02atlOffset8positionmVFB Fangles]e<4!?@@`skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesSidtypeland_gm_euro_furniture_bed_02atlOffset8}positionVF B Fangles]e<|!?@@SskillL>disableSimulation}dataTypeObjectPositionInfosideEmptyflagsAttributesFidtypeland_gm_euro_furniture_bed_02atlOffset8ppositionVF֍BFanglesD<|!?@@FskillL>disableSimulationpdataTypeObjectPositionInfosideEmptyflagsAttributes9idtypeland_gm_euro_furniture_bed_02atlOffset8cpositionVF\BFangles]e<|!?@@9skillL>disableSimulationcdataTypeObjectPositionInfosideEmptyflagsAttributes,idtypeland_gm_euro_furniture_bed_02atlOffset8VpositionVFBFangles<|!?@@,skillL>disableSimulationVdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_furniture_bed_02atlOffset8IpositionAVF?B( Fangles]e<|?@@skillL>disableSimulationIdataTypeObjectPositionInfosideEmptyflagsAttributesid typeland_gm_euro_furniture_bed_02atlOffset+<<positionVF3BFanglesn<@;skillL>disableSimulation<dataTypeObjectPositionInfosideEmptyflagsAttributesid typeland_gm_euro_furniture_bed_02atlOffset;/positionVFiB]Fangles]e<@;skillL>disableSimulation/dataTypeObjectPositionInfosideEmptyflagsAttributesid typeland_gm_euro_furniture_bed_02atlOffset9"positionUVF4IBFanglesn<@;skillL>disableSimulation"dataTypeObjectPositionInfosideEmptyflagsAttributesid typeland_gm_euro_furniture_bed_02atlOffset9positionVF^1B Fanglesn<@;skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid typeland_gm_euro_furniture_bed_02atlOffset8position`VFBOFangles]e<@;skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_furniture_bed_02atlOffset<positionVFMBYFanglesn<@;skillL>disableSimulation dataTypeObjectPositionInfosideEmptyflagsAttributesidatypegm_pl_army_bmp1sp2atlOffsetCustomAttributesposition%VF˔BFanglesn<\N@<texturesgm_pl_olwAttribute0nAttributespropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value#data3typeNvaluebtypeARRAYbitemsItem0Item1datatypetypeARRAYdatatypevaluetypeARRAYitemsItem0Item1Item2BItem3Item4Item5+Item6lItem7Item8Item9SItem10Item11Item12'Item13wdatatypevaluespareTracks_1_1_unhidetypeSTRINGdataBtype-valueBtypeSCALARBdataRtypevaluespareTracks_1_2_unhidetypeSTRINGdatatypevaluetypeSCALARdata+typevaluespareTracks_2_1_unhide+typeSTRING+data;ltypeWvalueltypeSCALARldata|typevaluewheelChock_1_1_unhidetypeSTRINGdatatypevaluetypeSCALARdataStype>valuewheelChock_1_2_unhideStypeSTRINGSdatactypevaluetypeSCALARdatatypevaluewoodenBeam_01_unhidetypeSTRINGdata'typevalue'typeSCALAR'data7wtypebvaluetarpRoll_01_unhidewtypeSTRINGwdatatypevaluetypeSCALARdataTypeObjectPositionInfo3sideEmptyflagsAttributeskidtypeland_gm_camonet_03_east}positionWF.B*ٙFangles <@D}dataTypeObjectPositionInfosideEmptyflagsAttributes@idqtypeland_gm_camonet_03_eastatlOffsetRpositionWF?BFangles<` ?;@skillL>RdataTypeObjectPositionInfosideEmptyflagsAttributes idtypeland_gm_euro_furniture_chair_01+positionyWF6 BdՙFangles|@ disableSimulation+dataTypeObjectPositionInfosideEmptyAttributesidtypeland_gm_euro_furniture_chair_02atlOffset? position(WF3Be˙Fanglesl@@disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_furniture_chair_02 positionAWFmBϙFanglesԿ@ disableSimulation dataTypeObjectPositionInfod sideEmptyflagsAttributes idtypeland_gm_euro_furniture_chair_02 positionWFmB5͙Fangles2? disableSimulation dataTypeObjectPositionInfo= sideEmptyflagsAttributesu idtypeland_gm_euro_furniture_chair_02 positionWFmBΙFanglesK?u disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributesN idtypeland_gm_euro_furniture_chair_02l positionhWF[B̙Fangles4@N disableSimulationl dataTypeObjectPositionInfo sideEmptyAttributes+ idtypeland_gm_euro_furniture_chair_02atlOffsetK ?I positionԃWF[B,ΙFangles@+ disableSimulationI dataTypeObjectPositionInfo sideEmptyflagsAttributesidtypeland_gm_euro_furniture_chair_04"positionWFh}BșFangles@disableSimulation"dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_furniture_chair_04atlOffset< positionWFB əFanglesؔ?disableSimulation dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_furniture_chair_04atlOffset@<positionVFB Fangles#<a@@skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_furniture_chair_04atlOffset<positionͭVFSBFanglesKe<j8@P@skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_furniture_chair_04atlOffset<positionVFBFanglesKe<_<@P@skillL>disableSimulationdataTypeObjectPositionInfo}sideEmptyflagsAttributesidtypeland_gm_euro_furniture_chair_04atlOffset <positionAVF"BFanglesKe<p@P@skillL>disableSimulationdataTypeObjectPositionInforsideEmptyflagsAttributesid;typeland_gm_euro_furniture_chair_04atlOffset1<positionVF>-BlFangles2<c?@skillL>disableSimulationdataTypeObjectPositionInfogsideEmptyflagsAttributesid>typeland_gm_euro_furniture_chair_04atlOffset<positionVFKBLFangles<T?@skillL>disableSimulationdataTypeObjectPositionInfoEsideEmptyAttributes}idtypeCUP_item_Cobalt_FileatlOffsett?positionZWFB`ԙFangles@@}disableSimulationdataTypeObjectPositionInfo$sideEmptyflagsAttributes\idtypeland_gm_euro_furniture_lampfixture_03zposition9WFOBəFanglesR@\disableSimulationzdataTypeObjectPositionInfosideEmptyAttributes?idtypeland_gm_euro_furniture_lampfixture_03atlOffset w?]position1]WFjhBљFangles??disableSimulation]dataTypeObjectPositionInfosideEmptyAttributes!idtypeLand_EmergencyBlanket_01_discarded_FatlOffsetz>?positiondWFPBəFanglesj:@!disableSimulation?dataTypeObjectPositionInfosideEmptyAttributesidtypeLand_EmergencyBlanket_01_discarded_FatlOffset>!positionifWFLBəFangles.@disableSimulation!dataTypeObjectPositionInfosideEmptyAttributesidtypeLand_EmergencyBlanket_01_stack_FatlOffset}?positionWFޛB<ՙFangles@)@CL;disableSimulationdataTypeObjectPositionInfoosideEmptyAttributesidtypeEvMoscowatlOffsetjw?positionZWFdmBәFangles'?disableSimulationdataTypeObjectPositionInfo>sideEmptyAttributesvidtypeLand_FilePhotos_FatlOffsetx?positionYWFoBԙFangles ?vdisableSimulationdataTypeObjectPositionInfo sideEmptyflagsAttributesCidtypeFirePlace_burning_FIpositionVFBP Fangles<K?disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeGunrackTK_EP1position,mWF}rB_ՙFanglesQ@disableSimulationdataTypeObjectPositionInfoK sideEmptyflagsAttributesk id^typeLand_HayBale_01_Fq positionfWFِB2Fk q dataTypeObjectPositionInfo sideEmptyflagsAttributes!id_typeLand_HayBale_01_F$!position2WFƐB`FanglesN?!$!dataTypeObjectPositionInfo!sideEmptyflagsAttributes!id`typeLand_HayBale_01_F!positionֹWFWBVFangles4?!!dataTypeObjectPositionInfoL"sideEmptyflagsAttributes"idatypeLand_HayBale_01_F"positionWFBFangles4?""dataTypeObjectPositionInfo"sideEmptyflagsAttributes7#idbtypeLand_HayBale_01_F=#positionAWFݐBFangles4?7#=#dataTypeObjectPositionInfo#sideEmptyflagsAttributes#idctypeLand_HayBale_01_FatlOffset$positionWFɐBFanglesC?#$dataTypeObjectPositionInfou$sideEmptyflagsAttributes$iddtypeLand_HayBale_01_F$positionWFҏBFangles4?$$dataTypeObjectPositionInfo%sideEmptyflagsAttributesW%idVtypeHaystack]%positionWFjǑBFanglesk.<y?@*disableSimulation+dataTypeObjectPositionInfo+sideEmptyflagsAttributes+id"typeCUP_Kitchenstove_Elec+positionQcWFB[͙Fangles=@+disableSimulation+dataTypeObjectPositionInfol,sideEmptyflagsAttributes,id#typeCUP_Kitchenstove_ElecatlOffset:,positionDeWFB͙Fanglesf;@,disableSimulation,dataTypeObjectPositionInfo9-sideEmptyflagsAttributesq-id(typeCUP_kitchen_table_a-position_WFBҙFanglesU>@q-disableSimulation-dataTypeObjectPositionInfo .sideEmptyAttributesA.idYtypeLeaflet_05_Stack_FatlOffsetTt?G.position[WFljBљFangles4<u@0disableSimulation0dataTypeObjectPositionInfo"1sideEmptyflagsAttributesZ1idtypeItem_ItemMapatlOffset9x1position2^WFՐBҙFanglesn<2sideEmptyflagsAttributesu>idtypeCUP_office_chair>position:]WFEB͙FanglesLӿ@u>disableSimulation> dataTypeObjectPositionInfo,?sideEmptyflagsAttributesd?idZtypegm_gc_army_p601atlOffset<CustomAttributesj?yJpositionkWFBFanglesg@d?j? Attribute03@Attribute1AAttribute2BAttribute3CAttribute4CAttribute5DAttribute6EAttribute7FAttribute8GAttribute9HAttribute10InAttributes yJpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value@Adata@Atype Avalue-1AtypeSTRINGApropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueABdataABtypeBvaluegm_insignia_pl_army_01BtypeSTRINGBpropertygm_vehicleMarkings_tacticalNumber_Number_attributeexpression[_this,_value,2,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueBCdataBCtypeBvalue-1CtypeSTRINGCpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueCCdataCCtypeCvalue-1CtypeSTRINGCpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueDDdataDDtypeDvalue-1DtypeSTRINGDpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value{EEdataEEtypeEvaluegm_insignia_noneEtypeSTRINGEpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueoFFdataFFtypeFvaluegm_insignia_formation_circle_09_whtFtypeSTRINGFpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value{GGdataGGtypeGvalue-1GtypeSTRINGGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueaHHdataqHHtypeHvalue-1HtypeSTRINGHpropertygm_vehicleMarkings_tacticalNumber_Numberfont_attributeexpression[_this,_value,2,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValuePIIdata`IItype{Ivalue-1ItypeSTRINGIpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value9JyJdataIJyJtypedJvalue-1yJtypeSTRINGyJdataTypeObjectPositionInfoJsideEmptyflagsAttributes1KidMtypegm_pallet_01atlOffsetCRKposition1VFQBFangles@1KcreateAsSimpleObjectRKdataTypeObjectPositionInfoKsideEmptyflagsAttributes LidDtypegm_pallet_01atlOffset`8+LpositionPVFHBFangles@ LcreateAsSimpleObject+LdataTypeObjectPositionInfoLsideEmptyflagsAttributesLid;typegm_pallet_01atlOffset MpositionVFBFangles\@LcreateAsSimpleObjectMdataTypeObjectPositionInfoMsideEmptyflagsAttributesMid2typegm_pallet_01atlOffset>Mposition[VFߎB&Fangles2@McreateAsSimpleObjectMdataTypeObjectPositionInfo]NsideEmptyflagsAttributesNid%typegm_pallet_01atlOffset`}=NpositiongVF^BFangles]e<\@;NcreateAsSimpleObjectNdataTypeObjectPositionInfo6OsideEmptyflagsAttributesnOidtypegm_pallet_01atlOffset8=OpositionVFCdBFangles<(>@@nOcreateAsSimpleObjectOdataTypeObjectPositionInfoPsideEmptyflagsAttributesHPidtypeplp_cts_PlasticBoxBlueOpenLowfPpositioncWFSB0˙Fangles;@HPdisableSimulationfPdataTypeObjectPositionInfoPsideEmptyflagsAttributesQidtypeplp_cts_PlasticBoxBlueOpenLow=QpositionMaWFSBʙFangles;@QdisableSimulation=QdataTypeObjectPositionInfoQsideEmptyflagsAttributesQidtypeplp_cts_PlasticBoxBlueOpenLowRposition_WFSBʙFangles;@QdisableSimulationRdataTypeObjectPositionInfoRsideEmptyflagsAttributesRidtypeland_gm_euro_misc_plastictable_01RpositionaWFB˙Fangles:@RdisableSimulationRdataTypeObjectPositionInfooSsideEmptyflagsAttributesSidtypeplp_cts_PlasticTrashcanWhiteSpositionWFc-BՙFanglesr+K@SdisableSimulationSdataTypeObjectPositionInfoFTsideEmptyAttributes~Tid/typegm_placeableweapon_pm_blkatlOffset{>TpositionVFZB>Fangles$y@~TTdataTypeObjectPositionInfoUsideEmptyAttributes=Uid"typegm_placeableweapon_pm_blkatlOffset|>CUpositionJVFsBFanglesh @=UCU dataTypeObjectPositionInfoUsideEmptyflagsAttributesVidctypegm_pl_army_pt76batlOffsetCustomAttributes0VYposition'7WFBəFanglesΣ<C@˜D<Vtexturesgm_pl_olw0VAttribute0XVnAttributesYpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};ValueiWYdatayWYtypeWvalueWYtypeARRAYWitemsItem0WItem1XYdataWXtypeWXtypeARRAYXdataXYtype/XvalueCXYtypeARRAYCXitemsItem0XItem1XItem2YItem3`YYdataXXtypeXvalueCamoNet_01_unhideXtypeSTRINGXdataXYtypeXvalueYtypeSCALARYdata!Y`YtypeKYvalueCamoNet_02_unhide`YtypeSTRING`YdatapYYtypeYvalueYtypeSCALARYdataTypeObjectPositionInfo$ZsideEmptyflagsAttributesDZidtypeland_gm_euro_furniture_radio_01bZposition8aWFJ%B>ؙFDZdisableSimulationbZdataTypeObjectPositionInfoZsideEmptyflagsAttributes[idtypeland_gm_euro_furniture_radio_01;[positionCuWF侒B%ڙFanglesQ@[disableSimulation;[dataTypeObjectPositionInfo[sideEmptyAttributes[id,typegm_placeableweapon_rpk_wudatlOffset>[positionVFwBKFanglesVq@[[dataTypeObjectPositionInfo\sideEmptyflagsAttributes\id-typegm_placeableweapon_rpk_wudatlOffset9\positionVF~BFangles @8n?2U<\\dataTypeObjectPositionInfoI]sideEmptyAttributes]idtypegm_placeableweapon_rpk_wudatlOffset3>]position=VFBFangles @@]]dataTypeObjectPositionInfo^sideEmptyflagsAttributes=^id typegm_placeableweapon_rpk_wudC^positionVVF4B"FanglesU@@):=^C^dataTypeObjectPositionInfo^sideEmptyflagsAttributes^idtypeLand_Rug_01_Traditional_F_positionbWFBqәFanglesI@^disableSimulation_dataTypeObjectPositionInfo_sideEmptyflagsAttributes_idtypeland_gm_sandbags_01_short_01_positionWVFBÙFangles@_disableSimulation_dataTypeObjectPositionInfol`sideEmptyflagsAttributes`idtypeland_gm_sandbags_01_short_01`positionVFBRÙFangles@`disableSimulation`dataTypeObjectPositionInfoNasideEmptyflagsAttributesaidtypeland_gm_sandbags_02_wallatlOffset7aposition?WF B֙Fangles<J@˜DadataTypeObjectPositionInfo$bsideEmptyflagsAttributes\bidptypeland_gm_sandbags_02_wallatlOffset7nbpositionAWF&B"Fanglesk.<'=@:;\bskillL>nbdataTypeObjectPositionInfobsideEmptyflagsAttributes$cidtypeland_gm_woodbunker_01_bags6cpositionWF BԙFangles<?@˜D<$cskillL>6cdataTypeObjectPositionInfocsideEmptyflagsAttributescidmtypeland_gm_woodbunker_01_bagscpositionWFD"B$Fanglesk.<@};cskillL>cdataTypeObjectPositionInfo}dsideEmptyflagsAttributesdidtypeland_gm_sandbags_01_wall_01dpositionVFB帙Fanglesս?ddisableSimulationddataTypeObjectPositionInfoResideEmptyflagsAttributeseidtypeland_gm_sandbags_01_wall_01epositionVFBFanglesu@edisableSimulationedataTypeObjectPositionInfo'fsideEmptyflagsAttributes_fidtypeland_gm_sandbags_01_wall_01}fpositiontVFBFanglesu@_fdisableSimulation}fdataTypeObjectPositionInfofsideEmptyflagsAttributes4gidtypeland_gm_sandbags_01_wall_01RgpositionVFBpFanglesu@4gdisableSimulationRgdataTypeObjectPositionInfogsideEmptyflagsAttributes hidtypeland_gm_sandbags_01_wall_01'hpositionDVFBfFanglesb@ hdisableSimulation'hdataTypeObjectPositionInfohsideEmptyflagsAttributeshidtypeland_gm_sandbags_01_wall_01hpositionVFBFanglesb@hdisableSimulationhdataTypeObjectPositionInfoisideEmptyflagsAttributesiidtypeland_gm_sandbags_01_wall_01atlOffsetipositionAWF\&BҙFangles<?@˜DidataTypeObjectPositionInfoTjsideEmptyflagsAttributesjidotypeland_gm_sandbags_01_wall_01jposition"WFIB&Fanglesk.<@};jskillL>jdataTypeObjectPositionInfo1ksideEmptyflagsAttributesikidtypeland_gm_euro_furniture_shelf_10atlOffsetdisableSimulationkdataTypeObjectPositionInfo&lsideEmptyflagsAttributes^lidtypeland_gm_euro_furniture_shelf_10atlOffsetdisableSimulationldataTypeObjectPositionInfomsideEmptyflagsAttributesSmid7typeland_gm_euro_furniture_shelf_10atlOffset;}mposition˿VFBFangles@SmskillL>disableSimulation}mdataTypeObjectPositionInfonsideEmptyflagsAttributes8nid9typeland_gm_euro_furniture_shelf_04Vnposition'[WFXB2řFangles[Ҏ@8ndisableSimulationVndataTypeObjectPositionInfonsideEmptyflagsAttributesoid7typeland_gm_euro_furniture_shelf_06/oposition`WF}ҒBmؙFangles;@odisableSimulation/odataTypeObjectPositionInfoosideEmptyflagsAttributesoidtypeland_gm_euro_furniture_shelf_09ppositionXWFQzBʙFangles}?@odisableSimulationpdataTypeObjectPositionInfopsideEmptyflagsAttributespidtypeLand_ShelvesWooden_FppositionڂWF<{B;ՙFanglesҰ?pdisableSimulationpdataTypeObjectPositionInfoFqsideEmptyAttributes~qidtypeCUP_sinkatlOffsetL?qpositionWFMBkۙFanglesu@~qdisableSimulationqdataTypeObjectPositionInfo rsideEmptyAttributesDrid)typeCUP_sinkatlOffsetfW?brpositionNkWF’BYљFangles8?DrdisableSimulationbrdataTypeObjectPositionInforsideEmptyflagsAttributessid_typegm_pl_army_ot64a)sposition WFBęFanglesΣ<@D<stexturesgm_pl_olw)sdataTypeObjectPositionInfossideEmptyflagsAttributessidtypegm_pl_army_ot64aatlOffset tpositionVFoBT™Fanglesn<@˜DdisableSimulationu dataTypeObjectPositionInfoHvsideEmptyflagsAttributesvidtypegm_ge_tent_01_04atlOffset<CustomAttributesvwposition,VFQB"Fanglesh<@;vskillL>texturesgm_olidisableSimulationvAttribute0vnAttributeswpropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}ValuewwdatawwtypewvaluewtypeBOOLw dataTypeObjectPositionInforxsideEmptyflagsAttributesxidtypegm_ge_tent_01_04atlOffset<CustomAttributesxypositionVFOBFangles<@@@xskillL>disableSimulationxAttribute0xnAttributesypropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}ValueyydatayytypeyvalueytypeBOOLydataTypeObjectPositionInfodzsideEmptyflagsAttributeszidtypegm_ge_tent_01_04zpositionȫVFҍBOFanglesKe<*<@P@zskillL>disableSimulationz dataTypeObjectPositionInfo`{sideEmptyflagsAttributes{idtypegm_ge_tent_01_06atlOffset<CustomAttributes{|positionOVF)BFangles]e<|!?@@{skillL>disableSimulation{Attribute0{nAttributes|propertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}Value||data||type|value|typeBOOL| dataTypeObjectPositionInfox}sideEmptyflagsAttributes}idtypegm_ge_tent_01_06atlOffset:CustomAttributes}~position˳VFBFangles˜D<*<@@}skillL>disableSimulation}Attribute0~nAttributes~propertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}Value~~data~~type~value~typeBOOL~ dataTypeObjectPositionInfosideEmptyflagsAttributesid&typegm_ge_tent_01_02atlOffset<CustomAttributespositionVFBFangles]e<=@;skillL>disableSimulationAttribute0nAttributespropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}Valueπdata߀typevaluetypeBOOL dataTypeObjectPositionInfosideEmptyflagsAttributesid0typegm_ge_tent_01_02atlOffset7CustomAttributes &positionµVFBFanglesD<l@@skillL>disableSimulation Attribute02nAttributes&propertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}Value&data&typevalue&typeBOOL& dataTypeObjectPositionInfosideEmptyflagsAttributesidtypegm_ge_tent_01_03atlOffset<CustomAttributes">positionVFB Fangles]e<@@skillL>disableSimulation"Attribute0JnAttributes>propertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}Value>data>type+value>typeBOOL> dataTypeObjectPositionInfo؅sideEmptyflagsAttributesidtypegm_ge_tent_01_03atlOffset<CustomAttributes:VpositionVFˍBFangles]e<@@skillL>disableSimulation:Attribute0bnAttributesVpropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}ValueVdata'VtypeCvalueVtypeBOOLV dataTypeObjectPositionInfosideEmptyflagsAttributes(idtypegm_ge_tent_01_03atlOffset<CustomAttributesRnposition5VF܍BFanglesD<|!?@@(skillL>disableSimulationRAttribute0znAttributesnpropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}Value/ndata?ntype[valuentypeBOOLn dataTypeObjectPositionInfosideEmptyflagsAttributes@idtypegm_ge_tent_01_03atlOffset<CustomAttributesjpositionVF9BFanglesn<8>@;@skillL>disableSimulationjAttribute0nAttributespropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}ValueGdataWtypesvaluetypeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributesXidtypegm_ge_tent_01_03atlOffset<CustomAttributespositionVF$BFangles]e<@;XskillL>disableSimulationAttribute0nAttributespropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}Value_dataotypevaluetypeBOOLdataTypeObjectPositionInfo(sideEmptyflagsAttributes`idtypegm_ge_tent_01_03CustomAttributesposition˭VFBjFanglesKe<@@P@`skillL>disableSimulationAttribute0nAttributespropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}ValuegdatawtypevaluetypeBOOLdataTypeObjectPositionInfo0sideEmptyflagsAttributeshidtypegm_ge_tent_01_03CustomAttributespositionʯVFoBFangles#<*<@@hskillL>disableSimulationAttribute0nAttributespropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}ValueodatatypevaluetypeBOOL dataTypeObjectPositionInfoHsideEmptyflagsAttributesidtypegm_ge_tent_01_03atlOffset:CustomAttributesƓposition˱VFB Fangles#<@@@skillL>disableSimulationAttribute0ҒnAttributesƓpropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}ValueƓdataƓtypevalueƓtypeBOOLƓdataTypeObjectPositionInfoPsideEmptyflagsAttributesid3typegm_ge_tent_01_03CustomAttributesΕpositionqVF8BFangles<L=@@skillL>disableSimulationAttribute0ڔnAttributesΕpropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}ValueΕdataΕtypevalueΕtypeBOOLΕ dataTypeObjectPositionInfohsideEmptyflagsAttributesid4typegm_ge_tent_01_03atlOffset:CustomAttributesʖpositionVF~%BFangles2<a@@skillL>disableSimulationʖAttribute0nAttributespropertyfloor_hide_sourceexpressionif _value then {_this animateSource ['floor_hide_source',1,true]} else {_this animateSource ['floor_hide_source',0,true]}ValuedatatypeӗvaluetypeBOOLdataTypeObjectPositionInfoysideEmptyflagsAttributesidtypeland_gm_euro_furniture_table_01atlOffset9ϘpositionWFIB͙Fangles@disableSimulationϘdataTypeObjectPositionInfobsideEmptyflagsAttributesidtypeland_gm_euro_furniture_table_02atlOffset@;positionWFℙBșFanglesH;@disableSimulationdataTypeObjectPositionInfoKsideEmptyflagsAttributesidtypeland_gm_euro_furniture_table_02atlOffset<positionVFBFanglesKe<22=@P@skillL>disableSimulationdataTypeObjectPositionInfo@sideEmptyflagsAttributesxidtypeland_gm_euro_furniture_table_02atlOffset@<positionVFxߍBFanglesKe<&8@P@xskillL>disableSimulationdataTypeObjectPositionInfo5sideEmptyflagsAttributesmidtypeland_gm_euro_furniture_table_02atlOffset<positionVFB Fangles#<8/<@@mskillL>disableSimulationdataTypeObjectPositionInfo*sideEmptyflagsAttributesbid:typeland_gm_euro_furniture_table_02atlOffset/<positionԯVF4B6Fangles2<c@@bskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesGidtypeland_gm_euro_furniture_table_03eposition^WFQzB̙Fangles<@GdisableSimulationedataTypeObjectPositionInfosideEmptyflagsAttributes0idtypeland_gm_euro_furniture_table_03atlOffsetZpositionسVFIԍBUFanglesKe<disableSimulationZdataTypeObjectPositionInfosideEmptyflagsAttributes%id1typeland_gm_euro_furniture_table_03atlOffsetOpositionuVF&CBFangles<3@@%skillL>disableSimulationOdataTypeObjectPositionInfoҠsideEmptyflagsAttributes idtypeland_gm_euro_furniture_table_05(position]vWF`BڙFanglesv? disableSimulation(dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_furniture_table_05positionaWFOBיFangles@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid.typeland_gm_euro_furniture_table_05ڢpositionhWF`B!ΙFangles?disableSimulationڢdataTypeObjectPositionInfomsideEmptyflagsAttributesidtypeland_gm_euro_furniture_table_05atlOffsetϣpositionVFOBOFangles˜D<+u@@skillL>disableSimulationϣdataTypeObjectPositionInfobsideEmptyflagsAttributesidtypeland_gm_euro_furniture_table_05atlOffsetĤpositionVFW؎BFangles˜D<U@@skillL>disableSimulationĤdataTypeObjectPositionInfo;sideEmptyAttributessidtypeLand_Carpet_EP1atlOffset@positionWFtB2͙Fangles@sdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes@idtypeland_gm_tanktrap_01jpositionΒWF=B;ƙFangles]e<C7<@]e<@skillL>disableSimulationjdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_tanktrap_01CpositionWFCBięFangles<C7<@Σ<skillL>disableSimulationCdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_tanktrap_01position oWFB™FanglesΣ<C7<@<skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesۨidtypeland_gm_tanktrap_01atlOffset7position0WFBFanglesk.<=@]e<ۨskillL>disableSimulationdataTypeObjectPositionInfo|sideEmptyflagsAttributesidtypeland_gm_tanktrap_01ީposition'VFXBFanglesΣ<=@<skillL>disableSimulationީdataTypeObjectPositionInfoUsideEmptyflagsAttributesidtypeland_gm_tanktrap_01position+]WFJۏBFanglesΣ<C7<@Ke<skillL>disableSimulationdataTypeObjectPositionInfo>sideEmptyflagsAttributesvidtypeland_gm_tanktrap_01atlOffset7positionWFSBFanglesk.<=@˜DdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesOidtypeland_gm_tanktrap_01yposition WFBeFanglesk.<=@˜DdisableSimulationydataTypeObjectPositionInfosideEmptyflagsAttributes(idtypeland_gm_tanktrap_01RpositionBWF(BLFanglesk.<=@˜D<(skillL>disableSimulationRdataTypeObjectPositionInfoɭsideEmptyflagsAttributesidtypeland_gm_tanktrap_01+positionVF?nBFanglesΣ<=@Ke<skillL>disableSimulation+dataTypeObjectPositionInfosideEmptyflagsAttributesڮidtypeland_gm_tanktrap_01positionAVFQBٲFanglesn<=@:;ڮskillL>disableSimulationdataTypeObjectPositionInfo{sideEmptyflagsAttributesidtypeland_gm_tanktrap_01ݯposition5VF=OB|FanglesΣ<=@};skillL>disableSimulationݯdataTypeObjectPositionInfoTsideEmptyflagsAttributesidtypeland_gm_tanktrap_01positionNVFPB6Fanglesn<=@:;skillL>disableSimulationdataTypeObjectPositionInfo-sideEmptyflagsAttributeseid typeland_gm_tanktrap_01positionVFY#B FanglesΣ<P@};eskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesNid typeland_gm_tanktrap_01atlOffsetxpositionܫVFBÙFangles<P@;NskillL>disableSimulationxdataTypeObjectPositionInfosideEmptyflagsAttributes'id typeland_gm_tanktrap_01QpositionVFӎB̙Fangles]e<P@;'skillL>disableSimulationQdataTypeObjectPositionInfoسsideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffset7:positionVFmtBFangles]e<P@skillL>disableSimulation:dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffset7#positionXFBߙFangles<=@<skillL>disableSimulation#dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffset7 positioneVFBԙFanglesD<P@;skillL>disableSimulation dataTypeObjectPositionInfosideEmptyflagsAttributes˶idtypeland_gm_tanktrap_01atlOffsetpositionVFsXBFanglesD<P@@˶skillL>disableSimulationdataTypeObjectPositionInfo|sideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffset7޷position+XF&B0Fangles<=@;skillL>disableSimulation޷dataTypeObjectPositionInfoesideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffsetǸposition-VFBݙFangles]e<P@skillL>disableSimulationǸdataTypeObjectPositionInfoNsideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffset7positionXFk#BFangles<=@;skillL>disableSimulationdataTypeObjectPositionInfo7sideEmptyflagsAttributesoid%typeland_gm_tanktrap_01atlOffset7positionWFIBљFanglesΣ<x;@DdisableSimulationdataTypeObjectPositionInfo sideEmptyflagsAttributesXid&typeland_gm_tanktrap_01atlOffsetpositionWF5BpݙFangles<=@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes1id'typeland_gm_tanktrap_01[positionBWF3BϙFangles<x;@˜D<1skillL>disableSimulation[dataTypeObjectPositionInfosideEmptyflagsAttributesid(typeland_gm_tanktrap_01atlOffset7DpositionjWF/B͙Fangles<x;@:;skillL>disableSimulationDdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_tanktrap_01position>VFBk Fangles#<P@@skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes̾idtypeland_gm_tanktrap_01positionVFQ=BuFangles]e<P@@̾skillL>disableSimulationdataTypeObjectPositionInfomsideEmptyflagsAttributesidtypeland_gm_tanktrap_01ϿpositionVF^BeFangles#<P@_@skillL>disableSimulationϿdataTypeObjectPositionInfoVsideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffset7positionzVF-%BpFangles#<P@@skillL>disableSimulationdataTypeObjectPositionInfo?sideEmptyflagsAttributeswidtypeland_gm_tanktrap_01atlOffset7positionVFmB$!FanglesD<@P@wskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesPidtypeland_gm_tanktrap_01zposition{VF砍B"Fangles<@@PskillL>disableSimulationzdataTypeObjectPositionInfosideEmptyflagsAttributes)idtypeland_gm_tanktrap_01SpositionVF B7'Fangles<@:;)skillL>disableSimulationSdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_tanktrap_01,positionVFB!$FanglesD<@@skillL>disableSimulation,dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_tanktrap_01positionWF4B(FanglesKe<@<skillL>disableSimulationdataTypeObjectPositionInfo|sideEmptyflagsAttributesidtypeland_gm_tanktrap_01positionVFB%Fangles]e<@:;skillL>disableSimulationdataTypeObjectPositionInfoesideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffsetpositionUEWFNB+FanglesΣ<=@:;skillL>disableSimulationdataTypeObjectPositionInfo>sideEmptyflagsAttributesvidtypeland_gm_tanktrap_01positiondisableSimulationdataTypeObjectPositionInfo'sideEmptyflagsAttributes_idtypeland_gm_tanktrap_01atlOffset7positionIWWFB-Fanglesn<=@<_skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes8idtypeland_gm_tanktrap_01bpositionn!WFΤB(Fanglesn<=@:;8skillL>disableSimulationbdataTypeObjectPositionInfosideEmptyflagsAttributes!idtypeland_gm_tanktrap_01atlOffsetKpositionc3WF\BA*Fanglesn<=@;!skillL>disableSimulationKdataTypeObjectPositionInfosideEmptyflagsAttributes idwtypeland_gm_tanktrap_01atlOffset74positionAWFB8'Fanglesk.<{@:; skillL>disableSimulation4dataTypeObjectPositionInfosideEmptyflagsAttributesidxtypeland_gm_tanktrap_01 positionWF BK)Fanglesk.<{@};skillL>disableSimulation dataTypeObjectPositionInfosideEmptyflagsAttributesidytypeland_gm_tanktrap_01atlOffset7positionWFB]+Fanglesk.<{@};skillL>disableSimulationdataTypeObjectPositionInfomsideEmptyflagsAttributesidtypeland_gm_tanktrap_01positionWF~VBFangles< ?<skillL>disableSimulationdataTypeObjectPositionInfoVsideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffset7positionWFB&Fanglesk.< ?;skillL>disableSimulationdataTypeObjectPositionInfo?sideEmptyflagsAttributeswidtypeland_gm_tanktrap_01atlOffsetpositionuWFB/Fanglesk.<ƞ@:;wskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesPidtypeland_gm_tanktrap_01zpositionzWF%BFanglesk.<ƞ@;PskillL>disableSimulationzdataTypeObjectPositionInfosideEmptyflagsAttributes)idtypeland_gm_tanktrap_01Sposition8xWFB&Fanglesk.<ƞ@:;)skillL>disableSimulationSdataTypeObjectPositionInfosideEmptyAttributesidtypeland_gm_euro_furniture_telephone_01atlOffsetq?4positionZWF^BԙFangles_?disableSimulation4dataTypeObjectPositionInfosideEmptyAttributesid typecwa_PhoneatlOffset1q?position[WFBjԙFangles'W@disableSimulationdataTypeObjectPositionInfonsideEmptyflagsAttributesidtypeCUP_toilet_b_02positionvWFQzBNڙFangles=?@disableSimulation dataTypeObjectPositionInfohsideEmptyflagsAttributesidetypegm_pl_army_ural4320_reammoatlOffsetCustomAttributes8position_WF:dBFangles9<=@<lockLOCKEDtexturesgm_pl_ols Attribute0Attribute1lAttribute2Attribute3Attribute4Attribute5Attribute6Attribute7~Attribute8iAttribute9OnAttributes 8propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value,ldata<ltypeWvalue-1ltypeSTRINGlpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value}datatypevaluetypeARRAYitemsItem0Item1datatypetypeARRAYdata(typeCvalueWtypeARRAYWitemsItem0OItem1Item2Item3)Item4jItem5Item6Item7GItem8Item9Item10Item11lItem12Item13Item14>Item15Item16Item17Item18[Item19data_typevaluecover_hide_unhidetypeSTRINGdatatypevaluetypeSCALARdata)typevaluewinch_unhide)typeSTRING)data9jtypeUvaluejtypeSCALARjdataztypevalueroofRack_unhidetypeSTRINGdatatypevaluetypeSCALARdataGtype2valuecamonet_01_unhideGtypeSTRINGGdataWtypesvaluetypeSCALARdatatypevaluecoldWeatherKit_unhidetypeSTRINGdatatypevaluetypeSCALARdata,ltypeWvaluefuelcan_1_1_unhideltypeSTRINGldata|typevaluetypeSCALARdatatypevaluefuelcan_1_2_unhidetypeSTRINGdata >type)value>typeSCALAR>dataNtypexvaluelightGuard_unhidetypeSTRINGdatatypevaluetypeSCALARdatatypevaluetoolbox_unhidetypeSTRINGdata*[typeFvalue[typeSCALAR[dataktypevaluetools_unhidetypeSTRINGdatatypevaluetypeSCALARpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevaluegm_insignia_pl_army_01typeSTRINGpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuepdatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueXdatahtypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value>~dataN~typeivalue-1~typeSTRING~propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value)idata9itypeTvalue-1itypeSTRINGipropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueOdataOtype:value-1OtypeSTRINGOpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value8data8type#value-18typeSTRING8 dataTypeObjectPositionInfosideEmptyflagsAttributesidgtypegm_pl_army_ural375d_refuelatlOffset@4<CustomAttributes=positiongWFJBFangles <?@@;lockLOCKEDtexturesgm_pl_ols= Attribute0Attribute1Attribute2cAttribute3\Attribute4BAttribute5-Attribute6Attribute7Attribute8Attribute9nAttributes propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valuecdatactypevalue0ctypeARRAY0itemsItem0XItem1cdatahtypextypeARRAYdatactypevaluectypeARRAYitemsItem0{Item1Item2 Item3XItem4Item5Item6*Item7zItem8Item9 Item10KItem11Item12Item13"cdatatypevalueroofRack_unhidetypeSTRINGdata typevalue typeSCALAR dataXtypeCvaluecamonet_01_unhideXtypeSTRINGXdatahtypevaluetypeSCALARdatatypevaluefuelcan_1_1_unhidetypeSTRINGdata*typevalue*typeSCALAR*data:ztypeevaluefuelcan_1_2_unhideztypeSTRINGzdatatypevaluetypeSCALARdata typevaluelightGuard_unhide typeSTRING dataKtype6valueKtypeSCALARKdata[typevaluetoolbox_unhidetypeSTRINGdatatypevaluetypeSCALARdata"type valuetools_unhide"typeSTRING"data2ctypeNvaluectypeSCALARcpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value\data\typeGvaluegm_insignia_pl_army_01\typeSTRING\propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueBdataBtype-value-1BtypeSTRINGBpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value-data-typevalue-1-typeSTRING-propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueudatatypevalue-1typeSTRINGdataTypeObjectPositionInfoIsideEmptyflagsAttributesidftypegm_pl_army_ural4320_repairCustomAttributesqposition8WF}ZBFanglesh<A@;lockLOCKEDtexturesgm_pl_ols Attribute0bAttribute1MAttribute2Attribute3Attribute4Attribute5Attribute6Attribute7Attribute8Attribute9nAttributes qpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value MdataMtype8value-1MtypeSTRINGMpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value^datantypevaluetypeARRAYitemsItem0Item1datatypetypeARRAYdata type$value8typeARRAY8itemsItem0Item1bItem2Item3Item41Item5Item6Item7Item8UItem9Item10Item116Item12wItem13Item14Item15SItem16Item17data(btypeMvaluewinch_unhidebtypeSTRINGbdatartypevaluetypeSCALARdatatypevalueroofRack_unhidetypeSTRINGdata1typevalue1typeSCALAR1dataAtypekvaluecamonet_01_unhidetypeSTRINGdatatypevaluetypeSCALARdatatypevaluecoldWeatherKit_unhidetypeSTRINGdata$Utype@valueUtypeSCALARUdataetypevaluefuelcan_1_1_unhidetypeSTRINGdatatypevaluetypeSCALARdata6type!valuefuelcan_1_2_unhide6typeSTRING6dataFwtypebvaluewtypeSCALARwdatatypevaluelightGuard_unhidetypeSTRINGdatatypevaluetypeSCALARdataStype>valuetoolbox_unhideStypeSTRINGSdatactypevaluetypeSCALARdatatypevaluetools_unhidetypeSTRINGdatatype valuetypeSCALARpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevaluegm_insignia_pl_army_01typeSTRINGpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuewdatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuebdatartypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueHdataXtypesvalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value1qdataAqtype\value-1qtypeSTRINGqdataTypeObjectPositionInfosideEmptyflagsAttributes) idtypeland_gm_euro_furniture_tv_01G position+WF,B ۙFangles@) disableSimulationG dataTypeObjectPositionInfo sideEmptyAttributes idXtypeland_gm_euro_furniture_typewriter_01atlOffsett? position [WFdBҙFangles)?  dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_misc_viewplatform_01 positionmVF,B7Fanglesa@ skillL> dataTypeObjectPositionInfoW sideEmptyflagsAttributes idtypeCUP_washing_machine positionfWFBřFanglesLv<@ disableSimulation dataTypeObjectPositionInfo' sideEmptyflagsAttributes_ id+typeCUP_Dhangar_whiteskrin} position3VWFBЙFangles@_ disableSimulation} dataTypeObjectPositionInfo sideEmptyflagsAttributes idJtypeWindsock_01_FatlOffset@>$ positionVFIB!F $ dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeCUP_library_a positionTWFQzB֙Fanglesٰ? disableSimulation dataTypeObjectPositionInfocsideEmptyflagsAttributesidtypeCUP_Dhangar_knihovnapositionfWFBEܙFangles^?disableSimulationdataTypeObjectPositionInfo1sideEmptyflagsAttributesiidtypeCUP_Dhangar_knihovnapositionWFBڙFangles^?idisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes0idtypeCUP_library_aNpositionrWFQzB*ǙFangles,2?0disableSimulationNdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_Cabinet_EP1position&WF`BKʙFanglesݻ@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid!typeLand_Cabinet_EP1positionlWF`B˙Fangles<@disableSimulationdataTypeObjectPositionInfoWsideEmptyAttributesidtypeCUP_Skrin_baratlOffset?positionWF BԙFangles@disableSimulationdataTypeObjectPositionInfo&sideEmptyflagsAttributes^idtypeCUP_Dhangar_psacistul|position\WFQzBHәFanglesd@^disableSimulation|dataTypeLogicPositionInfo areaSize&1@] ?flagsiditypeModuleHideTerrainObjects_FCustomAttributesDpositionVFΎB͙Fangles]e<η?DAttribute0|Attribute1nAttributesproperty#filterexpression_this setVariable ["#filter",_value]ValuedatatypevaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValuesdatatypevaluetypeBOOLdataTypeLogicPositionInfoRareaSize@@flagsidtypeModuleHideTerrainObjects_FatlOffsetCustomAttributesrposition^VFBE FrAttribute0Attribute1AnAttributesproperty#filterexpression_this setVariable ["#filter",_value]ValueAdataAtype,valuepAAtypeSCALARAproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValuedatatypevaluetypeBOOLdataTypeLayernameLabEntities)idatlOffsetitemscItem06Item1:Item2Q>Item3AItem4EItem5RHItem6JItem7NItem8PItem9ORItem10(SItem11TItem12TItem13UItem14{VItem159WItem16XItem17XItem18YItem19ZItem20[Item21f\Item22A]Item23^Item24^Item25_Item26`Item27aItem28cbItem29>cItem30dItem31dItem32eItem33fItem34gItem35`hItem36KiItem376jItem38kItem39kItem40lItem41mItem42nItem43hoItem44CpItem45qItem46qItem47rItem48sItem49tItem50uItem51vItem52{wItem53VxItem54AyItem55zItem56{Item57{Item58|Item59}Item60~Item61nItem62IItem63$Item64Item65Item66ՃItem67Item68Item69fItem70AItem71,Item72Item73Item74Item75Item76Item77nItem78YItem794Item80Item81Item82őItem83Item84Item85vItem86QItem87,Item88Item89Item90Item91Item92Item93^Item94Item95Item96qItem970Item98Item99Item100Item101[Item1023Item103Item104Item105ĤItem106Item107zItem108JItem109-Item110Item111Item112ªItem113Item114sItem115CItem116Item117®Item118Item119Item120}Item121fItem1228Item123Item124Item125Item126Item127hItem128?Item129(Item130Item131Item132ӻItem133Item134jItem135>Item136 Item137Item138Item139Item140xItem141%Item142Item143Item144rItem145<Item146Item147Item148Item149Item150Item151oItem152VItem153=Item154$Item155 Item156Item157Item158Item159ZItem160@Item161$Item162Item163Item164]Item165/Item166Item167Item168Item169iItem170Item171Item172Item173bItem174@Item175Item176Item177Item178vItem179GItem1800Item181Item182Item183Item184Item185jItem186KItem187.Item188Item189Item190Item191Item192Item193Item194cItem195FItem196)Item197 Item198Item199Item200Item201Item202kItem203>Item204Item205Item206Item207Item208]Item2090Item210Item211Item212Item213OItem214Item215Item216Item217Item218Item219hItem220) Item221 Item222 Item223 Item224n Item225 Item226 Item227Item228~Item229HItem230Item231Item232Item233Item234_Item235+ Item236!Item237!Item238"Item239#Item240f$Item2418%Item242 &Item243&Item244'Item245(Item246Q)Item247.*Item248*Item249+Item250,Item251-Item252.Item253d/Item254G0Item255*1Item2561Item2572Item2583Item2594Item260z5Item261`6Item262F7Item2638Item2649Item2659Item266:Item267;Item268p<Item269I=Item270.>Item271?Item272?Item273@Item274AItem275BItem276hCItem277MDItem2782EItem279FItem280FItem281GItem282HItem283oIItem284DJItem285)KItem286LItem287LItem288MItem289}NItem290OOItem2911PItem292QItem293QItem294RItem295SItem296{TItem297]UItem298/VItem299WItem300WItem301XItem302YItem303iZItem304K[Item305!\Item306]Item307]Item308^Item309w_Item310@`Item311`Item312aItem313bItem314cItem315dItem316`eItem317?fItem318gItem319gItem320hItem321iItem322jItem323ikItem3249lItem325 mItem326mItem327nItem328woItem329\pItem3301qItem331rItem332rItem333sItem334tItem335vuItem336OvItem337(wItem338xItem339xItem340yItem341zItem342e{Item343>|Item344}Item345~Item346~Item347Item348Item349Item350}Item351fItem352OItem3538Item354!Item355Item356ӇItem357Item358Item359nItem360WItem3610Item362 Item363Item364Item365Item366mItem367FItem368Item369Item370Item371Item372Item373|Item374UItem375>Item376'Item377Item378ٚItem379Item380Item381tItem382MItem383&Item384Item385Item386סItem387Item388Item389rItem390:Item391Item392ڬItem393Item394Item395qItem396NItem397Item398Item399ԲItem400Item401Item402kItem403FItem404Item405Item406ŸItem407BItem408Item409{Item410Item411QItem412"Item413#Item414O$Item415%Item416%Item417&Item418'Item419e(Item420D)Item421*Item422*Item423+Item424,Item425n-Item426-.Item427/Item428/Item4290Item4301Item431a2Item432,3Item4333Item4344Item4355Item436R6Item437#7Item4387Item4398Item4409Item441g:Item4428;Item443 <Item444<Item445=Item446|>Item447M?Item448@Item449@Item450AItem451BItem452bCItem4537DItem454 EItem455EItem456FItem457GItem458pHItem459EIItem460JItem461JItem462KItem463LItem464_MItem4650NItem466OItem467OItem468PItem469wQItem470MRItem471SItem472SItem473TItem474UItem475mVItem476CWItem477XItem478XItem479YItem480ZItem481u[Item482O\Item483)]Item484]Item485^Item486_Item487}`Item488eaItem489=bItem490%cItem491dItem492dItem493eItem494fItem495igItem496=hItem497iItem498iItem499jItem500kItem501alItem5029mItem503nItem504nItem505oItem506pItem507mqItem508ErItem509sItem510sItem511tItem512uItem513yvItem514awItem515IxItem516(yItem517zItem518܁Item519"Item520XItem521&Item522Item523{Item524KItem525Item526׎Item527Item528rItem529NItem530Item531Item532ۓItem533ĔItem534Item535Item536Item537hItem538QItem539:Item540 Item541Item542ҜItem543Item544Item545pItem5466Item547Item548Item549Item550Item551dItem552AItem553Item554Item555ЧItem556Item557eItem558.Item559Item560Item561Item562dItem563@Item564 Item565ݯItem566Item567qItem568HItem569Item570Item571ѴItem572Item573Item574gItem575DItem576!Item577 Item578ܺItem579Item580hItem5814Item582Item583Item584Item585Item586Item587zItem588GItem589(Item590Item591Item592Item593XItem594%Item595Item596Item597Item598xItem599?Item600 Item601Item602Item603|Item604MItem605!Item606Item607Item608Item609eItem610dataTypeGroupsideEastEntities7Attributes}:idd:itemsItem0<7}:dataTypeObjectPositionInfo7sideEastflagsAttributes7idetypeARK_RU_CBRN_Soldier_F}:positionNfFnmB#wFanglesK!@7Inventory8}:primaryWeapon8uniform9vestD:mapItemMapcompassItemCompasswatchItemWatchradioItemRadiogogglesgm_gc_army_facewear_schm41m}:namegm_mpikms72_brnprimaryMuzzleMag89namegm_30Rnd_762x39mm_B_57N231_ak47_blkammoLeft9typeNameU_C_CBRN_Suit_01_White_FisBackpackMagazineCargoo9ItemCargo:D:itemsItem09Item19:nameSmokeShellcountammoLeft9nameSmokeShellGreencountammoLeft:itemsItem0:D:nameFirstAidKitcountD:typeNamegm_ge_army_vest_80_bagisBackpack}::dataTypeGroupsideEastEntities:AttributesK>idfatlOffset<=Q>itemsItem0:K>dataTypeObjectPositionInfo;sideEastflagsAttributes;idgtypeARK_RU_CBRN_Soldier_FatlOffset<=K>positionpfFV:rBeFanglesO @;Inventory;K>primaryWeaponm<uniform<vest>mapItemMapcompassItemCompasswatchItemWatchradioItemRadiogogglesgm_gc_army_facewear_schm41mK>namegm_mpikms72_brnprimaryMuzzleMag<<namegm_30Rnd_762x39mm_B_57N231_ak47_blkammoLeft<typeNameU_C_CBRN_Suit_01_White_FisBackpackMagazineCargo==ItemCargo=>itemsItem0e=Item1==nameSmokeShellcountammoLeft=nameSmokeShellGreencountammoLeft=itemsItem0=>nameFirstAidKitcount>typeNamegm_ge_army_vest_80_bagisBackpackK>Q>dataTypeGroupsideEastEntities>AttributesAidhAitemsItem0>AdataTypeObjectPositionInfo0?sideEastflagsAttributesh?iditypeARK_RU_CBRN_Soldier_FApositionfFnmBeFangles7N?h?Inventory}?AprimaryWeapon@uniform@vestAmapItemMapcompassItemCompasswatchItemWatchradioItemRadiogogglesgm_gc_army_facewear_schm41mAnamegm_mpikms72_brnprimaryMuzzleMagN@@namegm_30Rnd_762x39mm_B_57N231_ak47_blkammoLeft@typeNameU_C_CBRN_Suit_01_White_FisBackpackMagazineCargo@ItemCargo~AAitemsItem0AItem1FA~AnameSmokeShellcountammoLeftFAnameSmokeShellGreencountammoLeft~AitemsItem0AAnameFirstAidKitcountAtypeNamegm_ge_army_vest_80_bagisBackpackAAdataTypeGroupsideEastEntitiesYBAttributesEidatlOffsetQ=EitemsItem0vBEdataTypeObjectPositionInfoBsideEastflagsAttributes6CidtypeARK_RU_CBRN_Soldier_FatlOffsetQ=Eposition3vfFӢmBuFangles~ @6CInventoryKCEprimaryWeaponCuniform\DvestEmapItemMapcompassItemCompasswatchItemWatchradioItemRadiogogglesgm_gc_army_facewear_schm41mEnamegm_mpikms72_brnprimaryMuzzleMagD\Dnamegm_30Rnd_762x39mm_B_57N231_ak47_blkammoLeft\DtypeNameU_C_CBRN_Suit_01_White_FisBackpackMagazineCargoDItemCargoLEEitemsItem0DItem1ELEnameSmokeShellcountammoLeftEnameSmokeShellGreencountammoLeftLEitemsItem0iEEnameFirstAidKitcountEtypeNamegm_ge_army_vest_80_bagisBackpackEEdataTypeGroupsideEastEntitiesFAttributesLHid RHitemsItem04FLHdataTypeObjectPositionInfoFsideEastflagsAttributesFidtypeMNP_RO3_Soldier_FCustomAttributesFLHposition eFN~B΄Fangless@FFAttribute04GAttribute1GnAttributesLHpropertyspeakerexpression_this setspeaker _value;Value~GGdataGGtypeGvalueMale01POLGtypeSTRINGGpropertypitchexpression_this setpitch _value;Value HLHdataHLHtype7Hvalue ׃?LHtypeSCALARLHRHdataTypeGroupsideEastEntitiesHAttributesJid atlOffset7JitemsItem0HJ dataTypeObjectPositionInfocIsideEastflagsAttributesIidtypeMNP_RO3_Soldier_FatlOffset7CustomAttributesIJpositiongFeBFangles=?IIAttribute0IAttribute1jJnAttributesJpropertyspeakerexpression_this setspeaker _value;Value#JjJdata3JjJtypeUJvalueMale03POLjJtypeSTRINGjJpropertypitchexpression_this setpitch _value;ValueJJdataJJtypeJvalue?JtypeSCALARJJdataTypeGroupsideEastEntitiesAKAttributesNid NitemsItem0^KNdataTypeObjectPositionInfoKsideEastflagsAttributes LidtypeMNP_RO3_Soldier_FCustomAttributes&LNpositiongF}BFangles? L&LAttribute0nLAttribute1LAttribute2MnAttributesNpropertyspeakerexpression_this setspeaker _value;ValueLLdataLLtypeLvalueMale03POLLtypeSTRINGLpropertypitchexpression_this setpitch _value;ValueEMMdataUMMtypeqMvalue?MtypeSCALARMpropertyfaceexpression_this setface _value;ValueMNdataMNtypeMvalueNtypeSTRINGNNdataTypeGroupsideEastEntitieshNAttributesPid atlOffset9PitemsItem0NP dataTypeObjectPositionInfoOsideEastflagsAttributesWOidtypeMNP_RO3_Soldier_FatlOffset9CustomAttributes]OPpositionxEgFoB(`Fangles\@WO]OAttribute0OAttribute1&PnAttributesPpropertyspeakerexpression_this setspeaker _value;ValueO&PdataO&PtypePvalueMale03POL&PtypeSTRING&Ppropertypitchexpression_this setpitch _value;ValuelPPdata|PPtypePvalue ׃?PtypeSCALARPPdataTypeGroupsideCivilianEntitiesQAttributesIRid atlOffset6ORitemsItem09QItem1QIRdataTypeObjectPositionInfoQsideCivilianflagsAttributesQid typeC_Bob_VRatlOffset6QpositionpvF3jBֻFQQdataTypeWaypointposition$NgF_mB%FEffectsCRshowWPNEVERidtypeMoveIRIRORdataTypeObjectPositionInfoRsideEmptyflagsAttributes SidtypeItem_AntibioticatlOffset@ <(SpositionfFqBdFangles@ SdisableSimulation(SdataTypeObjectPositionInfoSsideEmptyflagsAttributesSidtypeItem_AntimalaricumatlOffset@<TpositionfFqBdFangles; @SdisableSimulationTdataTypeObjectPositionInfoTsideEmptyflagsAttributesTidtypeItem_AntimalaricumVaccineatlOffsetdisableSimulationXdataTypeObjectPositionInfosYsideEmptyflagsAttributesYidtypeland_gm_barbedwire_02YpositionZfF nBWFanglesx=v`@disableSimulationYdataTypeObjectPositionInfoNZsideEmptyflagsAttributesZidtypeland_gm_barbedwire_02ZpositionGfF"mB^Fangles@v`@;ZskillL>disableSimulationZdataTypeObjectPositionInfo)[sideEmptyflagsAttributesa[idtypeland_gm_barbedwire_02[positionfFGPnB`UFanglesx=v`@a[skillL>disableSimulation[dataTypeObjectPositionInfo\sideEmptyflagsAttributes<\idtypeland_gm_barbedwire_02f\positionfFXmBYFanglesPV=v`@pn@<\skillL>disableSimulationf\dataTypeObjectPositionInfo\sideEmptyflagsAttributes]idtypeland_gm_barbedwire_02A]position>fFgmBLmFangles>v`@V@]skillL>disableSimulationA]dataTypeObjectPositionInfo]sideEmptyflagsAttributes]idtypeland_gm_barbedwire_02^positionJfFmBkFanglesv`@]skillL>disableSimulation^dataTypeObjectPositionInfo^sideEmptyflagsAttributes^idtypeland_gm_barbedwire_02^positionfFoBsFangles#<v`@@^skillL>disableSimulation^dataTypeObjectPositionInfop_sideEmptyflagsAttributes_idtypeland_gm_barbedwire_02_position (fF`oBqFangles#<v`@@_skillL>disableSimulation_dataTypeObjectPositionInfoK`sideEmptyflagsAttributes`idtypeland_gm_barbedwire_02`positiong3fFnByoFangles>v`@*@`skillL>disableSimulation`dataTypeObjectPositionInfo&asideEmptyflagsAttributes^aidtypeland_gm_barbedwire_02aposition`fFmBfFanglesv`@^askillL>disableSimulationadataTypeObjectPositionInfobsideEmptyflagsAttributes9bidtypeland_gm_barbedwire_02cbpositionQfFoBvFangles#<v`@@9bskillL>disableSimulationcbdataTypeObjectPositionInfobsideEmptyflagsAttributescidtypeland_gm_barbedwire_02>cposition2lfFmBdFanglesv`@cskillL>disableSimulation>cdataTypeObjectPositionInfocsideEmptyflagsAttributescidtypeland_gm_barbedwire_02dpositionzUfFmBhFanglesv`@cskillL>disableSimulationddataTypeObjectPositionInfodsideEmptyflagsAttributesdidtypeland_gm_barbedwire_02dpositionfFmBA`Fanglesv`@&:dskillL>disableSimulationddataTypeObjectPositionInfomesideEmptyflagsAttributeseidtypeland_gm_barbedwire_02epositionwfFmBmbFanglesv`@eskillL>disableSimulationedataTypeObjectPositionInfoHfsideEmptyflagsAttributesfidtypeland_gm_barbedwire_02fpositionfF|oB,xFanglesD<v`@@fskillL>disableSimulationfdataTypeObjectPositionInfo#gsideEmptyflagsAttributes[gidtypeland_gm_barbedwire_02gpositioneFoB~Fangles#<v`@@[gskillL>disableSimulationgdataTypeObjectPositionInfogsideEmptyflagsAttributes6hidtypeland_gm_barbedwire_02`hpositioneFӨoB߀Fangles#<v`@@6hskillL>disableSimulation`hdataTypeObjectPositionInfohsideEmptyflagsAttributes!iidtypeland_gm_barbedwire_02atlOffset6KipositiongfFMmBFanglesK<?!iskillL>disableSimulationKidataTypeObjectPositionInfoisideEmptyflagsAttributes jidtypeland_gm_barbedwire_02atlOffset6jpositionfFgmBFangles<?@ jskillL>disableSimulation6jdataTypeObjectPositionInfojsideEmptyflagsAttributesjidtypeland_gm_barbedwire_02kpositionRfFfmBFangles<?@jskillL>disableSimulationkdataTypeObjectPositionInfoksideEmptyflagsAttributeskidtypeland_gm_barbedwire_02kposition"fF mBFangles:;?@kskillL>disableSimulationkdataTypeObjectPositionInfoelsideEmptyflagsAttributeslidtypeland_gm_barbedwire_02lpositionyfF2mB@Fangles<?@lskillL>disableSimulationldataTypeObjectPositionInfo@msideEmptyflagsAttributesxmidtypeland_gm_barbedwire_02mpositioneF+QnBFangles˜D<?@xmskillL>disableSimulationmdataTypeObjectPositionInfo+nsideEmptyflagsAttributescnidtypeland_gm_barbedwire_02atlOffset6npositioneF,-nBhFangles#<?@cnskillL>disableSimulationndataTypeObjectPositionInfoosideEmptyflagsAttributes>oidtypeland_gm_barbedwire_02hopositioneFtnB|Fangles#<?@>oskillL>disableSimulationhodataTypeObjectPositionInfoosideEmptyflagsAttributespidtypeland_gm_barbedwire_02CppositioneFnB7Fangles#<?@pskillL>disableSimulationCpdataTypeObjectPositionInfopsideEmptyflagsAttributespidtypeland_gm_barbedwire_02qpositioneF}wnBFangles#<?@pskillL>disableSimulationqdataTypeObjectPositionInfoqsideEmptyflagsAttributesqidtypeland_gm_barbedwire_02qpositionfF'mB˜Fangles#<?@qskillL>disableSimulationqdataTypeObjectPositionInforsideEmptyflagsAttributesridtypeland_gm_barbedwire_02atlOffset6rpositionxeFnBFangles˜D<?@rskillL>disableSimulationrdataTypeObjectPositionInfomssideEmptyflagsAttributessidtypeland_gm_barbedwire_02atlOffset6spositionfFmBќFangles#<?@sskillL>disableSimulationsdataTypeObjectPositionInfoXtsideEmptyflagsAttributestidtypeland_gm_barbedwire_02atlOffsettpositioneF nB#ƜFangles#<?@tskillL>disableSimulationtdataTypeObjectPositionInfoCusideEmptyflagsAttributes{uidtypeland_gm_barbedwire_02atlOffset6uposition=fFmBݜFanglesD<?@{uskillL>disableSimulationudataTypeObjectPositionInfo.vsideEmptyflagsAttributesfvidtypeland_gm_barbedwire_02atlOffset6vposition* fFQmBTלFangles#<?@fvskillL>disableSimulationvdataTypeObjectPositionInfowsideEmptyflagsAttributesQwidtypeland_gm_barbedwire_02atlOffset6{wpositionTeF*oBKFangles<?@QwskillL>disableSimulation{wdataTypeObjectPositionInfowsideEmptyflagsAttributes,xidtypeland_gm_barbedwire_02VxpositiongeF oBFangles#<?@,xskillL>disableSimulationVxdataTypeObjectPositionInfoxsideEmptyflagsAttributesyidtypeland_gm_barbedwire_02atlOffset7AypositionAeFMoBFangles#<?@yskillL>disableSimulationAydataTypeObjectPositionInfoysideEmptyflagsAttributesyidtypeland_gm_barbedwire_02zposition.eF?ooB֌Fangles#<?@yskillL>disableSimulationzdataTypeObjectPositionInfozsideEmptyflagsAttributeszidtypeland_gm_barbedwire_02atlOffset6{positioneF-oBFanglesD<?@zskillL>disableSimulation{dataTypeObjectPositionInfo{sideEmptyflagsAttributes{id typeland_gm_barbedwire_02atlOffset6{position:fF@*mBFangles?@{skillL>disableSimulation{dataTypeObjectPositionInfo{|sideEmptyflagsAttributes|id typeland_gm_barbedwire_02atlOffset|positionBfFmBZ$Fangles:;?P@|skillL>disableSimulation|dataTypeObjectPositionInfoV}sideEmptyflagsAttributes}id typeland_gm_barbedwire_02}position6fFm.mB*Fangles?@}skillL>disableSimulation}dataTypeObjectPositionInfo1~sideEmptyflagsAttributesi~id typeland_gm_barbedwire_02~positionFfFmB*Fangles;?P@i~skillL>disableSimulation~dataTypeObjectPositionInfo sideEmptyflagsAttributesDidtypeland_gm_barbedwire_02nposition>fF!mBFangles;?@DskillL>disableSimulationndataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02Iposition\&fFnmB?Fangles:;?@skillL>disableSimulationIdataTypeObjectPositionInfo€sideEmptyflagsAttributesidtypeland_gm_barbedwire_02$positionp*fFs mBFangles@?;skillL>disableSimulation$dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_barbedwire_02atlOffset6position2fFA)mBo Fangles@?@skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesЂidtypeland_gm_barbedwire_02atlOffsetposition.fFmBFangles@?@ЂskillL>disableSimulationdataTypeObjectPositionInfossideEmptyflagsAttributesidtypeland_gm_barbedwire_02ՃpositionMgFAnBOFangles"@skillL>disableSimulationՃdataTypeObjectPositionInfoNsideEmptyflagsAttributesidtypeland_gm_barbedwire_02positionagFnBVFangles"@skillL>disableSimulationdataTypeObjectPositionInfo)sideEmptyflagsAttributesaidtypeland_gm_barbedwire_02positionCgF`nBiLFangles"@askillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes<idtypeland_gm_barbedwire_02fpositionWgF(nBbSFangles"@<skillL>disableSimulationfdataTypeObjectPositionInfo߆sideEmptyflagsAttributesid"typeland_gm_barbedwire_02Aposition%gFNnBAFangles"="@@skillL>disableSimulationAdataTypeObjectPositionInfoʇsideEmptyflagsAttributesid#typeland_gm_barbedwire_02atlOffset6,position9gFnBHFangles"@skillL>disableSimulation,dataTypeObjectPositionInfosideEmptyflagsAttributes݈id$typeland_gm_barbedwire_02position/gFnBqEFangles"@݈skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid(typeland_gm_barbedwire_02positiongFfnBnFangles;"@@skillL>disableSimulationdataTypeObjectPositionInfo[sideEmptyflagsAttributesid)typeland_gm_barbedwire_02positiongF^ nByuFangles;"@P@skillL>disableSimulationdataTypeObjectPositionInfoFsideEmptyflagsAttributes~id*typeland_gm_barbedwire_02atlOffsetpositiongFxnBkFangles;"@;~skillL>disableSimulationdataTypeObjectPositionInfo!sideEmptyflagsAttributesYid+typeland_gm_barbedwire_02positiongFBnBqFangles;"@@YskillL>disableSimulationdataTypeObjectPositionInfo sideEmptyflagsAttributesDid/typeland_gm_barbedwire_02atlOffset6nposition-gFnB`Fangles:;"@P@DskillL>disableSimulationndataTypeObjectPositionInfosideEmptyflagsAttributes/id0typeland_gm_barbedwire_02atlOffset@7YpositiongFnBgFangles;"@_@/skillL>disableSimulationYdataTypeObjectPositionInfoҎsideEmptyflagsAttributes id1typeland_gm_barbedwire_024position$gF*nB dFangles:;"@P@ skillL>disableSimulation4dataTypeObjectPositionInfosideEmptyflagsAttributesid@typeland_gm_barbedwire_02position'~fF_lB/Fangles;Ə>P@skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidAtypeland_gm_barbedwire_02positionrfFlB1Fangles:;Ə>@skillL>disableSimulationdataTypeObjectPositionInfocsideEmptyflagsAttributesidBtypeland_gm_barbedwire_02őpositionfFjalB)Fangles;Ə>P@skillL>disableSimulationődataTypeObjectPositionInfoNsideEmptyflagsAttributesidCtypeland_gm_barbedwire_02atlOffset@7positionfF:qlB+Fangles;Ə>@skillL>disableSimulationdataTypeObjectPositionInfo)sideEmptyflagsAttributesaidDtypeland_gm_barbedwire_02positionfFlB-Fangles;Ə>P@askillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesLidEtypeland_gm_barbedwire_02atlOffsetvposition[fF6lB5Fangles:;Ə>P@LskillL>disableSimulationvdataTypeObjectPositionInfosideEmptyflagsAttributes'idFtypeland_gm_barbedwire_02QpositionfFLlB'Fangles;Ə>P@'skillL>disableSimulationQdataTypeObjectPositionInfoʕsideEmptyflagsAttributesidGtypeland_gm_barbedwire_02,positionLPfFlB8Fangles;Ə>@skillL>disableSimulation,dataTypeObjectPositionInfosideEmptyflagsAttributesݖidHtypeland_gm_barbedwire_02position:gfFlB3Fangles:;Ə>@ݖskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidOtypeland_gm_barbedwire_02positionfF&lB#Fangles;Ə>P@skillL>disableSimulationdataTypeObjectPositionInfo[sideEmptyflagsAttributesidPtypeland_gm_barbedwire_02positionxfF=7lB%Fangles;Ə>P@skillL>disableSimulationdataTypeObjectPositionInfo6sideEmptyflagsAttributesnidQtypeland_gm_barbedwire_02positionefFlB!Fangles;Ə>@nskillL>disableSimulationdataTypeObjectPositionInfo!sideEmptyflagsAttributesYidRtypeland_gm_barbedwire_02atlOffset6positionfFgkBFangles;Ə>@YskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes4idStypeland_gm_barbedwire_02^positionSfFkBFangles;Ə>,@4skillL>disableSimulation^dataTypeObjectPositionInfoћsideEmptyflagsAttributesidtypegm_barrel_rustyposition]fFi8oBh|FdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypegm_barrel_rustyposition^fFi8oB}FdisableSimulationdataTypeObjectPositionInfo3sideEmptyflagsAttributesSidtypegm_barrel_rustyqposition`fFi8oB|FSdisableSimulationqdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeBloodSplatter_01_Medium_Old_F0positionfF4rmBrFdisableSimulation0dataTypeObjectPositionInfosideEmptyflagsAttributesОidtypeBloodSplatter_01_Small_Old_Fposition=fF4rmBgFОdisableSimulationdataTypeObjectPositionInfoisideEmptyAttributesidtypeBloodSpray_01_Old_FatlOffset<0=positionAfF8kmBfFdisableSimulationdataTypeObjectPositionInfo-sideEmptyAttributeseid+typeLand_Bodybag_01_folded_black_FatlOffsetP?positionfFpBaFangles @edisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes=idBtypeland_gm_euro_furniture_book_01[positionpfFpBwFanglesFͣ@=disableSimulation[dataTypeObjectPositionInfoݡsideEmptyflagsAttributesid typeland_gm_euro_furniture_book_013position"GgFrB\Fangles꜋@disableSimulation3dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeBroom_01_yellow_FatlOffset@8positiongfFC qBxFangles\@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesˣidtypeBroom_01_yellow_FatlOffset 8positionfFA qBwxFangles%SR@ˣdisableSimulationdataTypeObjectPositionInfonsideEmptyflagsAttributesid8typeBrush_01_yellow_FatlOffset<Ĥposition˷fF qBwFangles|?disableSimulationĤdataTypeObjectPositionInfoIsideEmptyflagsAttributesid9typeBrush_01_yellow_FatlOffset7positionfF qBwFangles@disableSimulationdataTypeObjectPositionInfo$sideEmptyflagsAttributes\id:typeBrush_01_yellow_FatlOffsetJpositionsfFInByFangles8m@,disableSimulationJdataTypeObjectPositionInfoקsideEmptyflagsAttributesidAtypeLand_CampingTable_white_FatlOffset89-positionfFoBxFangles@disableSimulation-dataTypeObjectPositionInfosideEmptyflagsAttributesidBtypeLand_CampingTable_white_FpositionfFoBuFanglesP?disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributeséidtypeLand_CanisterFuel_Red_FatlOffset9positionfFRnBmgFanglesc@édisableSimulationdataTypeObjectPositionInfolsideEmptyflagsAttributesidtypeLand_CanisterFuel_Red_FatlOffset9ªposition]fFRnBDgFangles @disableSimulationªdataTypeObjectPositionInfoMsideEmptyflagsAttributesidtypeLand_CanisterFuel_Red_FatlOffset9positionfFRnBgFanglesc@disableSimulationdataTypeObjectPositionInfosideEmptyAttributesUidtypeLand_CanisterOil_FatlOffsetGA?spositionsfFopByFanglesF@UdisableSimulationsdataTypeObjectPositionInfosideEmptyflagsAttributes%idtypeLand_CanisterPlastic_FCpositionfFAnB~zFangles`@%disableSimulationCdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_Caravan_01_rust_FpositiongFoBFangles>dataTypeObjectPositionInfolsideEmptyflagsAttributesid typeCBRNCase_01_F®positionfF5yqBaFanglesl@disableSimulation®dataTypeObjectPositionInfoUsideEmptyflagsAttributesid typeCBRNContainer_01_closed_olive_FatlOffsetf;positionƲfFnBB`Fanglesg~h@disableSimulationdataTypeObjectPositionInfo>sideEmptyflagsAttributesvidtypeCBRNContainer_01_closed_olive_FatlOffset@O;positionfF1nB`Fanglesg~h@vdisableSimulationdataTypeObjectPositionInfo'sideEmptyflagsAttributes_id_typeCBRNContainer_01_closed_olive_FatlOffset@=}positionfF1nB6gFangles`@_disableSimulation}dataTypeObjectPositionInfosideEmptyflagsAttributesHid`typeCBRNContainer_01_closed_olive_FatlOffsett?=fpositionfFnBgFangles`@HdisableSimulationfdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCBRNContainer_01_olive_F8positionfFnB`Fanglesl@disableSimulation8dataTypeObjectPositionInfoijsideEmptyflagsAttributesidatypeCBRNContainer_01_olive_FatlOffsetB=positionfFnBfFangles=disableSimulationdataTypeObjectPositionInfosideEmptyAttributes̴idtypeCBRNLid_01_olive_FatlOffset?positionfF)pB`FanglesC@̴disableSimulationdataTypeObjectPositionInfodsideEmptyAttributesidbtypeCBRNLid_01_olive_FatlOffset?positionfFt&pBgFangles|-@disableSimulationdataTypeObjectPositionInfo;sideEmptyflagsAttributessidCtypeItem_U_C_CBRN_Suit_01_White_FpositionfF[UsBtFangles??sdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesJidDtypeItem_U_C_CBRN_Suit_01_White_Fhposition϶fF[UsBuFangles @JdisableSimulationhdataTypeObjectPositionInfosideEmptyflagsAttributes!idEtypeItem_U_C_CBRN_Suit_01_White_F?position'fF[UsBuFangles??!disableSimulation?dataTypeObjectPositionInfoҸsideEmptyflagsAttributes id\typeland_gm_euro_furniture_chair_04atlOffset@=(positionpfFjmBbFanglesm@ disableSimulation(dataTypeObjectPositionInfosideEmptyflagsAttributesid]typeland_gm_euro_furniture_chair_04atlOffset,6=positionɫfFrmBbFangles3?disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesܺidhtypeland_gm_euro_furniture_chair_04atlOffset@9=positionǢfFmBdFangles@ܺdisableSimulationdataTypeObjectPositionInfo}sideEmptyflagsAttributesidO typeCUP_Dkamna_uhliatlOffset6ӻposition,fFmmBdFanglesy?disableSimulationӻdataTypeObjectPositionInfoOsideEmptyAttributesoidtypeCUP_item_Cobalt_FileatlOffsetP?position6fFUsB~bFodisableSimulationdataTypeObjectPositionInfosideEmptyAttributesLidtypeLiquidSpraySystem_01_Extended_FatlOffsetj@jposition\fF~BOxFanglese?LdisableSimulationjdataTypeObjectPositionInfosideEmptyAttributes idtypeLiquidSpraySystem_01_FatlOffset?>positionPfFtBs{FanglesW@ disableSimulation>dataTypeObjectPositionInfoʾsideEmptyflagsAttributesid\typeLand_Wall_IndCnc_2deco_FatlOffset`; positionfFRtqByFangles^?disableSimulation dataTypeObjectPositionInfosideEmptyflagsAttributesid]typeLand_Wall_IndCnc_2deco_FatlOffset`;positionsfFRtqB-Fangles^?disableSimulationdataTypeObjectPositionInfo~sideEmptyflagsAttributesidtypeLand_Wall_IndCnc_2deco_Fposition:fF?nqBuFanglesr>disableSimulationdataTypeObjectPositionInfoPsideEmptyflagsAttributesid:typeLand_Wall_IndCnc_2deco_FpositionfF?nqB|Fanglesn@disableSimulationdataTypeObjectPositionInfo"sideEmptyflagsAttributesZid>typeLand_Wall_IndCnc_2deco_FxpositionfF?nqBzvFanglesn@ZdisableSimulationx dataTypeObjectPositionInfosideEmptyflagsAttributesJidtypeDeconShower_01_FatlOffset@;CustomAttributesh%position)fF[rBQ{Fanglesբ>JdisableSimulationhAttribute0Attribute1rnAttributes%propertyDecon_Shower_DisableUserActionsexpressionif(_value)then{_this setVariable ['bin_deconshower_disableAction',true]};Value3rdataCrtype_valuertypeBOOLrpropertyDecon_Showerexpressionif(_value)then{[_this,1.5,9] spawn bin_fnc_deconShowerAnim;};Value%data%typevalue%typeBOOL%dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeDeconShower_02_FCustomAttributesposition'fF]{BwFangles>disableSimulationAttribute0=Attribute1nAttributespropertyDecon_Shower_DisableUserActionsexpressionif(_value)then{_this setVariable ['bin_deconshower_disableAction',true]};ValuedatatypevaluetypeBOOLpropertyDecon_Showerexpressionif(_value)then{[_this,5.4,4,2,true] spawn bin_fnc_deconShowerAnimLarge;};ValuedatatypevaluetypeBOOLdataTypeObjectPositionInfoBsideEmptyflagsAttributeszidRtypeLand_TableDesk_FpositionZfF oBaFanglesf>zdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesTid[typeLand_TableDesk_FatlOffset8=rpositionеfFoBjbFangles2@TdisableSimulationrdataTypeObjectPositionInfosideEmptyflagsAttributesidctypeLand_TableDesk_F<positionfF oBdFangles?disableSimulation<dataTypeObjectPositionInfosideEmptyflagsAttributesid typeLand_TableDesk_FpositionYIgF'qB]Fangles? @disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidStypeland_gm_euro_furniture_lampfixture_03atlOffset8position~fFpBaFanglesÇ;]?|@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid typeland_gm_euro_furniture_lampfixture_03atlOffset@ ;positionJgFGrB^Fangles<E-=@disableSimulationdataTypeObjectPositionInfomsideEmptyflagsAttributesidEtypeland_gm_euro_furniture_lampfixture_03position^fFXpBMwFangles@disableSimulationdataTypeObjectPositionInfoCsideEmptyAttributes{idtypeLand_DischargeStick_01_FatlOffset@?positionrfFEpBDzFangles:@{disableSimulationdataTypeObjectPositionInfosideEmptyAttributesQid)typeLand_DisinfectantSpray_FatlOffsetN?oposition!fF5qBcFanglesC@QdisableSimulationodataTypeObjectPositionInfosideEmptyflagsAttributes8idtypeplp_ctm_DisplayHookGreySingleatlOffsetEv@VpositionfFByFanglesW@8disableSimulationVdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeplp_ctm_DisplayHookGreySingleatlOffsetEv@=positionfFB2zFangles->disableSimulation=dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeplp_ctm_DisplayHookGreySingleatlOffset>$positionfFBuFangles@>disableSimulation$dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeplp_ctm_DisplayHookGreySingleatlOffset> positionfFBRuFanglesW@disableSimulation dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeDrainageDeck_01_FatlOffset`;position fFŒmBu{Fanglesբ>disableSimulationdataTypeObjectPositionInfo_sideEmptyAttributesidZtypeLand_FilePhotos_FatlOffsetQ?positionfFpBaFanglesÇ;ήM@|@disableSimulationdataTypeObjectPositionInfo3sideEmptyflagsAttributeskidYtypeItem_FilesatlOffset7positionfFqBaFangles;v@B@kdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributes<idtypeLand_FireExtinguisher_FZpositionfF|nBmFangles?<disableSimulationZdataTypeObjectPositionInfosideEmptyflagsAttributes"id(typeLand_FirstAidKit_01_closed_FatlOffset6@positionAfFReqBcFangles;֮?;"disableSimulation@dataTypeObjectPositionInfosideEmptyflagsAttributesid*typeLand_FirstAidKit_01_open_FatlOffset08$positionfFQpB>cFangles2 <h"@e;disableSimulation$dataTypeObjectPositionInfosideEmptyflagsAttributesidtypegm_flag_URposition|gF~BdFanglesb"@dataTypeObjectPositionInfoMsideEmptyflagsAttributesidtypeLand_GarageRow_01_small_Fposition?fFsB9ߜFanglesb?dataTypeObjectPositionInfosideEmptyflagsAttributes?idtypeLand_GasTank_01_yellow_F]positionafFnBbFanglesZ@?disableSimulation]dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_GasTank_01_yellow_F/positionfFnBbFangles2}@disableSimulation/dataTypeObjectPositionInfosideEmptyAttributesidFtypegm_placeableItem_gc_army_facewear_schm41matlOffset>positionfFy.qBuFangles??disableSimulationdataTypeObjectPositionInfosideEmptyAttributesidGtypegm_placeableItem_gc_army_facewear_schm41matlOffset>position8fFy.qBtFangles0@disableSimulationdataTypeObjectPositionInfousideEmptyflagsAttributesidtypeLand_GuardTower_02_FpositionfFA|BZFanglesE[@dataTypeObjectPositionInfo+sideEmptyflagsAttributescidtypeLand_GuardTower_02_FipositionfF"{B繜Fangles@cidataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_GuardTower_02_FpositionLgFP_xBsFangles;>dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_GuardTower_02_FpositionGgFuwBFanglesxʿ>dataTypeObjectPositionInfoMsideEmptyflagsAttributesidtypeLand_GuardTower_02_FpositionSfFzB/.Fangles;>dataTypeObjectPositionInfo sideEmptyflagsAttributesDidtypeGunrackTK_EP1atlOffset 9bpositionDUgFOwqBy]Fangles?DdisableSimulationbdataTypeObjectPositionInfosideEmptyflagsAttributes"idtypeHazmatBag_01_empty_FatlOffset@;@position"fFpBwFangles_ؕ>"disableSimulation@dataTypeObjectPositionInfosideEmptyflagsAttributesid7typeHazmatBag_01_empty_FatlOffsetp8positionWfFpByFanglesW>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeHazmatBag_01_FpositionfFuoB*{FanglesG>disableSimulationdataTypeObjectPositionInfoXsideEmptyflagsAttributesidtypeHazmatBag_01_FpositionafFuoB6|FanglesYP?disableSimulationdataTypeObjectPositionInfo sideEmptyflagsAttributesXidtypeHazmatBag_01_Fvposition7fFuoB}FanglesX?XdisableSimulationvdataTypeObjectPositionInfosideEmptyAttributes)idtypeHazmatBag_01_roll_FatlOffsetO?GpositionfFqBvFanglest?@)disableSimulationGdataTypeObjectPositionInfosideEmptyflagsAttributesidntypeLand_IndPipe1_stair_todo_deleteatlOffsetP&<0positionfF~oBzFangles?disableSimulation0dataTypeObjectPositionInfosideEmptyflagsAttributesid> typeLand_IndPipe1_stair_todo_deleteatlOffset2ӽpositionrpfF:nBFangles)a@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_IndPipe3_Small_9_FpositionfF5xBFangles'`@disableSimulationdataTypeObjectPositionInfofsideEmptyflagsAttributesidtypeLand_IndPipe3_SmallL_L_FpositionmfF5xBFangles^@disableSimulationdataTypeObjectPositionInfo=sideEmptyflagsAttributesuidtypeLand_IndPipe3_Small_ground1_Fposition!cfFwBm{Fangles7?udisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesLidtypeLand_IndPipe3_Small_ground2_Fjposition}fFwBlFangles:ea@LdisableSimulationjdataTypeObjectPositionInfosideEmptyAttributes-idjtypeland_gm_euro_furniture_infoboard_01atlOffset`?KpositionmfFGrB_Fangles5a@-disableSimulationKdataTypeObjectPositionInfosideEmptyAttributesidFtypeland_gm_euro_furniture_lampfixture_01atlOffset#@.positionfFʈBiFangles(E?disableSimulation.dataTypeObjectPositionInfosideEmptyAttributesidHtypeland_gm_euro_furniture_lampfixture_01atlOffset#@positionfFʈBOlFangles(E?disableSimulationdataTypeObjectPositionInfosideEmptyAttributesidItypeland_gm_euro_furniture_lampfixture_01atlOffsetPD@position}fFʈBoFangles(E?disableSimulationdataTypeObjectPositionInfosideEmptyAttributesidJtypeland_gm_euro_furniture_lampfixture_01atlOffset@positiondfFʈB^sFangles(E?disableSimulationdataTypeObjectPositionInfodsideEmptyAttributesidKtypeland_gm_euro_furniture_lampfixture_01atlOffset#@positionԯfFʈBeFangles(E?disableSimulationdataTypeObjectPositionInfoGsideEmptyAttributesidLtypeland_gm_euro_furniture_lampfixture_01atlOffset#@positionԯfFʈBeFangles(E?disableSimulationdataTypeObjectPositionInfo*sideEmptyAttributesbidMtypeland_gm_euro_furniture_lampfixture_01atlOffset#@positionfFʈBiFangles(E?bdisableSimulationdataTypeObjectPositionInfo sideEmptyAttributesEidNtypeland_gm_euro_furniture_lampfixture_01atlOffset#@cpositionfFʈBOlFangles(E?EdisableSimulationcdataTypeObjectPositionInfosideEmptyAttributes(idOtypeland_gm_euro_furniture_lampfixture_01atlOffsetPD@Fposition}fFʈBoFangles(E?(disableSimulationFdataTypeObjectPositionInfosideEmptyAttributes idPtypeland_gm_euro_furniture_lampfixture_01atlOffset@)positiondfFʈB^sFangles'E? disableSimulation)dataTypeObjectPositionInfosideEmptyAttributesidQtypeland_gm_euro_furniture_lampfixture_01atlOffset"@ position$fFnBxFangles(E?disableSimulation dataTypeObjectPositionInfosideEmptyAttributesidRtypeland_gm_euro_furniture_lampfixture_01atlOffset8@positionefFnB,|Fangles(E?disableSimulationdataTypeObjectPositionInfo|sideEmptyAttributesidStypeland_gm_euro_furniture_lampfixture_01atlOffset4?positionfFnBgFangles(E?disableSimulationdataTypeObjectPositionInfo_sideEmptyAttributesidTtypeland_gm_euro_furniture_lampfixture_01atlOffset4?positionfFnB-Fangles(E?disableSimulationdataTypeObjectPositionInfoBsideEmptyAttributeszidUtypeland_gm_euro_furniture_lampfixture_01atlOffset4?positionnfFnBvFangles(E?zdisableSimulationdataTypeObjectPositionInfosideEmptyAttributesMidtypeLayFlatHose_01_Step_FatlOffsetP@kpositionfF {B~uFanglesK@MdisableSimulationkdataTypeObjectPositionInfosideEmptyAttributes idtypeLayFlatHose_01_Step_FatlOffset3@>position-fF3qBwFangles*#@ disableSimulation>dataTypeObjectPositionInfosideEmptyAttributesidtypeLayFlatHose_01_Step_FatlOffset@positionfFoByFangles*#@disableSimulationdataTypeObjectPositionInfosideEmptyAttributesidtypeLayFlatHose_01_Step_FatlOffsetД@positionfFCgBuwFangles*#@disableSimulationdataTypeObjectPositionInfoasideEmptyAttributesidtypeLayFlatHose_01_Step_FatlOffset@@positionRfFaBwFangles*#@disableSimulationdataTypeObjectPositionInfo4sideEmptyAttributeslidtypeLayFlatHose_01_Step_FatlOffsetU@positionfFReByFangles*#@ldisableSimulationdataTypeObjectPositionInfosideEmptyAttributes?idtypeLayFlatHose_01_Step_FatlOffsetH@]position)fF`BzFangles*#@?disableSimulation]dataTypeObjectPositionInfosideEmptyAttributesidtypeLayFlatHose_01_Step_FatlOffsethW@0position:fFleBJuFanglesK@disableSimulation0dataTypeObjectPositionInfosideEmptyAttributesidtypeLayFlatHose_01_Step_FatlOffsetpW@positionfFleBuFanglesK@disableSimulationdataTypeObjectPositionInfo{sideEmptyAttributesidotypeLeaflet_05_Old_FatlOffset@n;position#fFpBbFdisableSimulationdataTypeObjectPositionInfo/sideEmptyflagsAttributesgidntypeLeaflet_05_Stack_FpositionfFqB`Fangles;B@gdisableSimulationdataTypeObjectPositionInfosideEmptyAttributes1id@typegm_placeableItem_computer_magnettapeatlOffset@$5?Oposition+fFApBxF1disableSimulationOdataTypeObjectPositionInfosideEmptyAttributesidAtypegm_placeableItem_computer_magnettapeatlOffset:?positionfFIXpBwFdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid-typeMedicalGarbage_01_Injector_FatlOffsetZ?positionjfFmpBZbFangles|@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid.typeMedicalGarbage_01_Injector_FatlOffset@Y?positionWfFipBCbFangles|@disableSimulationdataTypeObjectPositionInfousideEmptyflagsAttributesid/typeMedicalGarbage_01_Injector_FatlOffset@Y?position=fFbpBbFangles|@disableSimulationdataTypeObjectPositionInfoAsideEmptyAttributesyidytypeCUP_lekarnickaatlOffset Y?positionfF#sBbFangles ?ydisableSimulationdataTypeObjectPositionInfosideEmptyAttributesJidwtypeLand_Microwave_01_FatlOffsetQ?hpositionfFqBbFanglesIfb@JdisableSimulationhdataTypeObjectPositionInfosideEmptyflagsAttributes# idtypeLand_MobileRadar_01_generator_F) positionegFtBWFangles ^@# ) dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeSign_1L_Noentry positionpfF!oBmFangles$)@ disableSimulation dataTypeObjectPositionInfou sideEmptyflagsAttributes idtypeSign_1L_NoentryatlOffset positionfF oB8xFangles¢@ disableSimulation dataTypeObjectPositionInfoN sideEmptyflagsAttributes idtypeSign_1L_NoentryatlOffset`9 positionfFoBbFangles@ disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributesP id typeCUP_office_chairn positionGgF`qB^FanglesN@P disableSimulationn dataTypeObjectPositionInfo sideEmptyflagsAttributes idCtypeCUP_office_chair positionfFoBwFanglesE@  dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeCUP_office_chair positiongPgFaqBqVFangles'&@ disableSimulation dataTypeObjectPositionInfo^sideEmptyflagsAttributesidtypeCUP_office_chairpositionTgFaqBWFangles'&@disableSimulationdataTypeObjectPositionInfo(sideEmptyflagsAttributes`idtypeCUP_office_chair~position&LgFaqB UFangles'&@`disableSimulation~dataTypeObjectPositionInfosideEmptyflagsAttributes*idtypeCUP_office_chairHposition"NgFaqBUFangles'&@*disableSimulationHdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCUP_office_chairpositionRgFaqB"WFangles'&@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_TrailerCistern_wreck_FatlOffset}<positionfF9mBhFangles^\@disableSimulation dataTypeObjectPositionInfosideEmptyflagsAttributesid[typegm_gc_army_p601atlOffset<CustomAttributesposition JfFtBvFanglesj> Attribute0Attribute1Attribute2{Attribute3fAttribute4QAttribute57Attribute6-Attribute7!Attribute8 Attribute9Attribute10nAttributes propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueBdataRtypemvalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value'{data7{typefvaluegm_insignia_ur_star_01{typeSTRING{propertygm_vehicleMarkings_tacticalNumber_Number_attributeexpression[_this,_value,2,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value&fdata6ftypeQvalue-1ftypeSTRINGfpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueQdata!Qtype<value-1QtypeSTRINGQpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value7data7type"value-17typeSTRING7propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value-data-typevaluegm_insignia_none-typeSTRING-propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value!data!type valuegm_insignia_none!typeSTRING!propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value data typevalue-1 typeSTRING propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalNumber_Numberfont_attributeexpression[_this,_value,2,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGdataTypeObjectPositionInfo=sideEmptyflagsAttributesuidDtypeLand_PenBlack_FpositionԢfFkpBLxFanglesd?udisableSimulationdataTypeObjectPositionInfo sideEmptyflagsAttributesAid. typeLand_Pipes_large_F_positionWfFmBpFangles/>AdisableSimulation_dataTypeObjectPositionInfosideEmptyflagsAttributes id/ typeLand_Pipes_large_F+ positionjfFmmBmFangles/> disableSimulation+ dataTypeObjectPositionInfo sideEmptyflagsAttributes id|typeACE_plasmaIVItematlOffsetIG>!positionfFxpBaFangles@˖@? disableSimulation!dataTypeObjectPositionInfo!sideEmptyflagsAttributes!idtypeLand_PlasticBucket_01_closed_F!position)pfF%QnByFangles?!disableSimulation!dataTypeObjectPositionInfoa"sideEmptyAttributes"idtypeLand_PlasticBucket_01_open_FatlOffsetA?"position:qfFXqBzFangles?"disableSimulation"dataTypeObjectPositionInfo<#sideEmptyflagsAttributest#id typeland_cwa_CanisteratlOffsetL=#positionfFVnBzFanglesa@t#disableSimulation#dataTypeObjectPositionInfo$sideEmptyAttributesH$id typePowerCable_01_Corner_FatlOffset$?f$positionfF!oB Fanglesk?0?>H$disableSimulationf$dataTypeObjectPositionInfo$sideEmptyAttributes%id typePowerCable_01_Roll_FatlOffset@)?8%positionffF?pBɅFangles@%disableSimulation8%dataTypeObjectPositionInfo%sideEmptyAttributes%id typePowerCable_01_SBend_FatlOffset> &position fF FoBFanglesA?ڦ?\@%disableSimulation &dataTypeObjectPositionInfo&sideEmptyflagsAttributes&idtypeLand_Misc_Cable_EP1atlOffsetN&positionfF&BpFanglessK@&disableSimulation&dataTypeObjectPositionInfoq'sideEmptyflagsAttributes'idtypeLand_Misc_Cable_V_EP1atlOffset{>'positionfF@BrFangles 6>'disableSimulation'dataTypeObjectPositionInfoA(sideEmptyflagsAttributesy(idtypePressureHose_01_Roll_F(positionfFmBdFanglesΔ@y(disableSimulation(dataTypeObjectPositionInfo)sideEmptyflagsAttributesK)idtypeLand_PressureWasher_01_FQ)positionpfFoB*FanglesJ@?K)Q)dataTypeObjectPositionInfo)sideEmptyAttributes*idtypeland_gm_euro_furniture_radio_01atlOffsetP?.*positionfFJpBdFangles,@*disableSimulation.*dataTypeObjectPositionInfo*sideEmptyflagsAttributes*idtypeland_gm_radiotower_01atlOffset6*positioni%gF]nBSFanglesj@**dataTypeObjectPositionInfo+sideEmptyflagsAttributes+idtypeLand_RailwayCar_01_tank_FatlOffset@;+positionkfFpBFangles[?+disableSimulation+dataTypeObjectPositionInfoe,sideEmptyflagsAttributes,idtypeLand_RailwayCar_01_tank_FatlOffset@,positionfFoBTFanglesWԡ@,disableSimulation,dataTypeObjectPositionInfoH-sideEmptyflagsAttributes-idtypeLand_RailwayCar_01_tank_FatlOffset-positionqfF pB]oFangles7?-disableSimulation-dataTypeObjectPositionInfo+.sideEmptyflagsAttributesc.id! typeLand_RailwayCar_01_tank_FatlOffset.position9bfFpBFanglesrơ@c.disableSimulation.dataTypeObjectPositionInfo/sideEmptyflagsAttributesF/id- typeLand_RailwayCar_01_tank_FatlOffsetd/positionWfF\dpBtFangles]V?F/disableSimulationd/dataTypeObjectPositionInfo/sideEmptyflagsAttributes)0id= typeLand_RailwayCar_01_tank_FatlOffsetG0positionZfFOpBswFanglesˡ@)0disableSimulationG0dataTypeObjectPositionInfo0sideEmptyflagsAttributes 1idD typeLand_RailwayCar_01_tank_FatlOffset4 *1position҄fF pBAFanglesWԡ@ 1disableSimulation*1dataTypeObjectPositionInfo1sideEmptyflagsAttributes1idutypeFridge_01_closed_F1positionfFoBbFanglesZ_@1disableSimulation1dataTypeObjectPositionInfo2sideEmptyflagsAttributes2idtypeLand_ReservoirTank_01_military_FatlOffset2positionG1fFxBmzFangles@22dataTypeObjectPositionInfoX3sideEmptyflagsAttributes3id typeland_gm_sandbags_01_short_01atlOffset=3positiondgFSD~BݜFangles`@3disableSimulation3dataTypeObjectPositionInfo>4sideEmptyflagsAttributesv4id typeland_gm_sandbags_01_short_01atlOffsetP=4positionNgFH~BܜFangles`@v4disableSimulation4dataTypeObjectPositionInfo$5sideEmptyflagsAttributes\5id typeland_gm_sandbags_01_short_01atlOffset=z5positionªgFBFanglesu`@\5disableSimulationz5dataTypeObjectPositionInfo 6sideEmptyflagsAttributesB6id typeland_gm_sandbags_01_short_01atlOffsetX=`6positiongF.BFanglesu`@B6disableSimulation`6dataTypeObjectPositionInfo6sideEmptyflagsAttributes(7id typeland_gm_sandbags_01_short_01atlOffset6F7positionxgFxB4לFanglesi?(7disableSimulationF7dataTypeObjectPositionInfo7sideEmptyflagsAttributes7id typeland_gm_sandbags_01_short_018positionƼgF{B}Fanglesi?7disableSimulation8dataTypeObjectPositionInfo8sideEmptyflagsAttributes8id typeland_gm_sandbags_01_short_01atlOffset=9positiondeFBYFanglesA>8disableSimulation9dataTypeObjectPositionInfo9sideEmptyflagsAttributes9id typeland_gm_sandbags_01_short_01atlOffsetT=9positioneFBgFanglesA>9disableSimulation9dataTypeObjectPositionInfoh:sideEmptyflagsAttributes:id typeland_gm_sandbags_01_short_01:positioneFs}BjFangles@:disableSimulation:dataTypeObjectPositionInfoA;sideEmptyAttributesy;id typeland_gm_sandbags_01_wall_01atlOffsetŜ@;positionhF}B>FanglesN@y;disableSimulation;dataTypeObjectPositionInfo<sideEmptyAttributesR<id typeland_gm_sandbags_01_wall_01atlOffset"@p<position+gF}BFanglesS[@R<disableSimulationp<dataTypeObjectPositionInfo<sideEmptyAttributes+=id typeland_gm_sandbags_01_wall_01atlOffsetPr@I=position%gF}BFanglesS[@+=disableSimulationI=dataTypeObjectPositionInfo=sideEmptyflagsAttributes>id typeland_gm_sandbags_01_wall_01atlOffset< =.>positiongFi~BFanglesS[@>disableSimulation.>dataTypeObjectPositionInfo>sideEmptyflagsAttributes>id typeland_gm_sandbags_01_wall_01atlOffset;?positiongF}BIFangles?>disableSimulation?dataTypeObjectPositionInfo?sideEmptyflagsAttributes?id typeland_gm_sandbags_01_wall_01atlOffsetJ=?positiongF!~BFangles??disableSimulation?dataTypeObjectPositionInfo@sideEmptyflagsAttributes@id typeland_gm_sandbags_01_wall_01atlOffsetL=@positiongFBFanglesm?@disableSimulation@dataTypeObjectPositionInfo`AsideEmptyAttributesAid typeland_gm_sandbags_01_wall_01atlOffsetj@ApositiongF_B%FanglesJ@AdisableSimulationAdataTypeObjectPositionInfo9BsideEmptyAttributesqBid typeland_gm_sandbags_01_wall_01atlOffset @BpositiongFJB荜Fangles[@qBdisableSimulationBdataTypeObjectPositionInfoCsideEmptyAttributesJCid typeland_gm_sandbags_01_wall_01atlOffset '@hCpositiongFBNBFangles[@JCdisableSimulationhCdataTypeObjectPositionInfoCsideEmptyflagsAttributes/Did typeland_gm_sandbags_01_wall_01atlOffset@ =MDposition0gF yBFangles[@/DdisableSimulationMDdataTypeObjectPositionInfoDsideEmptyflagsAttributesEid typeland_gm_sandbags_01_wall_01atlOffset;2Eposition=gFhBFFanglesm?EdisableSimulation2EdataTypeObjectPositionInfoEsideEmptyflagsAttributesEid typeland_gm_sandbags_01_wall_01FpositiongFxBۜFangles[I?EdisableSimulationFdataTypeObjectPositionInfoFsideEmptyAttributesFid typeland_gm_sandbags_01_wall_01atlOffset o]@Fposition!gF{BfFangles[I?FdisableSimulationFdataTypeObjectPositionInfooGsideEmptyflagsAttributesGid typeland_gm_sandbags_01_wall_01atlOffsetL=GpositioneF%B Fangles$Y@GdisableSimulationGdataTypeObjectPositionInfoDHsideEmptyflagsAttributes|Hid typeland_gm_sandbags_01_wall_01HpositioneF}BFangles?|HdisableSimulationHdataTypeObjectPositionInfoIsideEmptyflagsAttributesQIid typeland_gm_sandbags_01_wall_01oIpositionveF}BFanglesa >QIdisableSimulationoIdataTypeObjectPositionInfoIsideEmptyflagsAttributes&Jid typeland_gm_sandbags_01_wall_01DJpositioneF}BҀFanglesa >&JdisableSimulationDJdataTypeObjectPositionInfoJsideEmptyflagsAttributes Kid typeland_gm_sandbags_01_wall_01atlOffset8 =)KpositioneFBꉜFanglesa > KdisableSimulation)KdataTypeObjectPositionInfoKsideEmptyflagsAttributesKid typeland_gm_sandbags_01_wall_01atlOffset;LpositioneFmB̃Fangles$Y@KdisableSimulationLdataTypeObjectPositionInfoLsideEmptyAttributesLid typeland_gm_sandbags_01_wall_01atlOffset@Ug@LpositionKeFr}B)FanglesP@LdisableSimulationLdataTypeObjectPositionInfo\MsideEmptyflagsAttributesMid typeSCBACylinder_01_FMposition"fFqBsFangles@MdisableSimulationMdataTypeObjectPositionInfo'NsideEmptyflagsAttributes_Nid typeSCBACylinder_01_F}Nposition˵fFqBtsFanglesN@_NdisableSimulation}NdataTypeObjectPositionInfoNsideEmptyflagsAttributes1Oidttypeplp_ctm_ServiceBarrelBioOOposition fFpBhFangles!@1OdisableSimulationOOdataTypeObjectPositionInfoOsideEmptyflagsAttributesPidutypeplp_ctm_ServiceBarrelBioatlOffset`;1PpositionfFpBgFangles  @PdisableSimulation1PdataTypeObjectPositionInfoPsideEmptyflagsAttributesPidvtypeplp_ctm_ServiceBarrelBioQpositionefFpBxgFanglesBr@PdisableSimulationQdataTypeObjectPositionInfoQsideEmptyflagsAttributesQidwtypeplp_ctm_ServiceBarrelBioatlOffset;QpositionfFpBfFanglesh@QdisableSimulationQdataTypeObjectPositionInfoqRsideEmptyflagsAttributesRidtypeplp_ctm_ServiceBarrelBioatlOffset ^disableSimulation^dataTypeObjectPositionInfo!_sideEmptyAttributesY_id<typeSponge_01_Wet_FatlOffsetY_disableSimulationw_dataTypeObjectPositionInfo`sideEmptyflagsAttributes:`id\typeLand_SCF_01_condenser_FatlOffset7@`positionefF#ɁBFanglesn`@:`@`dataTypeObjectPositionInfo`sideEmptyflagsAttributes`idtypeLand_SCF_01_crystallizer_F`positionMfFuBFanglesc@``dataTypeObjectPositionInfoasideEmptyflagsAttributesaid}typeLand_SCF_01_pipe_curve_FatlOffsetνaposition%bfF=kBbsFangles`>adisableSimulationadataTypeObjectPositionInfojbsideEmptyflagsAttributesbidtypeLand_SCF_01_pipe_curve_FatlOffset)bpositionyrfFxkB}FanglestC^@bdisableSimulationbdataTypeObjectPositionInfoJcsideEmptyflagsAttributescidtypeLand_SCF_01_pipe_end_FatlOffset!%cpositionL}fF+kB4mFangles*c@cdisableSimulationcdataTypeObjectPositionInfo*dsideEmptyflagsAttributesbdidtypeLand_SCF_01_pipe_end_FatlOffsetdpositionۗfFI=lBxFanglesHQ@bddisableSimulationddataTypeObjectPositionInfo esideEmptyflagsAttributesBeid9 typeLand_SCF_01_pipe_end_FatlOffsetF`epositionwfF6kBZFangleszb@BedisableSimulation`edataTypeObjectPositionInfoesideEmptyflagsAttributes!fidtypeLand_SCF_01_pipe_8m_FatlOffsetɽ?fpositionafF@kBSrFanglesR?!fdisableSimulation?fdataTypeObjectPositionInfofsideEmptyflagsAttributesgid~typeLand_SCF_01_pipe_8m_FatlOffset.gpositionlfFkB{Fangles`@gdisableSimulationgdataTypeObjectPositionInfogsideEmptyflagsAttributesgidtypeLand_SCF_01_pipe_8m_FatlOffset Bgposition\fF]+lB |Fangles(@gdisableSimulationgdataTypeObjectPositionInfohsideEmptyflagsAttributeshidB typeLand_SCF_01_pipe_8m_FatlOffset׽hposition[pfF/kB]Fangles`@hdisableSimulationhdataTypeObjectPositionInfoUisideEmptyflagsAttributesiidtypeLand_SCF_01_pipe_up_FipositionHfF~BvFangles>?idisableSimulationidataTypeObjectPositionInfo4jsideEmptyflagsAttributesljid3 typeLand_SCF_01_pipe_up_FatlOffset]jpositionMTfFvB܄Fanglesٹ@ljdisableSimulationjdataTypeObjectPositionInfoksideEmptyflagsAttributesKkid4 typeLand_SCF_01_pipe_up_FatlOffsetvikpositionNfFvBC}Fanglesٹ@KkdisableSimulationikdataTypeObjectPositionInfoksideEmptyflagsAttributes3lidtypeLand_SCF_01_storageBin_small_FatlOffset>9lposition`gFNB,Fangles@3l9ldataTypeObjectPositionInfolsideEmptyflagsAttributesmidtypeLand_SCF_01_storageBin_small_FatlOffset> mpositionײgFB.œFangles?m mdataTypeObjectPositionInfomsideEmptyflagsAttributesmidtypeLand_SCF_01_storageBin_small_FatlOffset@?mposition`gF+BޜFanglesE?mmdataTypeObjectPositionInfo`nsideEmptyflagsAttributesnidztypeACE_surgicalKitItematlOffsetA>npositionƲfF%pBbFangles?@?ndisableSimulationndataTypeObjectPositionInfo9osideEmptyflagsAttributesqoid?typeland_gm_euro_furniture_table_04wopositionwfFoBwFangles@b@qowodataTypeObjectPositionInfopsideEmptyflagsAttributes>pidtypeland_gm_euro_misc_tank_01_eatlOffset,9\ppositionfFtm~BXsFangles>>pdisableSimulation\pdataTypeObjectPositionInfopsideEmptyflagsAttributesqid+ typeland_gm_euro_misc_tank_01_e1qposition9wfFIm~B{Fangles>qdisableSimulation1qdataTypeObjectPositionInfoqsideEmptyflagsAttributesqid7 typeland_gm_euro_misc_tank_01_wrpositionXfF~Bg{Fangles@qdisableSimulationrdataTypeObjectPositionInforsideEmptyflagsAttributesrid8 typeland_gm_euro_misc_tank_01_wrpositionA^fFIm~BgFangles@rdisableSimulationrdataTypeObjectPositionInfoRssideEmptyflagsAttributessidtypeland_gm_tanktrap_01spositionZfF nBWFanglesx=v`@disableSimulationsdataTypeObjectPositionInfo;tsideEmptyflagsAttributesstidtypeland_gm_tanktrap_01atlOffset6tpositionPfF|mBZFanglesV=v`@n_;stskillL>disableSimulationtdataTypeObjectPositionInfousideEmptyflagsAttributesLuidtypeland_gm_tanktrap_01vupositionGfF"mB^Fangles@v`@;LuskillL>disableSimulationvudataTypeObjectPositionInfousideEmptyflagsAttributes%vidtypeland_gm_tanktrap_01Ovposition)[fFmBgFanglesv`@%vskillL>disableSimulationOvdataTypeObjectPositionInfovsideEmptyflagsAttributesvidtypeland_gm_tanktrap_01(wpositionfFloBtFangles#<v`@@vskillL>disableSimulation(wdataTypeObjectPositionInfowsideEmptyflagsAttributeswidtypeland_gm_tanktrap_01xposition=}fF=mBWaFanglesv`@&:wskillL>disableSimulationxdataTypeObjectPositionInfoxxsideEmptyflagsAttributesxidtypeland_gm_tanktrap_01xpositionJfFmBkFanglesv`@xskillL>disableSimulationxdataTypeObjectPositionInfoQysideEmptyflagsAttributesyidtypeland_gm_tanktrap_01yposition9fFfnBcnFangles>v`@*@yskillL>disableSimulationydataTypeObjectPositionInfo*zsideEmptyflagsAttributesbzidtypeland_gm_tanktrap_01zposition2lfFmBdFanglesv`@bzskillL>disableSimulationzdataTypeObjectPositionInfo{sideEmptyflagsAttributes;{idtypeland_gm_tanktrap_01e{position (fF`oBqFangles#<v`@@;{skillL>disableSimulatione{dataTypeObjectPositionInfo{sideEmptyflagsAttributes|idtypeland_gm_tanktrap_01>|positionfF|oB,xFanglesD<v`@@|skillL>disableSimulation>|dataTypeObjectPositionInfo|sideEmptyflagsAttributes|idtypeland_gm_tanktrap_01}positioneFoB~Fangles#<v`@@|skillL>disableSimulation}dataTypeObjectPositionInfo}sideEmptyflagsAttributes}idtypeland_gm_tanktrap_01atlOffset6~positioneFoBFangles#<v`@@}skillL>disableSimulation~dataTypeObjectPositionInfo~sideEmptyflagsAttributes~idtypeland_gm_tanktrap_01atlOffset~positionfFgmBFangles<?@~skillL>disableSimulation~dataTypeObjectPositionInfopsideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffset6positionpfF?mBbFangles<?@skillL>disableSimulationdataTypeObjectPositionInfoIsideEmptyflagsAttributesidtypeland_gm_tanktrap_01positionRfFfmBFangles<?@skillL>disableSimulationdataTypeObjectPositionInfo2sideEmptyflagsAttributesjidtypeland_gm_tanktrap_01atlOffsetpositioneFmBɜFangles#<?@jskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesSidtypeland_gm_tanktrap_01atlOffset6}positioneF;nBFangles#<?@SskillL>disableSimulation}dataTypeObjectPositionInfosideEmptyflagsAttributes<idtypeland_gm_tanktrap_01atlOffset6fposition3 fFHmB2ڜFanglesD<?@<skillL>disableSimulationfdataTypeObjectPositionInfosideEmptyflagsAttributes%idtypeland_gm_tanktrap_01atlOffset6OpositioneF,-nBhFangles#<?@%skillL>disableSimulationOdataTypeObjectPositionInfoքsideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffset68positioneFenBзFangles#<?@skillL>disableSimulation8dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_tanktrap_01atlOffset6!positionfFmBќFangles#<?@skillL>disableSimulation!dataTypeObjectPositionInfosideEmptyflagsAttributesІidtypeland_gm_tanktrap_01positioneFnB7Fangles#<?@ІskillL>disableSimulationdataTypeObjectPositionInfoqsideEmptyflagsAttributesidtypeland_gm_tanktrap_01ӇpositionIeFP;oBnFangles#<?@skillL>disableSimulationӇdataTypeObjectPositionInfoJsideEmptyflagsAttributesidtypeland_gm_tanktrap_01positiongeF oBFangles#<?@skillL>disableSimulationdataTypeObjectPositionInfo#sideEmptyflagsAttributes[idtypeland_gm_tanktrap_01position.eF?ooB֌Fangles#<?@[skillL>disableSimulationdataTypeObjectPositionInfo sideEmptyflagsAttributesDid typeland_gm_tanktrap_01atlOffset@7npositioneFoB=Fangles#<?@DskillL>disableSimulationndataTypeObjectPositionInfosideEmptyflagsAttributes-idtypeland_gm_tanktrap_01atlOffsetWpositionBfFmBZ$Fangles:;?P@-skillL>disableSimulationWdataTypeObjectPositionInfo΋sideEmptyflagsAttributesidtypeland_gm_tanktrap_010positiondisableSimulation0dataTypeObjectPositionInfosideEmptyflagsAttributesߌidtypeland_gm_tanktrap_01 position6fFm.mB*Fangles?@ߌskillL>disableSimulation dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_tanktrap_01positionS$fFY mBaFangles:;?@skillL>disableSimulationdataTypeObjectPositionInfoYsideEmptyflagsAttributesidtypeland_gm_tanktrap_01position0fF>"mB Fangles@?@skillL>disableSimulationdataTypeObjectPositionInfo2sideEmptyflagsAttributesjidtypeland_gm_tanktrap_01positionp*fFs mBFangles@?;jskillL>disableSimulationdataTypeObjectPositionInfo sideEmptyflagsAttributesCidtypeland_gm_tanktrap_01mpositionagFnBVFangles"@CskillL>disableSimulationmdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_tanktrap_01FpositionRgF1nBQFangles"@skillL>disableSimulationFdataTypeObjectPositionInfosideEmptyflagsAttributesid typeland_gm_tanktrap_01positionCgF`nBiLFangles"@skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesޒid&typeland_gm_tanktrap_01atlOffset6position4gFnB0GFangles"@ޒskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesid'typeland_gm_tanktrap_01position%gFNnBAFangles"="@@skillL>disableSimulationdataTypeObjectPositionInfoXsideEmptyflagsAttributesid,typeland_gm_tanktrap_01positiongF^ nByuFangles;"@P@skillL>disableSimulationdataTypeObjectPositionInfo1sideEmptyflagsAttributesiid-typeland_gm_tanktrap_01position gFTnB?pFangles;"@@iskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesRid.typeland_gm_tanktrap_01atlOffset|positiongFxnBkFangles;"@;RskillL>disableSimulation|dataTypeObjectPositionInfosideEmptyflagsAttributes+id2typeland_gm_tanktrap_01Uposition gFanBeFangles:;"@P@+skillL>disableSimulationUdataTypeObjectPositionInfoܗsideEmptyflagsAttributesid3typeland_gm_tanktrap_01atlOffset6>position-gFnB`Fangles:;"@P@skillL>disableSimulation>dataTypeObjectPositionInfoŘsideEmptyflagsAttributesidItypeland_gm_tanktrap_01atlOffset'position}afFlB4Fangles:;Ə>P@skillL>disableSimulation'dataTypeObjectPositionInfosideEmptyflagsAttributes֙idJtypeland_gm_tanktrap_01positionHfFVlB(Fangles;Ə>P@֙skillL>disableSimulationdataTypeObjectPositionInfowsideEmptyflagsAttributesidKtypeland_gm_tanktrap_01ٚpositionrfFlB1Fangles:;Ə>@skillL>disableSimulationٚdataTypeObjectPositionInfoPsideEmptyflagsAttributesidLtypeland_gm_tanktrap_01positionfFlB.Fangles;Ə>P@skillL>disableSimulationdataTypeObjectPositionInfo)sideEmptyflagsAttributesaidMtypeland_gm_tanktrap_01positionLPfFlB8Fangles;Ə>@askillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesJidNtypeland_gm_tanktrap_01atlOffset7tpositionfF9qlB+Fangles;Ə>@JskillL>disableSimulationtdataTypeObjectPositionInfosideEmptyflagsAttributes#idTtypeland_gm_tanktrap_01MpositionfF lB"Fangles;Ə>@#skillL>disableSimulationMdataTypeObjectPositionInfoĞsideEmptyflagsAttributesidUtypeland_gm_tanktrap_01&positionxfF=7lB%Fangles;Ə>P@skillL>disableSimulation&dataTypeObjectPositionInfosideEmptyflagsAttributesidVtypeland_gm_tanktrap_01atlOffset6positionfFgkBFangles;Ə>@skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesΠidWtypeland_gm_tanktrap_01atlOffset6positionfFWkBFangles;Ə>,@ΠskillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeTarp_01_Small_Green_FatlOffset@;סpositiongfFymB]{Fanglesբ>disableSimulationס dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_computer_teleraet_81_fsatlOffsetI=CustomAttributes֢position fFvmB{Fangles@disableSimulation֢Attribute0nAttributespropertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];ValueqdatatypevaluetypeBOOL dataTypeObjectPositionInfoYsideEmptyflagsAttributesid=typeland_gm_computer_teleraet_81_fsatlOffset,9CustomAttributespositionũfFwmBzFangles~?namecomputer1disableSimulationAttribute0nAttributespropertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];Value[dataktypevaluetypeBOOL dataTypeObjectPositionInfoBsideEmptyflagsAttributeszid typeland_gm_computer_teleraet_81_matlOffset7CustomAttributesrpositionfF{wmB'{Fangles^@zdisableSimulationAttribute0nAttributesrpropertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];Value3rdataCrtype_valuertypeBOOLrdataTypeObjectPositionInfo sideEmptyflagsAttributesBid<typeland_gm_computer_teleraet_81_mCustomAttributes`:positionڤfFywmBzFanglesI4?BdisableSimulation`Attribute0nAttributes:propertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];Value:data :type'value:typeBOOL: dataTypeObjectPositionInfosideEmptyflagsAttributesid typeland_gm_computer_teleraet_81_ratlOffsetJ=CustomAttributes8position)fF wmB|FanglesL@disableSimulation8Attribute0`nAttributespropertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];ValueӪdatatypevaluetypeBOOLdataTypeObjectPositionInfosideEmptyflagsAttributesid;typeland_gm_computer_teleraet_81_rCustomAttributesڬpositionfFywmBDyFanglese?disableSimulationAttribute0(nAttributesڬpropertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];ValueڬdataڬtypeǬvalueڬtypeBOOLڬdataTypeObjectPositionInfoasideEmptyflagsAttributesidtypeLand_TimberLog_04_FatlOffsetX@position4fFB!uFangles>disableSimulationdataTypeObjectPositionInfo>sideEmptyflagsAttributesvidtypeLand_TimberLog_04_FatlOffset=positionfFBBuFangles>vdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesSidtypeLand_TimberLog_04_FatlOffsetX@qposition{fFBFangles^@SdisableSimulationqdataTypeObjectPositionInfosideEmptyflagsAttributes0idtypeLand_TimberLog_04_FatlOffset=NpositionDfFBFangles^@0disableSimulationNdataTypeObjectPositionInfoǰsideEmptyflagsAttributesidtypeLand_ToolTrolley_02_FpositionɞfF$XoBfFanglesF >disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeplp_cts_ToolboxRedDirtyatlOffset~s?positionxfFqB@fFangles?disableSimulationdataTypeObjectPositionInfo~sideEmptyAttributesidtypeLand_TransferSwitch_01_FatlOffsetR}?ԲpositionfF]bqBeFangless_@disableSimulationԲdataTypeObjectPositionInfoTsideEmptyAttributesidtypeLand_TransferSwitch_01_FatlOffsetJ}?positionfF?bqBeFangless_@disableSimulationdataTypeObjectPositionInfo*sideEmptyAttributesbidtypeLand_TransferSwitch_01_FatlOffset@B}?positionBfFbqBeFangless_@bdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesMidMtypeland_gm_euro_misc_trashbin_01_blkatlOffset`;kpositionfFoB'zFanglesia@MdisableSimulationkdataTypeObjectPositionInfosideEmptyflagsAttributes(idKtypeland_gm_euro_misc_trashbin_01_ylwFpositionfF~oB|xFangles@(disableSimulationFdataTypeObjectPositionInfoösideEmptyflagsAttributesid typeplp_ctm_TrolleyYellowHandpositionfFpBgFangles<disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesηidN typeplp_ctm_TrolleyYellowHandpositionafFpB:Fanglesӳ?ηdisableSimulationdataTypeObjectPositionInfoosideEmptyflagsAttributesid typeplp_ctm_TrolleyYellowPlatDoubleŸpositionrfFoBzFanglesz@disableSimulationŸ dataTypeObjectPositionInfoisideEmptyflagsAttributesidtypegm_pl_army_ural375d_refuelatlOffset CustomAttributesʹBpositionwfF}uBFangles@R`@@lockLOCKEDtexturesgm_pl_olwʹ Attribute0Attribute1mAttribute2Attribute3Attribute4Attribute5Attribute6Attribute7Attribute8sAttribute9YnAttributes Bpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value-mdata=mtypeXvalue-1mtypeSTRINGmpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value~datatypevaluetypeARRAYitemsItem0Item1datatypetypeARRAYdata)typeDvalueXtypeARRAYXitemsItem0Item1UItem2Item3Item4&Item5vItem6Item7Item8HItem9Item10Item11$Item12eItem13dataUtype@valueroofRack_unhideUtypeSTRINGUdataetypevalue?typeSCALARdatatypeоvaluecamonet_01_unhidetypeSTRINGdata&typevalue?&typeSCALAR&data6vtypeavaluefuelcan_1_1_unhidevtypeSTRINGvdatatypevaluetypeSCALARdataǿtypevaluefuelcan_1_2_unhidetypeSTRINGdataHtype3valueHtypeSCALARHdataXtypevaluelightGuard_unhidetypeSTRINGdatatypevalue?typeSCALARdata$typevaluetoolbox_unhide$typeSTRING$data4etypePvalue?etypeSCALARedatautypevaluetools_unhidetypeSTRINGdatatypevalue?typeSCALARpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevaluegm_insignia_ur_star_01typeSTRINGpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuezdatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuebdatartypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueHdataXtypesvalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value3sdataCstype^value-1stypeSTRINGspropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueYdata)YtypeDvalue-1YtypeSTRINGYpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueBdataBtype-value-1BtypeSTRINGB dataTypeObjectPositionInfosideEmptyflagsAttributesid]typegm_pl_army_ural375d_refuelatlOffset0CustomAttributesGpositionkfFuBFangles;R`@@lockLOCKEDtexturesgm_pl_olwG Attribute0Attribute1Attribute2mAttribute3fAttribute4LAttribute57Attribute6Attribute7Attribute8Attribute9nAttributes propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valuemdata mtype&value:mtypeARRAY:itemsItem0bItem1mdatartypetypeARRAYdatamtypevaluemtypeARRAYitemsItem0Item1Item2Item3bItem4Item5Item64Item7Item8Item9Item10UItem11Item12Item13,mdatatypevalueroofRack_unhidetypeSTRINGdatatypevalue?typeSCALARdata#btypeMvaluecamonet_01_unhidebtypeSTRINGbdatartypevalue?typeSCALARdatatypevaluefuelcan_1_1_unhidetypeSTRINGdata4typevalue4typeSCALAR4dataDtypeovaluefuelcan_1_2_unhidetypeSTRINGdatatypevaluetypeSCALARdatatypevaluelightGuard_unhidetypeSTRINGdata$Utype@value?UtypeSCALARUdataetypevaluetoolbox_unhidetypeSTRINGdatatypevalue?typeSCALARdata,typevaluetools_unhide,typeSTRING,data<mtypeXvalue?mtypeSCALARmpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuefdata"ftypeQvaluegm_insignia_ur_star_01ftypeSTRINGfpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value LdataLtype7value-1LtypeSTRINGLpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value7data7type"value-17typeSTRING7propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatype value-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGdataTypeObjectPositionInfoSsideEmptyflagsAttributesidtypegm_pl_army_ural4320_repairCustomAttributes{position fF wBFangles#<?@lockLOCKEDtexturesgm_pl_olw Attribute0lAttribute1WAttribute2)Attribute3"Attribute4Attribute5Attribute6Attribute7Attribute8Attribute9nAttributes {propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueWdata'WtypeBvalue-1WtypeSTRINGWpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valueh)datax)typevalue)typeARRAYitemsItem0Item1)datatypetypeARRAYdata)type.valueB)typeARRAYBitemsItem0"Item1lItem2Item3Item4;Item5Item6Item7Item8_Item9Item10Item11@Item12Item13Item14Item15]Item16Item17)data2ltypeWvaluewinch_unhideltypeSTRINGldata|typevalue?typeSCALARdatatypevalueroofRack_unhidetypeSTRINGdata ;type&value?;typeSCALAR;dataKtypeuvaluecamonet_01_unhidetypeSTRINGdatatypevalue?typeSCALARdatatype valuecoldWeatherKit_unhidetypeSTRINGdata._typeJvalue?_typeSCALAR_dataotypevaluefuelcan_1_1_unhidetypeSTRINGdatatypevaluetypeSCALARdata@type+valuefuelcan_1_2_unhide@typeSTRING@dataPtypelvaluetypeSCALARdatatypevaluelightGuard_unhidetypeSTRINGdatatypevalue?typeSCALARdata!]typeHvaluetoolbox_unhide]typeSTRING]datamtypevalue?typeSCALARdatatypevaluetools_unhidetypeSTRINGdata)typevalue?)typeSCALAR)propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value"data"type valuegm_insignia_ur_star_01"typeSTRING"propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueldata|typevalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueRdatabtype}value-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value;{dataK{typefvalue-1{typeSTRING{ dataTypeObjectPositionInfosideEmptyflagsAttributesVidtypegm_pl_army_ural4320_cargoatlOffsetCustomAttributespositiongFxTuBƜFangles<?,@VlockLOCKEDtexturesgm_pl_olw Attribute07Attribute1"Attribute2Attribute3Attribute4{Attribute5fAttribute6NAttribute74Attribute8Attribute9nAttributes propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value"data"type value-1"typeSTRING"propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value3dataCtype^valuertypeARRAYritemsItem0Item1datatypetypeARRAYdatatypevalue typeARRAY itemsItem0Item1TItem2Item3Item4 Item5mItem6Item7Item8>Item9Item10Item11"Item12cItem13Item14Item15CItem16Item17Item18Item19[dataTtype?valuecover_hide_unhideTtypeSTRINGTdatadtypevalue?typeSCALARdatatypevaluewinch_unhidetypeSTRINGdata type value? typeSCALAR data0mtypeXvalueroofRack_unhidemtypeSTRINGmdata}typevalue?typeSCALARdatatypevaluecamonet_01_unhidetypeSTRINGdata >type)value>typeSCALAR>dataNtype|valuecoldWeatherKit_unhidetypeSTRINGdatatypevalue?typeSCALARdata"type valuefuelcan_1_1_unhide"typeSTRING"data2ctypeNvaluectypeSCALARcdatastypevaluefuelcan_1_2_unhidetypeSTRINGdatatypevaluetypeSCALARdataCtype.valuelightGuard_unhideCtypeSTRINGCdataStypeovalue?typeSCALARdatatypevaluetoolbox_unhidetypeSTRINGdatatypevalue?typeSCALARdata![typeFvaluetools_unhide[typeSTRING[dataktypevalue?typeSCALARpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueAdataQtypevaluegm_insignia_ur_star_01typeSTRINGpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value;{dataK{typefvalue-1{typeSTRING{propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value&fdata6ftypeQvalue-1ftypeSTRINGfpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueNdataNtype9value-1NtypeSTRINGNpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value4data4typevalue-14typeSTRING4propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatype value-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGdataTypeObjectPositionInfosideEmptyflagsAttributesid^typegm_pl_army_ural4320_cargoCustomAttributesQposition/gFƊtBݜFanglesD<p?5@lockLOCKEDtexturesgm_pl_olw Attribute0Attribute1Attribute2Attribute3 Attribute4 Attribute5 Attribute6 Attribute7 Attribute8Attribute9hnAttributes Qpropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueEdataUtypepvalue-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};ValuedatatypevaluetypeARRAYitemsItem0Item11data 1type1typeARRAY1dataAtype\valueptypeARRAYpitemsItem0hItem1Item2Item3BItem4Item5Item6Item7`Item8Item9Item105Item11Item12Item13Item14WItem15Item16Item173Item18tItem19dataxtypevaluecover_hide_unhidetypeSTRINGdatatypevalue?typeSCALARdataBtype-valuewinch_unhideBtypeSTRINGBdataRtypenvalue?typeSCALARdatatypevalueroofRack_unhidetypeSTRINGdatatypevalue?typeSCALARdata!`typeKvaluecamonet_01_unhide`typeSTRING`dataptypevaluetypeSCALARdatatypevaluecoldWeatherKit_unhidetypeSTRINGdata5type value?5typeSCALAR5dataEtypepvaluefuelcan_1_1_unhidetypeSTRINGdatatypevaluetypeSCALARdatatypevaluefuelcan_1_2_unhidetypeSTRINGdata&WtypeBvalueWtypeSCALARWdatagtypevaluelightGuard_unhidetypeSTRINGdatatypevalue?typeSCALARdata3typevaluetoolbox_unhide3typeSTRING3dataCttype_value?ttypeSCALARtdatatypevaluetools_unhidetypeSTRINGdatatypevalue?typeSCALARpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  data  type valuegm_insignia_ur_star_01 typeSTRING propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  data  type value-1 typeSTRING propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  data  type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueq  data  type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueW  datag  type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueBdataRtypemvalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value(hdata8htypeSvalue-1htypeSTRINGhpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueQdata!Qtype<value-1QtypeSTRINGQ dataTypeObjectPositionInfosideEmptyflagsAttributes,id_typegm_pl_army_ural4320_cargoatlOffset@CustomAttributesU"position+gF/sBFangles;P?,@,lockLOCKEDtexturesgm_pl_olwU Attribute0 Attribute1Attribute2rAttribute3kAttribute4QAttribute5<Attribute6$Attribute7 Attribute8 Attribute9!nAttributes "propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value rdatartype4valueHrtypeARRAYHitemsItem0pItem1rdatatypetypeARRAYdatartypevaluertypeARRAYitemsItem0Item1*Item2kItem3Item4Item5CItem6Item7Item8Item9gItem10Item11Item129Item13Item14Item15Item16ZItem17Item18Item191rdata*typevaluecover_hide_unhide*typeSTRING*data:ktypeVvalue?ktypeSCALARkdata{typevaluewinch_unhidetypeSTRINGdatatypevalue?typeSCALARdataCtype.valueroofRack_unhideCtypeSTRINGCdataStypeovalue?typeSCALARdatatypevaluecamonet_01_unhidetypeSTRINGdatatypevaluetypeSCALARdata$gtypeRvaluecoldWeatherKit_unhidegtypeSTRINGgdatawtypevalue?typeSCALARdatatypevaluefuelcan_1_1_unhidetypeSTRINGdata9type$value9typeSCALAR9dataItypetvaluefuelcan_1_2_unhidetypeSTRINGdatatypevaluetypeSCALARdatatypevaluelightGuard_unhidetypeSTRINGdata)ZtypeEvalue?ZtypeSCALARZdatajtypevaluetoolbox_unhidetypeSTRINGdatatypevalue?typeSCALARdata1typevaluetools_unhide1typeSTRING1dataArtype]value?rtypeSCALARrpropertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuekdata'ktypeVvaluegm_insignia_ur_star_01ktypeSTRINGkpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueQdata!Qtype<value-1QtypeSTRINGQpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value<data <type'value-1<typeSTRING<propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value$data$typevalue-1$typeSTRING$propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value data typevalue-1 typeSTRING propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  data  type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value!!data!!type!value-1!typeSTRING!propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value""data""type"value-1"typeSTRING"dataTypeObjectPositionInfo3#sideEmptyAttributesk#idtypeSmallTVatlOffsetQ?#positionWfFyrBcFangles@_V? @k#disableSimulation#dataTypeObjectPositionInfo$sideEmptyflagsAttributesI$idVtypeland_gm_euro_furniture_typewriter_01O$positionPfFpBbFanglesÇ;͚b@|@I$O$dataTypeObjectPositionInfo$sideEmptyflagsAttributes%idtypeland_gm_euro_furniture_typewriter_01%positionHgFrB]Fangles<= @@%%dataTypeObjectPositionInfo%sideEmptyflagsAttributes%idtypeland_gm_euro_misc_powerbox_01%positionmfFmmBFangles[?%%dataTypeObjectPositionInfog&sideEmptyflagsAttributes&idtypeland_gm_euro_misc_powerbox_04_watlOffset=&position"kfFlmBvFangles@&namegenerator1&dataTypeObjectPositionInfo<'sideEmptyflagsAttributest'id typeland_gm_euro_misc_viewplatform_01'positiongF7jBFangles[@t'skillL>'dataTypeObjectPositionInfo(sideEmptyflagsAttributesS(id typeland_gm_euro_misc_viewplatform_01atlOffsetNe(positiongFd%mBيFanglesN\@S(skillL>e(dataTypeObjectPositionInfo(sideEmptyflagsAttributes2)id typeland_gm_euro_misc_viewplatform_01atlOffset4D)positionmeFWVoBFanglesT>2)skillL>D)dataTypeObjectPositionInfo)sideEmptyAttributes)idytypeLand_VitaminBottle_FatlOffsetMP?*position9fF'pBdFangles|@)disableSimulation*dataTypeObjectPositionInfo*sideEmptyAttributes*idktypeLand_WallSign_01_chalkboard_FatlOffsetP?*positionfFEtBEbFangles_@*disableSimulation*dataTypeObjectPositionInfoz+sideEmptyflagsAttributes+idtypeWaterPump_01_forest_FatlOffset7+positionfFɀqB{Fanglesʡ@+disableSimulation+dataTypeObjectPositionInfoY,sideEmptyflagsAttributes,idtypeWaterPump_01_forest_FatlOffset,positionfFȀqB#Fanglesߌ@,disableSimulation,dataTypeObjectPositionInfo0-sideEmptyAttributesP-idtypeWaterSpill_01_Large_New_FatlOffset:=n-positionfFekmBVsFP-disableSimulationn-dataTypeObjectPositionInfo-sideEmptyAttributes.idtypeWaterSpill_01_Large_New_FatlOffset̏=-.position }fFkmBb}F.disableSimulation-.dataTypeObjectPositionInfo.sideEmptyAttributes.idNtypeWaterSpill_01_Medium_Foam_FatlOffset=/positionKfFemB{FanglesA/Z@.disableSimulation/dataTypeObjectPositionInfo/sideEmptyAttributes/idtypeWaterSpill_01_Small_Old_FatlOffset 5positionfFBz|Fc5disableSimulation5dataTypeObjectPositionInfo5sideEmptyflagsAttributes46idtypeplp_ctm_WoodBoxLightBigR6position`fFsBSFanglesը?46disableSimulationR6dataTypeObjectPositionInfo6sideEmptyflagsAttributes7idtypeplp_ctm_WoodBoxLightBig#7positionfFsBFangles>7disableSimulation#7dataTypeObjectPositionInfo7sideEmptyflagsAttributes7idtypeplp_ctm_WoodBoxLightBig7position fFsBgFangles1>@7disableSimulation7dataTypeObjectPositionInfoo8sideEmptyflagsAttributes8idtypeplp_ctm_WoodBoxLightBig8positionfFsBFanglesb@8disableSimulation8dataTypeObjectPositionInfo@9sideEmptyflagsAttributesx9idtypeplp_ctm_WoodBoxLightBig9position,fFsBKĜFangles1>@x9disableSimulation9dataTypeObjectPositionInfo:sideEmptyflagsAttributesI:idtypeplp_ctm_WoodBoxLightBigg:positionfFsBVȜFangles9@I:disableSimulationg:dataTypeObjectPositionInfo:sideEmptyflagsAttributes;idtypeplp_ctm_WoodBoxLightBig8;positionhfFsBÜFangles1>@;disableSimulation8;dataTypeObjectPositionInfo;sideEmptyflagsAttributes;idtypeplp_ctm_WoodBoxLightBig <positionfFsBǜFanglesƴ@;disableSimulation <dataTypeObjectPositionInfo<sideEmptyflagsAttributes<idtypeplp_ctm_WoodBoxLightBig<positionzfFsBٜFanglesը?<disableSimulation<dataTypeObjectPositionInfoU=sideEmptyflagsAttributes=idtypeplp_ctm_WoodBoxLightBig=position\fFsBG͜Fangles4>=disableSimulation=dataTypeObjectPositionInfo&>sideEmptyflagsAttributes^>idtypeplp_ctm_WoodBoxLightBig|>positionfFsBFanglesը?^>disableSimulation|>dataTypeObjectPositionInfo>sideEmptyflagsAttributes/?idtypeplp_ctm_WoodBoxLightBigM?positionfFsBFangles?/?disableSimulationM?dataTypeObjectPositionInfo?sideEmptyflagsAttributes@idtypeplp_ctm_WoodBoxLightBig@positionWfFsBTלFanglesը?@disableSimulation@dataTypeObjectPositionInfo@sideEmptyflagsAttributes@id'typeplp_ctm_WoodBoxLightBig@positiongFrBМFangles1@@disableSimulation@dataTypeObjectPositionInfojAsideEmptyflagsAttributesAid(typeplp_ctm_WoodBoxLightBigAposition׆gFrBҜFanglesWc@AdisableSimulationAdataTypeObjectPositionInfo;BsideEmptyflagsAttributessBid)typeplp_ctm_WoodBoxLightBigBpositionfgFrBFangles@sBdisableSimulationBdataTypeObjectPositionInfo CsideEmptyflagsAttributesDCid*typeplp_ctm_WoodBoxLightBigbCposition9jgFrBҰFangles>DCdisableSimulationbCdataTypeObjectPositionInfoCsideEmptyAttributesDid+typeplp_ctm_WoodBoxLightBigatlOffset?7Dposition8~gF1rBFangles@DdisableSimulation7DdataTypeObjectPositionInfoDsideEmptyAttributesDid,typeplp_ctm_WoodBoxLightBigatlOffset? EpositionzgFrBFanglesr!@DdisableSimulation EdataTypeObjectPositionInfoEsideEmptyflagsAttributesEid-typeplp_ctm_WoodBoxLightBigatlOffset`;Eposition&vgFrBFangles@EdisableSimulationEdataTypeObjectPositionInfoxFsideEmptyflagsAttributesFid.typeplp_ctm_WoodBoxLightBigatlOffsettypeplp_ctm_WoodBoxLightBigpHpositionmngFrBFanglese@RHdisableSimulationpHdataTypeObjectPositionInfoHsideEmptyAttributes'Iid?typeplp_ctm_WoodBoxLightBigatlOffset`?EIpositionvgFrBoFangles1@'IdisableSimulationEIdataTypeObjectPositionInfoIsideEmptyAttributesIid@typeplp_ctm_WoodBoxLightBigatlOffset`;?JpositionqgFKrB+ɜFanglesؓ@IdisableSimulationJdataTypeObjectPositionInfoJsideEmptyflagsAttributesJidAtypeplp_ctm_WoodBoxLightBigJpositionzgFrBKFangles1@JdisableSimulationJdataTypeObjectPositionInfofKsideEmptyflagsAttributesKidptypeplp_ctm_WoodBoxLightBigKpositionqgFrB廜Fangles>KdisableSimulationKdataTypeObjectPositionInfo7LsideEmptyflagsAttributesoLidqtypeplp_ctm_WoodBoxLightBigLpositiongFrBۜFangles>oLdisableSimulationLdataTypeObjectPositionInfo MsideEmptyflagsAttributesAMidtypeplp_ctm_WoodBoxLightHuge_MpositiongF&7uBFanglesa@AMdisableSimulation_MdataTypeObjectPositionInfoMsideEmptyflagsAttributesNid typeplp_ct_WoodBoxLightHuge0NpositionfF">uBڜFangles@NdisableSimulation0NdataTypeObjectPositionInfoNsideEmptyflagsAttributesNid typeplp_ct_WoodBoxLightHugeOpositionvfF">uB`ӜFangles@NdisableSimulationOdataTypeObjectPositionInfo}OsideEmptyflagsAttributesOidtypeplp_ctm_WoodBoxLightHugeOpositionqgF&7uBFanglesa@OdisableSimulationOdataTypeObjectPositionInfoOPsideEmptyflagsAttributesPidtypeplp_ctm_WoodBoxLightHugePpositiongF&7uBFanglesa@PdisableSimulationPdataTypeObjectPositionInfo!QsideEmptyflagsAttributesYQidtypeplp_ctm_WoodBoxLightHugewQposition gF&7uBvFanglesa@YQdisableSimulationwQdataTypeObjectPositionInfoQsideEmptyAttributes/Rid&typeplp_ctm_WoodBoxLightHugeatlOffset@?MRpositionVgF5tB6ΜFangles?/RdisableSimulationMRdataTypeObjectPositionInfoRsideEmptyflagsAttributesSid4typeplp_ct_WoodBoxLightHugeSpositionܙgF=tBbFanglesО?SdisableSimulationSdataTypeObjectPositionInfoSsideEmptyAttributesSid5typeplp_ct_WoodBoxLightHugeatlOffset`g?Sposition\mgFWdisableSimulationXdataTypeObjectPositionInfoXsideEmptyflagsAttributesXidtypeplp_ctm_WoodBoxLightHugeOpenXpositionfFtBFanglesG_g@XdisableSimulationXdataTypeObjectPositionInfooYsideEmptyflagsAttributesYidtypeplp_ctm_WoodBoxLightHugeOpenYpositiongFtB Fangles->YdisableSimulationYdataTypeObjectPositionInfoIZsideEmptyAttributesZid$typeplp_ctm_WoodBoxLightHugeOpenatlOffset?ZpositionY^gFsB ٜFanglesn{@ZdisableSimulationZdataTypeObjectPositionInfo[sideEmptyflagsAttributesW[id%typeplp_ctm_WoodBoxLightHugeOpenu[positionJqgFsBFangles^b@W[disableSimulationu[dataTypeObjectPositionInfo[sideEmptyAttributes1\id3typeplp_ctm_WoodBoxLightHugeOpenatlOffset?O\position|gF#sBnƜFanglesH>1\disableSimulationO\dataTypeObjectPositionInfo\sideEmptyAttributes ]idBtypeplp_ctm_WoodBoxLightHugeOpenatlOffsete?)]position>gF2sBFangles^b@ ]disableSimulation)]dataTypeObjectPositionInfo]sideEmptyAttributes]idtypeplp_ctm_WoodBoxLightLongatlOffsetrT?]positionfF_qB˜Fangles>]disableSimulation]dataTypeObjectPositionInfo{^sideEmptyflagsAttributes^idtypeplp_ctm_WoodBoxLightLong^positionpfF`qB ʜFangles>^disableSimulation^dataTypeObjectPositionInfoQ_sideEmptyAttributes_id9typeplp_ctm_WoodBoxLightLongatlOffsetN?_positiongFxpBFanglesa@_disableSimulation_dataTypeObjectPositionInfo'`sideEmptyAttributes_`id:typeplp_ctm_WoodBoxLightLongatlOffsetN?}`positionZgF$upBmFanglesa@_`disableSimulation}`dataTypeObjectPositionInfoasideEmptyflagsAttributesGaid typeplp_ctm_WoodBoxLightLongLeanedatlOffset:eapositionIfFtBќFanglesn7d@GadisableSimulationeadataTypeObjectPositionInfoasideEmptyflagsAttributesbidtypeplp_ctm_WoodBoxLightLongLeaned=bpositionjfFtBrԜFanglesn7d@bdisableSimulation=bdataTypeObjectPositionInfobsideEmptyflagsAttributescid7typeplp_ctm_WoodBoxLightLongLeanedatlOffset"<%cpositiongFFsBFangles>cdisableSimulation%cdataTypeObjectPositionInfocsideEmptyAttributescid<typeplp_ctm_WoodBoxLightLongLeanedatlOffsetL?dposition2wgFxsBFangles>cdisableSimulationddataTypeObjectPositionInfodsideEmptyflagsAttributesdid typeplp_ctm_WoodBoxLightLongOpendpositionfFюrBϜFanglesk@ddisableSimulationddataTypeObjectPositionInfo[esideEmptyAttributeseid8typeplp_ctm_WoodBoxLightLongOpenatlOffsetN?epositiongFϋqByFangles?edisableSimulationedataTypeObjectPositionInfo?fsideEmptyflagsAttributeswfidtypeplp_ctm_WoodBoxLightMediumatlOffsetwfdisableSimulationfdataTypeObjectPositionInfogsideEmptyflagsAttributesKgidtypeplp_ctm_WoodBoxLightMediumigpositionfFqBfFanglesO\>KgdisableSimulationigdataTypeObjectPositionInfogsideEmptyflagsAttributeshidtypeplp_ctm_WoodBoxLightMedium=hpositionfFqBFangles @hdisableSimulation=hdataTypeObjectPositionInfohsideEmptyflagsAttributeshidtypeplp_ctm_WoodBoxLightMediumipositionfFqBFangles @hdisableSimulationidataTypeObjectPositionInfoisideEmptyflagsAttributesiidtypeplp_ctm_WoodBoxLightMediumipositionfFqBKFangles6@idisableSimulationidataTypeObjectPositionInfocjsideEmptyflagsAttributesjidtypeplp_ctm_WoodBoxLightMediumjposition|fFqB~Fangles?jdisableSimulationjdataTypeObjectPositionInfo7ksideEmptyflagsAttributesokidtypeplp_ctm_WoodBoxLightMediumkposition=fFqBܜFangles42b@okdisableSimulationkdataTypeObjectPositionInfo lsideEmptyflagsAttributesClidtypeplp_ctm_WoodBoxLightMediumalpositionvfFqBޜFangles42b@CldisableSimulationaldataTypeObjectPositionInfolsideEmptyAttributesmid/typeplp_ctm_WoodBoxLightMediumatlOffset,?9mpositiongFlpBƜFanglesj@mdisableSimulation9mdataTypeObjectPositionInfomsideEmptyAttributesmid0typeplp_ctm_WoodBoxLightMediumatlOffset?npositiongFMpBWĜFanglesj@mdisableSimulationndataTypeObjectPositionInfonsideEmptyflagsAttributesnid1typeplp_ctm_WoodBoxLightMediumnpositiongFpB[ӜFangles@ndisableSimulationndataTypeObjectPositionInfogosideEmptyAttributesoid2typeplp_ctm_WoodBoxLightMediumatlOffset7?opositionW_gF!pB ͜Fangles@odisableSimulationodataTypeObjectPositionInfo?psideEmptyAttributeswpidFtypeplp_ctm_WoodBoxLightMediumatlOffset>j?pposition}gFpBFangles @wpdisableSimulationpdataTypeObjectPositionInfoqsideEmptyAttributesOqidGtypeplp_ctm_WoodBoxLightMediumatlOffseti?mqpositionAxgFpB=Fangles@OqdisableSimulationmqdataTypeObjectPositionInfoqsideEmptyAttributes'ridHtypeplp_ctm_WoodBoxLightMediumatlOffset`4?ErpositioncgFpBFangless>'rdisableSimulationErdataTypeObjectPositionInforsideEmptyAttributesridItypeplp_ctm_WoodBoxLightMediumatlOffset?spositionbgFpBFangless>rdisableSimulationsdataTypeObjectPositionInfossideEmptyflagsAttributessidutypeplp_ctm_WoodBoxLightMediumspositiongFpBޜFangles@sdisableSimulationsdataTypeObjectPositionInfostsideEmptyAttributestidvtypeplp_ctm_WoodBoxLightMediumatlOffset ?tpositionigFmpBݜFangles @tdisableSimulationtdataTypeObjectPositionInfoKusideEmptyflagsAttributesuid typeplp_cts_WoodBoxLightMediumOpenupositionfFۮqBǜFangles?udisableSimulationudataTypeObjectPositionInfo#vsideEmptyflagsAttributes[vidtypeplp_ctm_WoodBoxLightMediumOpenyvpositionfFخqBɜFanglesğ>[vdisableSimulationyvdataTypeObjectPositionInfo wsideEmptyflagsAttributesCwid6typeplp_cts_WoodBoxLightMediumOpenatlOffset?awpositiongFtpBCFangles- @CwdisableSimulationawdataTypeObjectPositionInfowsideEmptyflagsAttributes+xid;typeplp_ctm_WoodBoxLightMediumOpenatlOffset@ydisableSimulationzdataTypeLogicPositionInfofzidtypeAdmiral_CqcZoneCustomAttributesz܁positioneFnB9Fz Attribute0.{Attribute1{Attribute2|Attribute3d}Attribute4~Attribute5~Attribute6Attribute7JAttribute8nAttributes ܁propertyAdmiral_CqcZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];Value{{data{{type{value{typeSTRING{propertyAdmiral_CqcZone_Admiral_MinHeightexpression_this setVariable ['Admiral_MinHeight',_value,true];Valuej||dataz||type|value|typeSCALAR|propertyAdmiral_CqcZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];Value#}d}data3}d}typeO}valued}typeSCALARd}propertyAdmiral_CqcZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Value}~data}~type~valueB~typeSCALAR~propertyAdmiral_CqcZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value~~data~~type~valueB~typeSCALAR~propertyAdmiral_CqcZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValueNdata^typezvaluetypeBOOLpropertyAdmiral_CqcZone_Admiral_CqcPoolexpression_this setVariable ['Admiral_CqcPool',_value,true];Value JdataJtype5valueAJtypeSCALARJpropertyAdmiral_CqcZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValueЀdatatypevalueMNP_RU_AIRtypeSTRINGpropertyAdmiral_CqcZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value܁data܁typeǁvalue܁typeSTRING܁dataTypeLogicPositionInfo|areaSize@ؼ8AflagsidtypeModuleHideTerrainObjects_FatlOffset$=CustomAttributes"positionRfF`mBfFanglesC>Attribute0Attribute1nAttributes"property#filterexpression_this setVariable ["#filter",_value]ValueBdataRtypenvaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value"data"typevalue"typeBOOL"dataTypeLogicPositionInfoareaSize@@flagsid5 typeModuleHideTerrainObjects_FCustomAttributesXpositionGfFmB8Fanglesd@Attribute0"Attribute1nAttributesXproperty#filterexpression_this setVariable ["#filter",_value]ValuexdatatypevaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueXdata)XtypeEvalueXtypeBOOLXdataTypeObjectPositionInfoІsideEmptyAttributesidtypeLand_Cabinet_EP1atlOffset@?&position4 fFbuBFangles>disableSimulation&dataTypeGroupsideEastEntitiesAttributesidatlOffsetPf@itemsItem0dataTypeObjectPositionInfo,sideEastflagsAttributesdidtypegm_pl_army_officer_pm_80_winatlOffsetPf@position7.fFv̀BFanglesB@dInventoryy handgun$binocularuniformvestimapItemMapcompassgm_gc_compass_f73watchItemWatchradioItemRadioheadgearCUP_H_RUS_Beret_SpetsnaznameCUP_hgun_MakarovprimaryMuzzleMagXnameCUP_8Rnd_9x18_Makarov_MammoLeftnamegm_df7x40_grntypeNameMNP_CombatUniform_RO3_RgisBackpackMagazineCargoItemCargoaiitemsItem0!anameCUP_8Rnd_9x18_Makarov_McountammoLeftaitemsItem0Item1ЊItem2Item34inamegm_gc_army_gauzeBandagecountЊnamegm_gc_army_medkitcountnamegm_pl_army_headgear_cap_80_morocount4namegm_gc_army_facewear_schm41mcountitypeNamegm_pl_army_vest_80_crew_gry_ARMisBackpackdataTypeObjectPositionInfo%sideEmptyAttributes]idtypeLand_antennaatlOffsetP@{position fFɗBFanglesM@]disableSimulation{dataTypeObjectPositionInfosideEmptyAttributes-idtypeLand_ArmChair_01_FatlOffset@R ?Kposition#fF rByFangles?-disableSimulationKdataTypeObjectPositionInfosideEmptyAttributesidtypegm_banner_URatlOffsetx?position)4fFqBFangles]@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCUP_bath׎positionh+fFoBFangles>disableSimulation׎dataTypeObjectPositionInfo\sideEmptyAttributesidtypeland_gm_euro_furniture_bed_01atlOffset`Z@position fFiB׾FanglesM?dataTypeObjectPositionInfosideEmptyflagsAttributesTidtypeland_gm_euro_furniture_book_01rposition:fFzwBlFangles[ @TdisableSimulationrdataTypeObjectPositionInfosideEmptyAttributes0idtypeland_gm_euro_furniture_book_01atlOffsetPadisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesJidtypeland_gm_euro_furniture_chair_02atlOffsetP8hpositionfF|pBFangles?JdisableSimulationhdataTypeObjectPositionInfosideEmptyflagsAttributes3idtypeland_gm_euro_furniture_chair_04atlOffset`8QpositionfF΀BvFangles5:@=3disableSimulationQdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_furniture_chair_04atlOffset`8:positionfF΀BFanglesfO@disableSimulation:dataTypeObjectPositionInfosideEmptyAttributesidtypeCUP_item_Cobalt_FileatlOffsetr? positionG8fFvBFangles ?disableSimulation dataTypeObjectPositionInfosideEmptyAttributesћidtypeland_gm_euro_furniture_lampfixture_03atlOffset8i?position)fF,BnFangles?ћdisableSimulationdataTypeObjectPositionInfo|sideEmptyAttributesidtypeland_gm_euro_furniture_lampfixture_03atlOffsetYs?Ҝposition3fFmBԽFanglesm+@disableSimulationҜdataTypeObjectPositionInfo^sideEmptyAttributesidtypeLand_EmergencyBlanket_01_discarded_FatlOffsetW>position !fF.BFanglesݟ@disableSimulationdataTypeObjectPositionInfo@sideEmptyAttributesxidtypeLand_EmergencyBlanket_01_discarded_FatlOffset>positioni fFpBFangles?xdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesRidtypeLand_EmergencyBlanket_01_stack_Fpposition%fFW/B̫Fangles;-Y?@RdisableSimulationpdataTypeObjectPositionInfosideEmptyAttributesidtypeEvMoscowatlOffsetcu?6positionJ7fFBFanglesry@disableSimulation6dataTypeObjectPositionInfosideEmptyAttributesidtypeLand_FilePhotos_FatlOffset[q?positionV8fFBBFanglesJS@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesšidtypeLand_GarbageBin_03_FatlOffset=positionR+fFDgsBœFangles(@šdisableSimulationdataTypeObjectPositionInfoTsideEmptyflagsAttributesidtypeGunrackTK_EP1positionJ0fFÁB^Fangles?disableSimulationdataTypeObjectPositionInfo1sideEmptyflagsAttributesiidtypeCUP_kitchen_chair_aatlOffsetؗ=position4fFqBFangleso>idisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesFidtypeCUP_kitchen_chair_aatlOffsetl=dpositionF6fFqBѻFanglesV?FdisableSimulationddataTypeObjectPositionInfosideEmptyflagsAttributes#idtypeCUP_kitchen_chair_aatlOffsetx=Aposition2fFd0qBjFanglesj*Y@#disableSimulationAdataTypeObjectPositionInfoȥsideEmptyflagsAttributesidtypeCUP_kitchen_chair_aatlOffset=position1fF=qBFanglesn@disableSimulationdataTypeObjectPositionInfosideEmptyAttributesӦidtypeCUP_Kitchenstove_ElecatlOffset@*?position'fFpB½Fangles @ӦdisableSimulationdataTypeObjectPositionInfozsideEmptyflagsAttributesidtypeCUP_Kitchenstove_ElecatlOffset:Чposition&fFpBټFangles"[@disableSimulationЧdataTypeObjectPositionInfoWsideEmptyflagsAttributesidtypeCUP_kitchen_table_aatlOffset=position}3fF"qBNFanglesn@disableSimulationdataTypeObjectPositionInfo'sideEmptyAttributes_idtypeLeaflet_05_Stack_FatlOffsetr?eposition3fF؂BFangles@_edataTypeObjectPositionInfoةsideEmptyflagsAttributesidtypeCUP_lobby_chair.position)fFˀBSFangles@disableSimulation.dataTypeObjectPositionInfosideEmptyflagsAttributes٪idtypeCUP_lobby_chairpositionI8fFˀBFanglesЭ)@٪disableSimulationdataTypeObjectPositionInfojsideEmptyflagsAttributesidtypeCUP_lobby_tableposition/fFpBbFangles@disableSimulationdataTypeObjectPositionInfo@sideEmptyflagsAttributesxidtypeItem_ItemMapatlOffset ⼖position>4fFȦpBFangles6;@O@xdisableSimulationdataTypeObjectPositionInfosideEmptyAttributesFidtypeLand_Map_blank_FatlOffsetms?dposition5fF$BFanglesN@FdisableSimulationddataTypeObjectPositionInfosideEmptyflagsAttributes"idtypeland_gm_euro_furniture_mapboard_01@position&fFˀBFangles.@"disableSimulation@dataTypeObjectPositionInfosideEmptyAttributesidtypeCUP_lekarnickaatlOffseth]@ position3fF\BFangles X?disableSimulation dataTypeObjectPositionInfosideEmptyAttributesidtypeLand_Microwave_01_FatlOffsetU?ݯposition&fF7{tBWFangles,@disableSimulationݯdataTypeObjectPositionInfoQsideEmptyflagsAttributesidtypeCUP_office_chairposition6fFB&Fangles>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesSidtypeCUP_office_chairqpositionO+fFB俜Fangles?SdisableSimulationqdataTypeObjectPositionInfosideEmptyflagsAttributes*idtypeplp_cts_PlasticBoxBlueOpenLowHposition#fFxtBPFanglestR@*disableSimulationHdataTypeObjectPositionInfoɲsideEmptyflagsAttributesidtypeplp_cts_PlasticBoxBlueOpenLowposition$fFxtBqFanglestR@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesسidtypeplp_cts_PlasticBoxBlueOpenLowposition)%fFxtBFanglestR@سdisableSimulationdataTypeObjectPositionInfo{sideEmptyflagsAttributesidtypeland_gm_euro_misc_plastictable_01Ѵposition$fFpBFangles؟@disableSimulationѴdataTypeObjectPositionInfoQsideEmptyflagsAttributesidtypeplp_cts_PlasticTrashcanWhiteposition$fF~BFangles*@disableSimulationdataTypeObjectPositionInfo:sideEmptyflagsAttributesridtypeland_gm_euro_furniture_radio_01atlOffset8positionU4fF tBiFangles?rdisableSimulationdataTypeObjectPositionInfosideEmptyAttributesIidtypeLand_Rug_01_Traditional_FatlOffset =gposition)3fFrBFanglesy?IdisableSimulationgdataTypeObjectPositionInfosideEmptyAttributes&idtypeland_gm_euro_furniture_shelf_04atlOffset f@DpositionfFBĜFangles#>&disableSimulationDdataTypeObjectPositionInfo˸sideEmptyAttributesidtypeland_gm_euro_furniture_shelf_06atlOffsetc'?!position%&fFrBFanglesQ?disableSimulation4dataTypeObjectPositionInfosideEmptyAttributesidtypeland_gm_euro_furniture_table_01atlOffset?positionIfFHpBǭFangles[?disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesܾidtypeland_gm_euro_furniture_table_02atlOffset@8positionHfFӀB|Fanglesa@ܾdisableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesſidtypeland_gm_euro_furniture_table_03atlOffset9position)fFˀBFanglesX@ſdisableSimulationdataTypeObjectPositionInfojsideEmptyAttributesidtypeland_gm_euro_furniture_table_05atlOffset?position4fFurBFangles=_@disableSimulationdataTypeObjectPositionInfoGsideEmptyAttributesidtypeland_gm_euro_furniture_table_05atlOffset f@position;fF+BZFangles0>disableSimulationdataTypeObjectPositionInfo$sideEmptyAttributes\idtypeland_gm_euro_furniture_table_05atlOffset'?zposition<&fFurBFanglesB^@\disableSimulationzdataTypeObjectPositionInfosideEmptyAttributes)idtypeLand_Carpet_EP1atlOffset@Ą@GpositionTfF=ԀBFanglesU>)disableSimulationGdataTypeObjectPositionInfosideEmptyAttributes idtypeland_gm_euro_furniture_telephone_01atlOffsetm?(positionO9fF릂B\Fangles=<@ disableSimulation(dataTypeObjectPositionInfosideEmptyAttributesidtypecwa_PhoneatlOffsetq?position7fFBHFangles ?disableSimulationdataTypeObjectPositionInfobsideEmptyflagsAttributesidtypeCUP_toilet_b_02positionC4fFˀBFanglesd@disableSimulationdataTypeObjectPositionInfo8sideEmptyflagsAttributespidtypeland_gm_euro_furniture_tv_01position/fF)rBkFangles'?pdisableSimulationdataTypeObjectPositionInfosideEmptyAttributesRidtypeland_gm_euro_furniture_typewriter_01atlOffsetpt?Xposition5fF(B Fangles_@RXdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCUP_washing_machine%position=fFpBmFangles@disableSimulation%dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCUP_Dhangar_whiteskrinatlOffset=position3fF"qBFangles>disableSimulationdataTypeObjectPositionInfovsideEmptyflagsAttributesidtypeCUP_library_aposition>fFˀBFanglesf]@disableSimulationdataTypeObjectPositionInfoDsideEmptyflagsAttributes|idtypeCUP_Dhangar_knihovnaposition+fFpB+FanglesE)]@|disableSimulationdataTypeObjectPositionInfo"sideEmptyflagsAttributesZidtypeCUP_Dhangar_knihovnaatlOffset9xposition(fFpBFanglesE)]@ZdisableSimulationxdataTypeObjectPositionInfosideEmptyflagsAttributes!idtypeCUP_library_a?positionfFˀBFanglesY@!disableSimulation?dataTypeObjectPositionInfosideEmptyAttributesidtypeLand_Cabinet_EP1atlOffset@U%? position fFbuBVFangles,@disableSimulation dataTypeObjectPositionInfo~sideEmptyflagsAttributesidtypeCUP_Skrin_barpositionE!fFpB̩Fangles?disableSimulationdataTypeObjectPositionInfoMsideEmptyflagsAttributesidtypeCUP_Dhangar_psacistulposition5fFˀBFanglesE?disableSimulationdataTypeObjectPositionInfo&sideEmptyAttributes^idtypeLayFlatHose_01_CurveShort_FatlOffset?|positionxfFoBazFangles#@?b@^disableSimulation|dataTypeObjectPositionInfosideEmptyflagsAttributes/idtypeLayFlatHose_01_Corner_FMposition.yfF6mBwFangles^@/disableSimulationMdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLayFlatHose_01_CurveLong_F!positionfF6mBrFangles9r@disableSimulation!dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLayFlatHose_01_CurveLong_FpositionfF6mB3kFangles@disableSimulationdataTypeObjectPositionInfossideEmptyflagsAttributesidtypeLayFlatHose_01_CurveLong_FpositionfF6mBkFangles I@disableSimulationdataTypeObjectPositionInfoLsideEmptyAttributesidtypeLayFlatHose_01_CurveShort_FatlOffset?positionfF:oBrFanglesج@a"@Ț@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesGidtypeVysilackaeposition;fFbBTFanglesπ>GdisableSimulationedataTypeGroupsideEastEntitiesAttributes iditemsItem0 dataTypeObjectPositionInfoDsideEastflagsAttributes|idtypeARK_RU_CBRN_Soldier_F positionfF&2sB{Fangles~ @|Inventory primaryWeapon/uniformvestmapItemMapcompassItemCompasswatchItemWatchradioItemRadiogogglesgm_gc_army_facewear_schm41m namegm_mpikms72_brnprimaryMuzzleMagbnamegm_30Rnd_762x39mm_B_57N231_ak47_blkammoLefttypeNameU_C_CBRN_Suit_01_White_FisBackpackMagazineCargoItemCargoitemsItem0'Item1ZnameSmokeShellcountammoLeftZnameSmokeShellGreencountammoLeftitemsItem0nameFirstAidKitcounttypeNamegm_ge_army_vest_80_bagisBackpack dataTypeGroupsideCivilianEntitiesqAttributesidatlOffset6itemsItem0Item1>dataTypeObjectPositionInfosideCivilianflagsAttributes8idtypeC_Bob_VRatlOffset6>positionp\FfBF8>dataTypeWaypointposition>gFqBFEffectsshowWPNEVERidtypeMoveatlOffsetg1>AttachedToidBoffset?dataTypeLayernameArty BatteryEntitiesHidatlOffsetl? itemsItem0Item1Item2Item3cItem4Item5Item6Item7tItem8JItem9 Item10Item11Item12Item13cItem142Item15Item16Item17Item18hItem195Item20Item21YItem22 Item23 Item24 Item25} Item26X Item273 Item28 Item29 Item30 Item31 Item32z Item33U Item340 Item35 Item36 Item37 Item38 Item39w Item40@ Item41  Item42 Item43 Item44 Item45i Item46. Item47 Item48 Item49 Item50j Item51? Item52 Item53 Item54 Item55s Item56H Item57 Item58 Item59 Item60! Item61Q" Item62&# Item63# Item64$ Item65% Item66& Item67V' Item680( Item69 ) Item70) Item71* Item72+ Item73l, Item74%- Item75- Item76. Item77P/ Item78 0 Item790 Item80{1 Item8142 Item822 Item833 Item844 Item85a5 Item86M6 Item87/7 Item888 Item898 Item909 Item91: Item92U; Item93< Item94< Item95= Item96> Item97v? Item98L@ Item99"A Item100A Item101B Item102C Item103ZD Item104LE Item105&F Item106F Item107G Item108H Item109fI Item110,J Item111K Item112K Item113L Item114TM Item115,N Item116N Item117O Item118P Item119LQ Item120R Item121R Item122S Item123T Item124\U Item1255V Item126V Item127W Item128X Item129iY Item1302Z Item131Z Item132[ Item133\ Item134v] Item135O^ Item136(_ Item137` Item138` Item139a Item140|b Item141Ec Item142&d Item143d Item144e Item145f Item146rg Item147Kh Item148i Item149i Item150j Item151k Item152Xl Item1531m Item154n Item155n Item156o Item157p Item158q Item159or Item160Hs Item1611t Item162u Item163v Item164v Item165w Item166x Item167 Item168 Item169 Item170 Item171 Item172 Item173~ Item174s Item175$ Item176 Item177 Item178[ Item179( Item180 Item181Y Item182% Item183t Item184S Item185+ Item186Y Item187 Item188 Item189 Item190I Item191 Item192 dataTypeGroupsideEastEntitiesAttributesid itemsItem0!dataTypeObjectPositionInfosideEastflagsAttributesid typegm_pl_army_machinegunner_pk_80_winposition 5F!B44FanglesIO@dataTypeGroupsideEastEntities4Attributesid itemsItem0QdataTypeObjectPositionInfosideEastflagsAttributes id typegm_pl_army_rifleman_akm_80_winposition5FV B+JFangles@ dataTypeObjectPositionInfosideEastflagsAttributesid] typegm_pl_army_pt76bCustomAttributescposition\5FB^)Fanglesa\=@]@texturesgm_pl_olwAttribute0nAttributescpropertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value+cdata;ctypeVvaluejctypeARRAYjitemsItem0Item1cdatatypetypeARRAYdatactypevaluectypeARRAYitemsItem0CItem1Item2Item3"cdataStype}valueCamoNet_01_unhidetypeSTRINGdatatypevaluetypeSCALARdata"type valueCamoNet_02_unhide"typeSTRING"data2ctypeNvaluectypeSCALARcdataTypeGroupsideCivilianEntitiesAttributesid itemsItem0Item1Item2Item3ddataTypeObjectPositionInfo^sideCivilianflagsAttributes~id typeC_Bob_VRpositionS=FBF~dataTypeWaypointposition8F繹B>ܔFEffectsshowWPNEVERid typeMovedataTypeWaypointposition|14F BݔFtypeSeekAndDestroyEffects^showWPNEVERid dddataTypeWaypointposition7FeB:FtypeCycleEffectsshowWPNEVERid dataTypeGroupsideCivilianEntities$AttributesiditemsItem0WItem1Item2WdataTypeObjectPositionInfosideCivilianflagsAttributesidtypeC_Bob_VRpositionl_SFΐBEߘFdataTypeWaypointposition?D/F\BdFEffectsQshowWPNEVERidtypeMoveWWdataTypeWaypointposition8FabB+FEffectsshowWPNEVERidtypeMovedataTypeObjectPositionInfoTsideEmptyflagsAttributesid typegm_AmmoBox_wood_03_emptyatlOffsetposition7FBpFanglesl|@Ᏺ?&$e=skillL>dataTypeObjectPositionInfo*sideEmptyflagsAttributesbid typegm_AmmoBox_wood_03_emptyatlOffsettposition7FśBeFangles;a?[@bskillL>tdataTypeObjectPositionInfosideEmptyflagsAttributes8id typegm_AmmoBox_wood_03_emptyatlOffsetJpositionO7FBFangles@W?8skillL>JdataTypeObjectPositionInfosideEmptyflagsAttributesid typegm_AmmoBox_wood_03_emptyatlOffset position7FܙB< Fangles;Ᏺ?[@skillL> dataTypeObjectPositionInfosideEmptyflagsAttributesid typegm_AmmoBox_wood_03_emptyatlOffsetposition\7FVBFanglesl|@bR;@&$e=skillL>dataTypeObjectPositionInfossideEmptyflagsAttributesid typegm_barrelatlOffset7position;5FB'/Fangles@@n<skillL>dataTypeObjectPositionInfo:sideEmptyflagsAttributesrid typegm_barrelatlOffsetĹposition;5F]B0FanglesQ=@,@rskillL>dataTypeObjectPositionInfosideEmptyflagsAttributes9idtypegm_barrelatlOffset 8cposition7F/(BSFangles@@@Q@9skillL>disableSimulationcdataTypeObjectPositionInfosideEmptyflagsAttributesidtypegm_barrel2position7F$BQFangles@@Q@skillL>disableSimulation2dataTypeObjectPositionInfosideEmptyflagsAttributesidtypegm_barrelpositionp7FD?BRFangles@8@Q@skillL>disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidd typegm_barrel_rustyatlOffsetposition9FBFangles@?,@skillL>dataTypeObjectPositionInfoQsideEmptyflagsAttributesidj typegm_barrel_rustyatlOffset8positionMJ7F+B|Fangles_@'@skillL>dataTypeObjectPositionInfosideEmptyflagsAttributesVido typegm_barrel_rustyatlOffsethposition5Fz/BFangles@'@@VskillL>hdataTypeObjectPositionInfosideEmptyflagsAttributes#idt typegm_barrel_rustyatlOffset~5positionn7F9BFanglesQ=и@MK@#skillL>5 dataTypeObjectPositionInfosideEmptyflagsAttributesidw typeCUP_O_BM21_SLAatlOffsetCustomAttributesposition6FAzB_7Fanglesiȓ@lockLOCKEDAttribute0AnAttributespropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Valuedatatypevalue[[[["CUP_arifle_AK74","CUP_launch_RPG18","FirstAidKit","Medikit"],[2,1,10,1]],[["CUP_30Rnd_545x39_AK_M","CUP_RPG18_M","SmokeShell","SmokeShellOrange","Chemlight_red"],[20,2,2,2,2]],[["ToolKit"],[1]],[["CUP_B_AlicePack_Khaki"],[4]]],false]typeSTRING dataTypeObjectPositionInfo_sideEmptyflagsAttributesidx typeCUP_O_BM21_SLAatlOffset0CustomAttributesYpositionn7FB:FanglesƔ@lockLOCKEDAttribute0nAttributesYpropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Value-Ydata=YtypeDvalue[[[["CUP_arifle_AK74","CUP_launch_RPG18","FirstAidKit","Medikit"],[2,1,10,1]],[["CUP_30Rnd_545x39_AK_M","CUP_RPG18_M","SmokeShell","SmokeShellOrange","Chemlight_red"],[20,2,2,2,2]],[["ToolKit"],[1]],[["CUP_B_AlicePack_Khaki"],[4]]],false]YtypeSTRINGY dataTypeObjectPositionInfosideEmptyflagsAttributes) idy typeCUP_O_BM21_SLAatlOffsetVCustomAttributes=  positiona8FپB?Fanglesk@כ@Dj-=) lockLOCKED= Attribute0e nAttributes propertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Value  data  type value[[[["CUP_arifle_AK74","CUP_launch_RPG18","FirstAidKit","Medikit"],[2,1,10,1]],[["CUP_30Rnd_545x39_AK_M","CUP_RPG18_M","SmokeShell","SmokeShellOrange","Chemlight_red"],[20,2,2,2,2]],[["ToolKit"],[1]],[["CUP_B_AlicePack_Khaki"],[4]]],false] typeSTRING dataTypeObjectPositionInfoq sideEmptyAttributes idtypeland_gm_euro_furniture_book_01atlOffsetM? position7F)BgJFangles:@@ disableSimulation dataTypeObjectPositionInfoX sideEmptyflagsAttributes id typeland_gm_euro_furniture_bed_02atlOffset8 position2 6FYB\)Fangles4=XK@ @ skillL> dataTypeObjectPositionInfo3 sideEmptyflagsAttributesk id typeland_gm_euro_furniture_bed_02atlOffset:} position5FJ׾B1)FanglesF<=XK@o@k skillL>} dataTypeObjectPositionInfo sideEmptyflagsAttributesF id typeland_gm_euro_furniture_bed_02atlOffset9X position5FB-Fangles4=XK@ @F skillL>X dataTypeObjectPositionInfo sideEmptyflagsAttributes! id typeland_gm_euro_furniture_bed_02atlOffset:3 position(6FE#B'Fangles#=XK@@! skillL>3 dataTypeObjectPositionInfo sideEmptyflagsAttributes id typeland_gm_euro_furniture_bed_02atlOffset9 position7)6FB+Fangles f=&E@ @ skillL> dataTypeObjectPositionInfo sideEmptyflagsAttributes id typeland_gm_euro_furniture_bed_02atlOffset7 position66FB;'Fangles f=XK@ @ skillL> dataTypeObjectPositionInfoz sideEmptyflagsAttributes id typeland_gm_euro_furniture_bed_02atlOffset9 position 6FdB;.Fangles=K@ @ skillL> dataTypeObjectPositionInfoU sideEmptyflagsAttributes id typeland_gm_euro_furniture_bed_02atlOffset8 position66FŽB+FanglesE=XK@*@ skillL> dataTypeObjectPositionInfo0 sideEmptyflagsAttributesh id typeland_gm_euro_furniture_bed_02atlOffset7z position(g6F"B[Fangles#=y<0@h skillL>z dataTypeObjectPositionInfo sideEmptyflagsAttributesC id typeland_gm_euro_furniture_bed_02atlOffsetJ:U positiont6FgBb[Fangles#=y<k@C skillL>U dataTypeObjectPositionInfo sideEmptyflagsAttributes id typeland_gm_euro_furniture_bed_02atlOffset :0 positionu6FBVFangles#=y<0@ skillL>0 dataTypeObjectPositionInfo sideEmptyflagsAttributes id typeland_gm_euro_furniture_bed_02atlOffset9 positionG6F2BV\Fangles Mm=y<2@ skillL> dataTypeObjectPositionInfo sideEmptyflagsAttributes id typeland_gm_euro_furniture_bed_02atlOffset9 positionFG6F7rB2XFangles Mm=x.@2@ skillL> dataTypeObjectPositionInfow sideEmptyflagsAttributes id typeland_gm_euro_furniture_bed_02atlOffset`9 position96F xB~\Fangles Mm=y<2@ skillL> dataTypeObjectPositionInfoR sideEmptyflagsAttributes id typeland_gm_euro_furniture_bed_02atlOffset8 positiong6FݻB'VFanglesSvD=y<@ skillL> dataTypeObjectPositionInfo- sideEmptyflagsAttributese id typeland_gm_euro_furniture_bed_02atlOffsetw position96F5B8XFangles Mm=y<2@e skillL>w dataTypeObjectPositionInfo sideEmptyflagsAttributes: idtypeland_gm_camonet_04_eastatlOffset=@ positiono7FBC9Fangles @: @ dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_camonet_04_eastatlOffset0Z=  position:6FTB7Fangles @  dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_camonet_04_eastatlOffseth= position8c8FB?FanglesIœ@  dataTypeObjectPositionInfo] sideEmptyflagsAttributes idtypeland_gm_camonet_03_eastatlOffsetx position7FBMFangles@ disableSimulation dataTypeObjectPositionInfo> sideEmptyflagsAttributesv idtypeland_gm_camonet_03_eastatlOffset position5F BSFanglesQ<'kF@k@v disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributesW id1 typeland_gm_camonet_03_eastatlOffset7i position5FB6+Fangles4=:J@ @W skillL>i dataTypeObjectPositionInfo sideEmptyflagsAttributes id2 typeland_gm_camonet_03_east. position66FƽB*FanglesMd=c= @ skillL>. dataTypeObjectPositionInfo sideEmptyflagsAttributes id typeland_gm_camonet_03_east position7F\DBFangles;Cc@[@ skillL> dataTypeObjectPositionInfo~ sideEmptyflagsAttributes id typeland_gm_camonet_03_eastatlOffset7 positionV7F2ʻB FanglesKe<N@@@ skillL>disableSimulation dataTypeObjectPositionInfo[ sideEmptyflagsAttributes id typeland_gm_camonet_03_east positions6F"zBSYFangles#=4@0@ skillL> dataTypeObjectPositionInfo  sideEmptyflagsAttributesX id typeland_gm_camonet_03_eastj position96FB4YFangles Mm=J@2@X skillL>j dataTypeObjectPositionInfo sideEmptyflagsAttributes- idb typeland_gm_camonet_03_natoatlOffset7? position9FBZFangles l@U@#<- skillL>? dataTypeObjectPositionInfo sideEmptyflagsAttributes idh typeland_gm_camonet_03_nato position=7FtBFangles_@m@n< skillL> dataTypeObjectPositionInfo sideEmptyflagsAttributes idm typeland_gm_camonet_03_nato position.5F;B;Fanglesq@m@HK@ skillL> dataTypeObjectPositionInfoT sideEmptyflagsAttributes idr typeland_gm_camonet_03_natoatlOffset7 positionz7FBFanglesQ=R?< skillL> dataTypeObjectPositionInfo) sideEmptyflagsAttributesa id typeland_gm_camonet_03_natoatlOffset7s position!5FBVFanglesΣ<@5@a skillL>s dataTypeObjectPositionInfo sideEmptyflagsAttributes6 id typeland_gm_camonet_02_eastatlOffset7H position6F9B[+Fangles#=̀= @6 skillL>H dataTypeObjectPositionInfo sideEmptyflagsAttributes  id typeland_gm_camonet_02_eastatlOffset7 positionV6F BXFanglesSvD= dataTypeObjectPositionInfo sideEmptyflagsAttributes id typeland_gm_camonet_02_eastatlOffset7 positionK7FB Fangles @$B@#e= skillL> dataTypeObjectPositionInfom sideEmptyflagsAttributes id typeland_gm_camonet_02_nato position5FZKB (Fanglesa\=D?]@ skillL> dataTypeObjectPositionInfoB! sideEmptyflagsAttributesz! id typeland_gm_camonet_01_eastatlOffset! position)6FdBFangles<K?@z! skillL>! dataTypeObjectPositionInfo" sideEmptyflagsAttributes?" id typeland_gm_camonet_01_eastQ" positionI 6FB8FanglesQ<K?@?" skillL>Q" dataTypeObjectPositionInfo" sideEmptyflagsAttributes# id typeland_gm_camonet_01_eastatlOffset7&# position7F4 BPFanglesl|@\?&$e=# skillL>&# dataTypeObjectPositionInfo# sideEmptyflagsAttributes# id typeland_gm_camonet_01_east# positionE6FkBfFangles 4=-@@# skillL># dataTypeObjectPositionInfov$ sideEmptyflagsAttributes$ id typeland_gm_camonet_01_eastatlOffset7$ positiono7FRBFangles@\?T4 =$ skillL>disableSimulation$ dataTypeObjectPositionInfoc% sideEmptyflagsAttributes% id typeland_gm_camonet_01_eastatlOffset% position{f6F9B"eFangles#=-@ @% skillL>% dataTypeObjectPositionInfo6& sideEmptyflagsAttributesn& idtypeCargoNet_01_barrels_FatlOffsetp& position97F:BTPFanglesP@`ݔ@#e=n& disableSimulation& dataTypeObjectPositionInfo' sideEmptyflagsAttributes8' idtypeLand_ChairWood_FV' position7FSB)JFangleš@?!e=8' disableSimulationV' dataTypeObjectPositionInfo' sideEmptyflagsAttributes( idtypeLand_ChairWood_FatlOffset0( position5FBPFangles4<hL?*@( disableSimulation0( dataTypeObjectPositionInfo( sideEmptyflagsAttributes( idtypeLand_ChairWood_FatlOffsetܹ ) positionn5F+BURFangles4<@*@( disableSimulation ) dataTypeObjectPositionInfo) sideEmptyflagsAttributes) idtypeLand_ChairWood_FatlOffsetܹ) position 5FBNFangles4<6T@*@) disableSimulation) dataTypeObjectPositionInfoh* sideEmptyflagsAttributes* idtypeLand_ChairWood_FatlOffsetܹ* positiong5F4BPFangles4<@*@* disableSimulation* dataTypeObjectPositionInfoQ+ sideEmptyflagsAttributes+ id typeland_gm_euro_furniture_chair_04atlOffset+ position7FHλB FanglesKe<@@+ skillL>disableSimulation+ dataTypeObjectPositionInfo., sideEmptyflagsAttributesN, id typeLand_DirtPatch_01_6x8_Fl, position7FyλB$ FN, disableSimulationl, dataTypeObjectPositionInfo, sideEmptyflagsAttributes- id typeLand_DirtPatch_01_6x8_F%- positionK7F_ûBFanglesf@- %- dataTypeObjectPositionInfo- sideEmptyflagsAttributes- id typeLand_DirtPatch_01_6x8_F- positionf7F>B Fanglesf@- - dataTypeObjectPositionInfoY. sideEmptyflagsAttributes. id*typeLand_DirtPatch_01_6x8_F. positionun6FBZFanglesf@. . dataTypeObjectPositionInfo/ sideEmptyflagsAttributesJ/ id+typeLand_DirtPatch_01_6x8_FP/ position[?6FtB]ZFanglesf@J/ P/ dataTypeObjectPositionInfo/ sideEmptyflagsAttributes0 id,typeLand_DirtPatch_01_6x8_F 0 position}6FB-Fanglesf@0 0 dataTypeObjectPositionInfo0 sideEmptyflagsAttributes0 id-typeLand_DirtPatch_01_6x8_F0 position~06FSڽB4+Fanglesf@0 0 dataTypeObjectPositionInfo=1 sideEmptyflagsAttributesu1 idtypeLand_DirtPatch_01_6x8_F{1 position6F/B7FanglesC@u1 {1 dataTypeObjectPositionInfo1 sideEmptyflagsAttributes.2 idtypeLand_DirtPatch_01_6x8_F42 positioncn7FB;FanglesC@.2 42 dataTypeObjectPositionInfo2 sideEmptyflagsAttributes2 idtypeLand_DirtPatch_01_6x8_F2 positionab8F7B?FanglesW@2 2 dataTypeObjectPositionInfot3 sideEmptyflagsAttributes3 idtypeLand_DirtPatch_05_FatlOffset73 position7F\B~NF3 disableSimulation3 dataTypeObjectPositionInfo74 sideEmptyflagsAttributeso4 id typeClutterCutter_EP1atlOffset74 position7F˻B Fangles@< dataTypeObjectPositionInfo< sideEmptyflagsAttributes< idtypeland_gm_sandbags_01_short_01< position7FB{KFangleš@G5?!e=< disableSimulation< dataTypeObjectPositionInfot= sideEmptyflagsAttributes= idtypeland_gm_sandbags_01_short_01= position7F`BIFangleš@G5?!e== disableSimulation= dataTypeObjectPositionInfoJ> sideEmptyflagsAttributes> idtypeland_gm_sandbags_01_short_01> position7FϩBRFanglesP@H <#e=> disableSimulation> dataTypeObjectPositionInfo ? sideEmptyflagsAttributesX? idtypeland_gm_sandbags_01_short_01v? position7FBGFangles@C^G@Q@X? disableSimulationv? dataTypeObjectPositionInfo? sideEmptyflagsAttributes.@ idtypeland_gm_sandbags_01_short_01L@ position7FBIFangles@G5?Q@.@ disableSimulationL@ dataTypeObjectPositionInfo@ sideEmptyflagsAttributesA idtypeland_gm_sandbags_01_short_01"A position7FiB~QFangles@G5?Q@A disableSimulation"A dataTypeObjectPositionInfoA sideEmptyflagsAttributesA id4 typeland_gm_sandbags_01_short_01A position96F B/FanglesQ=xM@*@A skillL>A dataTypeObjectPositionInfolB sideEmptyflagsAttributesB id6 typeland_gm_sandbags_01_short_01B positionf5FlrB1Fangles#=I@ @B skillL>B dataTypeObjectPositionInfo6C sideEmptyflagsAttributesnC id typeland_gm_sandbags_01_short_01C position5FՔBP#FanglesӠL=e@@nC skillL>C dataTypeObjectPositionInfoD sideEmptyflagsAttributesHD id typeland_gm_sandbags_01_short_01atlOffsetZD position76FBSFanglesL=@9=@HD skillL>ZD dataTypeObjectPositionInfoD sideEmptyflagsAttributes"E id typeland_gm_sandbags_01_short_01atlOffset7LE positionU7FϻBTFangleš@C@q@"E skillL>disableSimulationLE dataTypeObjectPositionInfoE sideEmptyflagsAttributesF id typeland_gm_sandbags_01_short_01atlOffset7&F positionpu6FBRFangles=@o@F skillL>&F dataTypeObjectPositionInfoF sideEmptyflagsAttributesF id typeland_gm_sandbags_01_round_01F position 5F]YB(FanglesT=e@@F skillL>F dataTypeObjectPositionInfoG sideEmptyflagsAttributesG id typeland_gm_sandbags_01_round_01atlOffset7G position 5FBwQFangles:;@P@G skillL>G dataTypeObjectPositionInfoVH sideEmptyflagsAttributesH idf typeland_gm_sandbags_02_wallatlOffset7H position9FQѻBFangles@J@,@H skillL>H dataTypeObjectPositionInfoI sideEmptyflagsAttributesTI idl typeland_gm_sandbags_02_wallfI positionK7F<\BgzFangles_@~]>TI skillL>fI dataTypeObjectPositionInfoI sideEmptyflagsAttributesJ idq typeland_gm_sandbags_02_wall,J position-5F=BFangles@~]>@J skillL>,J dataTypeObjectPositionInfoJ sideEmptyflagsAttributesJ idv typeland_gm_sandbags_02_wallatlOffset7K positionm7F޺BFanglesQ=W@MK@J skillL>K dataTypeObjectPositionInfo~K sideEmptyflagsAttributesK id typeland_gm_sandbags_02_wallK positionR:5FzB %Fanglesv}="ʏ@;K skillL>K dataTypeObjectPositionInfoDL sideEmptyflagsAttributes|L id typeland_gm_sandbags_02_wallL position>5FGB])FanglesӠL=r#H@g<|L skillL>L dataTypeObjectPositionInfo M sideEmptyflagsAttributesBM id typeland_gm_sandbags_02_wallTM positiong>5FpBp/FanglesQ=r#H@,@BM skillL>TM dataTypeObjectPositionInfoM sideEmptyflagsAttributesN idc typeland_gm_woodbunker_01_bagsatlOffset7,N position9F hBFanglesl@??5@N skillL>,N dataTypeObjectPositionInfoN sideEmptyflagsAttributesN idi typeland_gm_woodbunker_01_bagsN position-67FөB|Fangles@zIX@ l@N skillL>N dataTypeObjectPositionInforO sideEmptyflagsAttributesO idn typeland_gm_woodbunker_01_bagsO position}5FBTFangles<zIX@@O skillL>O dataTypeObjectPositionInfo:P sideEmptyflagsAttributesrP ids typeland_gm_woodbunker_01_bagsP position7F3BFanglesY@>C³=rP skillL>P dataTypeObjectPositionInfoQ sideEmptyflagsAttributes:Q id typeland_gm_woodbunker_01_bagsLQ positionK 5FBJ4Fanglesژ@_@:Q skillL>LQ dataTypeObjectPositionInfoQ sideEmptyflagsAttributesR id typeland_gm_woodbunker_01_bagsR position!5F! BnJFanglesږ@_@R skillL>R dataTypeObjectPositionInfoR sideEmptyflagsAttributesR idtypeland_gm_sandbags_01_wall_01R position7F:BRFanglesP@9D@@@R disableSimulationR dataTypeObjectPositionInfohS sideEmptyflagsAttributesS idtypeland_gm_sandbags_01_wall_01S position7FǻBOFanglesP@X<@#e=S disableSimulationS dataTypeObjectPositionInfo=T sideEmptyflagsAttributesuT idtypeland_gm_sandbags_01_wall_01T position7Fp|BGFangles@5G@4=uT disableSimulationT dataTypeObjectPositionInfoU sideEmptyflagsAttributesJU ide typeland_gm_sandbags_01_wall_01\U position)9F|BFanglesI@?,@JU skillL>\U dataTypeObjectPositionInfoU sideEmptyflagsAttributes#V idk typeland_gm_sandbags_01_wall_01atlOffset75V positionA7FMBxFanglesW@zIX@ l@#V skillL>5V dataTypeObjectPositionInfoV sideEmptyflagsAttributesV idp typeland_gm_sandbags_01_wall_01V positionU5F\BFangles@zIX@MK@V skillL>V dataTypeObjectPositionInfoW sideEmptyflagsAttributesW idu typeland_gm_sandbags_01_wall_01atlOffset7W positionv7F׻BFanglesY@>C³=W skillL>W dataTypeObjectPositionInfoVX sideEmptyflagsAttributesX id typeland_gm_sandbags_01_wall_01X positionK$6F۽Bs0FanglesMd=Qj= @X skillL>X dataTypeObjectPositionInfoY sideEmptyflagsAttributesWY id typeland_gm_sandbags_01_wall_01iY position<6FˬBa+FanglesE=@*@WY skillL>iY dataTypeObjectPositionInfoY sideEmptyflagsAttributes Z id typeland_gm_sandbags_01_wall_012Z position5FʧB~.Fangles#=@ @ Z skillL>2Z dataTypeObjectPositionInfoZ sideEmptyflagsAttributesZ id typeland_gm_sandbags_01_wall_01Z position_6F7,BL1Fangles=Qj= @Z skillL>Z dataTypeObjectPositionInfo[ sideEmptyflagsAttributes[ id typeland_gm_sandbags_01_wall_01atlOffset7[ position&5FB"Fangles4=F@]@[ skillL>[ dataTypeObjectPositionInfoS\ sideEmptyflagsAttributes\ id typeland_gm_sandbags_01_wall_01\ position%5FB$"FanglesӠL=F@P@\ skillL>\ dataTypeObjectPositionInfo,] sideEmptyflagsAttributesd] id typeland_gm_sandbags_01_wall_01atlOffset7v] position55FB PFangles<@5@d] skillL>v] dataTypeObjectPositionInfo^ sideEmptyflagsAttributes=^ id typeland_gm_sandbags_01_wall_01atlOffset7O^ position45FBwWFanglesΣ<@̌@=^ skillL>O^ dataTypeObjectPositionInfo^ sideEmptyflagsAttributes_ id typeland_gm_sandbags_01_wall_01atlOffset7(_ position*5FyBZFanglesΣ<JH@5@_ skillL>(_ dataTypeObjectPositionInfo_ sideEmptyflagsAttributes_ id typeland_gm_sandbags_01_wall_01atlOffset7` position5F5BZFanglesΣ<JH@5@_ skillL>` dataTypeObjectPositionInfo` sideEmptyflagsAttributes` id typeland_gm_sandbags_01_wall_01atlOffset7` positionM 5FSB-Fangles\=D?P@` skillL>` dataTypeObjectPositionInfoia sideEmptyflagsAttributesa id typeland_gm_sandbags_01_wall_01atlOffset7a position5FBXFanglesn< l@@a skillL>a dataTypeObjectPositionInfo2b sideEmptyflagsAttributesjb id typeland_gm_sandbags_01_wall_01|b position7FBB|Fangles@?jb skillL>|b dataTypeObjectPositionInfob sideEmptyflagsAttributes3c id typeland_gm_sandbags_01_wall_01Ec position{L6FBSFangles4=ןI@M@3c skillL>Ec dataTypeObjectPositionInfoc sideEmptyflagsAttributesc id typeland_gm_sandbags_01_wall_01&d position>7F~B? FanglesKe<?_@c skillL>disableSimulation&d dataTypeObjectPositionInfod sideEmptyflagsAttributesd id typeland_gm_sandbags_01_wall_01d positiono46FIƼB>XFangles#e= ?@d skillL>d dataTypeObjectPositionInfone sideEmptyflagsAttributese id typeland_gm_sandbags_01_wall_01e positiony6FB"VFangles#= ?k@e skillL>e dataTypeObjectPositionInfoGf sideEmptyflagsAttributesf id typeland_gm_sandbags_01_wall_01atlOffset7f positionR7F_ͻBFanglesuD=p@!e=f skillL>disableSimulationf dataTypeObjectPositionInfo(g sideEmptyflagsAttributes`g id typeland_gm_sandbags_01_wall_01rg position7FDBFangles@AF@`g skillL>rg dataTypeObjectPositionInfoh sideEmptyflagsAttributes9h id typeland_gm_sandbags_01_wall_01atlOffsetKh positionqb6FBRFangles.#=ןI@@9h skillL>Kh dataTypeObjectPositionInfoh sideEmptyflagsAttributesi id typeland_gm_sandbags_01_wall_01i position>7F@B/ Fangles;?@i skillL>i dataTypeObjectPositionInfoi sideEmptyflagsAttributesi id typeland_gm_sandbags_01_wall_01atlOffset i position7F>BFanglese|@?:@i skillL>i dataTypeObjectPositionInfolj sideEmptyflagsAttributesj id typeland_gm_sandbags_01_wall_01j position7F*BFanglesl|@(@&$e=j skillL>j dataTypeObjectPositionInfo5k sideEmptyflagsAttributesmk id typeland_gm_sandbags_01_wall_01k position\7F!޻BgFangles;R@Md=mk skillL>k dataTypeObjectPositionInfol sideEmptyflagsAttributes:l id typeCUP_Winter_obj_fort_rampart_ep1Xl position6FB6Fangles#<w;?<:l disableSimulationXl dataTypeObjectPositionInfol sideEmptyflagsAttributesm id typeCUP_Winter_obj_fort_rampart_ep11m position6FJ-B(Fangles<8;Xa@m disableSimulation1m dataTypeObjectPositionInfom sideEmptyAttributesm id typeCUP_Winter_obj_fort_rampart_ep1atlOffsetn>n positionj6FVBFFanglesA@m disableSimulationn dataTypeObjectPositionInfon sideEmptyflagsAttributesn id typeCUP_Winter_obj_fort_rampart_ep1atlOffsetJn positionn7FռB|)Fangles8;n disableSimulationn dataTypeObjectPositionInfo~o sideEmptyAttributeso id typeCUP_Winter_obj_fort_rampart_ep1atlOffset>o positionk7F BsHFangles?@o disableSimulationo dataTypeObjectPositionInfogp sideEmptyflagsAttributesp id typeCUP_Winter_obj_fort_rampart_ep1atlOffsetἽp positionP7F啽B(8Fangles:@w;? @p disableSimulationp dataTypeObjectPositionInfo@q sideEmptyflagsAttributesxq id typeCUP_Winter_obj_fort_rampart_ep1q positionr_8F[B1FanglesH@hro>,@xq disableSimulationq dataTypeObjectPositionInfor sideEmptyflagsAttributesQr id typeCUP_Winter_obj_fort_rampart_ep1or positioni8F]B-PFangless@XL@̌@Qr disableSimulationor dataTypeObjectPositionInfor sideEmptyflagsAttributes*s id typeCUP_Winter_obj_fort_rampart_ep1Hs position|H8F%BKCFangles˜D<y?#<*s disableSimulationHs dataTypeObjectPositionInfos sideEmptyflagsAttributest idtypeCUP_Winter_obj_fort_rampart_ep1atlOffset0<1t position7F[BZFanglesӠL=o<@:;t disableSimulation1t dataTypeObjectPositionInfot sideEmptyflagsAttributest idtypeCUP_Winter_obj_fort_rampart_ep1atlOffsetzu positionR7F!fB@Fangles@t disableSimulationu dataTypeObjectPositionInfou sideEmptyflagsAttributesu idtypeCUP_Winter_obj_fort_rampart_ep1atlOffsetv position7FZBzPFangles湏@u disableSimulationv dataTypeObjectPositionInfov sideEmptyflagsAttributesv id typeCUP_Winter_obj_fort_rampart_ep1v position5FBgUFangles"<@ @v disableSimulationv dataTypeObjectPositionInfo_w sideEmptyflagsAttributesw id typeCUP_Winter_obj_fort_rampart_ep1w positionѡ5FVBTFangles4<? @w disableSimulationw dataTypeObjectPositionInfo8x sideEmptyflagsAttributespx idtypeCUP_Winter_obj_fort_rampart_ep1x position!5FoB9bFangles+=cB@k@px disableSimulationx dataTypeObjectPositionInfo,y sideEmptyflagsAttributesdy id typegm_gc_army_btr60pu12atlOffset@CustomAttributesy position%5FCBxVFangles#=O@k@dy texturesgm_gc_winy Attribute0Hz Attribute13{ Attribute2} Attribute3~ Attribute4 Attribute5 Attribute6 Attribute7x Attribute8- Attribute9 Attribute10 nAttributes propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuez 3{ data{ 3{ type{ value-13{ typeSTRING3{ propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};ValueD| } dataT| } typeo| value| } typeARRAY| itemsItem0| Item1| } data| | type| | typeARRAY| data| } type } value} } typeARRAY} itemsItem0F} Item1} } dataV} } type} valueantennamast_01_elev_trigger} typeSTRING} data} } type} value?} typeSCALAR} propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value~ ~ data~ ~ type~ valuegm_insignia_pl_army_01~ typeSTRING~ propertygm_vehicleMarkings_tacticalNumber_Number_attributeexpression[_this,_value,2,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  data  type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuej dataz type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueR datab type} value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value8 x dataH x typec value-1x typeSTRINGx propertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Value҂ - data - type value[[[["gm_lp1_blk"],[1]],[["gm_handgrenade_frag_rgd5","gm_smokeshell_wht_gc","gm_smokeshell_grn_gc","gm_smokeshell_red_gc","gm_1Rnd_265mm_flare_multi_red_gc","gm_1Rnd_265mm_flare_single_wht_gc","gm_1Rnd_265mm_flare_single_red_gc","gm_1Rnd_265mm_flare_single_grn_gc","gm_1Rnd_40mm_heat_pg7v_rpg7","gm_75Rnd_762x39mm_B_T_M43_ak47_blk","gm_30Rnd_545x39mm_B_7N6_ak74_org","gm_100Rnd_762x54mm_B_T_t46_pk_grn"],[12,4,4,4,4,4,4,4,2,4,20,4]],[["gm_df7x40_blk","gm_gc_army_gauzeBandage","gm_gc_army_medkit","gm_repairkit_01"],[1,4,4,1]],[[],[]]],false]- typeSTRING- propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value؅  data  type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value dataΆ type value-1 typeSTRING propertygm_vehicleMarkings_tacticalNumber_Numberfont_attributeexpression[_this,_value,2,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value data type؇ value-1 typeSTRING dataTypeObjectPositionInfok sideEmptyflagsAttributes idtypeSmallTableatlOffset position7FYBJFangles:@@ disableSimulation dataTypeObjectPositionInfoT sideEmptyflagsAttributes id typeland_gm_euro_furniture_table_02atlOffsetȹ positionI7F׻Ba Fangles@d4?< skillL>disableSimulation dataTypeObjectPositionInfoI sideEmptyflagsAttributes id typeland_gm_euro_furniture_table_02atlOffset position7FmܻB2 Fangles@`4?< skillL>disableSimulation dataTypeObjectPositionInfo> sideEmptyflagsAttributesv id typeland_gm_euro_furniture_table_02atlOffset@ position`7F&B Fangles@4?disableSimulation dataTypeObjectPositionInfo3 sideEmptyflagsAttributesk id typeland_gm_euro_furniture_table_03atlOffsetຕ positionf7FxػBFanglesKe<W@@@k skillL>disableSimulation dataTypeObjectPositionInfo( sideEmptyflagsAttributes` idtypeland_gm_euro_furniture_table_05atlOffset~ position5FBPFangles4<@*@` disableSimulation~ dataTypeObjectPositionInfo sideEmptyflagsAttributesI id typeland_gm_euro_furniture_table_05atlOffsets position7FˣBFanglesKe<h4?@I skillL>disableSimulations dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypegm_gc_tent_5x5m$ position7F5zB%MFanglesL%:ڔ@@ $ dataTypeObjectPositionInfo sideEmptyflagsAttributesϏ id, typegm_gc_tent_5x5m position006FB)FanglesMd=њ= @Ϗ skillL> dataTypeObjectPositionInfoT sideEmptyflagsAttributes id. typegm_gc_tent_5x5m position6FB+Fangles4=њ= @ skillL> dataTypeObjectPositionInfo sideEmptyflagsAttributesI id typegm_gc_tent_5x5m[ position7F_ȻB8 Fangles}@@9[ dataTypeObjectPositionInfoޑ sideEmptyflagsAttributes id typegm_gc_tent_5x5matlOffset( position5@6FuBZFangles Mm=pI@@ skillL>( dataTypeObjectPositionInfo sideEmptyflagsAttributesӒ id typegm_gc_tent_5x5m positionm6FOBXFangles#=pI@k@Ӓ skillL> dataTypeObjectPositionInfo sideEmptyflagsAttributes idZ typegm_pl_army_ural4320_reammoatlOffsetCustomAttributes Y position7F$B Fangles@!C@ e= lockLOCKEDtexturesgm_pl_olw Attribute0 Attribute1 Attribute2 Attribute3 Attribute4 Attribute5Ѡ Attribute6 Attribute7 Attribute8 Attribute9p nAttributes Y propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueM data] typex value-1 typeSTRING propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value  data  typeɖ valueݖ  typeARRAYݖ itemsItem0 Item19  data 9 type% 9 typeARRAY9 dataI  typed valuex  typeARRAYx itemsItem0p Item1 Item2 Item3J Item4 Item5ؙ Item6 Item7h Item8 Item9 Item10= Item11 Item12Λ Item13 Item14_ Item15 Item16 Item17; Item18| Item19Ɲ  data type valuecover_hide_unhide typeSTRING dataϘ type value typeSCALAR data J type5 valuewinch_unhideJ typeSTRINGJ dataZ typev value typeSCALAR data ؙ typeÙ valueroofRack_unhideؙ typeSTRINGؙ data  type value typeSCALAR data) h typeS valuecamonet_01_unhideh typeSTRINGh datax type value typeSCALAR data type valuecoldWeatherKit_unhide typeSTRING data = type( value= typeSCALAR= dataM typex valuefuelcan_1_1_unhide typeSTRING data Λ type valueΛ typeSCALARΛ dataޛ  type valuefuelcan_1_2_unhide typeSTRING data. _ typeJ value_ typeSCALAR_ datao type valuelightGuard_unhide typeSTRING data typeڜ value typeSCALAR data ; type& valuetoolbox_unhide; typeSTRING; dataK | typeg value| typeSCALAR| data Ɲ type valuetools_unhideƝ typeSTRINGƝ data֝  type value typeSCALAR propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value data type valuegm_insignia_pl_army_01 typeSTRING propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value data typeџ value-1 typeSTRING propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value Ѡ data Ѡ type value-1Ѡ typeSTRINGѠ propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuey data type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value_ datao type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueJ dataZ typeu value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value0 p data@ p type[ value-1p typeSTRINGp propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value Y data) Y typeD value-1Y typeSTRINGY dataTypeObjectPositionInfo sideEmptyflagsAttributes5 id[ typegm_pl_army_ural4320_repairatlOffset7CustomAttributes^ % position_W6F;B'Fangles#==[@5 lockLOCKEDtexturesgm_pl_olw^ Attribute0 Attribute1 Attribute2ӯ Attribute3̰ Attribute4 Attribute5 Attribute6 Attribute7k Attribute8V Attribute9< nAttributes % propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  dataѧ  type value-1 typeSTRING propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value ӯ data" ӯ type= valueQ ӯ typeARRAYQ itemsItem0y Item1 ӯ data type typeARRAY data ӯ typeة value ӯ typeARRAY itemsItem0̪ Item1 Item2W Item3 Item4 Item54 Item6u Item7Ȭ Item8 Item9Y Item10 Item11 Item12+ Item13z Item14 Item15 Item16H Item17 ӯ dataܪ  type valuewinch_unhide typeSTRING data& W typeB value?W typeSCALARW datag type valueroofRack_unhide typeSTRING data typeЫ value? typeSCALAR data 4 type valuecamonet_01_unhide4 typeSTRING4 dataD u type` value?u typeSCALARu data Ȭ type valuecoldWeatherKit_unhideȬ typeSTRINGȬ dataج type value? typeSCALAR data Y typeD valuefuelcan_1_1_unhideY typeSTRINGY datai type value typeSCALAR data typeխ valuefuelcan_1_2_unhide typeSTRING data + type value+ typeSCALAR+ data; z typee valuelightGuard_unhidez typeSTRINGz data type value? typeSCALAR dataˮ  type valuetoolbox_unhide typeSTRING data H type3 value?H typeSCALARH dataX type} valuetools_unhide typeSTRING data ӯ type value?ӯ typeSCALARӯ propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuex ̰ data ̰ type valuegm_insignia_pl_army_01̰ typeSTRING̰ propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuer data type value-1 typeSTRING propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value] datam type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueE dataU typep value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value+ k data; k typeV value-1k typeSTRINGk propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value V data& V typeA value-1V typeSTRINGV propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value < data < type' value-1< typeSTRING< propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value % data % type value-1% typeSTRING% dataTypeObjectPositionInfo sideEmptyflagsAttributes ida typeCUP_O_UAZ_MG_RUCustomAttributes t position5FBRFangles;sF@@ texturesGreen_Soviet Attribute0, nAttributest propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value= t dataM t typeh value| t typeARRAY| itemsItem0 Item1ع t data ع typeĹ ع typeARRAYع data t type value t typeARRAY itemsItem0U Item1 Item2 Item33 t datae type valuehide_spare_wheel typeSTRING data typeϺ value typeSCALAR data 3 type valuehide_light_covers3 typeSTRING3 dataC t type_ value?t typeSCALARt dataTypeObjectPositionInfo sideEmptyflagsAttributes5 idtypeLand_WoodenCrate_01_FatlOffsetCustomAttributes positionEW7F8B|7F Attribute0Q Attribute1 nAttributes property#filterexpression_this setVariable ["#filter",_value]Value data type valuepA typeSCALAR property#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueH dataX typet value typeBOOL dataTypeLogicPositionInfo' areaSizeYA@flagsid typeModuleHideTerrainObjects_FatlOffset7CustomAttributes_ position7FB,Fangles4< Nm=_ Attribute0 Attribute1. nAttributes property#filterexpression_this setVariable ["#filter",_value]Value . data . type valuepA. typeSCALAR. property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value data type value typeBOOL dataTypeLogicPositionInfo] areaSizeL[tAfhAflagsid typeModuleHideTerrainObjects_FCustomAttributes  positionu8FqߺB9Fangles.@N!@Af@ Attribute0 Attribute1d nAttributes property#filterexpression_this setVariable ["#filter",_value]Value# d data3 d typeO valuepAd typeSCALARd property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value  data  type value typeBOOL dataTypeLogicPositionInfo areaSize@ Aflagsid typeModuleHideTerrainObjects_FatlOffsetCustomAttributes I positionS6F?BRFangles:;׾@,@ Attribute0 Attribute1 nAttributesI property#filterexpression_this setVariable ["#filter",_value]Valuei datay type valuepA typeSCALAR property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value I data I type6 valueI typeBOOLI dataTypeLogicPositionInfo areaSizeeA@flagsid typeModuleHideTerrainObjects_FCustomAttributes  position6FFBMFangles#=P@ Attribute0I Attribute1 nAttributes property#filterexpression_this setVariable ["#filter",_value]Value data type valuepA typeSCALAR property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value@  dataP  typel value typeBOOL dataTypeMarkerposition<47FrB52FnameartytypeEmptyidatlOffsetJ? dataTypeGroupsideEastEntities< Attributes CrewLinks id\ itemsItem0d Item1! dataTypeObjectPositionInfo sideEastflagsAttributes id_ typegm_pl_army_crew_pm63_80_moro! positionV5F?B*)Fanglesa\=@]@ ! dataTypeObjectPositionInfo sideEastflagsAttributes id` typegm_pl_army_crew_pm63_80_moro positionV5F?B*)Fanglesa\=@]@ LinkIDProvider Links nextID itemsItem0D Item1 linkIDitem0_ item1] CustomData roleturretPath linkIDitem0` item1] CustomData roleturretPath dataTypeLayernameHelipadEntitiesM idatlOffset;ֆ OitemsNItem0 Item1Z Item27 Item3 Item4 Item5 Item6 Item7 Item81 Item9 Item10 Item11 Item12 Item13X Item141 Item15 Item16 Item17 Item18w Item19F Item20 Item21A Item22 Item23 Item24 Item25 Item26E Item27 Item28 Item29 Item30 Item31O Item32 Item33 Item34k Item35B Item36 Item37 Item38 Item39` Item40: Item41 Item42 Item43 Item44 Item45Y Item46/ Item47 Item48 Item49 Item50 Item51` Item525 Item53  Item54 Item55 Item56 Item57^ Item583 Item59 Item60<. Item61> Item62N Item63~` Item64Ha Item65b Item66b Item67c Item68wd Item69=e Item70f Item71Hl Item72r Item73Js Item74I Item75݄ Item76 Item77% ֆ dataTypeLayernameBarracksEntitiesK idzatlOffsetZ items Item0 Item1 Item2 Item3 Item4TJ Item5S Item6p Item7 Item8> Item9 Item10l Item11! Z dataTypeLayernameBuildingEntities1 id{atlOffset; itemsItem0N dataTypeObjectPositionInfo sideEmptyflagsAttributes( id|typeland_gm_euro_barracks_02atlOffset;CustomAttributesD position4FܕB$6Fangles"@( nameangry_barracksD Attribute0| Attribute1! nAttributes propertyDoorStatesexpression['init',_this,_value] call bis_fnc_3DENAttributeDoorStates;Value ! data ! type value+ ! typeARRAY+ itemsItem0^ Item1 Item2 ! datan type value A typeSCALAR data type value typeSCALAR data ! type value! typeSCALAR! propertyallowDamageexpression_this allowdamage _value;Valuep data type value typeBOOL dataTypeLayernameBunksEntities id}atlOffset@W@ items+Item0 Item1 Item2 Item3h Item4F Item5$ Item6 Item7 Item8@ Item9 Item10 Item11\ Item12 Item13 Item14x Item15, Item16 Item17 Item18 Item19 Item20 Item216 Item22 Item23 Item24R Item25 Item26 Item27n Item28" Item29 Item30 Item31h Item32F Item33$ Item34 Item35 Item36 Item37H Item38 Item39 Item40d Item41 Item42 Item43" Item444$ Item45% Item46& Item47' Item48( Item49`) Item50>* Item51+ Item52- Item53Z/ Item541 Item552 Item56v4 Item57*6 Item587 Item599 Item60F; Item61$< Item62= Item63= Item64> Item65? Item66PA Item67C Item68D Item69lF Item70 H Item71I Item72K Item73S Item79T Item80T Item81V Item82bX Item83Z Item84[ Item85~] Item862_ Item87` Item88b Item89Nd Item90f Item91f Item92g Item93h Item94Pj Item95l Item96m Item97lo Item98 q Item99r Item100s Item101t Item102Dv Item103w Item104y Item105`{ Item106} Item107~ Item108 Item109 Item110b Item111@ Item112 Item113 Item114\ Item115 Item116Ċ Item117x Item118V Item1194 Item120 Item121 Item122P Item123 Item124 Item125l Item126J Item1278 Item128 Item129 Item130Ҝ Item131 Item132 Item133B Item134 Item135 Item136^ Item137 Item138ƨ Item139z Item140. Item141 Item142 Item143t Item144R Item1450 Item146 Item147 Item148 Item149T Item150 Item151 Item152p Item153$ Item154ؿ Item155 Item156@ Item157 Item158 Item159 Item160 Item161l Item162J Item163 Item164 Item165f Item166 Item167 Item168 Item1696 Item170 Item171 Item172R Item1730 Item174 Item175 Item176 Item177 Item178\ Item179 Item180 Item181x Item182, Item183 Item184 Item185H Item186 Item187 Item188 Item189l Item190J Item191( Item192 Item193 Item194n Item195" Item196 Item197 Item198> Item199 Item200 Item201Z Item202 Item203 Item204 Item205 Item206 Item207d Item208 Item209 Item210 Item2114 Item212 Item213 Item214P Item215 Item216 Item217l Item218J Item219( Item220 Item221 Item222n Item223"" Item224# Item225% Item226>' Item227( Item228( Item229* Item230b, Item231. Item232/ Item233~1 Item23423 Item2354 Item2364 Item2375 Item2386 Item239^8 Item240: Item241; Item242z= Item243.? Item244@ Item245A Item246B Item247RD Item248F Item249G Item250nI Item251"K Item252L Item253M Item254N Item255O Item256^P Item257R Item258S Item259zU Item260.W Item261X Item262Z Item263t[ Item264R\ Item2650] Item266^ Item267` Item268Lb Item269d Item270d Item271e Item272pg Item273$i Item274j Item275l Item276@n Item277o Item278p Item279q Item280r Item281Bt Item282u Item283w Item284^y Item285 position4Fk0B Fanglestj? texturesgm_olidisableSimulation> Attribute0f nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes positiont4Fk0B3 Fangles"@ texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valuei datay type value typeBOOL dataTypeObjectPositionInfo> sideEmptyAttributesv idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes \ position4Fk0B@ Fanglestj?v texturesgm_olidisableSimulation Attribute0 nAttributes\ propertyallowDamageexpression_this allowdamage _value;Value \ data- \ typeI value\ typeBOOL\ dataTypeObjectPositionInfo sideEmptyAttributes* idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesZ  position#4Fk0BFangles"@* texturesgm_olidisableSimulationZ Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes position4Fk0BFanglestj? texturesgm_olidisableSimulation Attribute06 nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfoZ sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes x position4Fk0BFangles"@ texturesgm_olidisableSimulation Attribute0 nAttributesx propertyallowDamageexpression_this allowdamage _value;Value9 x dataI x typee valuex typeBOOLx dataTypeObjectPositionInfo sideEmptyAttributesF idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesv , position4Fk0B!Fanglestj?F texturesgm_olidisableSimulationv Attribute0 nAttributes, propertyallowDamageexpression_this allowdamage _value;Value , data , type value, typeBOOL, dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffset`@ positionR4FBQ7Fangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffset:@ position4FB7Fangles@= createAsSimpleObject dataTypeObjectPositionInfom sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ positiona4FB8Fangles@= createAsSimpleObject dataTypeObjectPositionInfoK sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position4FBAFangles@= createAsSimpleObject dataTypeObjectPositionInfo) sideEmptyAttributesa idtypeland_gm_euro_furniture_bed_02atlOffsetY@ positionY4FBAFangles@=a createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesP idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes 6 position4Fk0B8Fangles"@P texturesgm_olidisableSimulation Attribute0 nAttributes6 propertyallowDamageexpression_this allowdamage _value;Value 6 data 6 type# value6 typeBOOL6 dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes4  position{4Fk0B"8Fanglestj? texturesgm_olidisableSimulation4 Attribute0\ nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffset<@CustomAttributes  position4Fk0B~7Fangles"@ texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value_  datao  type value typeBOOL dataTypeObjectPositionInfo4 sideEmptyAttributesl idtypegm_AmmoBox_wood_03_emptyatlOffset{@CustomAttributes R position 4Fk0B7Fanglestj?l texturesgm_olidisableSimulation Attribute0 nAttributesR propertyallowDamageexpression_this allowdamage _value;Value R data# R type? valueR typeBOOLR dataTypeObjectPositionInfo sideEmptyAttributes  idtypegm_AmmoBox_wood_03_emptyatlOffsetl@CustomAttributesP  position4Fk0B7Fangles"@  texturesgm_olidisableSimulationP Attribute0x nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetl@CustomAttributes position4Fk0B"7Fanglestj? texturesgm_olidisableSimulation Attribute0, nAttributes propertyallowDamageexpression_this allowdamage _value;Value{ data type value typeBOOL dataTypeObjectPositionInfoP sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes n position4Fk0BAFangles"@ texturesgm_olidisableSimulation Attribute0 nAttributesn propertyallowDamageexpression_this allowdamage _value;Value/ n data? n type[ valuen typeBOOLn dataTypeObjectPositionInfo sideEmptyAttributes< idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesl " position64Fk0BAFanglestj?< texturesgm_olidisableSimulationl Attribute0 nAttributes" propertyallowDamageexpression_this allowdamage _value;Value " data " type value" typeBOOL" dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes   position'4Fk0BAFangles"@ texturesgm_olidisableSimulation  Attribute0H nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfol sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes  position4Fk0BBFanglestj? texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueK  data[  typew value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesG idtypeland_gm_euro_furniture_bed_02atlOffsetY@h position4FB9Fangles@=G createAsSimpleObjecth dataTypeObjectPositionInfo sideEmptyAttributes% idtypeland_gm_euro_furniture_bed_02atlOffsetY@F positionq4FBFangles@=% createAsSimpleObjectF dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@$ position4FBFangles@= createAsSimpleObject$ dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ positiono4FB#Fangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position4FB$Fangles@= createAsSimpleObject dataTypeObjectPositionInfov sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes  position4Fk0BFangles"@ texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueU  datae  type value typeBOOL dataTypeObjectPositionInfo* sideEmptyAttributesb idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes H position4Fk0B Fanglestj?b texturesgm_olidisableSimulation Attribute0 nAttributesH propertyallowDamageexpression_this allowdamage _value;Value  H data H type5 valueH typeBOOLH dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesF  position64Fk0BfFangles"@ texturesgm_olidisableSimulationF Attribute0n nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes  position4Fk0BsFanglestj? texturesgm_olidisableSimulation Attribute0" nAttributes propertyallowDamageexpression_this allowdamage _value;Valueq  data  type value typeBOOL dataTypeObjectPositionInfoF sideEmptyAttributes~ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes d position4Fk0BFangles"@~ texturesgm_olidisableSimulation Attribute0 nAttributesd propertyallowDamageexpression_this allowdamage _value;Value% d data5 d typeQ valued typeBOOLd dataTypeObjectPositionInfo sideEmptyAttributes2 idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesb  position4Fk0B Fanglestj?2 texturesgm_olidisableSimulationb Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes positionT4Fk0B#Fangles"@ texturesgm_olidisableSimulation Attribute0> nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfob! sideEmptyAttributes! idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes! " position4Fk0B#Fanglestj?! texturesgm_olidisableSimulation! Attribute0! nAttributes" propertyallowDamageexpression_this allowdamage _value;ValueA" " dataQ" " typem" value" typeBOOL" dataTypeObjectPositionInfo# sideEmptyAttributesN# idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes~# 4$ position4Fk0B$Fangles"@N# texturesgm_olidisableSimulation~# Attribute0# nAttributes4$ propertyallowDamageexpression_this allowdamage _value;Value# 4$ data$ 4$ type!$ value4$ typeBOOL4$ dataTypeObjectPositionInfo$ sideEmptyAttributes% idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes2% % positionF4Fk0B$Fanglestj?% texturesgm_olidisableSimulation2% Attribute0Z% nAttributes% propertyallowDamageexpression_this allowdamage _value;Value% % data% % type% value% typeBOOL% dataTypeObjectPositionInfom& sideEmptyAttributes& idtypeland_gm_euro_furniture_bed_02atlOffsetY@& position4FB2(Fangles@=& createAsSimpleObject& dataTypeObjectPositionInfoK' sideEmptyAttributes' idtypeland_gm_euro_furniture_bed_02atlOffsetY@' position4FB(Fangles@=' createAsSimpleObject' dataTypeObjectPositionInfo)( sideEmptyAttributesa( idtypeland_gm_euro_furniture_bed_02atlOffsetY@( position)4FB(Fangles@=a( createAsSimpleObject( dataTypeObjectPositionInfo) sideEmptyAttributes?) idtypeland_gm_euro_furniture_bed_02atlOffsetY@`) position4FB2Fangles@=?) createAsSimpleObject`) dataTypeObjectPositionInfo) sideEmptyAttributes* idtypeland_gm_euro_furniture_bed_02atlOffsetY@>* position'4FB2Fangles@=* createAsSimpleObject>* dataTypeObjectPositionInfo* sideEmptyAttributes + idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes<+ + position4Fk0B(Fangles"@ + texturesgm_olidisableSimulation<+ Attribute0d+ nAttributes+ propertyallowDamageexpression_this allowdamage _value;Value+ + data+ + type+ value+ typeBOOL+ dataTypeObjectPositionInfo, sideEmptyAttributes, idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes, - positionE4Fk0B)Fanglestj?, texturesgm_olidisableSimulation, Attribute0- nAttributes- propertyallowDamageexpression_this allowdamage _value;Valueg- - dataw- - type- value- typeBOOL- dataTypeObjectPositionInfo<. sideEmptyAttributest. idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes. Z/ positioni4Fk0B_(Fangles"@t. texturesgm_olidisableSimulation. Attribute0. nAttributesZ/ propertyallowDamageexpression_this allowdamage _value;Value/ Z/ data+/ Z/ typeG/ valueZ/ typeBOOLZ/ dataTypeObjectPositionInfo/ sideEmptyAttributes(0 idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesX0 1 position4Fk0Bl(Fanglestj?(0 texturesgm_olidisableSimulationX0 Attribute00 nAttributes1 propertyallowDamageexpression_this allowdamage _value;Value0 1 data0 1 type0 value1 typeBOOL1 dataTypeObjectPositionInfo1 sideEmptyAttributes1 idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes 2 2 position4Fk0B'Fangles"@1 texturesgm_olidisableSimulation 2 Attribute042 nAttributes2 propertyallowDamageexpression_this allowdamage _value;Value2 2 data2 2 type2 value2 typeBOOL2 dataTypeObjectPositionInfoX3 sideEmptyAttributes3 idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes3 v4 positionQ4Fk0B(Fanglestj?3 texturesgm_olidisableSimulation3 Attribute03 nAttributesv4 propertyallowDamageexpression_this allowdamage _value;Value74 v4 dataG4 v4 typec4 valuev4 typeBOOLv4 dataTypeObjectPositionInfo 5 sideEmptyAttributesD5 idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributest5 *6 position4Fk0B2Fangles"@D5 texturesgm_olidisableSimulationt5 Attribute05 nAttributes*6 propertyallowDamageexpression_this allowdamage _value;Value5 *6 data5 *6 type6 value*6 typeBOOL*6 dataTypeObjectPositionInfo6 sideEmptyAttributes6 idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes(7 7 position4Fk0B2Fanglestj?6 texturesgm_olidisableSimulation(7 Attribute0P7 nAttributes7 propertyallowDamageexpression_this allowdamage _value;Value7 7 data7 7 type7 value7 typeBOOL7 dataTypeObjectPositionInfot8 sideEmptyAttributes8 idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes8 9 position4Fk0B2Fangles"@8 texturesgm_olidisableSimulation8 Attribute09 nAttributes9 propertyallowDamageexpression_this allowdamage _value;ValueS9 9 datac9 9 type9 value9 typeBOOL9 dataTypeObjectPositionInfo(: sideEmptyAttributes`: idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes: F; positionx4Fk0B 3Fanglestj?`: texturesgm_olidisableSimulation: Attribute0: nAttributesF; propertyallowDamageexpression_this allowdamage _value;Value; F; data; F; type3; valueF; typeBOOLF; dataTypeObjectPositionInfo; sideEmptyAttributes< idtypeland_gm_euro_furniture_bed_02atlOffsetY@$< position}4FB!FFangles@=< createAsSimpleObject$< dataTypeObjectPositionInfo< sideEmptyAttributes< idtypeland_gm_euro_furniture_bed_02atlOffsetY@= position4FBFFangles@=< createAsSimpleObject= dataTypeObjectPositionInfo= sideEmptyAttributes= idtypeland_gm_euro_furniture_bed_02atlOffsetY@= position4FBFFangles@== createAsSimpleObject= dataTypeObjectPositionInfoe> sideEmptyAttributes> idtypeland_gm_euro_furniture_bed_02atlOffsetY@> position4FBPFangles@=> createAsSimpleObject> dataTypeObjectPositionInfoC? sideEmptyAttributes{? idtypeland_gm_euro_furniture_bed_02atlOffsetY@? position4FBPFangles@={? createAsSimpleObject? dataTypeObjectPositionInfo2@ sideEmptyAttributesj@ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes@ PA position&4Fk0BFFangles"@j@ texturesgm_olidisableSimulation@ Attribute0@ nAttributesPA propertyallowDamageexpression_this allowdamage _value;ValueA PA data!A PA type=A valuePA typeBOOLPA dataTypeObjectPositionInfoA sideEmptyAttributesB idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesNB C position4Fk0BFFanglestj?B texturesgm_olidisableSimulationNB Attribute0vB nAttributesC propertyallowDamageexpression_this allowdamage _value;ValueB C dataB C typeB valueC typeBOOLC dataTypeObjectPositionInfoC sideEmptyAttributesC idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesD D position4Fk0BNFFangles"@C texturesgm_olidisableSimulationD Attribute0*D nAttributesD propertyallowDamageexpression_this allowdamage _value;ValueyD D dataD D typeD valueD typeBOOLD dataTypeObjectPositionInfoNE sideEmptyAttributesE idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesE lF positionL4Fk0B]FFanglestj?E texturesgm_olidisableSimulationE Attribute0E nAttributeslF propertyallowDamageexpression_this allowdamage _value;Value-F lF data=F lF typeYF valuelF typeBOOLlF dataTypeObjectPositionInfoG sideEmptyAttributes:G idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesjG H position24Fk0BEFangles"@:G texturesgm_olidisableSimulationjG Attribute0G nAttributes H propertyallowDamageexpression_this allowdamage _value;ValueG H dataG H type H value H typeBOOL H dataTypeObjectPositionInfoH sideEmptyAttributesH idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesI I position4Fk0BEFanglestj?H texturesgm_olidisableSimulationI Attribute0FI nAttributesI propertyallowDamageexpression_this allowdamage _value;ValueI I dataI I typeI valueI typeBOOLI dataTypeObjectPositionInfojJ sideEmptyAttributesJ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesJ K position4Fj0BPFangles"@J texturesgm_olidisableSimulationJ Attribute0J nAttributesK propertyallowDamageexpression_this allowdamage _value;ValueIK K dataYK K typeuK valueK typeBOOLK dataTypeObjectPositionInfoL sideEmptyAttributesVL idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesL S position4FBUFangles@=S createAsSimpleObject>S dataTypeObjectPositionInfoS sideEmptyAttributesS idtypeland_gm_euro_furniture_bed_02atlOffsetY@T position24FBv_Fangles@=S createAsSimpleObjectT dataTypeObjectPositionInfoT sideEmptyAttributesT idtypeland_gm_euro_furniture_bed_02atlOffsetY@T position4FB_Fangles@=T createAsSimpleObjectT dataTypeObjectPositionInfoU sideEmptyAttributesU idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesU V positionV4Fj0BUFangles"@U texturesgm_olidisableSimulationU Attribute0 V nAttributesV propertyallowDamageexpression_this allowdamage _value;ValueoV V dataV V typeV valueV typeBOOLV dataTypeObjectPositionInfoDW sideEmptyAttributes|W idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesW bX position4Fj0BUFanglestj?|W texturesgm_olidisableSimulationW Attribute0W nAttributesbX propertyallowDamageexpression_this allowdamage _value;Value#X bX data3X bX typeOX valuebX typeBOOLbX dataTypeObjectPositionInfoX sideEmptyAttributes0Y idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes`Y Z position4Fj0BFUFangles"@0Y texturesgm_olidisableSimulation`Y Attribute0Y nAttributesZ propertyallowDamageexpression_this allowdamage _value;ValueY Z dataY Z typeZ valueZ typeBOOLZ dataTypeObjectPositionInfoZ sideEmptyAttributesZ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes[ [ position}4Fj0BSUFanglestj?Z texturesgm_olidisableSimulation[ Attribute0<[ nAttributes[ propertyallowDamageexpression_this allowdamage _value;Value[ [ data[ [ type[ value[ typeBOOL[ dataTypeObjectPositionInfo`\ sideEmptyAttributes\ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes\ ~] positionc4Fj0BTFangles"@\ texturesgm_olidisableSimulation\ Attribute0\ nAttributes~] propertyallowDamageexpression_this allowdamage _value;Value?] ~] dataO] ~] typek] value~] typeBOOL~] dataTypeObjectPositionInfo^ sideEmptyAttributesL^ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes|^ 2_ position4Fj0BTFanglestj?L^ texturesgm_olidisableSimulation|^ Attribute0^ nAttributes2_ propertyallowDamageexpression_this allowdamage _value;Value^ 2_ data_ 2_ type_ value2_ typeBOOL2_ dataTypeObjectPositionInfo_ sideEmptyAttributes` idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes0` ` position4Fj0B_Fangles"@` texturesgm_olidisableSimulation0` Attribute0X` nAttributes` propertyallowDamageexpression_this allowdamage _value;Value` ` data` ` type` value` typeBOOL` dataTypeObjectPositionInfo|a sideEmptyAttributesa idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesa b position4Fj0B_Fanglestj?a texturesgm_olidisableSimulationa Attribute0 b nAttributesb propertyallowDamageexpression_this allowdamage _value;Value[b b datakb b typeb valueb typeBOOLb dataTypeObjectPositionInfo0c sideEmptyAttributeshc idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesc Nd position4Fj0B_Fangles"@hc texturesgm_olidisableSimulationc Attribute0c nAttributesNd propertyallowDamageexpression_this allowdamage _value;Valued Nd datad Nd type;d valueNd typeBOOLNd dataTypeObjectPositionInfod sideEmptyAttributese idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesLe f position 4Fj0B_Fanglestj?e texturesgm_olidisableSimulationLe Attribute0te nAttributesf propertyallowDamageexpression_this allowdamage _value;Valuee f datae f typee valuef typeBOOLf dataTypeObjectPositionInfof sideEmptyAttributesf idtypeland_gm_euro_furniture_bed_02atlOffsetY@f position4FBNFangles@=f createAsSimpleObjectf dataTypeObjectPositionInfoeg sideEmptyAttributesg idtypeland_gm_euro_furniture_bed_02atlOffsetY@g position64FB_OFangles@=g createAsSimpleObjectg dataTypeObjectPositionInfoCh sideEmptyAttributes{h idtypeland_gm_euro_furniture_bed_02atlOffsetY@h position4FBOFangles@={h createAsSimpleObjecth dataTypeObjectPositionInfo2i sideEmptyAttributesji idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesi Pj positionX4Fj0BOFangles"@ji texturesgm_olidisableSimulationi Attribute0i nAttributesPj propertyallowDamageexpression_this allowdamage _value;Valuej Pj data!j Pj type=j valuePj typeBOOLPj dataTypeObjectPositionInfoj sideEmptyAttributesk idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesNk l position٬4Fj0BOFanglestj?k texturesgm_olidisableSimulationNk Attribute0vk nAttributesl propertyallowDamageexpression_this allowdamage _value;Valuek l datak l typek valuel typeBOOLl dataTypeObjectPositionInfol sideEmptyAttributesl idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesm m position4Fj0B+OFangles"@l texturesgm_olidisableSimulationm Attribute0*m nAttributesm propertyallowDamageexpression_this allowdamage _value;Valueym m datam m typem valuem typeBOOLm dataTypeObjectPositionInfoNn sideEmptyAttributesn idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesn lo position~4Fj0B8OFanglestj?n texturesgm_olidisableSimulationn Attribute0n nAttributeslo propertyallowDamageexpression_this allowdamage _value;Value-o lo data=o lo typeYo valuelo typeBOOLlo dataTypeObjectPositionInfop sideEmptyAttributes:p idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesjp q positiond4Fj0BNFangles"@:p texturesgm_olidisableSimulationjp Attribute0p nAttributes q propertyallowDamageexpression_this allowdamage _value;Valuep q datap q type q value q typeBOOL q dataTypeObjectPositionInfoq sideEmptyAttributesq idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesr r position4Fj0BNFanglestj?q texturesgm_olidisableSimulationr Attribute0Fr nAttributesr propertyallowDamageexpression_this allowdamage _value;Valuer r datar r typer valuer typeBOOLr dataTypeObjectPositionInfoYs sideEmptyAttributess idtypeland_gm_euro_furniture_bed_02atlOffsetY@s position4FBYFangles@=s createAsSimpleObjects dataTypeObjectPositionInfo7t sideEmptyAttributesot idtypeland_gm_euro_furniture_bed_02atlOffsetY@t positionC4FB"ZFangles@=ot createAsSimpleObjectt dataTypeObjectPositionInfo&u sideEmptyAttributes^u idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesu Dv positionܯ4Fj0B!ZFangles"@^u texturesgm_olidisableSimulationu Attribute0u nAttributesDv propertyallowDamageexpression_this allowdamage _value;Valuev Dv datav Dv type1v valueDv typeBOOLDv dataTypeObjectPositionInfov sideEmptyAttributesw idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesBw w position^4Fj0B0ZFanglestj?w texturesgm_olidisableSimulationBw Attribute0jw nAttributesw propertyallowDamageexpression_this allowdamage _value;Valuew w dataw w typew valuew typeBOOLw dataTypeObjectPositionInfox sideEmptyAttributesx idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesx y position4Fj0BYFangles"@x texturesgm_olidisableSimulationx Attribute0y nAttributesy propertyallowDamageexpression_this allowdamage _value;Valuemy y data}y y typey valuey typeBOOLy dataTypeObjectPositionInfoBz sideEmptyAttributeszz idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesz `{ position4Fj0BYFanglestj?zz texturesgm_olidisableSimulationz Attribute0z nAttributes`{ propertyallowDamageexpression_this allowdamage _value;Value!{ `{ data1{ `{ typeM{ value`{ typeBOOL`{ dataTypeObjectPositionInfo{ sideEmptyAttributes.| idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes^| } position4Fj0B YFangles"@.| texturesgm_olidisableSimulation^| Attribute0| nAttributes} propertyallowDamageexpression_this allowdamage _value;Value| } data| } type} value} typeBOOL} dataTypeObjectPositionInfo} sideEmptyAttributes} idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes~ ~ positionj4Fj0B/YFanglestj?} texturesgm_olidisableSimulation~ Attribute0:~ nAttributes~ propertyallowDamageexpression_this allowdamage _value;Value~ ~ data~ ~ type~ value~ typeBOOL~ dataTypeObjectPositionInfoM sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position44FB_YFangles@= createAsSimpleObject dataTypeObjectPositionInfo+ sideEmptyAttributesc idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position~4FB@Fangles@=c createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesA idtypeland_gm_euro_furniture_bed_02atlOffsetY@b position4FBj@Fangles@=A createAsSimpleObjectb dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@@ position4FB@Fangles@= createAsSimpleObject@ dataTypeObjectPositionInfoւ sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes> position'4Fk0B@Fangles"@ texturesgm_olidisableSimulation> Attribute0f nAttributes propertyallowDamageexpression_this allowdamage _value;Value dataŃ type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes„ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes position4Fk0B@Fanglestj?„ texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valuei datay type value typeBOOL dataTypeObjectPositionInfo> sideEmptyAttributesv idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes \ position̶4Fk0B5@Fangles"@v texturesgm_olidisableSimulation Attribute0Ά nAttributes\ propertyallowDamageexpression_this allowdamage _value;Value \ data- \ typeI value\ typeBOOL\ dataTypeObjectPositionInfo sideEmptyAttributes* idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesZ  positionM4Fk0BC@Fanglestj?* texturesgm_olidisableSimulationZ Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valueш  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesމ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes Ċ position34Fk0B?Fangles"@މ texturesgm_olidisableSimulation Attribute06 nAttributesĊ propertyallowDamageexpression_this allowdamage _value;Value Ċ data Ċ type valueĊ typeBOOLĊ dataTypeObjectPositionInfoZ sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes‹ x position4Fk0B?Fanglestj? texturesgm_olidisableSimulation‹ Attribute0 nAttributesx propertyallowDamageexpression_this allowdamage _value;Value9 x dataI x typee valuex typeBOOLx dataTypeObjectPositionInfo sideEmptyAttributes5 idtypeland_gm_euro_furniture_bed_02atlOffsetY@V position4FBJFangles@=5 createAsSimpleObjectV dataTypeObjectPositionInfoۍ sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@4 position4FB-KFangles@= createAsSimpleObject4 dataTypeObjectPositionInfoʎ sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes2 position4Fk0B+KFangles"@ texturesgm_olidisableSimulation2 Attribute0Z nAttributes propertyallowDamageexpression_this allowdamage _value;Value data typeՏ value typeBOOL dataTypeObjectPositionInfo~ sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes position-4Fk0B9KFanglestj? texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value] datam type value typeBOOL dataTypeObjectPositionInfo2 sideEmptyAttributesj idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes P positionP4Fk0BJFangles"@j texturesgm_olidisableSimulation Attribute0’ nAttributesP propertyallowDamageexpression_this allowdamage _value;Value P data! P type= valueP typeBOOLP dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesN  positionҶ4Fk0BJFanglestj? texturesgm_olidisableSimulationN Attribute0v nAttributes propertyallowDamageexpression_this allowdamage _value;ValueŔ  dataՔ  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesҕ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes position4Fk0B+JFangles"@ҕ texturesgm_olidisableSimulation Attribute0* nAttributes propertyallowDamageexpression_this allowdamage _value;Valuey data type value typeBOOL dataTypeObjectPositionInfoN sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes l position94Fk0B8JFanglestj? texturesgm_olidisableSimulation Attribute0ޗ nAttributesl propertyallowDamageexpression_this allowdamage _value;Value- l data= l typeY valuel typeBOOLl dataTypeObjectPositionInfo sideEmptyAttributes) idtypeland_gm_euro_furniture_bed_02atlOffsetY@J position4FBhJFangles@=) createAsSimpleObjectJ dataTypeObjectPositionInfoߙ sideEmptyflagsAttributes idtypeland_gm_euro_furniture_picture_02atlOffsetx=8 position4FHjBFangles(M@ createAsSimpleObject8 dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position4FhʦBp Fangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesӛ idtypeland_gm_euro_furniture_bed_02atlOffsetY@ positionG4FhʦB Fangles@=ӛ createAsSimpleObject dataTypeObjectPositionInfoy sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@Ҝ position4FhʦB4 Fangles@= createAsSimpleObjectҜ dataTypeObjectPositionInfoW sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position?4FhʦBFangles@= createAsSimpleObject dataTypeObjectPositionInfo5 sideEmptyAttributesm idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position4FhʦB Fangles@=m createAsSimpleObject dataTypeObjectPositionInfo$ sideEmptyAttributes\ idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes B positionh4F8B3 Fangles"@\ texturesgm_olidisableSimulation Attribute0 nAttributesB propertyallowDamageexpression_this allowdamage _value;Value B data B type/ valueB typeBOOLB dataTypeObjectPositionInfoؠ sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes@ position4F8BB Fanglestj? texturesgm_olidisableSimulation@ Attribute0h nAttributes propertyallowDamageexpression_this allowdamage _value;Value dataǡ type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesĢ idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes position 4F8B Fangles"@Ģ texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valuek data{ type value typeBOOL dataTypeObjectPositionInfo@ sideEmptyAttributesx idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes ^ position4F8B Fanglestj?x texturesgm_olidisableSimulation Attribute0Ф nAttributes^ propertyallowDamageexpression_this allowdamage _value;Value ^ data/ ^ typeK value^ typeBOOL^ dataTypeObjectPositionInfo sideEmptyAttributes, idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes\  positiont4F8B3 Fangles"@, texturesgm_olidisableSimulation\ Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueӦ  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes ƨ position4F8B@ Fanglestj? texturesgm_olidisableSimulation Attribute08 nAttributesƨ propertyallowDamageexpression_this allowdamage _value;Value ƨ data ƨ type valueƨ typeBOOLƨ dataTypeObjectPositionInfo\ sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesĩ z position#4F8BFangles"@ texturesgm_olidisableSimulationĩ Attribute0 nAttributesz propertyallowDamageexpression_this allowdamage _value;Value; z dataK z typeg valuez typeBOOLz dataTypeObjectPositionInfo sideEmptyAttributesH id typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesx . position4F8BFanglestj?H texturesgm_olidisableSimulationx Attribute0 nAttributes. propertyallowDamageexpression_this allowdamage _value;Value . data . type value. typeBOOL. dataTypeObjectPositionInfoĬ sideEmptyAttributes id typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes, position4F8BFangles"@ texturesgm_olidisableSimulation, Attribute0T nAttributes propertyallowDamageexpression_this allowdamage _value;Value data typeϭ value typeBOOL dataTypeObjectPositionInfox sideEmptyAttributes id typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes position4F8B!Fanglestj? texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueW datag type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesS id typeland_gm_euro_furniture_bed_02atlOffsetY@t positionR4FhʦBQ7Fangles@=S createAsSimpleObjectt dataTypeObjectPositionInfo sideEmptyAttributes1 id typeland_gm_euro_furniture_bed_02atlOffsetY@R position4FhʦB7Fangles@=1 createAsSimpleObjectR dataTypeObjectPositionInfoױ sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@0 positiona4FhʦB8Fangles@= createAsSimpleObject0 dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position4FgʦBAFangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes˳ idtypeland_gm_euro_furniture_bed_02atlOffsetY@ positionY4FgʦBAFangles@=˳ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes position4F8B8Fangles"@ texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valuea dataq type value typeBOOL dataTypeObjectPositionInfo6 sideEmptyAttributesn idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes T position{4F8B"8Fanglestj?n texturesgm_olidisableSimulation Attribute0ƶ nAttributesT propertyallowDamageexpression_this allowdamage _value;Value T data% T typeA valueT typeBOOLT dataTypeObjectPositionInfo sideEmptyAttributes" idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesR  position4F8B~7Fangles"@" texturesgm_olidisableSimulationR Attribute0z nAttributes propertyallowDamageexpression_this allowdamage _value;Valueɸ  dataٸ  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesֹ idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes position 4F8B7Fanglestj?ֹ texturesgm_olidisableSimulation Attribute0. nAttributes propertyallowDamageexpression_this allowdamage _value;Value} data type value typeBOOL dataTypeObjectPositionInfoR sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes p position4F8B7Fangles"@ texturesgm_olidisableSimulation Attribute0 nAttributesp propertyallowDamageexpression_this allowdamage _value;Value1 p dataA p type] valuep typeBOOLp dataTypeObjectPositionInfo sideEmptyAttributes> idtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesn $ position4F8B"7Fanglestj?> texturesgm_olidisableSimulationn Attribute0 nAttributes$ propertyallowDamageexpression_this allowdamage _value;Value $ data $ type value$ typeBOOL$ dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes" ؿ position4F7BAFangles"@ texturesgm_olidisableSimulation" Attribute0J nAttributesؿ propertyallowDamageexpression_this allowdamage _value;Value ؿ data ؿ typeſ valueؿ typeBOOLؿ dataTypeObjectPositionInfon sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes position64F7BAFanglestj? texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueM data] typey value typeBOOL dataTypeObjectPositionInfo" sideEmptyAttributesZ idtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes @ position'4F7BAFangles"@Z texturesgm_olidisableSimulation Attribute0 nAttributes@ propertyallowDamageexpression_this allowdamage _value;Value @ data @ type- value@ typeBOOL@ dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes> position4F7BBFanglestj? texturesgm_olidisableSimulation> Attribute0f nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfoy sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position4FhʦB9Fangles@= createAsSimpleObject dataTypeObjectPositionInfoW sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ positionq4FhʦBFangles@= createAsSimpleObject dataTypeObjectPositionInfo5 sideEmptyAttributesm idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position4FhʦBFangles@=m createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesK idtypeland_gm_euro_furniture_bed_02atlOffsetY@l positiono4FhʦB#Fangles@=K createAsSimpleObjectl dataTypeObjectPositionInfo sideEmptyAttributes) idtypeland_gm_euro_furniture_bed_02atlOffsetY@J position4FhʦB$Fangles@=) createAsSimpleObjectJ dataTypeObjectPositionInfo sideEmptyAttributes id typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesH position4F8BFangles"@ texturesgm_olidisableSimulationH Attribute0p nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes id!typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes position4F8B Fanglestj? texturesgm_olidisableSimulation Attribute0$ nAttributes propertyallowDamageexpression_this allowdamage _value;Values data type value typeBOOL dataTypeObjectPositionInfoH sideEmptyAttributes id"typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes f position64F8BfFangles"@ texturesgm_olidisableSimulation Attribute0 nAttributesf propertyallowDamageexpression_this allowdamage _value;Value' f data7 f typeS valuef typeBOOLf dataTypeObjectPositionInfo sideEmptyAttributes4 id#typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesd  position4F8BsFanglestj?4 texturesgm_olidisableSimulationd Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes id$typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes position4F8BFangles"@ texturesgm_olidisableSimulation Attribute0@ nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfod sideEmptyAttributes id%typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes position4F8B Fanglestj? texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueC dataS typeo value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesP id&typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes 6 positionT4F8B#Fangles"@P texturesgm_olidisableSimulation Attribute0 nAttributes6 propertyallowDamageexpression_this allowdamage _value;Value 6 data 6 type# value6 typeBOOL6 dataTypeObjectPositionInfo sideEmptyAttributes id'typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes4 position4F8B#Fanglestj? texturesgm_olidisableSimulation4 Attribute0\ nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes id(typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes position4F8B$Fangles"@ texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value_ datao type value typeBOOL dataTypeObjectPositionInfo4 sideEmptyAttributesl id)typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes R positionF4F8B$Fanglestj?l texturesgm_olidisableSimulation Attribute0 nAttributesR propertyallowDamageexpression_this allowdamage _value;Value R data# R type? valueR typeBOOLR dataTypeObjectPositionInfo sideEmptyAttributes id*typeland_gm_euro_furniture_bed_02atlOffsetY@0 position4FhʦB2(Fangles@= createAsSimpleObject0 dataTypeObjectPositionInfo sideEmptyAttributes id+typeland_gm_euro_furniture_bed_02atlOffsetY@ position4FhʦB(Fangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes id,typeland_gm_euro_furniture_bed_02atlOffsetY@ position)4FhʦB(Fangles@= createAsSimpleObject dataTypeObjectPositionInfoq sideEmptyAttributes id-typeland_gm_euro_furniture_bed_02atlOffsetY@ position4FhʦB2Fangles@= createAsSimpleObject dataTypeObjectPositionInfoO sideEmptyAttributes id.typeland_gm_euro_furniture_bed_02atlOffsetY@ position'4FhʦB2Fangles@= createAsSimpleObject dataTypeObjectPositionInfo> sideEmptyAttributesv id/typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes \ position4F8B(Fangles"@v texturesgm_olidisableSimulation Attribute0 nAttributes\ propertyallowDamageexpression_this allowdamage _value;Value \ data- \ typeI value\ typeBOOL\ dataTypeObjectPositionInfo sideEmptyAttributes* id0typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesZ  positionE4F8B)Fanglestj?* texturesgm_olidisableSimulationZ Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes id1typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes positioni4F8B_(Fangles"@ texturesgm_olidisableSimulation Attribute06 nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfoZ sideEmptyAttributes id2typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes x position4F8Bl(Fanglestj? texturesgm_olidisableSimulation Attribute0 nAttributesx propertyallowDamageexpression_this allowdamage _value;Value9 x dataI x typee valuex typeBOOLx dataTypeObjectPositionInfo sideEmptyAttributesF id3typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesv , position4F8B'Fangles"@F texturesgm_olidisableSimulationv Attribute0 nAttributes, propertyallowDamageexpression_this allowdamage _value;Value , data , type value, typeBOOL, dataTypeObjectPositionInfo sideEmptyAttributes id4typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes* positionQ4F8B(Fanglestj? texturesgm_olidisableSimulation* Attribute0R nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfov sideEmptyAttributes id5typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes position4F8B2Fangles"@ texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueU datae type value typeBOOL dataTypeObjectPositionInfo* sideEmptyAttributesb id6typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes H position4F8B2Fanglestj?b texturesgm_olidisableSimulation Attribute0 nAttributesH propertyallowDamageexpression_this allowdamage _value;Value H data H type5 valueH typeBOOLH dataTypeObjectPositionInfo sideEmptyAttributes id7typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesF position4F8B2Fangles"@ texturesgm_olidisableSimulationF Attribute0n nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes id8typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes positionx4F8B 3Fanglestj? texturesgm_olidisableSimulation Attribute0" nAttributes propertyallowDamageexpression_this allowdamage _value;Valueq data type value typeBOOL dataTypeObjectPositionInfo5 sideEmptyAttributesm id9typeland_gm_euro_furniture_bed_02atlOffsetY@ position}4FgʦB!FFangles@=m createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesK id:typeland_gm_euro_furniture_bed_02atlOffsetY@l position4FgʦBFFangles@=K createAsSimpleObjectl dataTypeObjectPositionInfo sideEmptyAttributes) id;typeland_gm_euro_furniture_bed_02atlOffsetY@J position4FgʦBFFangles@=) createAsSimpleObjectJ dataTypeObjectPositionInfo sideEmptyAttributes id<typeland_gm_euro_furniture_bed_02atlOffsetY@( position4FgʦBPFangles@= createAsSimpleObject( dataTypeObjectPositionInfo sideEmptyAttributes id=typeland_gm_euro_furniture_bed_02atlOffsetY@ position4FgʦBPFangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes id>typegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes position&4F7BFFangles"@ texturesgm_olidisableSimulation Attribute0, nAttributes propertyallowDamageexpression_this allowdamage _value;Value{ data type value typeBOOL dataTypeObjectPositionInfoP sideEmptyAttributes id?typegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes n position4F7BFFanglestj? texturesgm_olidisableSimulation Attribute0 nAttributesn propertyallowDamageexpression_this allowdamage _value;Value/ n data? n type[ valuen typeBOOLn dataTypeObjectPositionInfo sideEmptyAttributes< id@typegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributesl " position4F7BNFFangles"@< texturesgm_olidisableSimulationl Attribute0 nAttributes" propertyallowDamageexpression_this allowdamage _value;Value " data " type value" typeBOOL" dataTypeObjectPositionInfo sideEmptyAttributes idAtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes positionL4F7B]FFanglestj? texturesgm_olidisableSimulation Attribute0H nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfol sideEmptyAttributes idBtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes position24F7BEFangles"@ texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueK data[ typew value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesX idCtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes > position4F7BEFanglestj?X texturesgm_olidisableSimulation Attribute0 nAttributes> propertyallowDamageexpression_this allowdamage _value;Value > data > type+ value> typeBOOL> dataTypeObjectPositionInfo sideEmptyAttributes idDtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes< position4F7BPFangles"@ texturesgm_olidisableSimulation< Attribute0d nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idEtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes  positiong4F7BPFanglestj? texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valueg  dataw  type value typeBOOL dataTypeObjectPositionInfo< sideEmptyAttributest idFtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes Z positionX4F7BPFangles"@t texturesgm_olidisableSimulation Attribute0 nAttributesZ propertyallowDamageexpression_this allowdamage _value;Value Z data+ Z typeG valueZ typeBOOLZ dataTypeObjectPositionInfo sideEmptyAttributes( idGtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesX  position4F7BPFanglestj?( texturesgm_olidisableSimulationX Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idHtypeland_gm_euro_furniture_bed_02atlOffsetY@ position4FgʦBUFangles@= createAsSimpleObject dataTypeObjectPositionInfoq sideEmptyAttributes idItypeland_gm_euro_furniture_bed_02atlOffsetY@ position54FgʦB{UFangles@= createAsSimpleObject dataTypeObjectPositionInfoO sideEmptyAttributes idJtypeland_gm_euro_furniture_bed_02atlOffsetY@ position4FgʦBUFangles@= createAsSimpleObject dataTypeObjectPositionInfo- sideEmptyAttributese idKtypeland_gm_euro_furniture_bed_02atlOffsetY@ position24FgʦBv_Fangles@=e createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesC idLtypeland_gm_euro_furniture_bed_02atlOffsetY@d position4FgʦB_Fangles@=C createAsSimpleObjectd dataTypeObjectPositionInfo sideEmptyAttributes2 idMtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesb  positionV4F7BUFangles"@2 texturesgm_olidisableSimulationb Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idNtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes position4F7BUFanglestj? texturesgm_olidisableSimulation Attribute0> nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfob sideEmptyAttributes idOtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes  position4F7BFUFangles"@ texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueA  dataQ  typem value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesN idPtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes~ 4 position}4F7BSUFanglestj?N texturesgm_olidisableSimulation~ Attribute0 nAttributes4 propertyallowDamageexpression_this allowdamage _value;Value 4 data 4 type! value4 typeBOOL4 dataTypeObjectPositionInfo sideEmptyAttributes idQtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes2  positionc4F7BTFangles"@ texturesgm_olidisableSimulation2 Attribute0Z nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo~ sideEmptyAttributes idRtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes  position4F7BTFanglestj? texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value]  datam  type value typeBOOL dataTypeObjectPositionInfo2 sideEmptyAttributesj idStypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes P position4F7B_Fangles"@j texturesgm_olidisableSimulation Attribute0 nAttributesP propertyallowDamageexpression_this allowdamage _value;Value P data! P type= valueP typeBOOLP dataTypeObjectPositionInfo sideEmptyAttributes idTtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributesN  position4F7B_Fanglestj? texturesgm_olidisableSimulationN Attribute0v nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idUtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes  position4F7B_Fangles"@ texturesgm_olidisableSimulation Attribute0* nAttributes propertyallowDamageexpression_this allowdamage _value;Valuey  data  type value typeBOOL dataTypeObjectPositionInfoN sideEmptyAttributes idVtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes l position 4F7B_Fanglestj? texturesgm_olidisableSimulation Attribute0 nAttributesl propertyallowDamageexpression_this allowdamage _value;Value- l data= l typeY valuel typeBOOLl dataTypeObjectPositionInfo sideEmptyAttributes) idWtypeland_gm_euro_furniture_bed_02atlOffsetY@J position4FgʦBNFangles@=) createAsSimpleObjectJ dataTypeObjectPositionInfo sideEmptyAttributes idXtypeland_gm_euro_furniture_bed_02atlOffsetY@( position64FgʦB_OFangles@= createAsSimpleObject( dataTypeObjectPositionInfo sideEmptyAttributes idYtypeland_gm_euro_furniture_bed_02atlOffsetY@ position4FgʦBOFangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes idZtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes  positionX4F7BOFangles"@ texturesgm_olidisableSimulation Attribute0, nAttributes propertyallowDamageexpression_this allowdamage _value;Value{  data  type value typeBOOL dataTypeObjectPositionInfoP sideEmptyAttributes id[typegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes n position٬4F7BOFanglestj? texturesgm_olidisableSimulation Attribute0 nAttributesn propertyallowDamageexpression_this allowdamage _value;Value/ n data? n type[ valuen typeBOOLn dataTypeObjectPositionInfo! sideEmptyAttributes' position4F7BNFanglestj?X& texturesgm_olidisableSimulation& Attribute0& nAttributes>' propertyallowDamageexpression_this allowdamage _value;Value& >' data' >' type+' value>' typeBOOL>' dataTypeObjectPositionInfo' sideEmptyAttributes' id`typeland_gm_euro_furniture_bed_02atlOffsetY@( position4FgʦBYFangles@=' createAsSimpleObject( dataTypeObjectPositionInfo( sideEmptyAttributes( idatypeland_gm_euro_furniture_bed_02atlOffsetY@( positionC4FgʦB"ZFangles@=( createAsSimpleObject( dataTypeObjectPositionInfo) sideEmptyAttributes) idbtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes) * positionܯ4F7B!ZFangles"@) texturesgm_olidisableSimulation) Attribute0 * nAttributes* propertyallowDamageexpression_this allowdamage _value;Valueo* * data* * type* value* typeBOOL* dataTypeObjectPositionInfoD+ sideEmptyAttributes|+ idctypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes+ b, position^4F7B0ZFanglestj?|+ texturesgm_olidisableSimulation+ Attribute0+ nAttributesb, propertyallowDamageexpression_this allowdamage _value;Value#, b, data3, b, typeO, valueb, typeBOOLb, dataTypeObjectPositionInfo, sideEmptyAttributes0- iddtypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes`- . position4F7BYFangles"@0- texturesgm_olidisableSimulation`- Attribute0- nAttributes. propertyallowDamageexpression_this allowdamage _value;Value- . data- . type. value. typeBOOL. dataTypeObjectPositionInfo. sideEmptyAttributes. idetypegm_AmmoBox_wood_03_emptyatlOffset NG@CustomAttributes/ / position4F7BYFanglestj?. texturesgm_olidisableSimulation/ Attribute0 sideEmptyAttributesH> idptypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributesx> .? position34F7B?Fangles"@H> texturesgm_olidisableSimulationx> Attribute0> nAttributes.? propertyallowDamageexpression_this allowdamage _value;Value> .? data> .? type? value.? typeBOOL.? dataTypeObjectPositionInfo? sideEmptyAttributes? idqtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes,@ @ position4F7B?Fanglestj?? texturesgm_olidisableSimulation,@ Attribute0T@ nAttributes@ propertyallowDamageexpression_this allowdamage _value;Value@ @ data@ @ type@ value@ typeBOOL@ dataTypeObjectPositionInfogA sideEmptyAttributesA idrtypeland_gm_euro_furniture_bed_02atlOffsetY@A position4FgʦBJFangles@=A createAsSimpleObjectA dataTypeObjectPositionInfoEB sideEmptyAttributes}B idstypeland_gm_euro_furniture_bed_02atlOffsetY@B position4FgʦB-KFangles@=}B createAsSimpleObjectB dataTypeObjectPositionInfo4C sideEmptyAttributeslC idttypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributesC RD position4F7B+KFangles"@lC texturesgm_olidisableSimulationC Attribute0C nAttributesRD propertyallowDamageexpression_this allowdamage _value;ValueD RD data#D RD type?D valueRD typeBOOLRD dataTypeObjectPositionInfoD sideEmptyAttributes E idutypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributesPE F position-4F7B9KFanglestj? E texturesgm_olidisableSimulationPE Attribute0xE nAttributesF propertyallowDamageexpression_this allowdamage _value;ValueE F dataE F typeE valueF typeBOOLF dataTypeObjectPositionInfoF sideEmptyAttributesF idvtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributesG G positionP4F7BJFangles"@F texturesgm_olidisableSimulationG Attribute0,G nAttributesG propertyallowDamageexpression_this allowdamage _value;Value{G G dataG G typeG valueG typeBOOLG dataTypeObjectPositionInfoPH sideEmptyAttributesH idwtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributesH nI positionҶ4F7BJFanglestj?H texturesgm_olidisableSimulationH Attribute0H nAttributesnI propertyallowDamageexpression_this allowdamage _value;Value/I nI data?I nI type[I valuenI typeBOOLnI dataTypeObjectPositionInfoJ sideEmptyAttributesh idtypegm_AmmoBox_wood_03_emptyatlOffset`W@CustomAttributesnh $i position-4F7BnFanglestj?>h texturesgm_olidisableSimulationnh Attribute0h nAttributes$i propertyallowDamageexpression_this allowdamage _value;Valueh $i datah $i typei value$i typeBOOL$i dataTypeObjectPositionInfoi sideEmptyAttributesi idtypegm_AmmoBox_wood_03_emptyatlOffset`W@CustomAttributes"j j positionQ4F7BFangles"@i texturesgm_olidisableSimulation"j Attribute0Jj nAttributesj propertyallowDamageexpression_this allowdamage _value;Valuej j dataj j typej valuej typeBOOLj dataTypeObjectPositionInfonk sideEmptyAttributesk idtypegm_AmmoBox_wood_03_emptyatlOffset`W@CustomAttributesk l positionѯ4F7BFanglestj?k texturesgm_olidisableSimulationk Attribute0k nAttributesl propertyallowDamageexpression_this allowdamage _value;ValueMl l data]l l typeyl valuel typeBOOLl dataTypeObjectPositionInfo"m sideEmptyAttributesZm idtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributesm @n position4F7B^Fangles"@Zm texturesgm_olidisableSimulationm Attribute0m nAttributes@n propertyallowDamageexpression_this allowdamage _value;Valuen @n datan @n type-n value@n typeBOOL@n dataTypeObjectPositionInfon sideEmptyAttributeso idtypegm_AmmoBox_wood_03_emptyatlOffsetNG@CustomAttributes>o o position:4F7BlFanglestj?o texturesgm_olidisableSimulation>o Attribute0fo nAttributeso propertyallowDamageexpression_this allowdamage _value;Valueo o datao o typeo valueo typeBOOLo dataTypeObjectPositionInfoyp sideEmptyAttributesp idtypeland_gm_euro_furniture_bed_02atlOffsetY@p position4FhʦBFangles@=p createAsSimpleObjectp dataTypeObjectPositionInfoWq sideEmptyAttributesq idtypeland_gm_euro_furniture_bed_02atlOffsetY@q position4FhʦBe%Fangles@=q createAsSimpleObjectq dataTypeObjectPositionInfo5r sideEmptyAttributesmr idtypeland_gm_euro_furniture_bed_02atlOffset"@r position4FhʦB%Fangles@=mr createAsSimpleObjectr dataTypeObjectPositionInfo$s sideEmptyAttributes\s idtypegm_AmmoBox_wood_03_emptyatlOffset @CustomAttributess Bt position14F8B%Fangles"@\s texturesgm_olidisableSimulations Attribute0s nAttributesBt propertyallowDamageexpression_this allowdamage _value;Valuet Bt datat Bt type/t valueBt typeBOOLBt dataTypeObjectPositionInfot sideEmptyAttributesu idtypegm_AmmoBox_wood_03_emptyatlOffset @CustomAttributes@u u position4F8B%Fanglestj?u texturesgm_olidisableSimulation@u Attribute0hu nAttributesu propertyallowDamageexpression_this allowdamage _value;Valueu u datau u typeu valueu typeBOOLu dataTypeObjectPositionInfov sideEmptyAttributesv idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesv w positionײ4F8B/%Fangles"@v texturesgm_olidisableSimulationv Attribute0w nAttributesw propertyallowDamageexpression_this allowdamage _value;Valuekw w data{w w typew valuew typeBOOLw dataTypeObjectPositionInfo@x sideEmptyAttributesxx idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributesx ^y positionX4F8B=%Fanglestj?xx texturesgm_olidisableSimulationx Attribute0x nAttributes^y propertyallowDamageexpression_this allowdamage _value;Valuey ^y data/y ^y typeKy value^y typeBOOL^y dataTypeObjectPositionInfoy sideEmptyAttributesz idtypeland_gm_euro_furniture_bed_02atlOffsetY@ Item67! Item68 Item69 Item70 Item71] Item72 Item73 Item74 dataTypeObjectPositionInfo sideEmptyAttributesS idtypeland_gm_euro_furniture_desk_01atlOffset @t position14F~B0-Fangles@=S createAsSimpleObjectt dataTypeObjectPositionInfo sideEmptyAttributes2 idtypeland_gm_euro_furniture_desk_01atlOffsetY@S positionH4F~B4Fangles@=2 createAsSimpleObjectS dataTypeObjectPositionInfoڔ sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffset @3 position 4FBn,FangleszP@ createAsSimpleObject3 dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffsetY@ positionX4FB3FanglesWH@ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesі idtypeland_gm_euro_furniture_book_01atlOffset \? position}4FFB,Fangles9J@і createAsSimpleObject dataTypeObjectPositionInfo{ sideEmptyflagsAttributes idtypeland_gm_euro_furniture_lampfixture_03ԗ position4FB~-Fangles@ createAsSimpleObjectԗ dataTypeObjectPositionInfo_ sideEmptyAttributes idtypeland_gm_euro_furniture_newspaper_01atlOffset< positions4FB,FanglesPX> createAsSimpleObject dataTypeObjectPositionInfo@ sideEmptyflagsAttributesx idtypeland_gm_euro_furniture_typewriter_01 position٩4F3B,Fangles=x createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesX idtypeland_gm_euro_furniture_clock_01atlOffset 6@y position4F\B/Fangles"@X createAsSimpleObjecty dataTypeObjectPositionInfo sideEmptyAttributes8 idtypeland_gm_euro_furniture_shelf_09atlOffsetY@Y position<4F~B(,Fanglestj?8 createAsSimpleObjectY dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_shelf_09atlOffsetY@9 positiona4F~B(-Fanglestj? createAsSimpleObject9 dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_furniture_telephone_01 positionڧ4FB,Fangles@ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyflagsAttributesٝ idtypeland_gm_euro_furniture_typewriter_01 position24F3BZ4Fangles@=ٝ createAsSimpleObject dataTypeObjectPositionInfor sideEmptyAttributes idtypeLeaflet_05_New_FatlOffsetb>˞ position4F4B4Fangles@= createAsSimpleObject˞ dataTypeObjectPositionInfoT sideEmptyflagsAttributes idtypeland_gm_euro_furniture_lampfixture_03 positionĬ4FBx4Fangles@ createAsSimpleObject dataTypeObjectPositionInfo4 sideEmptyflagsAttributesl idtypeland_gm_euro_furniture_telephone_01 position4FB4Fangles»@l createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesG idtypeLand_FlowerPot_01_Flower_FatlOffsetY@h position4FBj4Fangles"@G createAsSimpleObjecth dataTypeObjectPositionInfo sideEmptyflagsAttributes" idtypeLand_Notepad_FatlOffset9C position]4FzB/4Fanglesʃ@" createAsSimpleObjectC dataTypeObjectPositionInfo sideEmptyAttributes idtypeLand_PencilYellow_FatlOffset< positionj4FB$4FanglesH@ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyflagsAttributesϣ idtypeLand_File1_FatlOffset9 position!4F:B4FanglesP`@ϣ createAsSimpleObject dataTypeObjectPositionInfoz sideEmptyAttributes idtypeland_gm_euro_furniture_radiator_01atlOffset@@Ӥ position÷4FB6Fangles@= createAsSimpleObjectӤ dataTypeObjectPositionInfoU sideEmptyAttributes idtypeLand_FlowerPot_01_Flower_FatlOffsetY@ position 4FBG0Fangles? createAsSimpleObject dataTypeObjectPositionInfo4 sideEmptyflagsAttributesl idtypeLeaflet_05_Stack_FatlOffset9 positionW4FաB-Fanglesz~^@l createAsSimpleObject dataTypeObjectPositionInfo# sideEmptyAttributes[ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes A positionj4Fk0Bd)Fanglestj?[ texturesgm_olidisableSimulation Attribute0 nAttributesA propertyallowDamageexpression_this allowdamage _value;Value A data A type. valueA typeBOOLA dataTypeObjectPositionInfoƨ sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@ position54FB)Fangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes Ӫ position4Fk0BW)Fangles"@ texturesgm_olidisableSimulation Attribute0E nAttributesӪ propertyallowDamageexpression_this allowdamage _value;Value Ӫ data Ӫ type valueӪ typeBOOLӪ dataTypeObjectPositionInfoY sideEmptyAttributes idtypeland_gm_euro_furniture_desk_01atlOffsetY@ position4F~B:Fangles@= createAsSimpleObject dataTypeObjectPositionInfo8 sideEmptyAttributesp idtypeland_gm_euro_furniture_desk_01atlOffsetY@ position4F~B%Fangles@=p createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesP idtypeland_gm_euro_furniture_chair_04atlOffsetY@q position٧4FBxFangleszP@P createAsSimpleObjectq dataTypeObjectPositionInfo sideEmptyAttributes0 idtypeland_gm_euro_furniture_chair_04atlOffsetY@Q position'4FB$FanglesWH@0 createAsSimpleObjectQ dataTypeObjectPositionInfo׮ sideEmptyAttributes idtypeland_gm_euro_furniture_book_01atlOffset \?0 position4FFBFanglesr@ createAsSimpleObject0 dataTypeObjectPositionInfoɯ sideEmptyflagsAttributes idtypeland_gm_euro_furniture_lampfixture_03atlOffset>" position4F~BCFangles@ createAsSimpleObject" dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_furniture_newspaper_01 position4FBFangles⟟@ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyflagsAttributes± idtypeland_gm_euro_furniture_typewriter_01 position4F3BFangles2=± createAsSimpleObject dataTypeObjectPositionInfoj sideEmptyAttributes idtypeland_gm_euro_furniture_clock_01atlOffset@ò position4F\B Fangles"@ createAsSimpleObjectò dataTypeObjectPositionInfoJ sideEmptyAttributes idtypeland_gm_euro_furniture_shelf_09atlOffsetY@ position 4F~B2Fanglestj? createAsSimpleObject dataTypeObjectPositionInfo* sideEmptyAttributesb idtypeland_gm_euro_furniture_shelf_09atlOffsetY@ position/4F~B2Fanglestj?b createAsSimpleObject dataTypeObjectPositionInfo sideEmptyflagsAttributesB idtypeland_gm_euro_furniture_telephone_01c position&4FBFangles >B createAsSimpleObjectc dataTypeObjectPositionInfo sideEmptyflagsAttributes# idtypeland_gm_euro_furniture_typewriter_01D position4F3Bf%Fangles$=# createAsSimpleObjectD dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeLeaflet_05_New_F position4FB%Fangles~=@ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyflagsAttributesҷ idtypeland_gm_euro_furniture_lampfixture_03 position4FBA&FanglesXq@ҷ createAsSimpleObject dataTypeObjectPositionInfoz sideEmptyflagsAttributes idtypeland_gm_euro_furniture_telephone_01Ӹ position4FB$Fanglese ? createAsSimpleObjectӸ dataTypeObjectPositionInfoU sideEmptyAttributes idtypeLand_FlowerPot_01_Flower_FatlOffset? positionc4FBt%Fangles q> createAsSimpleObject dataTypeObjectPositionInfo8 sideEmptyAttributesp idtypeland_gm_euro_furniture_radiator_01atlOffset`@ position4FB'Fangles@=p createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesK idtypeLand_FlowerPot_01_Flower_FatlOffsetY@l positionټ4FBQ!Fangles@K createAsSimpleObjectl dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeLeaflet_05_Stack_F; positiony4FsաBQFangles? createAsSimpleObject; dataTypeObjectPositionInfoѼ sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes9 positionE4Fk0BFanglestj? texturesgm_olidisableSimulation9 Attribute0a nAttributes propertyallowDamageexpression_this allowdamage _value;Value data typeܽ value typeBOOL dataTypeObjectPositionInfot sideEmptyAttributes idtypeland_gm_euro_furniture_bed_02atlOffsetY@; position4FBFangles@= createAsSimpleObject; dataTypeObjectPositionInfoc sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes˿ positionû4Fk0BFangles"@ texturesgm_olidisableSimulation˿ Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueB dataR typen value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes? idtypeland_gm_euro_furniture_desk_01atlOffsetY@` positionϥ4F~BEFangles@=? createAsSimpleObject` dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_desk_01atlOffsetY@? position4F~BFangles@= createAsSimpleObject? dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffsetY@ position4FBFangleszP@ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffsetY@ position4FBFanglesWH@ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_furniture_book_01 position4FGBHFangles? createAsSimpleObject dataTypeObjectPositionInfoc sideEmptyflagsAttributes idtypeland_gm_euro_furniture_lampfixture_03 position4FBFangles@ createAsSimpleObject dataTypeObjectPositionInfoC sideEmptyAttributes{ idtypeland_gm_euro_furniture_clock_01atlOffsetP?@ position4F\BFangles"@{ createAsSimpleObject dataTypeObjectPositionInfo# sideEmptyAttributes[ idtypeland_gm_euro_furniture_shelf_09atlOffsetY@| positionڹ4F~B=Fanglestj?[ createAsSimpleObject| dataTypeObjectPositionInfo sideEmptyAttributes; idtypeland_gm_euro_furniture_shelf_09atlOffsetY@\ position4F~B<Fanglestj?; createAsSimpleObject\ dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_furniture_telephone_01< position4FB!Fangles position4FBFangles @ createAsSimpleObject> dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_radiator_01atlOffset@! positiona4FBFangles@= createAsSimpleObject! dataTypeObjectPositionInfo sideEmptyAttributes idtypeLand_FlowerPot_01_Flower_FatlOffsetaF@ positionѺ4FBDFanglesT&q@ createAsSimpleObject dataTypeObjectPositionInfor sideEmptyflagsAttributes idtypeLeaflet_05_Stack_F positionl4FsաB#Fangles? createAsSimpleObject dataTypeObjectPositionInfoa sideEmptyAttributes idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes  position 4Fk0By Fanglestj? texturesgm_olidisableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value@  dataP  typel value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes< idtypeland_gm_euro_furniture_bed_02atlOffsetY@] positionӸ4FB Fangles@=< createAsSimpleObject] dataTypeObjectPositionInfo sideEmptyAttributes+ idtypegm_AmmoBox_wood_03_emptyatlOffsetW@CustomAttributes[  position4Fk0Bk Fangles"@+ texturesgm_olidisableSimulation[ Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_furniture_typewriter_01 position4F3BFangles@= createAsSimpleObject dataTypeObjectPositionInfoj sideEmptyAttributes idtypeLeaflet_05_New_FatlOffsetb> position4F4BjFangles@= createAsSimpleObject dataTypeObjectPositionInfo9 sideEmptyflagsAttributesq idtypeLeaflet_05_Stack_F positionR4FsաB,Fangles@q createAsSimpleObject dataTypeLayernameKitchen & CafeteriaEntities idatlOffset@?TJ HitemsGItem0G Item1 Item2 Item3H Item4 Item5 Item6I Item7 Item8 Item9J Item10 Item11 Item12K Item13 Item14 Item15L Item16 Item17 Item18M Item19 Item20 Item21N Item22 Item23 Item24O Item25 Item26 Item27P Item28 Item29 Item30Q Item311 Item32 Item33 Item34 Item35 Item36S Item37 Item38 Item39! Item40 Item41 Item42Q Item43 Item44 Item45! Item46T# Item47% Item48& Item49p( Item50$* Item51+ Item52- Item53@/ Item54'0 Item551 Item563 Item57C5 Item586 Item598 Item60_: Item61< Item62< Item63= Item64p? Item65A Item66A Item67C Item68;E Item69F Item70H TJ dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_07atlOffset?CustomAttributes< positionq4FB Fangles"@ disableSimulation< Attribute0d nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_06atlOffsetn?CustomAttributes positionU4FB Fangles"@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value^ datan type value typeBOOL dataTypeObjectPositionInfo< sideEmptyflagsAttributest idtypeland_gm_euro_bench_06atlOffset?CustomAttributes H position4FB Fangles"@t disableSimulation Attribute0 nAttributesH propertyallowDamageexpression_this allowdamage _value;Value H data H type5 valueH typeBOOLH dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_07atlOffset?CustomAttributes= position4FBFangles"@ disableSimulation= Attribute0e nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_06atlOffset,?CustomAttributes position4FBFangles"@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value_ datao type value typeBOOL dataTypeObjectPositionInfo= sideEmptyflagsAttributesu idtypeland_gm_euro_bench_06atlOffset?CustomAttributes I position4FB@Fangles"@u disableSimulation Attribute0 nAttributesI propertyallowDamageexpression_this allowdamage _value;Value I data I type6 valueI typeBOOLI dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_07atlOffset?CustomAttributes> position4FB~Fangles"@ disableSimulation> Attribute0f nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_06atlOffset?CustomAttributes positionw4FBFangles"@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Value` datap type value typeBOOL dataTypeObjectPositionInfo> sideEmptyflagsAttributesv idtypeland_gm_euro_bench_06atlOffsetz?CustomAttributes J position4FB>Fangles"@v disableSimulation Attribute0 nAttributesJ propertyallowDamageexpression_this allowdamage _value;Value J data J type7 valueJ typeBOOLJ dataTypeObjectPositionInfo sideEmptyflagsAttributes! idtypeland_gm_euro_bench_07atlOffset?CustomAttributes? position|4FBZ Fangles"@! disableSimulation? Attribute0g nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_06atlOffset?CustomAttributes position`4FB Fangles"@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valuea dataq type value typeBOOL dataTypeObjectPositionInfo? sideEmptyflagsAttributesw idtypeland_gm_euro_bench_06atlOffsetr?CustomAttributes K position4FB Fangles"@w disableSimulation Attribute0 nAttributesK propertyallowDamageexpression_this allowdamage _value;Value K data K type8 valueK typeBOOLK dataTypeObjectPositionInfo sideEmptyflagsAttributes" idtypeland_gm_euro_bench_07atlOffsetw?CustomAttributes@ position4FBFangles"@" disableSimulation@ Attribute0h nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_06atlOffset@?CustomAttributes position4FBXFangles"@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valueb datar type value typeBOOL dataTypeObjectPositionInfo@ sideEmptyflagsAttributesx idtypeland_gm_euro_bench_06atlOffset7?CustomAttributes L position$4FBFangles"@x disableSimulation Attribute0 nAttributesL propertyallowDamageexpression_this allowdamage _value;Value L data L type9 valueL typeBOOLL dataTypeObjectPositionInfo sideEmptyflagsAttributes# idtypeland_gm_euro_bench_07atlOffsetN?CustomAttributesA position4FBFangles"@# disableSimulationA Attribute0i nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_06atlOffset@?CustomAttributes position4FBFangles"@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valuec datas type value typeBOOL dataTypeObjectPositionInfoA sideEmptyflagsAttributesy idtypeland_gm_euro_bench_06atlOffset?CustomAttributes M position4FByFangles"@y disableSimulation Attribute0 nAttributesM propertyallowDamageexpression_this allowdamage _value;Value M data M type: valueM typeBOOLM dataTypeObjectPositionInfo sideEmptyflagsAttributes$ idtypeland_gm_euro_bench_07atlOffset?CustomAttributesB position.4FBxFangles"@$ disableSimulationB Attribute0j nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes id typeland_gm_euro_bench_06atlOffsetZ?CustomAttributes position4FBFangles"@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valued datat type value typeBOOL dataTypeObjectPositionInfoB sideEmptyflagsAttributesz id typeland_gm_euro_bench_06atlOffset?CustomAttributes N positionK4FB6Fangles"@z disableSimulation Attribute0 nAttributesN propertyallowDamageexpression_this allowdamage _value;Value N data N type; valueN typeBOOLN dataTypeObjectPositionInfo sideEmptyflagsAttributes% id typeland_gm_euro_bench_07atlOffset?CustomAttributesC position4FBu"Fangles"@% disableSimulationC Attribute0k nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes id typeland_gm_euro_bench_06atlOffset?CustomAttributes  position4FB!Fangles"@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valuee  datau  type value typeBOOL dataTypeObjectPositionInfoC sideEmptyflagsAttributes{ id typeland_gm_euro_bench_06atlOffset\?CustomAttributes O position4FB4#Fangles"@{ disableSimulation Attribute0 nAttributesO propertyallowDamageexpression_this allowdamage _value;Value O data  O type< valueO typeBOOLO dataTypeObjectPositionInfo sideEmptyflagsAttributes& idtypeland_gm_euro_bench_07atlOffset@?CustomAttributesD  position4FBPFangles"@& disableSimulationD Attribute0l nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_06atlOffset@r?CustomAttributes  position4FBFangles"@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valuef  datav  type value typeBOOL dataTypeObjectPositionInfoD sideEmptyflagsAttributes| idtypeland_gm_euro_bench_06atlOffset@?CustomAttributes P position4FBFangles"@| disableSimulation Attribute0 nAttributesP propertyallowDamageexpression_this allowdamage _value;Value P data! P type= valueP typeBOOLP dataTypeObjectPositionInfo sideEmptyflagsAttributes' idtypeland_gm_euro_bench_07atlOffset?CustomAttributesE position94FB Fangles"@' disableSimulationE Attribute0m nAttributes propertyallowDamageexpression_this allowdamage _value;Value data type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_bench_06atlOffset?CustomAttributes position4FBMFangles"@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valueg dataw type value typeBOOL dataTypeObjectPositionInfoE sideEmptyflagsAttributes} idtypeland_gm_euro_bench_06atlOffset?CustomAttributes Q positionV4FBFangles"@} disableSimulation Attribute0 nAttributesQ propertyallowDamageexpression_this allowdamage _value;Value Q data" Q type> valueQ typeBOOLQ dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_table_02atlOffset@O?1 position4F%B'Fangles"@ createAsSimpleObject1 dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_table_02atlOffset@? position44F%B)Fangles"@ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_table_02atlOffset@J? positionv4F%B{+Fangles"@ createAsSimpleObject dataTypeObjectPositionInfox sideEmptyAttributes idtypeland_gm_euro_furniture_table_02atlOffset? position4F%B;-Fangles"@ createAsSimpleObject dataTypeObjectPositionInfo] sideEmptyAttributes idtypeland_gm_euro_furniture_coathanger_01atlOffset`@@ position4F䜛Bn Fangles"@ createAsSimpleObject dataTypeObjectPositionInfoG sideEmptyAttributes idtypeLand_CratesWooden_FatlOffset8?CustomAttributes S position˻4FBX&Fangles"@ disableSimulation Attribute0 nAttributesS propertyallowDamageexpression_this allowdamage _value;Value S data$ S type@ valueS typeBOOLS dataTypeObjectPositionInfo sideEmptyAttributes idtypeLand_Sacks_heap_FatlOffset?CustomAttributes8  positionM4FB!Fanglesbŗ@ disableSimulation8 Attribute0` nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfow sideEmptyAttributes idtypeLand_Sack_FatlOffset@l?CustomAttributes  positionX4FB+Fanglesg@ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueD  dataT  typep value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesM idtypeLand_CratesPlastic_FatlOffseta?CustomAttributesk ! position 4FcB(Fangles?M disableSimulationk Attribute0 nAttributes! propertyallowDamageexpression_this allowdamage _value;Value ! data ! type value! typeBOOL! dataTypeObjectPositionInfo sideEmptyAttributes idtypeLand_CratesShabby_FatlOffsetJ?CustomAttributes  position4FB!Fangles? disableSimulation Attribute00 nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfoD sideEmptyAttributes| idtypeLand_PalletTrolley_01_yellow_FatlOffset? positionQ4F(BBg"Fangles?| createAsSimpleObject dataTypeObjectPositionInfo3 sideEmptyAttributesk idtypegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes Q position4FXsB!Fangles"@k texturesgm_grndisableSimulation Attribute0 nAttributesQ propertyallowDamageexpression_this allowdamage _value;Value Q data" Q type> valueQ typeBOOLQ dataTypeObjectPositionInfo sideEmptyAttributes id typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributesO  position4FXsB!Fangles"@ texturesgm_grndisableSimulationO Attribute0w nAttributes propertyallowDamageexpression_this allowdamage _value;Value  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes id!typeland_gm_euro_furniture_refrigerator_02atlOffset? position4FBF"Fangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes id"typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes ! position4FXsB~!Fangles"@ texturesgm_grndisableSimulation Attribute0! nAttributes! propertyallowDamageexpression_this allowdamage _value;Valuea! ! dataq! ! type! value! typeBOOL! dataTypeObjectPositionInfo6" sideEmptyAttributesn" id#typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes" T# position4FXsB>"Fangles"@n" texturesgm_grndisableSimulation" Attribute0" nAttributesT# propertyallowDamageexpression_this allowdamage _value;Value# T# data%# T# typeA# valueT# typeBOOLT# dataTypeObjectPositionInfo# sideEmptyAttributes"$ id$typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributesR$ % position4FXsBF"Fangles"@"$ texturesgm_grndisableSimulationR$ Attribute0z$ nAttributes% propertyallowDamageexpression_this allowdamage _value;Value$ % data$ % type$ value% typeBOOL% dataTypeObjectPositionInfo% sideEmptyAttributes% id%typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes& & position4FXsBQ"Fangles"@% texturesgm_grndisableSimulation& Attribute0.& nAttributes& propertyallowDamageexpression_this allowdamage _value;Value}& & data& & type& value& typeBOOL& dataTypeObjectPositionInfoR' sideEmptyAttributes' id&typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes' p( position4FXsB"Fangles"@' texturesgm_grndisableSimulation' Attribute0' nAttributesp( propertyallowDamageexpression_this allowdamage _value;Value1( p( dataA( p( type]( valuep( typeBOOLp( dataTypeObjectPositionInfo) sideEmptyAttributes>) id'typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributesn) $* position4FXsB#Fangles"@>) texturesgm_grndisableSimulationn) Attribute0) nAttributes$* propertyallowDamageexpression_this allowdamage _value;Value) $* data) $* type* value$* typeBOOL$* dataTypeObjectPositionInfo* sideEmptyAttributes* id(typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes"+ + position4FXsB#Fangles"@* texturesgm_grndisableSimulation"+ Attribute0J+ nAttributes+ propertyallowDamageexpression_this allowdamage _value;Value+ + data+ + type+ value+ typeBOOL+ dataTypeObjectPositionInfon, sideEmptyAttributes, id)typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes, - positionS4FXsB$Fangles"@, texturesgm_grndisableSimulation, Attribute0, nAttributes- propertyallowDamageexpression_this allowdamage _value;ValueM- - data]- - typey- value- typeBOOL- dataTypeObjectPositionInfo". sideEmptyAttributesZ. id*typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes. @/ positionR4FXsB$Fangles"@Z. texturesgm_grndisableSimulation. Attribute0. nAttributes@/ propertyallowDamageexpression_this allowdamage _value;Value/ @/ data/ @/ type-/ value@/ typeBOOL@/ dataTypeObjectPositionInfo/ sideEmptyAttributes0 id+typeland_gm_euro_furniture_refrigerator_02atlOffset?'0 position4FBD%Fangles@=0 createAsSimpleObject'0 dataTypeObjectPositionInfo0 sideEmptyAttributes0 id,typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes%1 1 positionR4FXsB|$Fangles"@0 texturesgm_grndisableSimulation%1 Attribute0M1 nAttributes1 propertyallowDamageexpression_this allowdamage _value;Value1 1 data1 1 type1 value1 typeBOOL1 dataTypeObjectPositionInfoq2 sideEmptyAttributes2 id-typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes2 3 positionn4FXsB<%Fangles"@2 texturesgm_grndisableSimulation2 Attribute03 nAttributes3 propertyallowDamageexpression_this allowdamage _value;ValueP3 3 data`3 3 type|3 value3 typeBOOL3 dataTypeObjectPositionInfo%4 sideEmptyAttributes]4 id.typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes4 C5 positionn4FXsBE%Fangles"@]4 texturesgm_grndisableSimulation4 Attribute04 nAttributesC5 propertyallowDamageexpression_this allowdamage _value;Value5 C5 data5 C5 type05 valueC5 typeBOOLC5 dataTypeObjectPositionInfo5 sideEmptyAttributes6 id/typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributesA6 6 positiono4FXsBN%Fangles"@6 texturesgm_grndisableSimulationA6 Attribute0i6 nAttributes6 propertyallowDamageexpression_this allowdamage _value;Value6 6 data6 6 type6 value6 typeBOOL6 dataTypeObjectPositionInfo7 sideEmptyAttributes7 id0typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes7 8 position4FXsB&Fangles"@7 texturesgm_grndisableSimulation7 Attribute08 nAttributes8 propertyallowDamageexpression_this allowdamage _value;Valuel8 8 data|8 8 type8 value8 typeBOOL8 dataTypeObjectPositionInfoA9 sideEmptyAttributesy9 id1typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes9 _: position4FXsB &Fangles"@y9 texturesgm_grndisableSimulation9 Attribute09 nAttributes_: propertyallowDamageexpression_this allowdamage _value;Value : _: data0: _: typeL: value_: typeBOOL_: dataTypeObjectPositionInfo: sideEmptyAttributes-; id2typegm_AmmoBox_wood_02_emptyatlOffset#>CustomAttributes]; < position4FXsB%Fangles"@-; texturesgm_grndisableSimulation]; Attribute0; nAttributes< propertyallowDamageexpression_this allowdamage _value;Value; < data; < type< value< typeBOOL< dataTypeObjectPositionInfo< sideEmptyflagsAttributes< id3typegm_AmmoBox_wood_01_empty< position4FrBK*FanglesX@< texturesgm_grndisableSimulation< dataTypeObjectPositionInfos= sideEmptyflagsAttributes= id4typegm_AmmoBox_wood_01_empty= position4FrBb+Fanglesک@= texturesgm_grndisableSimulation= dataTypeObjectPositionInfod> sideEmptyAttributes> id5typeLand_Sack_FatlOffset@?CustomAttributes> p? position%4FB%*FanglesI@> disableSimulation> Attribute0> nAttributesp? propertyallowDamageexpression_this allowdamage _value;Value1? p? dataA? p? type]? valuep? typeBOOLp? dataTypeObjectPositionInfo? sideEmptyAttributes1@ id6typeLand_Sack_FatlOffsetO?CustomAttributesO@ A positionZ4FB(Fangles:@1@ disableSimulationO@ Attribute0w@ nAttributesA propertyallowDamageexpression_this allowdamage _value;Value@ A data@ A type@ valueA typeBOOLA dataTypeObjectPositionInfoA sideEmptyAttributesA id7typeland_gm_euro_furniture_cashdesk_01atlOffset@?A position4FB.Fangles&M@A createAsSimpleObjectA dataTypeObjectPositionInfo|B sideEmptyflagsAttributesB id8typeTapeSign_FatlOffset?CustomAttributesB C position=4FB3Fangles&M@B disableSimulationB Attribute0B nAttributesC propertyallowDamageexpression_this allowdamage _value;ValueIC C dataYC C typeuC valueC typeBOOLC dataTypeObjectPositionInfo/D sideEmptyflagsAttributesgD id9typeland_gm_euro_misc_trashbin_05atlOffsetU?CustomAttributesD ;E position4F)BFangles=gD disableSimulationD Attribute0D nAttributes;E propertyallowDamageexpression_this allowdamage _value;ValueD ;E data E ;E type(E value;E typeBOOL;E dataTypeObjectPositionInfoE sideEmptyflagsAttributesF id:typeland_gm_euro_misc_trashbin_05atlOffset@?CustomAttributes8F F position4F)BK%Fangles@<F disableSimulation8F Attribute0`F nAttributesF propertyallowDamageexpression_this allowdamage _value;ValueF F dataF F typeF valueF typeBOOLF dataTypeObjectPositionInfoG sideEmptyflagsAttributesG id;typeland_gm_euro_misc_trashbin_05atlOffset?CustomAttributesG H positionG4F)B1%Fangles">G disableSimulationG Attribute0H nAttributesH propertyallowDamageexpression_this allowdamage _value;ValuebH H datarH H typeH valueH typeBOOLH dataTypeObjectPositionInfoHI sideEmptyflagsAttributesI id<typeland_gm_euro_misc_trashbin_05atlOffsetr?CustomAttributesI TJ position4F)BGFangles@I disableSimulationI Attribute0I nAttributesTJ propertyallowDamageexpression_this allowdamage _value;ValueJ TJ data%J TJ typeAJ valueTJ typeBOOLTJ dataTypeLayernameLoungeEntitiesJ id=atlOffset)typeLand_Sofa_01_FatlOffset@t?K position34F(B+FanglesdL@K createAsSimpleObjectK dataTypeObjectPositionInfooL sideEmptyflagsAttributesL id?typeland_gm_euro_furniture_tv_01L position4F#Bb'FangleszO@L createAsSimpleObjectL dataTypeObjectPositionInfoOM sideEmptyAttributesM id@typeland_gm_euro_furniture_clock_01atlOffset5@M position4F䜝BB-Fanglestj?M createAsSimpleObjectM dataTypeObjectPositionInfo/N sideEmptyAttributesgN idAtypeland_gm_euro_furniture_shelf_03atlOffset?N positionW4FCB#4Fanglest@gN createAsSimpleObjectN dataTypeObjectPositionInfoO sideEmptyAttributesGO idBtypeland_gm_euro_furniture_table_02atlOffset@?hO position4F1Bo'Fangles"@GO createAsSimpleObjecthO dataTypeObjectPositionInfoO sideEmptyAttributes'P idCtypeland_gm_euro_furniture_table_01atlOffset@/?HP position4F&B0Fangles ?'P createAsSimpleObjectHP dataTypeObjectPositionInfoP sideEmptyAttributesQ idDtypeland_gm_euro_furniture_chair_03atlOffset?(Q position84F 3B 1Fangles"K@Q createAsSimpleObject(Q dataTypeObjectPositionInfoQ sideEmptyAttributesQ idEtypeland_gm_euro_furniture_chair_03atlOffset?R position4F 3B-2FanglesD@Q createAsSimpleObjectR dataTypeObjectPositionInfoR sideEmptyAttributesR idFtypeland_gm_euro_furniture_chair_03atlOffset?R position?4F 3B0Fangles`>R createAsSimpleObjectR dataTypeObjectPositionInfooS sideEmptyAttributesS idGtypeland_gm_euro_furniture_chair_03atlOffset>?S position)4F 3B/Fangles?S createAsSimpleObjectS dataTypeLayernameKiosk & StorageEntitiesT idHatlOffset;p 3items2Item0}V Item1]W Item2=X Item3Y Item4Y Item5Z Item6[ Item7\ Item8] Item9Y^ Item10*_ Item11` Item12` Item13a Item14b Item15c Item16`d Item17-e Item18f Item19f Item20g Item21h Item22i Item23Vj Item24k Item25k Item26l Item27m Item28n Item29o Item30p Item31tq Item32Zr Item33Ls Item342t Item35u Item36u Item37v Item38qw Item397x Item40x Item41y Item42z Item43V{ Item44#| Item45 } Item46} Item47~ Item48 Item49 p dataTypeObjectPositionInfoW sideEmptyAttributesFangles@Fangles"@X createAsSimpleObject=X dataTypeObjectPositionInfoX sideEmptyflagsAttributesX idKtypeland_gm_euro_furniture_radio_01Y positionU4FB`=Fangles0G@X createAsSimpleObjectY dataTypeObjectPositionInfoY sideEmptyAttributesY idLtypeland_gm_euro_furniture_telephone_01atlOffset/i?Y position4FBt=Fanglesdf&@Y createAsSimpleObjectY dataTypeObjectPositionInfoZ sideEmptyAttributesZ idMtypeland_gm_euro_furniture_newspaper_01atlOffset/i?Z position4FB>FanglestV?Z createAsSimpleObjectZ dataTypeObjectPositionInfog[ sideEmptyAttributes[ idNtypeland_gm_euro_furniture_book_01atlOffset0i?[ position4FB>Fangles?[ createAsSimpleObject[ dataTypeObjectPositionInfoK\ sideEmptyAttributes\ idOtypeland_gm_euro_furniture_infoboard_01atlOffsetB@\ position~4FgݛB_ createAsSimpleObject` dataTypeObjectPositionInfo` sideEmptyAttributes` idTtypeland_gm_euro_furniture_shelf_08atlOffset?` positionz4FƛBEFangles&M@` createAsSimpleObject` dataTypeObjectPositionInfoga sideEmptyAttributesa idUtypeland_gm_euro_furniture_shelf_08atlOffset'?a positionu4FƛB9EFangles&M@a createAsSimpleObjecta dataTypeObjectPositionInfoGb sideEmptyAttributesb idVtypeland_gm_euro_furniture_shelf_08atlOffset@:?b position4FƛBRFangles@=b createAsSimpleObjectb dataTypeObjectPositionInfo'c sideEmptyAttributes_c idWtypeland_gm_euro_furniture_shelf_08atlOffset?c position4FƛB^RFangles@=_c createAsSimpleObjectc dataTypeObjectPositionInfod sideEmptyAttributes?d idXtypeland_gm_euro_furniture_shelf_08atlOffset@?`d position4FƛBRFangles@=?d createAsSimpleObject`d dataTypeObjectPositionInfod sideEmptyAttributes e idYtypegm_pallet_01atlOffset=?-e position4F%BNMFangles"@ e createAsSimpleObject-e dataTypeObjectPositionInfoe sideEmptyflagsAttributese idZtypeLand_PaperBox_01_small_closed_brown_Ff positiony4FޙBLFangles&M@e createAsSimpleObjectf dataTypeObjectPositionInfof sideEmptyflagsAttributesf id[typeLand_PaperBox_01_small_closed_brown_Ff position4FޙBMFangles&M@f createAsSimpleObjectf dataTypeObjectPositionInfo~g sideEmptyAttributesg id\typeLand_PaperBox_01_small_closed_brown_FatlOffsetg>g position4FSBNMFangles@g createAsSimpleObjectg dataTypeObjectPositionInfoWh sideEmptyflagsAttributesh id]typegm_pallet_01atlOffsetM>h position4F݌B4KFangles@=h createAsSimpleObjecth dataTypeObjectPositionInfo0i sideEmptyflagsAttributeshi id^typegm_pallet_01atlOffset5=i position64FևBEKFangles@=hi createAsSimpleObjecti dataTypeObjectPositionInfoi sideEmptyAttributes5j id_typegm_pallet_01atlOffset?Vj position(4F%BJFangles?5j createAsSimpleObjectVj dataTypeObjectPositionInfoj sideEmptyflagsAttributesj id`typegm_pallet_01k position4FqBJFangles,e?j createAsSimpleObjectk dataTypeObjectPositionInfok sideEmptyflagsAttributesk idatypegm_pallet_01atlOffset>k position4FaBJFangles؊@k createAsSimpleObjectk dataTypeObjectPositionInfol sideEmptyflagsAttributesl idbtypeLand_PaperBox_01_small_closed_brown_FatlOffset=l position4FB RFangles@=l createAsSimpleObjectl dataTypeObjectPositionInfowm sideEmptyAttributesm idctypeLand_PaperBox_01_small_closed_brown_FatlOffset?m position4F>*BRFangles@=m createAsSimpleObjectm dataTypeObjectPositionInfoin sideEmptyflagsAttributesn iddtypeLand_PaperBox_01_small_closed_brown_FatlOffset=n position4FB%RFangles@=n createAsSimpleObjectn dataTypeObjectPositionInfoOo sideEmptyAttributeso idetypeLand_PaperBox_01_small_closed_brown_FatlOffsetL@o positionP4FƝBoRFangles&M@o createAsSimpleObjecto dataTypeObjectPositionInfo5p sideEmptyAttributesmp idftypeLand_PaperBox_01_small_closed_brown_FatlOffset>p position4FBRFangles@=mp createAsSimpleObjectp dataTypeObjectPositionInfoq sideEmptyAttributesSq idgtypeLand_PaperBox_01_small_closed_brown_FatlOffsetgf?tq position.4F`B3RFangles@=Sq createAsSimpleObjecttq dataTypeObjectPositionInfor sideEmptyAttributes9r idhtypeLand_PaperBox_01_small_closed_brown_FatlOffset?Zr position_4F)BRFangles@=9r createAsSimpleObjectZr dataTypeObjectPositionInfor sideEmptyflagsAttributes+s iditypeLand_PaperBox_01_small_closed_brown_FatlOffset=Ls positionB4FBEEFangles@=+s createAsSimpleObjectLs dataTypeObjectPositionInfos sideEmptyAttributest idjtypeLand_PaperBox_01_small_closed_brown_FatlOffsete?2t position-4F_BNEFangles@=t createAsSimpleObject2t dataTypeObjectPositionInfot sideEmptyAttributest idktypeLand_PaperBox_01_small_closed_brown_FatlOffsetH?u position4F,BYEFangles@=t createAsSimpleObjectu dataTypeObjectPositionInfou sideEmptyflagsAttributesu idltypegm_barrelu position4FZBGFangles >u createAsSimpleObjectu dataTypeObjectPositionInfoKv sideEmptyflagsAttributesv idmtypegm_barrelv position4FZBHFanglesJ@v createAsSimpleObjectv dataTypeObjectPositionInfow sideEmptyAttributesPw idntypegm_pallet_01atlOffset@p?qw positionA4F%B`HFanglesV@Pw createAsSimpleObjectqw dataTypeObjectPositionInfow sideEmptyflagsAttributesx idotypegm_barrel7x position4FZBJFanglesƪ@x createAsSimpleObject7x dataTypeObjectPositionInfox sideEmptyflagsAttributesx idptypegm_barrelx positionp4FZBJFanglesO@x createAsSimpleObjectx dataTypeObjectPositionInfoqy sideEmptyAttributesy idqtypegm_pallet_01atlOffset?y position4F%BJFanglesO@y createAsSimpleObjecty dataTypeObjectPositionInfo7z sideEmptyflagsAttributesoz idrtypegm_barrelz position4FZBnLFangleslP@oz createAsSimpleObjectz dataTypeObjectPositionInfoz sideEmptyflagsAttributes5{ idstypegm_barrelV{ position4FZB{LFanglesZڛ@5{ createAsSimpleObjectV{ dataTypeObjectPositionInfo{ sideEmptyAttributes| idttypegm_pallet_01atlOffset@?#| position4F%BqLFanglesL@| createAsSimpleObject#| dataTypeObjectPositionInfo| sideEmptyAttributes| idutypegm_AmmoBox_wood_02_emptyatlOffsetG> } position4F?/B\OFanglesM@| texturesgm_olidisableSimulation } dataTypeObjectPositionInfo} sideEmptyflagsAttributes} idvtypegm_AmmoBox_wood_03_emptyatlOffsetD=} position 4F?BNFangles,Y@} texturesgm_olidisableSimulation} dataTypeObjectPositionInfo~ sideEmptyflagsAttributes~ idwtypegm_AmmoBox_wood_03_emptyatlOffsetD=~ position4F?BNFanglesD?~ texturesgm_olidisableSimulation~ dataTypeObjectPositionInfor sideEmptyflagsAttributes idxtypegm_jerrycanatlOffsetW> position4F}SB.NFangles@R= createAsSimpleObject dataTypeObjectPositionInfoJ sideEmptyflagsAttributes idytypegm_jerrycanatlOffsetW> position4FSBNFangles`@ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesO idztypegm_pallet_01atlOffset@?p positionI4F%BNFanglesD?O createAsSimpleObjectp dataTypeLayernameBeep Boop RoomEntities id{ items Item0X Item1Ä Item2- Item3 Item4 Item5k Item6Ր Item7? Item8+ Item9 Item10 Item11ז Item12× dataTypeObjectPositionInfo sideEmptyAttributes- id|typeland_gm_computer_teleraet_81_fsatlOffset?CustomAttributesK Ä positionO4F.BZFangles@=- disableSimulationK Attribute0 Attribute15 nAttributesÄ propertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];Value 5 data 5 type" value5 typeBOOL5 propertyallowDamageexpression_this allowdamage _value;Value Ä data Ä type valueÄ typeBOOLÄ dataTypeObjectPositionInfo_ sideEmptyAttributes id}typeland_gm_computer_teleraet_81_matlOffset?CustomAttributes - position4F.B>UFangles@= disableSimulation Attribute0 Attribute1 nAttributes- propertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];Value` datap type value typeBOOL propertyallowDamageexpression_this allowdamage _value;Value - data - type value- typeBOOL- dataTypeObjectPositionInfoɇ sideEmptyAttributes id~typeland_gm_computer_teleraet_81_ratlOffset?CustomAttributes position4F.BWFangles@= disableSimulation Attribute0W Attribute1 nAttributes propertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];Valueʈ dataڈ type value typeBOOL propertyallowDamageexpression_this allowdamage _value;ValueX datah type value typeBOOL dataTypeObjectPositionInfo3 sideEmptyAttributesk idtypeland_gm_computer_teleraet_81_ratlOffset@c?CustomAttributes  position4F.B;aFanglestj?k disableSimulation Attribute0 Attribute1s nAttributes propertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];Value4 s dataD s type` values typeBOOLs propertyallowDamageexpression_this allowdamage _value;Value‹  dataҋ  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesՌ idtypeland_gm_computer_teleraet_81_ratlOffset?CustomAttributes k position?4F.B aFanglestj?Ռ disableSimulation Attribute0+ Attribute1ݍ nAttributesk propertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];Value ݍ data ݍ typeʍ valueݍ typeBOOLݍ propertyallowDamageexpression_this allowdamage _value;Value, k data< k typeX valuek typeBOOLk dataTypeObjectPositionInfo sideEmptyAttributes? idtypeland_gm_computer_teleraet_81_ratlOffset@+?CustomAttributes] Ր positiony4F.B`Fanglestj?? disableSimulation] Attribute0 Attribute1G nAttributesՐ propertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];Value G data G type4 valueG typeBOOLG propertyallowDamageexpression_this allowdamage _value;Value Ր data Ր type valueՐ typeBOOLՐ dataTypeObjectPositionInfoq sideEmptyAttributes idtypeland_gm_computer_teleraet_81_ratlOffset@?CustomAttributesǑ ? position4F.B`Fanglestj? disableSimulationǑ Attribute0 Attribute1 nAttributes? propertygm_checkbox_device_enabledexpression_this setVariable ['gm_device_enabled', true];Valuer data type value typeBOOL propertyallowDamageexpression_this allowdamage _value;Value ? data ? type, value? typeBOOL? dataTypeObjectPositionInfoғ sideEmptyflagsAttributes idtypeland_gm_euro_furniture_table_03atlOffset9+ position_4F)BUFangles@= createAsSimpleObject+ dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffset@? position04F,B:TFangles?@ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyflagsAttributes֕ idtypeland_gm_euro_furniture_table_03atlOffset9 position4F)B0YFangles@=֕ createAsSimpleObject dataTypeObjectPositionInfo~ sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffset?ז position4F,B\XFangles2c@ createAsSimpleObjectז dataTypeObjectPositionInfoj sideEmptyflagsAttributes idtypeland_gm_euro_furniture_table_03atlOffset`9× positionc4F)B\Fangles@= createAsSimpleObject× dataTypeObjectPositionInfoJ sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffsetU? position*4F,B\Fangles itemsItem05 Item1њ Item2m Item3 Item4 > dataTypeObjectPositionInfoř sideEmptyAttributes idtypeLand_GymBench_01_FatlOffset m typeZ valuem typeBOOLm dataTypeObjectPositionInfo sideEmptyAttributes4 idtypeLand_GymRack_03_FatlOffset@?CustomAttributesR  position4F TBTFangles"@4 disableSimulationR Attribute0z nAttributes propertyallowDamageexpression_this allowdamage _value;Valueɝ  dataٝ  type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributesϞ idtypeLand_GymRack_02_FatlOffset?CustomAttributes position4FmBOFanglestj?Ϟ disableSimulation Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;Valued datat type value typeBOOL dataTypeObjectPositionInfo2 sideEmptyAttributesj idtypeLand_GymRack_01_FatlOffset?CustomAttributes > position4FYBXFanglestj?j disableSimulation Attribute0 nAttributes> propertyallowDamageexpression_this allowdamage _value;Value > data > type+ value> typeBOOL> dataTypeLayernameBriefing RoomEntities idatlOffset? itemsItem0 Item1x Item2X Item38 Item4 Item5 Item6ا Item7 Item8 Item9x Item10X Item118 Item12 Item13 Item14خ Item15 Item16 Item17x Item18X Item198 Item20 dataTypeObjectPositionInfo sideEmptyAttributesW idtypeland_gm_euro_furniture_mapboard_01atlOffset?x position̴4F)B>Fangles&M@W createAsSimpleObjectx dataTypeObjectPositionInfo sideEmptyAttributes7 idtypeland_gm_euro_furniture_chair_04atlOffset@?X positionV4F,BBFanglesӢ=7 createAsSimpleObjectX dataTypeObjectPositionInfoߤ sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffset?8 positionײ4F,BBFangles@ݻ< createAsSimpleObject8 dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffset? positionԷ4F,B|BFangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesצ idtypeland_gm_euro_furniture_chair_04atlOffset@? positionY4F,BBFanglesҺ=צ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffset?ا positionR4F,BfBFangles= createAsSimpleObjectا dataTypeObjectPositionInfo_ sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffseti? position4F,BSDFangles > createAsSimpleObject dataTypeObjectPositionInfo? sideEmptyAttributesw idtypeland_gm_euro_furniture_chair_04atlOffset@? position4F,BjDFangles@K<w createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesW idtypeland_gm_euro_furniture_chair_04atlOffsete?x position4F,B;DFanglesӀ=W createAsSimpleObjectx dataTypeObjectPositionInfo sideEmptyAttributes7 idtypeland_gm_euro_furniture_chair_04atlOffset?X position4F,BDFanglesAM=7 createAsSimpleObjectX dataTypeObjectPositionInfo߫ sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffset_?8 position4F,B$DFangles~= createAsSimpleObject8 dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffset@? positionٵ4F,BFFangles@= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes׭ idtypeland_gm_euro_furniture_chair_04atlOffset5? position[4F,B*FFangles@Y=׭ createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffset?خ positionW4F,BEFangless= createAsSimpleObjectخ dataTypeObjectPositionInfo_ sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffset? positionܰ4F,B@FFangles@d= createAsSimpleObject dataTypeObjectPositionInfo? sideEmptyAttributesw idtypeland_gm_euro_furniture_chair_04atlOffset@? positionֺ4F,BEFangles9=w createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesW idtypeland_gm_euro_furniture_chair_04atlOffset?x position4F,BGFangles=W createAsSimpleObjectx dataTypeObjectPositionInfo sideEmptyAttributes7 idtypeland_gm_euro_furniture_chair_04atlOffset@?X position4F,BGFangles=7 createAsSimpleObjectX dataTypeObjectPositionInfo߲ sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffseto?8 position4F,BGFanglesPW= createAsSimpleObject8 dataTypeObjectPositionInfo sideEmptyAttributes idtypeland_gm_euro_furniture_chair_04atlOffsetN? position4F,BGFangles= createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributes״ idtypeland_gm_euro_furniture_chair_04atlOffsetE? position4F,BGFanglesl^=״ createAsSimpleObject dataTypeLayernameJanitor RoomEntitiesJ idatlOffsetf>l items Item0 Item1ζ Item2 Item3 Item4n Item5N Item6. Item7 Item8Ҽ Item9 Item108 Item11 Item12 l dataTypeObjectPositionInfou sideEmptyAttributes idtypeland_gm_euro_furniture_shelf_08atlOffset:?ζ positionK4FǛBFangles&M@ createAsSimpleObjectζ dataTypeObjectPositionInfoU sideEmptyAttributes idtypeland_gm_euro_furniture_shelf_08atlOffset? positionQ4FǛBjFangles&M@ createAsSimpleObject dataTypeObjectPositionInfo5 sideEmptyAttributesm idtypeland_gm_euro_furniture_shelf_08atlOffsetX? positionV4FǛBFangles&M@m createAsSimpleObject dataTypeObjectPositionInfo sideEmptyAttributesM idtypeland_gm_euro_furniture_shelf_08atlOffset@T?n position74FǛBFangles@=M createAsSimpleObjectn dataTypeObjectPositionInfo sideEmptyAttributes- idtypeland_gm_euro_furniture_shelf_08atlOffset@?N position14FǛBeFangles@=- createAsSimpleObjectN dataTypeObjectPositionInfoպ sideEmptyAttributes idtypeland_gm_euro_furniture_shelf_08atlOffset?. position,4FǛBFangles@= createAsSimpleObject. dataTypeObjectPositionInfo sideEmptyAttributes idtypeLand_Bucket_clean_FatlOffset? positionj4FpBFangles? createAsSimpleObject dataTypeObjectPositionInfoy sideEmptyAttributes idtypeBroom_01_grey_FatlOffsetT/?Ҽ positionA4F`BuFangles"@ createAsSimpleObjectҼ dataTypeObjectPositionInfoy sideEmptyflagsAttributes idtypeland_gm_euro_misc_trashbin_05atlOffset?CustomAttributesϽ position'4F)BFangles? disableSimulationϽ Attribute0 nAttributes propertyallowDamageexpression_this allowdamage _value;ValueF dataV typer value typeBOOL dataTypeObjectPositionInfo, sideEmptyflagsAttributesd idtypeland_gm_euro_misc_trashbin_02atlOffset?CustomAttributes 8 positions4FBFanglesti@d disableSimulation Attribute0 nAttributes8 propertyallowDamageexpression_this allowdamage _value;Value 8 data 8 type% value8 typeBOOL8 dataTypeObjectPositionInfo sideEmptyAttributes idtypegm_AmmoBox_wood_02_emptyatlOffset b typeN b typeARRAYb datar type value typeARRAY items Item09 Item1 Item2 Item3 Item4\ Item5 Item6 Item75 Item8v Item9 Item10 Item11K dataI typet valuecablecutter_unhide typeSTRING data type value? typeSCALAR data  type valuecamera_front_unhide typeSTRING data+ \ typeG value?\ typeSCALAR\ datal type valuecamera_rear_unhide typeSTRING data type value? typeSCALAR data 5 type valuefan_unhide5 typeSTRING5 dataE v typea value?v typeSCALARv data type valueplugs_unhide typeSTRING data  type value? typeSCALAR data K type6 valueskids_unhideK typeSTRINGK data[ typew value? typeSCALAR dataTypeObjectPositionInfo sideEmptyflagsAttributes+ id typeLand_MobileRadar_01_radar_F1 positionb5FB,ՊF+ 1 dataTypeObjectPositionInfo sideEmptyflagsAttributes id typeLand_MobileRadar_01_generator_F position5FlB0ˊF disableSimulation dataTypeObjectPositionInfov sideEmptyAttributes idd typeland_gm_sandbags_01_short_01atlOffsetŜ@ position5FϞB|Fangles%*@ disableSimulation dataTypeObjectPositionInfoP sideEmptyAttributes ide typeland_gm_sandbags_01_short_01atlOffset@ positionX5FϞB Fangles%*@ disableSimulation dataTypeObjectPositionInfo) sideEmptyAttributesa idc typeland_gm_sandbags_01_wall_01atlOffsetPW@ position5FϞB Fanglesh̓?a disableSimulation dataTypeObjectPositionInfo sideEmptyAttributes: idf typeland_gm_sandbags_01_wall_01atlOffsetPG@X position25FϞB&Fangles@ʆ@: disableSimulationX dataTypeObjectPositionInfo sideEmptyAttributes idg typeland_gm_sandbags_01_wall_01atlOffset@1 positionԳ5FϞByFanglesu%@ disableSimulation1 dataTypeObjectPositionInfo sideEmptyAttributes idh typeland_gm_sandbags_01_wall_01atlOffset @ positionO5FϞBFanglesu%@ disableSimulation dataTypeObjectPositionInfo sideEmptyAttributes idi typeland_gm_sandbags_01_wall_01atlOffset` @ positionA5FϞBFanglesu%@ disableSimulation dataTypeObjectPositionInfof sideEmptyAttributes idj typeland_gm_sandbags_01_wall_01atlOffset @ positionŨ5FϞBFanglesh̓? disableSimulation dataTypeObjectPositionInfoP sideEmptyflagsAttributes idtypegm_pl_army_ural4320_repairCustomAttributes w positionE5F]B֊Fangles;@@̌@ lockLOCKEDtexturesgm_pl_ols Attribute0i Attribute1T Attribute2& Attribute3 Attribute4 Attribute5 Attribute6 Attribute7 Attribute8 Attribute9 nAttributes w propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value T data$ T type? value-1T typeSTRINGT propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valuee & datau & type value & typeARRAY itemsItem0 Item1 & data type typeARRAY data & type+ value? & typeARRAY? itemsItem0 Item1i Item2 Item3 Item48 Item5 Item6 Item7 Item8\ Item9 Item10 Item11= Item12~ Item13 Item14 Item15Z Item16 Item17 & data/ i typeT valuewinch_unhidei typeSTRINGi datay type value? typeSCALAR data type valueroofRack_unhide typeSTRING data 8 type# value?8 typeSCALAR8 dataH typer valuecamonet_01_unhide typeSTRING data type value? typeSCALAR data  type valuecoldWeatherKit_unhide typeSTRING data+ \ typeG value?\ typeSCALAR\ datal type valuefuelcan_1_1_unhide typeSTRING data type value typeSCALAR data = type( valuefuelcan_1_2_unhide= typeSTRING= dataM ~ typei value~ typeSCALAR~ data type valuelightGuard_unhide typeSTRING data  type value? typeSCALAR data Z typeE valuetoolbox_unhideZ typeSTRINGZ dataj type value? typeSCALAR data type valuetools_unhide typeSTRING data & type value?& typeSCALAR& propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  data  type valuegm_insignia_gc_bgs_01 typeSTRING propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  data  type value-1 typeSTRING propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value data type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value data type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value} data type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueh datax type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueN data^ typey value-1 typeSTRING propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value7 w dataG w typeb value-1w typeSTRINGw dataTypeObjectPositionInfo sideEmptyflagsAttributes4 idb typeland_gm_euro_misc_viewplatform_01F position5FvB0Fangles%@4 skillL>F dataTypeTriggerposition{5FCB*UFangleg@Attributes id typeEmptyDetectorAreaR250atlOffsetO conditioncall{triggerActivated stage2}sizeASBsizeBB dataTypeLogicPositionInfo areaSizeRBBflagsidutypeModuleHideTerrainObjects_FatlOffsetpCustomAttributes A position5F:BxF Attribute0 Attribute1 nAttributesA property#filterexpression_this setVariable ["#filter",_value]Valuea dataq type valuepA typeSCALAR property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value A data A type. valueA typeBOOLA dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypegm_banner_GCatlOffset@? position 4FwBFangles!7@ disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypegm_banner_GCatlOffset@C? position=4FlBiFanglesIc= disableSimulation dataTypeObjectPositionInfom sideEmptyflagsAttributes id typegm_banner_PLatlOffset? position4FBF disableSimulation dataTypeObjectPositionInfo+ sideEmptyflagsAttributesc idtypegm_banner_URatlOffset? position4FBFangles uD=c disableSimulation dataTypeObjectPositionInfo sideEmptyAttributes' idtypeland_gm_euro_furniture_book_01atlOffsetc2?E position4F_BF' disableSimulationE dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeCUP_conference_table_a position4FC BDFanglesi_= disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeCUP_conference_table_a positionU4FC BFanglesi_= disableSimulation dataTypeObjectPositionInfor sideEmptyAttributes idtypeland_gm_euro_furniture_lampfixture_03atlOffset.? positionx4FBFanglesi_= disableSimulation dataTypeObjectPositionInfoU sideEmptyAttributes idtypeland_gm_euro_furniture_lampfixture_03atlOffset.? position>4FXBZFanglesi_= disableSimulation dataTypeObjectPositionInfo) sideEmptyflagsAttributesI id`typegm_flag_GCatlOffset:O position?5F/BdщFI O dataTypeObjectPositionInfo sideEmptyflagsAttributes idatypegm_flag_GC positionv5F1LB҉F  dataTypeObjectPositionInfoq sideEmptyflagsAttributes idtypeLand_FlowerPot_01_Flower_FatlOffset/= position.4F BF disableSimulation dataTypeObjectPositionInfo- sideEmptyflagsAttributese idtypeland_gm_euro_gardenshed_04k position4FB\Fangles==e k dataTypeObjectPositionInfo sideEmptyflagsAttributes$ idtypeGunrackTK_EP1atlOffset?=B position.4F$lBFanglesLL@$ disableSimulationB dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeCUP_kitchen_chair_a position!4F[BEF disableSimulation dataTypeObjectPositionInfon sideEmptyflagsAttributes idtypeCUP_kitchen_chair_a position4F[BF disableSimulation dataTypeObjectPositionInfo0 sideEmptyflagsAttributesh idtypeCUP_office_chairatlOffset7 position4F&B3FanglestM@h disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributesB idtypeCUP_office_chairatlOffset7` positionJ4F&B.FanglestM@B disableSimulation` dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeCUP_office_chairatlOffset7: position4F&B߉FanglestM@ disableSimulation: dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeCUP_office_chairatlOffset7 position4F&B߉FanglestM@ disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeRadio_Old position4FmBFangles@ disableSimulation dataTypeObjectPositionInfoW sideEmptyflagsAttributes idW typeland_gm_sandbags_01_short_01 positionq4FYB߉Fangles&> disableSimulation dataTypeObjectPositionInfo- sideEmptyflagsAttributese idX typeland_gm_sandbags_01_short_01 positionl4FYB?Fangles&>e disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes; id[ typeland_gm_sandbags_01_short_01Y position76F@%B:҉Fangles^@; disableSimulationY dataTypeObjectPositionInfo sideEmptyflagsAttributes id\ typeland_gm_sandbags_01_short_01/ position976F@%BωFangles^@ disableSimulation/ dataTypeObjectPositionInfo sideEmptyAttributes idQ typeland_gm_sandbags_01_wall_01atlOffset@@ position&Z4FYB׉Fangles? disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes idR typeland_gm_sandbags_01_wall_01 position`4FYBӉFangles= disableSimulation dataTypeObjectPositionInfo\ sideEmptyflagsAttributes idS typeland_gm_sandbags_01_wall_01 positionjm4FYBӉFangles= disableSimulation dataTypeObjectPositionInfo5 sideEmptyAttributesm idT typeland_gm_sandbags_01_wall_01atlOffset @ position c4FYBHۉFangles=m disableSimulation dataTypeObjectPositionInfo  sideEmptyflagsAttributesB idU typeland_gm_sandbags_01_wall_01` position5t4FYBP׉Fanglesy@B disableSimulation` dataTypeObjectPositionInfo sideEmptyflagsAttributes idV typeland_gm_sandbags_01_wall_015 position u4FYB܉Fanglesy@ disableSimulation5 dataTypeObjectPositionInfo sideEmptyflagsAttributes idZ typeland_gm_sandbags_01_wall_01  position=6FA%BӉFangles,~L@ disableSimulation  dataTypeObjectPositionInfo sideEmptyflagsAttributes id] typeland_gm_sandbags_01_wall_01 positionI6F@%BƉFangles= disableSimulation dataTypeObjectPositionInfo^ sideEmptyflagsAttributes id^ typeland_gm_sandbags_01_wall_01 positionQ6FA%B1ʉFangles@ disableSimulation dataTypeObjectPositionInfo3 sideEmptyflagsAttributesk id_ typeland_gm_sandbags_01_wall_01 positionsQ6FA%BnЉFangles@k disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes@ id` typeland_gm_sandbags_01_wall_01^ position|A6F@%BʉFangles@@ disableSimulation^ dataTypeObjectPositionInfo sideEmptyflagsAttributes ida typeland_gm_sandbags_01_wall_013 positionH6FA%BӉFangles,~L@ disableSimulation3 dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeland_gm_euro_furniture_table_04atlOffset7 position4Ft1BF disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypegm_gc_army_ural4320_reammoCustomAttributes <. positionL5F٘BF lockLOCKEDtexturesgm_gc_oli Attribute0 Attribute1 Attribute2& Attribute3' Attribute4( Attribute5) Attribute6* Attribute7+ Attribute8m, Attribute9S- nAttributes <. propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueD  dataT  typeo value-1 typeSTRING propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value & data & type value & typeARRAY itemsItem0 Item10 & data 0 type 0 typeARRAY0 data@ & type[ valueo & typeARRAYo itemsItem0g! Item1! Item2! Item3A" Item4" Item5" Item6# Item7_# Item8# Item9# Item104$ Item11$ Item12$ Item13% Item14V% Item15% Item16% Item172& Item18s& Item19& & dataw! ! type! valuecover_hide_unhide! typeSTRING! data! ! type! value?! typeSCALAR! data" A" type," valuewinch_unhideA" typeSTRINGA" dataQ" " typem" value?" typeSCALAR" data" " type" valueroofRack_unhide" typeSTRING" data" # type" value?# typeSCALAR# data # _# typeJ# valuecamonet_01_unhide_# typeSTRING_# datao# # type# value?# typeSCALAR# data# # type# valuecoldWeatherKit_unhide# typeSTRING# data$ 4$ type$ value?4$ typeSCALAR4$ dataD$ $ typeo$ valuefuelcan_1_1_unhide$ typeSTRING$ data$ $ type$ value$ typeSCALAR$ data$ % type% valuefuelcan_1_2_unhide% typeSTRING% data%% V% typeA% valueV% typeSCALARV% dataf% % type% valuelightGuard_unhide% typeSTRING% data% % type% value?% typeSCALAR% data% 2& type& valuetoolbox_unhide2& typeSTRING2& dataB& s& type^& value?s& typeSCALARs& data& & type& valuetools_unhide& typeSTRING& data& & type& value?& typeSCALAR& propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value' ' data' ' type' value-1' typeSTRING' propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value( ( data( ( type( value-1( typeSTRING( propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuet) ) data) ) type) value-1) typeSTRING) propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value\* * datal* * type* value-1* typeSTRING* propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueB+ + dataR+ + typem+ value-1+ typeSTRING+ propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value-, m, data=, m, typeX, value-1m, typeSTRINGm, propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value- S- data#- S- type>- value-1S- typeSTRINGS- propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value- <. data . <. type'. value-1<. typeSTRING<. dataTypeObjectPositionInfo. sideEmptyflagsAttributes/ idtypegm_gc_army_ural375d_refuelCustomAttributes1/ > position5FXܘBdFangles!=/ lockLOCKEDtexturesgm_gc_oli1/ Attribute0/ Attribute10 Attribute2W7 Attribute3<8 Attribute4"9 Attribute5 : Attribute6: Attribute7; Attribute8< Attribute9= nAttributes > propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value0 0 data0 0 type0 value-10 typeSTRING0 propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value1 W7 data1 W7 type2 value$2 W7 typeARRAY$2 itemsItem0L2 Item12 W7 data\2 2 typel2 2 typeARRAY2 data2 W7 type2 value2 W7 typeARRAY2 itemsItem0o3 Item13 Item23 Item3L4 Item44 Item54 Item65 Item7n5 Item85 Item95 Item10?6 Item116 Item126 Item137 W7 data3 3 type3 valueroofRack_unhide3 typeSTRING3 data3 3 type3 value?3 typeSCALAR3 data 4 L4 type74 valuecamonet_01_unhideL4 typeSTRINGL4 data\4 4 typex4 value?4 typeSCALAR4 data4 4 type4 valuefuelcan_1_1_unhide4 typeSTRING4 data4 5 type 5 value5 typeSCALAR5 data.5 n5 typeY5 valuefuelcan_1_2_unhiden5 typeSTRINGn5 data~5 5 type5 value5 typeSCALAR5 data5 5 type5 valuelightGuard_unhide5 typeSTRING5 data6 ?6 type*6 value??6 typeSCALAR?6 dataO6 6 typev6 valuetoolbox_unhide6 typeSTRING6 data6 6 type6 value?6 typeSCALAR6 data6 7 type7 valuetools_unhide7 typeSTRING7 data&7 W7 typeB7 value?W7 typeSCALARW7 propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value7 <8 data 8 <8 type'8 value-1<8 typeSTRING<8 propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value8 "9 data8 "9 type 9 value-1"9 typeSTRING"9 propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value9 : data9 : type9 value-1 : typeSTRING : propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value: : data: : type: value-1: typeSTRING: propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value; ; data; ; type; value-1; typeSTRING; propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value< < data< < type< value-1< typeSTRING< propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuel= = data|= = type= value-1= typeSTRING= propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueU> > datae> > type> value-1> typeSTRING> dataTypeObjectPositionInfo)? sideEmptyflagsAttributesa? id=typegm_gc_army_ural375d_refuelCustomAttributes? N position5FYܘBFangles!=a? lockLOCKEDtexturesgm_gc_oli? Attribute0B@ Attribute1-A Attribute2G Attribute3H Attribute4{I Attribute5fJ Attribute6NK Attribute74L Attribute8M Attribute9N nAttributes N propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value@ -A data@ -A typeA value-1-A typeSTRING-A propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value>B G dataNB G typeiB value}B G typeARRAY}B itemsItem0B Item1B G dataB B typeB B typeARRAYB dataB G typeC valueC G typeARRAYC itemsItem0C Item1D Item2VD Item3D Item4D Item56E Item6wE Item7E Item8F Item9WF Item10F Item11F Item12%G Item13oG G dataC D typeD valueroofRack_unhideD typeSTRINGD data%D VD typeAD value?VD typeSCALARVD datafD D typeD valuecamonet_01_unhideD typeSTRINGD dataD D typeD value?D typeSCALARD dataD 6E type!E valuefuelcan_1_1_unhide6E typeSTRING6E dataFE wE typebE valuewE typeSCALARwE dataE E typeE valuefuelcan_1_2_unhideE typeSTRINGE dataE F typeE valueF typeSCALARF dataF WF typeBF valuelightGuard_unhideWF typeSTRINGWF datagF F typeF value?F typeSCALARF dataF F typeF valuetoolbox_unhideF typeSTRINGF dataF %G typeG value?%G typeSCALAR%G data5G oG typeZG valuetools_unhideoG typeSTRINGoG dataG G typeG value?G typeSCALARG propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueUH H dataeH H typeH value-1H typeSTRINGH propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value;I {I dataKI {I typefI value-1{I typeSTRING{I propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value&J fJ data6J fJ typeQJ value-1fJ typeSTRINGfJ propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueK NK dataK NK type9K value-1NK typeSTRINGNK propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueK 4L dataL 4L typeL value-14L typeSTRING4L propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueL M dataL M type M value-1M typeSTRINGM propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueM N dataM N typeM value-1N typeSTRINGN propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueN N dataN N typeN value-1N typeSTRINGN dataTypeObjectPositionInfoO sideEmptyflagsAttributesO idtypegm_gc_army_ural4320_repairCustomAttributesO ~` position̏5FژBEFO lockLOCKEDtexturesgm_gc_oliO Attribute0P Attribute1nQ Attribute2@Y Attribute3%Z Attribute4 [ Attribute5[ Attribute6\ Attribute7] Attribute8^ Attribute9_ nAttributes ~` propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value.Q nQ data>Q nQ typeYQ value-1nQ typeSTRINGnQ propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};ValueR @Y dataR @Y typeR valueR @Y typeARRAYR itemsItem0R Item1S @Y dataR S typeS S typeARRAYS data*S @Y typeES valueYS @Y typeARRAYYS itemsItem09T Item1T Item2T Item3U Item4RU Item5U Item6U Item75V Item8vV Item9V Item10W Item11WW Item12W Item13W Item14(X Item15tX Item16X Item17X @Y dataIT T typenT valuewinch_unhideT typeSTRINGT dataT T typeT value?T typeSCALART dataT U typeT valueroofRack_unhideU typeSTRINGU data!U RU type=U value?RU typeSCALARRU databU U typeU valuecamonet_01_unhideU typeSTRINGU dataU U typeU value?U typeSCALARU dataU 5V type V valuecoldWeatherKit_unhide5V typeSTRING5V dataEV vV typeaV value?vV typeSCALARvV dataV V typeV valuefuelcan_1_1_unhideV typeSTRINGV dataV W typeV value?W typeSCALARW dataW WW typeBW valuefuelcan_1_2_unhideWW typeSTRINGWW datagW W typeW value?W typeSCALARW dataW W typeW valuelightGuard_unhideW typeSTRINGW dataW (X typeX value?(X typeSCALAR(X data8X tX type_X valuetoolbox_unhidetX typeSTRINGtX dataX X typeX value?X typeSCALARX dataX X typeX valuetools_unhideX typeSTRINGX dataY @Y type+Y value@Y typeSCALAR@Y propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueY %Z dataY %Z typeZ value-1%Z typeSTRING%Z propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueZ [ dataZ [ typeZ value-1 [ typeSTRING [ propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value[ [ data[ [ type[ value-1[ typeSTRING[ propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value\ \ data\ \ type\ value-1\ typeSTRING\ propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value] ] data] ] type] value-1] typeSTRING] propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueo^ ^ data^ ^ type^ value-1^ typeSTRING^ propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueU_ _ datae_ _ type_ value-1_ typeSTRING_ propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value>` ~` dataN` ~` typei` value-1~` typeSTRING~` dataTypeObjectPositionInfo a sideEmptyAttributesBa idtypeland_gm_euro_furniture_typewriter_01atlOffset4?Ha positiong4FŖBBFangles`\@Ba Ha dataTypeObjectPositionInfoa sideEmptyAttributes b idtypeland_gm_euro_furniture_typewriter_01atlOffset4?b position=4FŖBFangles`\@ b b dataTypeObjectPositionInfob sideEmptyflagsAttributesb idP typeland_gm_euro_misc_viewplatform_01atlOffsetG=b position!h4FMBn׉FanglesL'=b skillL>b dataTypeObjectPositionInfoc sideEmptyflagsAttributesc idY typeland_gm_euro_misc_viewplatform_01atlOffset=c positionI6FRB͉FanglesK@c skillL>c dataTypeObjectPositionInfoQd sideEmptyflagsAttributesqd idztypeWindsock_01_FatlOffsetM>wd position=5FȢBVFqd wd dataTypeObjectPositionInfod sideEmptyflagsAttributese idtypeCUP_ch_mod_d=e position4F[BFangles;F@e disableSimulation=e dataTypeObjectPositionInfoe sideEmptyflagsAttributese idtypeCUP_ch_mod_df positionJ4F[BFangles;F@e disableSimulationf dataTypeLogicPositionInfof areaSize??idtypeModuleEditTerrainObject_FCustomAttributesf Hl position 5FړBFf Attribute0.g Attribute1g Attribute2Uh Attribute3h Attribute4i Attribute5%j Attribute6k nAttributesHl property#nameexpression_this setVariable ["#name",_value]Valueg g datag g typeg valueg typeSTRINGg property#filterexpression_this setVariable ["#filter",_value]Valueh Uh data$h Uh type@h value@Uh typeSCALARUh property#initServerexpression_this setVariable ["#initServer",_value]Valueh h datah h typeh valueh typeSTRINGh property#stateexpression_this setVariable ["#state",_value]ValueEi i dataUi i typeqi valuei typeSCALARi property#allowDamageexpression_this setVariable ["#allowDamage",_value]Valuei %j datai %j typej value%j typeBOOL%j property#doorStatesexpression_this setVariable ["#doorStates",_value]Valuej k dataj k typej valuej k typeARRAYj itemsItem0j Item16k Item2wk k datak 6k type!k valueD6k typeSCALAR6k dataFk wk typebk valuewk typeSCALARwk datak k typek valuek typeSCALARk property#initexpression_this setVariable ["#init",_value]Value l Hl datal Hl type3l valueHl typeSTRINGHl dataTypeLogicPositionInfol areaSize??idtypeModuleEditTerrainObject_FCustomAttributesl r position25F͓BFl Attribute0sm Attribute1n Attribute2n Attribute36o Attribute4o Attribute5jp Attribute6q nAttributesr property#nameexpression_this setVariable ["#name",_value]Valuem n datam n typem valuen typeSTRINGn property#filterexpression_this setVariable ["#filter",_value]ValueYn n datain n typen value@n typeSCALARn property#initServerexpression_this setVariable ["#initServer",_value]Valuen 6o datao 6o type!o value6o typeSTRING6o property#stateexpression_this setVariable ["#state",_value]Valueo o datao o typeo valueo typeSCALARo property#allowDamageexpression_this setVariable ["#allowDamage",_value]Value+p jp data;p jp typeWp valuejp typeBOOLjp property#doorStatesexpression_this setVariable ["#doorStates",_value]Valuep q datap q typep valueq q typeARRAYq itemsItem0:q Item1{q Item2q q dataJq {q typefq valueD{q typeSCALAR{q dataq q typeq valueq typeSCALARq dataq q typeq valueq typeSCALARq property#initexpression_this setVariable ["#init",_value]ValueOr r data_r r typexr valuer typeSTRINGr dataTypeObjectPositionInfo s sideEmptyflagsAttributesDs idtypeland_gm_tower_bt_6_fuest_80Js position 6FʓBFanglesD<Ds Js dataTypeObjectPositionInfos sideEmptyflagsAttributest idtypegm_gc_army_ural44202CustomAttributes9t I position4FyBhFangles@n?@t lockLOCKEDtexturesgm_gc_ols9t Attribute0t Attribute1u Attribute2 } Attribute3} Attribute4~ Attribute5 Attribute6 Attribute7 Attribute8z Attribute9` nAttributes I propertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueu u datau u typeu value-1u typeSTRINGu propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Valuev } datav } typew value,w } typeARRAY,w itemsItem0Tw Item1w } datadw w typetw w typeARRAYw dataw } typew valuew } typeARRAYw itemsItem0x Item1x Item2y Item3ly Item4y Item5z Item6Az Item7z Item8z Item9"{ Item10c{ Item11{ Item12{ Item13?| Item14| Item15| } datax x typex valueroofRack_unhidex typeSTRINGx datax y typey value?y typeSCALARy data-y ly typeWy valuecamonet_01_unhidely typeSTRINGly data|y y typey value?y typeSCALARy datay z typey valuecoldWeatherKit_unhidez typeSTRINGz dataz Az type,z value?Az typeSCALARAz dataQz z type|z valuefuelcan_1_1_unhidez typeSTRINGz dataz z typez valuez typeSCALARz dataz "{ type { valuefuelcan_1_2_unhide"{ typeSTRING"{ data2{ c{ typeN{ valuec{ typeSCALARc{ datas{ { type{ valuelightGuard_unhide{ typeSTRING{ data{ { type{ value?{ typeSCALAR{ data| ?| type*| valuetoolbox_unhide?| typeSTRING?| dataO| | typek| value?| typeSCALAR| data| | type| valuetools_unhide| typeSTRING| data| } type| value? } typeSCALAR } propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value} } data} } type} value-1} typeSTRING} propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value~ ~ data~ ~ type~ value-1~ typeSTRING~ propertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value  data  type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuei datay type value-1 typeSTRING propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueO data_ typez value-1 typeSTRING propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value: z dataJ z typee value-1z typeSTRINGz propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value ` data0 ` typeK value-1` typeSTRING` propertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value I data I type4 value-1I typeSTRINGI dataTypeObjectPositionInfo sideEmptyflagsAttributesׄ id?typegm_flag_GC݄ position4F_BFׄ ݄ dataTypeObjectPositionInfo[ sideEmptyflagsAttributes{ idntypegm_flag_PLatlOffset position4F4B6.F{ dataTypeObjectPositionInfo sideEmptyflagsAttributes idotypegm_flag_URatlOffset% position4FtBF % dataTypeObjectPositionInfo sideEmptyflagsAttributesІ idtypegm_gc_army_p601ֆ position4FSB&Fangles@ >,@І ֆ dataTypeLayernameWall BreachEntities' idatlOffset.ZitemsItem0j Item1@ Item2 Item3 Item40 Item5 Item6 Item7 Item8 Item9 Item10 Item11 Item12 Item13y Item145 Item15 Item16ʟ Item17 Item18 Item19 Item20v Item21 Item22 Item23W Item24 Item25٩ Item26 Item27 Item28^ Item29 Item30ĭ Item31~ Item32( Item33ү Item34| Item35& Item36 Item37 Item38| Item39' Item40Ҵ Item41~ Item42A Item434 Item44/ Item45* Item46 Item47w Item48] Item49C Item50 Item51 Item52 Item53 Item54 Item55 Item56" Item57 Item58Item59gItem60JItem61-Item62Item63Item64Item65Item66 Item67r Item68W Item69, Item70 Item71 Item72Item73xItem744Item75 Item76Item77Item78Item79VItem80+Item81Item82Item83Item84Item85|Item86HItem87Item88Item89Item90Item91ZItem92/Item93 Item94 Item95!Item96<"Item97"Item98#Item99n$Item100=%Item101&Item102&Item103'Item104~(Item105T)Item106-*Item107+Item108+Item109,Item110n-Item111H.Item112/Item113/Item1140Item1151Item116E2Item1173Item1183Item1194Item1205Item121AItem122BItem123CItem124{DItem125UEItem126FItem127FItem128GItem129HItem130RIItem131(JItem132JItem133KItem134LItem135iMItem136>NItem137OItem138OItem139QItem140QItem141RItem142xSItem143@TItem144 UItem1455VItem146WItem147WItem148XItem149eY.ZdataTypeObjectPositionInfo sideEmptyflagsAttributes" idtypeLand_ShellCrater_02_debris_F@ position0%F*BFangles:;T@n<" disableSimulation@ dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeLand_ShellCrater_02_decal_F position-,%F6BFangles:;T@n< disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes̐ idtypeLand_ShellCrater_02_small_F positionG2%FBӯFangles:;T@n<̐ disableSimulation dataTypeLogicPositionInfo areaSize +AoAflagsidtypeModuleHideTerrainObjects_FatlOffset=CustomAttributes‘ 0 position8%F9ABÄFangles;s=<‘ Attribute0 Attribute1 nAttributes0 property#filterexpression_this setVariable ["#filter",_value]ValueP data` type| valuepA typeSCALAR property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value 0 data 0 type value0 typeBOOL0 dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeLand_ShellCrater_02_debris_FatlOffset7 position~%FmيBHFangles@wP? disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributesݔ idtypeLand_ShellCrater_02_decal_FatlOffset7 position%FˊB Fangles@wP?ݔ disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes• idtypeLand_ShellCrater_02_small_FatlOffset7 position%F\BFangles@wP?• disableSimulation dataTypeLogicPositionInfop areaSize@@flagsidtypeModuleHideTerrainObjects_FCustomAttributes  position~%FNJB@Fangles@wP?; Attribute0 Attribute1w nAttributes property#filterexpression_this setVariable ["#filter",_value]Value6 w dataF w typeb valuepAw typeSCALARw property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Valueח  data  type value typeBOOL dataTypeObjectPositionInfo sideEmptyflagsAttributesΘ idtypeLand_ShellCrater_02_debris_F position%F^BτFangles]u>@@Θ disableSimulation dataTypeObjectPositionInfok sideEmptyflagsAttributes idtypeLand_ShellCrater_02_decal_F position%FB΄Fangles]u>@@ disableSimulation dataTypeLogicPositionInfoQ areaSize@@flagsidtypeModuleHideTerrainObjects_FCustomAttributes positionѕ%F͈B̈́Fangles]u>@@ Attribute0 Attribute1X nAttributes property#filterexpression_this setVariable ["#filter",_value]Value X data' X typeC valuepAX typeSCALARX property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value dataț type value typeBOOL dataTypeObjectPositionInfo sideEmptyAttributes idtypeLand_ShellCrater_02_extralarge_FatlOffset8> position#%FܬBЄF disableSimulation dataTypeObjectPositionInfo; sideEmptyflagsAttributess idtypeLand_ClutterCutter_large_Fy position%F BsЄFanglesѠ=@s y dataTypeObjectPositionInfo sideEmptyflagsAttributes/ idtypeLand_ClutterCutter_large_F5 position/%FdB$Fangles:;n%F#BFanglesT@n< disableSimulationʟ dataTypeObjectPositionInfoY sideEmptyflagsAttributes id typeLand_ShellCrater_02_decal_FatlOffset< position9%F BFanglesV@T@@ disableSimulation dataTypeObjectPositionInfo. sideEmptyflagsAttributesf id typeLand_ShellCrater_02_small_F position?%FBFanglesT@n%F{B|Fangles:;T@n position(&F BFangles>T@@> Attribute0v Attribute1 nAttributes property#filterexpression_this setVariable ["#filter",_value]Value̥ dataܥ type valuepA typeSCALAR property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Valuem data} type value typeBOOL dataTypeObjectPositionInfo, sideEmptyflagsAttributesd idtypeLand_ShellCrater_02_debris_F positionC#&Fz BHFangles|>@]e@@9 disableSimulationW dataTypeObjectPositionInfoߨ sideEmptyAttributes idtypeLand_ShellCrater_02_extralarge_FatlOffsetۍ> position%&FBÄF disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributesө idtypeLand_ClutterCutter_large_F٩ position"&Fu+BFangles>@ө ٩ dataTypeObjectPositionInfoY sideEmptyflagsAttributes id@typeLand_ShellCrater_02_debris_F positionI%FBBFangles;@; disableSimulation dataTypeObjectPositionInfo. sideEmptyflagsAttributesf idAtypeLand_ShellCrater_02_decal_F position%Fo2BFangles:;@:;f disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes@ idCtypeLand_ShellCrater_02_extralarge_F^ position•%F-BFangles;;@ disableSimulation^ dataTypeObjectPositionInfoܬ sideEmptyflagsAttributes idDtypeLand_ClutterCutter_large_F positionW%F[1B쌅Fangles;;  dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeLand_Decal_ScorchMark_01_large_Fĭ positionn$FvBF ĭ dataTypeObjectPositionInfoX sideEmptyflagsAttributesx idtypeLand_Decal_ScorchMark_01_small_FatlOffset9~ position%F݄BHFx ~ dataTypeObjectPositionInfo sideEmptyflagsAttributes" idtypeLand_Decal_ScorchMark_01_large_F( position%FɚB4̈́F" ( dataTypeObjectPositionInfo sideEmptyflagsAttributes̯ idtypeLand_Decal_ScorchMark_01_large_Fү position"&F+vB뿄F̯ ү dataTypeObjectPositionInfoV sideEmptyflagsAttributesv idtypeLand_Decal_ScorchMark_01_large_F| position'*&FmWBcFv | dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeLand_Decal_ScorchMark_01_large_F& position$&FYB.ĄF & dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeLand_Decal_ScorchMark_01_large_F positionyJ%FջBFangles9@ dataTypeObjectPositionInfo| sideEmptyflagsAttributes idtypeLand_Decal_ScorchMark_01_large_FatlOffset position%F BL)Fangles@? dataTypeObjectPositionInfo> sideEmptyflagsAttributesv idtypeLand_Decal_ScorchMark_01_large_F| positioni&FvtBFanglesCp@v | dataTypeObjectPositionInfo sideEmptyflagsAttributes! idtypeBMP2Wreck' position}j&F>[BFanglesQ<޿@z>B>! ' dataTypeObjectPositionInfo sideEmptyflagsAttributes̴ idtypeBRDMWreckҴ positionO%FϋB*Fangles:;a?̴ Ҵ dataTypeObjectPositionInfo@ sideEmptyflagsAttributesx idtypeJeepWreck3~ position$FiʊBFangles:;朋@]e  dataN  typej valueHB typeSCALAR propertyModuleEffectsSmoke_F_ParticleLiftingexpression_this setVariable ['ParticleLifting',_value,true];Value A data A type, value?A typeSCALARA propertyModuleEffectsSmoke_F_ColorAlphaexpression_this setVariable ['ColorAlpha',_value,true];Value data type value? typeSCALAR propertyModuleEffectsSmoke_F_ColorBlueexpression_this setVariable ['ColorBlue',_value,true];Valuen data~ type value? typeSCALAR propertyModuleEffectsSmoke_F_Timeoutexpression_this setVariable ['Timeout',_value,true];Value a data0 a typeL valuea typeSCALARa propertyModuleEffectsSmoke_F_Expansionexpression_this setVariable ['Expansion',_value,true];Value  data  type value? typeSCALAR propertyModuleEffectsSmoke_F_ColorRedexpression_this setVariable ['ColorRed',_value,true];Value data type value? typeSCALAR propertyModuleEffectsSmoke_F_ParticleDensityexpression_this setVariable ['ParticleDensity',_value,true];ValueL data\ typex value A typeSCALAR propertyModuleEffectsSmoke_F_ColorGreenexpression_this setVariable ['ColorGreen',_value,true];Value E data E type0 value?E typeSCALARE propertyModuleEffectsSmoke_F_EffectSizeexpression_this setVariable ['EffectSize',_value,true];Value data type value? typeSCALAR propertyModuleEffectsSmoke_F_ParticleSpeedexpression_this setVariable ['ParticleSpeed',_value,true];Valuez data type value? typeSCALAR propertyModuleEffectsSmoke_F_ParticleSizeexpression_this setVariable ['ParticleSize',_value,true];Value6 w dataF w typeb value?w typeSCALARw propertyModuleEffectsSmoke_F_WindEffectexpression_this setVariable ['WindEffect',_value,true];Value / data / type value?/ typeSCALAR/ dataTypeLogicPositionInfo idtypeModuleEffectsSmoke_FCustomAttributes * position!I%FчBhFangles@@ Attribute0 Attribute1z Attribute2< Attribute3 Attribute4 Attribute5\ Attribute6 Attribute7 Attribute8 Attribute9@ Attribute10 Attribute11 Attribute12r nAttributes * propertyModuleEffectsSmoke_F_ParticleLifeTimeexpression_this setVariable ['ParticleLifeTime',_value,true];Value9 z dataI z typee valueHBz typeSCALARz propertyModuleEffectsSmoke_F_ParticleLiftingexpression_this setVariable ['ParticleLifting',_value,true];Value < data < type' value?< typeSCALAR< propertyModuleEffectsSmoke_F_ColorAlphaexpression_this setVariable ['ColorAlpha',_value,true];Value data type value? typeSCALAR propertyModuleEffectsSmoke_F_ColorBlueexpression_this setVariable ['ColorBlue',_value,true];Valuei datay type value? typeSCALAR propertyModuleEffectsSmoke_F_Timeoutexpression_this setVariable ['Timeout',_value,true];Value \ data+ \ typeG value\ typeSCALAR\ propertyModuleEffectsSmoke_F_Expansionexpression_this setVariable ['Expansion',_value,true];Value  data  type value? typeSCALAR propertyModuleEffectsSmoke_F_ColorRedexpression_this setVariable ['ColorRed',_value,true];Value data type value? typeSCALAR propertyModuleEffectsSmoke_F_ParticleDensityexpression_this setVariable ['ParticleDensity',_value,true];ValueG dataW types value A typeSCALAR propertyModuleEffectsSmoke_F_ColorGreenexpression_this setVariable ['ColorGreen',_value,true];Value @ data @ type+ value?@ typeSCALAR@ propertyModuleEffectsSmoke_F_EffectSizeexpression_this setVariable ['EffectSize',_value,true];Value data type value? typeSCALAR propertyModuleEffectsSmoke_F_ParticleSpeedexpression_this setVariable ['ParticleSpeed',_value,true];Valueu data type value? typeSCALAR propertyModuleEffectsSmoke_F_ParticleSizeexpression_this setVariable ['ParticleSize',_value,true];Value1 r dataA r type] value?r typeSCALARr propertyModuleEffectsSmoke_F_WindEffectexpression_this setVariable ['WindEffect',_value,true];Value * data * type value?* typeSCALAR* dataTypeLogicPositionInfo idtypeModuleEffectsFire_FCustomAttributes position.I%F3чBsFangles@@ Attribute0 Attribute1C Attribute2 Attribute3 Attribute4~ Attribute5/ Attribute6 Attribute7 Attribute8b Attribute9 Attribute10 nAttributes propertyModuleEffectsFire_F_ColorBlueexpression_this setVariable ['ColorBlue',_value,true];Value C data C type. value?C typeSCALARC propertyModuleEffectsFire_F_ParticleDensityexpression_this setVariable ['ParticleDensity',_value,true];Value  data  type valueA typeSCALAR propertyModuleEffectsFire_F_ParticleLifeTimeexpression_this setVariable ['ParticleLifeTime',_value,true];Value data type value? typeSCALAR propertyModuleEffectsFire_F_FireDamageexpression_this setVariable ['FireDamage',_value,true];Value= ~ dataM ~ typei value?~ typeSCALAR~ propertyModuleEffectsFire_F_Timeoutexpression_this setVariable ['Timeout',_value,true];Value / data / type value/ typeSCALAR/ propertyModuleEffectsFire_F_ColorGreenexpression_this setVariable ['ColorGreen',_value,true];Value data type value? typeSCALAR propertyModuleEffectsFire_F_ColorRedexpression_this setVariable ['ColorRed',_value,true];ValueX datah type value? typeSCALAR propertyModuleEffectsFire_F_ParticleOrientationexpression_this setVariable ['ParticleOrientation',_value,true];Value! b data1 b typeM valueb typeSCALARb propertyModuleEffectsFire_F_EffectSizeexpression_this setVariable ['EffectSize',_value,true];Value  data  type value? typeSCALAR propertyModuleEffectsFire_F_ParticleSizeexpression_this setVariable ['ParticleSize',_value,true];Value data type value? typeSCALAR propertyModuleEffectsFire_F_ParticleSpeedexpression_this setVariable ['ParticleSpeed',_value,true];ValueP data` type| value? typeSCALAR dataTypeObjectPositionInfo! sideEmptyflagsAttributesY idtypeland_gm_fence_border_gz1_600atlOffsetw position$%F BFanglesՅ?G@(K@Y disableSimulationw dataTypeObjectPositionInfo sideEmptyflagsAttributes? idtypeland_gm_fence_border_gz1_600atlOffset`] position2%F2BфFangles??? disableSimulation] dataTypeObjectPositionInfo sideEmptyflagsAttributes% idtypeland_gm_fence_border_gz1_600atlOffset@C positionH%%FBFangles?G@|?% disableSimulationC dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypegm_gc_bgs_ural4320_cargoatlOffset position6%FBS2Fangles;; dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypegm_gc_bgs_ural4320_cargoatlOffset position%FBP3Fangles; ?:; dataTypeObjectPositionInfoo sideEmptyflagsAttributes id typegm_gc_bgs_p601atlOffsetCustomAttributes position%FBFangles:;)R@:; texturesgm_gc_oli Attribute0 nAttributes propertyVehicleCustomizationexpressionif (local _this) then {if (isSimpleObject _this) then {_this setVariable ['bis_fnc_initVehicle_customization',_value]} else {([_this] + _value + [true]) call (uinamespace getvariable 'bis_fnc_initVehicle');};};Value data type& value: typeARRAY: itemsItem0b Item1 datar type typeARRAY data type value typeARRAY itemsItem0 Item1P data P type; valuesirenLights_01_unhideP typeSTRINGP data` type| value? typeSCALAR dataTypeGroupsideEastEntities Attributes id  itemsItem0 Item1 dataTypeObjectPositionInfo sideEastflagsAttributes id typegm_gc_bgs_rifleman_mpikm72_80_str position%FҊBFangles(y@ dataTypeObjectPositionInfoQ sideEastflagsAttributes idtypegm_gc_army_sf_squadleader_mpikms72_80_str positionO%Fv֊B7Fangles|`@ dataTypeGroupsideEastEntities Attributes id  itemsItem0 dataTypeObjectPositionInfo sideEastflagsAttributes idtypegm_gc_bgs_rifleman_mpikm72_80_str positionIz%F1B)Fangles(y@ dataTypeGroupsideEastEntities Attributes id itemsItem0+ dataTypeObjectPositionInfo sideEastflagsAttributes idtypegm_gc_bgs_rifleman_mpikm72_80_str position8%FۦB&Fangles(y@ dataTypeGroupsideEastEntities= Attributes id" itemsItem0Z  dataTypeObjectPositionInfo sideEastflagsAttributes idtypegm_gc_bgs_rifleman_mpikm72_80_str positionK%FBk'Fangles ^@  " dataTypeLogicPositionInfo idtypeModuleEffectsSmoke_FCustomAttributes  position$FOuBFangles:;]e< Attribute0 Attribute1m Attribute2/ Attribute3 Attribute4 Attribute5O Attribute6 Attribute7 Attribute8{ Attribute93 Attribute10 Attribute11 Attribute12e nAttributes  propertyModuleEffectsSmoke_F_ParticleLifeTimeexpression_this setVariable ['ParticleLifeTime',_value,true];Value, m data< m typeX valueHBm typeSCALARm propertyModuleEffectsSmoke_F_ParticleLiftingexpression_this setVariable ['ParticleLifting',_value,true];Value / data / type value?/ typeSCALAR/ propertyModuleEffectsSmoke_F_ColorAlphaexpression_this setVariable ['ColorAlpha',_value,true];Value data type value? typeSCALAR propertyModuleEffectsSmoke_F_ColorBlueexpression_this setVariable ['ColorBlue',_value,true];Value\ datal type value? typeSCALAR propertyModuleEffectsSmoke_F_Timeoutexpression_this setVariable ['Timeout',_value,true];Value O data O type: valueO typeSCALARO propertyModuleEffectsSmoke_F_Expansionexpression_this setVariable ['Expansion',_value,true];Value  data  type value? typeSCALAR propertyModuleEffectsSmoke_F_ColorRedexpression_this setVariable ['ColorRed',_value,true];Valuex data type value? typeSCALAR propertyModuleEffectsSmoke_F_ParticleDensityexpression_this setVariable ['ParticleDensity',_value,true];Value: { dataJ { typef value A{ typeSCALAR{ propertyModuleEffectsSmoke_F_ColorGreenexpression_this setVariable ['ColorGreen',_value,true];Value 3 data 3 type value?3 typeSCALAR3 propertyModuleEffectsSmoke_F_EffectSizeexpression_this setVariable ['EffectSize',_value,true];Value data type value? typeSCALAR propertyModuleEffectsSmoke_F_ParticleSpeedexpression_this setVariable ['ParticleSpeed',_value,true];Valueh datax type value? typeSCALAR propertyModuleEffectsSmoke_F_ParticleSizeexpression_this setVariable ['ParticleSize',_value,true];Value$ e data4 e typeP value?e typeSCALARe propertyModuleEffectsSmoke_F_WindEffectexpression_this setVariable ['WindEffect',_value,true];Value  data  type value? typeSCALAR dataTypeLogicPositionInfo idtypeModuleEffectsFire_FCustomAttributes position$FZuBFangles:;]e< Attribute0 Attribute16 Attribute2 Attribute3 Attribute4q Attribute5" Attribute6 Attribute7 Attribute8UAttribute9 Attribute10nAttributes propertyModuleEffectsFire_F_ColorBlueexpression_this setVariable ['ColorBlue',_value,true];Value 6 data 6 type! value?6 typeSCALAR6 propertyModuleEffectsFire_F_ParticleDensityexpression_this setVariable ['ParticleDensity',_value,true];Value data type valueA typeSCALAR propertyModuleEffectsFire_F_ParticleLifeTimeexpression_this setVariable ['ParticleLifeTime',_value,true];Valuey data type value? typeSCALAR propertyModuleEffectsFire_F_FireDamageexpression_this setVariable ['FireDamage',_value,true];Value0 q data@ q type\ value?q typeSCALARq propertyModuleEffectsFire_F_Timeoutexpression_this setVariable ['Timeout',_value,true];Value " data " type value" typeSCALAR" propertyModuleEffectsFire_F_ColorGreenexpression_this setVariable ['ColorGreen',_value,true];Value data type value? typeSCALAR propertyModuleEffectsFire_F_ColorRedexpression_this setVariable ['ColorRed',_value,true];ValueK data[ typew value? typeSCALAR propertyModuleEffectsFire_F_ParticleOrientationexpression_this setVariable ['ParticleOrientation',_value,true];ValueUdata$Utype@valueUtypeSCALARUpropertyModuleEffectsFire_F_EffectSizeexpression_this setVariable ['EffectSize',_value,true];Value data typevalue? typeSCALAR propertyModuleEffectsFire_F_ParticleSizeexpression_this setVariable ['ParticleSize',_value,true];Valuedatatypevalue?typeSCALARpropertyModuleEffectsFire_F_ParticleSpeedexpression_this setVariable ['ParticleSpeed',_value,true];ValueCdataStypeovalue?typeSCALARdataTypeObjectPositionInfosideEmptyflagsAttributesIidtypeland_gm_euro_plankpath_01atlOffset?gposition`%FBFangles>@2@IdisableSimulationgdataTypeObjectPositionInfosideEmptyflagsAttributes,idtypeland_gm_euro_plankpath_02atlOffsetl?Jposition[%FtBT Fangles=d?WS@,disableSimulationJdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_plankpath_02atlOffsetP?-positione%F=BFangles=d?WS@disableSimulation-dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_plankpath_01atlOffsetK?positionj%F8B Fangles>@2@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_plankpath_01atlOffsetF?position%FMBFangles>@2@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeland_gm_euro_plankpath_01atlOffset?positionv%F͈B%Fangles>@2@disableSimulationdataTypeObjectPositionInfocsideEmptyflagsAttributesidtypeland_gm_euro_plankpath_02atlOffsetl?positionr%FZΈBFangles=d?WS@disableSimulationdataTypeObjectPositionInfoF sideEmptyflagsAttributes~ idtypeland_gm_euro_plankpath_02atlOffsetP? position|%FXB|Fangles=d?WS@~ disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributesT idtypeLand_ShellCrater_02_debris_Fr position(%FIBeFangles<t2@n7&FǧBL"Fangles<T@P@disableSimulationdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_ShellCrater_02_decal_Fposition2&FěB&#Fangles<T@P@disableSimulationdataTypeObjectPositionInforsideEmptyflagsAttributesidtypeLand_ShellCrater_02_small_Fposition8&F)Bi"Fangles<T@P@disableSimulationdataTypeObjectPositionInfoFsideEmptyflagsAttributes~idtypeLand_ClutterCutter_large_Fposition5&FPB Fangles<P@~dataTypeObjectPositionInfosideEmptyflagsAttributes<idtypeLand_ShellCrater_02_debris_FZpositionm%F>BW_Fangles#<@v@@<disableSimulationZdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_ShellCrater_02_decal_F/position%F/4B]Fangles#<@v@@disableSimulation/dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeLand_ShellCrater_02_small_F positionU%FVB_Fangles#<@v@@disableSimulation dataTypeObjectPositionInfo sideEmptyflagsAttributes idtypeLand_ClutterCutter_large_F position%F,B_Fangles#<@@  dataTypeObjectPositionInfoT!sideEmptyflagsAttributes!idtypeLand_Decal_ScorchMark_01_large_FatlOffset|>!position%FkBݛFangles@!!dataTypeObjectPositionInfo!sideEmptyflagsAttributes6"idtypeT72Wreck<"position%FB\FanglesV@@@6"<"dataTypeObjectPositionInfo"sideEmptyAttributes"idtypeT72WreckTurretatlOffset ;?"position%FwBFangles[@\W@P$>""dataTypeObjectPositionInfoZ#sideEmptyflagsAttributes#idtypeCrater#position;%FЈB.lFanglesԣ<##dataTypeObjectPositionInfo$sideEmptyflagsAttributesP$idtypeLand_ShellCrater_02_debris_Fn$position%FވBmlFanglesԣ<P$disableSimulationn$dataTypeObjectPositionInfo$sideEmptyflagsAttributes%idtypeLand_ShellCrater_01_F=%position%FZB\kFanglesԣ<%disableSimulation=%dataTypeObjectPositionInfo%sideEmptyflagsAttributes%idtypeLand_ShellCrater_02_debris_F&positioni&FBloFanglesΣ<@@%disableSimulation&dataTypeObjectPositionInfo&sideEmptyflagsAttributes&idtypeLand_ShellCrater_02_decal_F&positiond&FBnFanglesΣ<@@&disableSimulation&dataTypeObjectPositionInfol'sideEmptyflagsAttributes'idtypeLand_ShellCrater_02_extralarge_F'positiong&FBnFanglesΣ<=@@'disableSimulation'dataTypeObjectPositionInfo@(sideEmptyflagsAttributesx(idtypeLand_ClutterCutter_large_F~(positionh&FBpFanglesΣ<@x(~(dataTypeObjectPositionInfo(sideEmptyflagsAttributes6)idtypeLand_ShellCrater_02_debris_FT)position&FլBFangles˜D<@@6)disableSimulationT)dataTypeObjectPositionInfo)sideEmptyAttributes*idtypeLand_ShellCrater_02_decal_FatlOffset5?-*position9&F܈BFangles@*disableSimulation-*dataTypeObjectPositionInfo*sideEmptyflagsAttributes*idtypeLand_ShellCrater_02_extralarge_F+position&FBFangles˜D<@@*disableSimulation+dataTypeObjectPositionInfo+sideEmptyflagsAttributes+idtypeLand_ClutterCutter_large_F+positionG&FBFangles˜D<@++dataTypeObjectPositionInfoC,sideEmptyflagsAttributes{,idtypeLand_ShellCrater_02_debris_F,position'FBdFanglesq@@Ѡ={,disableSimulation,dataTypeObjectPositionInfo-sideEmptyflagsAttributesP-idtypeLand_ShellCrater_02_decal_Fn-position'FyԅB܊Fangles@@=P-disableSimulationn-dataTypeObjectPositionInfo-sideEmptyflagsAttributes*.id typeLand_ShellCrater_02_extralarge_FH.positionķ'FBˌFanglesq@X@Ѡ=*.disableSimulationH.dataTypeObjectPositionInfo.sideEmptyflagsAttributes.id!typeLand_ClutterCutter_large_F/positionǸ'FKBFanglesq@Ѡ=./dataTypeObjectPositionInfo/sideEmptyflagsAttributes/id'typeLand_ShellCrater_02_debris_F/position(FlQB8FanglesH<@@/disableSimulation/dataTypeObjectPositionInfoY0sideEmptyflagsAttributes0id(typeLand_ShellCrater_02_decal_F0positionE(F~CB?8Fanglesk.<@<0disableSimulation0dataTypeObjectPositionInfo31sideEmptyflagsAttributesk1id*typeLand_ShellCrater_02_extralarge_F1position(F1B:FanglesH<@;k1disableSimulation1dataTypeObjectPositionInfo2sideEmptyflagsAttributes?2id+typeLand_ClutterCutter_large_FE2position (FA:B$:FanglesH<@?2E2dataTypeObjectPositionInfo2sideEmptyflagsAttributes2id"typeLand_ShellCrater_02_debris_F3position5&F-B>Fangles @@#<2disableSimulation3dataTypeObjectPositionInfo3sideEmptyflagsAttributes3id#typeLand_ShellCrater_02_decal_F3position|&FBs>Fangles @@#<3disableSimulation3dataTypeObjectPositionInfot4sideEmptyflagsAttributes4id%typeLand_ShellCrater_02_extralarge_F4position7&FyB^@FanglesM@@D<4disableSimulation4dataTypeObjectPositionInfoH5sideEmptyflagsAttributes5id&typeLand_ClutterCutter_large_F5positionC&FBX@FanglesM@D<55dataTypeObjectPositionInfo6sideEmptyflagsAttributesJ6idtypegm_gc_army_brdm2umCustomAttributess6Aposition(FBȆFangles;@;J6lockLOCKEDtexturesgm_gc_wins6 Attribute0+7Attribute18Attribute28Attribute39Attribute4:Attribute5;Attribute6<Attribute7>Attribute8?Attribute9@nAttributes Apropertygm_vehicleMarkings_Insignias_MissionLarge_attributeexpression[_this,_value,3,1] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value78data78type8value-18typeSTRING8propertygm_vehicleMarkings_Insignias_nation_attributeexpression[_this,_value,5,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value88data88type8value-18typeSTRING8propertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value99data99type9value-19typeSTRING9propertygm_vehicleMarkings_tacticalNumber_Number_attributeexpression[_this,_value,2,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value::data::type:value-1:typeSTRING:propertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuer;;data;;type;value-1;typeSTRING;propertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueZ<<dataj<<type<value-1<typeSTRING<propertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Value<>data=>type>value[[[["gm_lp1_blk"],[1]],[["gm_handgrenade_frag_rgd5","gm_smokeshell_wht_gc","gm_smokeshell_grn_gc","gm_smokeshell_red_gc","gm_1Rnd_265mm_flare_multi_red_gc","gm_1Rnd_265mm_flare_single_wht_gc","gm_1Rnd_265mm_flare_single_red_gc","gm_1Rnd_265mm_flare_single_grn_gc","gm_30Rnd_545x39mm_B_7N6_ak74_org"],[8,2,2,2,2,2,2,2,8]],[["gm_df7x40_blk","gm_gc_army_gauzeBandage","gm_gc_army_medkit","gm_repairkit_01"],[1,4,4,1]],[[],[]]],false]>typeSTRING>propertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value??data??type?value-1?typeSTRING?propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueq@@data@@type@value-1@typeSTRING@propertygm_vehicleMarkings_tacticalNumber_Numberfont_attributeexpression[_this,_value,2,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value`AAdatapAAtypeAvalue-1AtypeSTRINGAdataTypeGroupsideEastEntitiesAAttributesBid BitemsItem0BBdataTypeObjectPositionInfoBsideEastflagsAttributesBid typegm_pl_army_machinegunner_pk_80_winBposition5(FHB)FanglesIO@BBBdataTypeObjectPositionInfoPCsideEmptyflagsAttributesCid,typeLand_ShellCrater_02_debris_FCposition8^)F&NpositionŒ)FBFangles#<@@ NdisableSimulation>NdataTypeObjectPositionInfoNsideEmptyflagsAttributesNid>typeLand_ShellCrater_02_extralarge_FOposition)F~BFangles#<#}@@NdisableSimulationOdataTypeObjectPositionInfoOsideEmptyflagsAttributesOid?typeLand_ClutterCutter_large_FOposition)F?B㚈Fangles#<@OOdataTypeGroupsideEastEntitiesPAttributesPid-QitemsItem0;PPdataTypeObjectPositionInfoPsideEastflagsAttributesPid.typegm_pl_army_rifleman_akm_80_winPpositionGj*F픇B,FanglesQdataTypeObjectPositionInfoXRsideEmptyflagsAttributesRidtypeland_gm_camonet_03_natoatlOffset7Rposition5t*FJB0Fangles@"@@RdataTypeObjectPositionInfo.SsideEmptyflagsAttributesfSidtypeland_gm_sandbags_02_wallatlOffsetxSposition*F帇B2)Fangles5@P >ΣxSdataTypeObjectPositionInfoSsideEmptyflagsAttributes.Tidtypeland_gm_woodbunker_01_bags@TpositionTk*FB^-Fangles,@ic@<.TskillL>@TdataTypeObjectPositionInfoTsideEmptyflagsAttributesTidtypeland_gm_sandbags_01_wall_01 Upositionu*FB(Fangles,@ic@ UdataTypeGroupsideEastEntitiesSUAttributes/Vid/5VitemsItem0pU/VdataTypeObjectPositionInfoUsideEastflagsAttributes)Vid0typegm_pl_army_rifleman_akm_80_win/Vpositionl%F䇅BPFangles]@)V/V5VdataTypeObjectPositionInfoVsideEmptyflagsAttributesVidtypegm_barrel_rustyatlOffset7Wpositionn%F깆BPFanglesKe<&s-@WdataTypeObjectPositionInfoWsideEmptyflagsAttributesWidtypeland_gm_camonet_03_natoatlOffset7Wpositionu%FݨBTFangles;o?@nWdataTypeObjectPositionInfoSXsideEmptyflagsAttributesXidtypeland_gm_sandbags_02_wallXposition_%FB?NFanglesKe< >XdataTypeObjectPositionInfoYsideEmptyflagsAttributesSYidtypeland_gm_woodbunker_01_bagseYpositionBm%FXBqQFangles<]@\=SYskillL>eYdataTypeObjectPositionInfoYsideEmptyflagsAttributesZidtypeland_gm_sandbags_01_wall_01.ZpositionNx%F9B1MFangles<]@<ZskillL>.ZdataTypeGroupsideCivilianEntities|ZAttributes+\id1\itemsItem0ZItem1E[Item2[+\dataTypeObjectPositionInfo[sideCivilianflagsAttributes?[idtypeC_Jeff_VRE[positionTmF C MF?[E[dataTypeWaypointposition;hF. kB FEffects[showWPNEVERidtypeMove[[dataTypeWaypointposition"1GB-FEffects%\showWPNEVERidtypeMoveatlOffset+\+\1\dataTypeGroupsideCivilianEntities\Attributes>^idatlOffset7D^itemsItem0\Item1h]Item2]>^dataTypeObjectPositionInfoB]sideCivilianflagsAttributesb]idtypeC_Jeff_VRatlOffset7h]positionuFBZ`Fb]h]dataTypeWaypointposition=fFBkBޥFEffects]showWPNEVERidtypeMove]]dataTypeWaypointpositionqG[ BlFEffects8^showWPNEVERidtypeMove>^>^D^dataTypeLogicPositionInfo^idtypeARK_Rotor_InsertCustomAttributes^cpositionÓFB`Fangles< l@^Attribute0D_Attribute1`Attribute2`Attribute3aAttribute4=bnAttributescpropertyARK_Rotor_Insert_Crew_Percentageexpression_this setVariable ['Crew_Percentage',_value,true];Value_`data_`type_valueB`typeSCALAR`propertyARK_Rotor_Insert_Vehicle_ClassNameexpression_this setVariable ['Vehicle_ClassName',_value,true];Value``data``type`valuegm_gc_airforce_mi2p`typeSTRING`propertyARK_Rotor_Insert_Fly_Speedexpression_this setVariable ['Fly_Speed',_value,true];ValueEaadataUaatypetavalueNORMALatypeSTRINGapropertyARK_Rotor_Insert_Fly_Heightexpression_this setVariable ['Fly_Height',_value,true];Valuea=bdata b=btype(bvalueHC=btypeSCALAR=bpropertyARK_Rotor_Insert_Routine_Functionexpression_this setVariable ['Routine_Function',_value,true];Valuebcdatabctypebvalueark_rotor_fnc_insertctypeSTRINGcdataTypeLogicPositionInfoncidtypeARK_Rotor_InsertCustomAttributescgpositionFC+MFangles+=s=cAttribute0dAttribute1dAttribute2eAttribute3SfAttribute4gnAttributesgpropertyARK_Rotor_Insert_Crew_Percentageexpression_this setVariable ['Crew_Percentage',_value,true];ValuedddataddtypedvalueBdtypeSCALARdpropertyARK_Rotor_Insert_Vehicle_ClassNameexpression_this setVariable ['Vehicle_ClassName',_value,true];ValueMeedata]eetypeevaluegm_gc_airforce_mi2petypeSTRINGepropertyARK_Rotor_Insert_Fly_Speedexpression_this setVariable ['Fly_Speed',_value,true];ValuefSfdatafSftype>fvalueNORMALSftypeSTRINGSfpropertyARK_Rotor_Insert_Fly_Heightexpression_this setVariable ['Fly_Height',_value,true];ValuefgdatafgtypefvalueHCgtypeSCALARgpropertyARK_Rotor_Insert_Routine_Functionexpression_this setVariable ['Routine_Function',_value,true];Valueggdataggtypegvalueark_rotor_fnc_insertgtypeSTRINGgdataTypeTriggerpositionF~/B`FAttributes@hidtypeEmptyDetectorAreaR50hconditioncall{triggerActivated stage7}interuptablehdataTypeTriggerpositionȅFFCMFAttributeshidtypeEmptyDetectorAreaR50iconditioncall{triggerActivated stage7}idataTypeObjectPositionInfoisideEmptyflagsAttributesiidtypeCUP_O_UAZ_Unarmed_RUatlOffsetiposition{gFv.pBkFangles<@iidataTypeObjectPositionInfoYjsideEmptyflagsAttributesjidtypeCUP_O_UAZ_Unarmed_RUjpositiongFoBoFangles2<@jjdataTypeObjectPositionInfoksideEmptyflagsAttributesGkidtypeCUP_O_UAZ_Unarmed_RUMkpositionw2fF(^oBʜFangles#<(?@GkMkdataTypeLogicPositionInfoknameadm_hc_unitisPlayabledescriptionHCidtypeHeadlessClient_FatlOffsetDkpositionhF+ҍD\FkdataTypeObjectPositionInfollsideEmptyflagsAttributeslidtypeHeli_H_civillpositionTERBsFangles#<dߎ?#Item17dataTypeObjectPositionInfosideWestflagsAttributesid typeB_crew_FCustomAttributes7positionEItem3Item4Item5Item6]Item7Item8Item96Item10wItem11Item12Item13VItem14Item15Item16*Item17}datatypevalueradio_01_unhidetypeSTRINGdata >type)value?>typeSCALAR>dataNtypevvalueradio_02_unhidetypeSTRINGdatatypevalue?typeSCALARdatatypevaluecover_hoops_unhidetypeSTRINGdata,]typeHvalue?]typeSCALAR]datamtypevaluecover_doors_unhidetypeSTRINGdatatypevalue?typeSCALARdata6type!valuewindshield6typeSTRING6dataFwtypebvaluewtypeSCALARwdatatypevaluedoorBag_unhidetypeSTRINGdatatypevalue?typeSCALARdataVtypeAvaluebeacon_01_org_unhideVtypeSTRINGVdataftypevaluetypeSCALARdatatypevaluebeacon_01_blu_unhidetypeSTRINGdata*typevalue*typeSCALAR*data:}typehvaluecoldWeatherKit_unhide}typeSTRING}datatypevaluetypeSCALARpropertygm_vehicleMarkings_Insignias_Company_attributeexpression[_this,_value,3,4] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valueddatattypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Numbers_attributeexpression[_this,_value,0,1] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueOdata_typezvalue-1typeSTRINGpropertygm_vehicleMarkings_Insignias_Battalion_attributeexpression[_this,_value,3,3] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value7wdataGwtypebvalue-1wtypeSTRINGwpropertygm_vehicleMarkings_Insignias_Platoon_attributeexpression[_this,_value,3,5] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value]data-]typeHvalue-1]typeSTRING]propertygm_vehicleMarkings_tacticalSign_PreIcon_attributeexpression[_this,_value,1,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;ValueGdataGtype2value-1GtypeSTRINGGpropertygm_vehicleMarkings_Insignias_MissionSmall_attributeexpression[_this,_value,3,0] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Value2data2typevalue-12typeSTRING2propertygm_vehicleMarkings_Insignias_Marking_attributeexpression[_this,_value,3,2] call gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_LicensePlates_Plate_attributeexpression[_this,_value,0,0] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGpropertygm_vehicleMarkings_tacticalSign_PostIcon_attributeexpression[_this,_value,1,3] spawn gm_core_vehicles_fnc_vehicleMarkingsUpdateAttributes;Valuedatatypevalue-1typeSTRINGdataTypeTriggerposition [FddB6Fangle1SAttributesaidtypeEmptyDetectorAreaR250conditioncall{triggerActivated stage7}sizeA$vBsizeBƓBdataTypeLogicPositionInfoidtypeAdmiral_OndemandCampZoneCustomAttributesIhposition8]FdB]Fangles<#? namesecondCleanconditioncall{this}sizeADsizeB,DisRectangle LinkIDProvider.LinksAnextIDAitemsItem0YItem1Item2Item3@Item4Item5Item6'Item7tItem8Item9Item10[Item11Item12Item13BItem14Item15Item16)Item17vItem18Item19Item20]Item21Item22Item23DItem24Item25Item26+Item27xItem28Item29Item30_Item31Item32Item33FItem34Item35Item36-Item37zItem38Item39Item40aItem41Item42Item43HItem44Item45Item46/Item47|Item48Item49Item50cItem51Item52Item53JItem54Item55Item561Item57~Item58Item59Item60eItem61Item62Item63LItem64Item65Item663Item67Item68Item69Item70gItem71Item72 Item73N Item74 Item75 Item765 Item77 Item78 Item79 Item80i Item81 Item82 Item83P Item84 Item85 Item867 Item87 Item88 Item89Item90kItem91Item92Item93RItem94Item95Item969Item97Item98Item99 Item100mItem101Item102Item103TItem104Item105Item106;Item107Item108Item109"Item110oItem111Item112 Item113VItem114Item115Item116=Item117Item118Item119$Item120qItem121Item122 Item123XItem124Item125Item126?linkIDitem0 item1 CustomDatatypeSynclinkIDitem0 item1CustomDatatypeSynclinkIDitem0 item1{ CustomData.@typeSync@linkIDitem0 item1z CustomData{typeSynclinkIDitem0 item1CustomDatatypeSynclinkIDitem0 item1CustomData'typeSync'linkIDitem0 item1 CustomDatabttypeSynctlinkIDitem0 item1 CustomDatatypeSynclinkIDitem0 item1 CustomDatatypeSynclinkID item0 item1 CustomDataI[typeSync[linkID item0 item1 CustomDatatypeSynclinkID item0 item1 CustomDatatypeSynclinkID item0item1 CustomData0BtypeSyncBlinkID item0 item1 CustomData}typeSynclinkIDitem0 item1 CustomDatatypeSynclinkIDitem0 item1 CustomData)typeSync)linkIDitem0 item1 CustomDatadvtypeSyncvlinkIDitem0 item1 CustomDatatypeSynclinkIDitem0 item1 CustomDatatypeSynclinkIDitem0 item1 CustomDataK]typeSync]linkIDitem0 item1 CustomDatatypeSynclinkIDitem0item1| CustomDatatypeSynclinkIDitem0 item1@CustomData2DtypeSyncDlinkIDitem0xitem1@CustomDatatypeSynclinkIDitem0yitem1@CustomDatatypeSynclinkIDitem0eitem1@CustomData+typeSync+linkIDitem0item1@CustomDatafxtypeSyncxlinkIDitem0Z item1@CustomDatatypeSynclinkIDitem0gitem1@CustomDatatypeSynclinkIDitem0item1@CustomDataM_typeSync_linkIDitem0item1@CustomDatatypeSynclinkIDitem0=item1@CustomDatatypeSynclinkID item0fitem1@CustomData4FtypeSyncFlinkID!item0item1@CustomDatatypeSynclinkID"item0item1@CustomDatatypeSynclinkID#item0[ item1@CustomData-typeSync-linkID$item0item1@CustomDatahztypeSynczlinkID%item0item1@CustomDatatypeSynclinkID&item0a item1@CustomDatatypeSynclinkID'item0eitem1ACustomDataOatypeSyncalinkID(item0gitem1ACustomDatatypeSynclinkID)item0iitem1ACustomDatatypeSynclinkID*item0item1ACustomData6HtypeSyncHlinkID+item0 item1ACustomDatatypeSynclinkID,item0 item1ACustomDatatypeSynclinkID-item0 item1ACustomData/typeSync/linkID.item0 item1ACustomDataj|typeSync|linkID/item0 item1ACustomDatatypeSynclinkID0item0 item1ACustomDatatypeSynclinkID1item0 item1ACustomDataQctypeSyncclinkID2item0 item1ACustomDatatypeSynclinkID3item0item1ACustomDatatypeSynclinkID4item00item1ACustomData8JtypeSyncJlinkID5item0.item1ACustomDatatypeSynclinkID6item0item1ACustomDatatypeSynclinkID7item0item1ACustomData1typeSync1linkID8item0item1ACustomDatal~typeSync~linkID9item0item1ACustomDatatypeSynclinkID:item0item1ACustomDatatypeSynclinkID;item0item1ACustomDataSetypeSyncelinkID<item0item1ACustomDatatypeSynclinkID=item0item1ACustomDatatypeSynclinkID>item0` item1ACustomData:LtypeSyncLlinkID?item0_ item1ACustomDatatypeSynclinkID@item0item1@CustomDatatypeSynclinkIDAitem0{item1ACustomData!3typeSync3linkIDBitem0~item1ACustomDatantypeSynclinkIDCitem0iitem1@CustomDatatypeSynclinkIDDitem0aitem1@CustomDatatypeSynclinkIDEitem0item1@CustomDataUgtypeSyncglinkIDFitem0_item1@CustomDatatypeSynclinkIDGitem0citem1@CustomData typeSync linkIDHitem0] item1@CustomData< N typeSyncN linkIDIitem0w item1@CustomData  typeSync linkIDJitem0x item1@CustomData  typeSync linkIDKitem0y item1@CustomData# 5 typeSync5 linkIDLitem0 item1CustomDatap  typeSync linkIDMitem0item1CustomData  typeSync linkIDNitem0o item1CustomData  typeSync linkIDOitem0| item1CustomDataW i typeSynci linkIDPitem0} item1CustomData  typeSync linkIDQitem0item1CustomData  typeSync linkIDRitem0item1CustomData> P typeSyncP linkIDSitem0item1CustomData  typeSync linkIDTitem0~ item1CustomData  typeSync linkIDUitem0item1CustomData% 7 typeSync7 linkIDVitem0!item1CustomDatar  typeSync linkIDWitem0"item1CustomData  typeSync linkIDXitem0#item1CustomData typeSynclinkIDYitem0$item1CustomDataYktypeSyncklinkIDZitem0item1ACustomDatatypeSynclinkID[item0item1ACustomDatatypeSynclinkID\item0item1ACustomData@RtypeSyncRlinkID]item0 item1ACustomDatatypeSynclinkID^item0item1ACustomDatatypeSynclinkID_item0^item1@CustomData'9typeSync9linkID`item0_item1@CustomDatattypeSynclinkIDaitem0item1@CustomDatatypeSynclinkIDbitem0Zitem1@CustomData typeSync linkIDcitem0[item1@CustomData[mtypeSyncmlinkIDditem0 item1@CustomDatatypeSynclinkIDeitem0}item1CustomDatatypeSynclinkIDfitem0Oitem1CustomDataBTtypeSyncTlinkIDgitem0uitem1CustomDatatypeSynclinkIDhitem0item1CustomDatatypeSynclinkIDiitem0item1CustomData);typeSync;linkIDjitem0item1CustomDatavtypeSynclinkIDkitem0item1CustomDatatypeSynclinkIDlitem0item1CustomData"typeSync"linkIDmitem0 item1 CustomData]otypeSyncolinkIDnitem0item1CustomDatatypeSynclinkIDoitem0item1CustomData typeSync linkIDpitem0item1CustomDataDVtypeSyncVlinkIDqitem0item1CustomDatatypeSynclinkIDritem0item1ACustomDatatypeSynclinkIDsitem0item1@CustomData+=typeSync=linkIDtitem0item1@CustomDataxtypeSynclinkIDuitem0item1@CustomDatatypeSynclinkIDvitem0item1ACustomData$typeSync$linkIDwitem0yitem1CustomData_qtypeSyncqlinkIDxitem0xitem1CustomDatatypeSynclinkIDyitem0 item1CustomData typeSync linkIDzitem0 item1CustomDataFXtypeSyncXlinkID{item0item1CustomDatatypeSynclinkID|item0item1CustomDatatypeSynclinkID}item0item1CustomData-?typeSync?linkID~item0item1CustomDataztypeSync [cL1R