diff --git a/A3A/addons/config_fixes/CUP/CfgVehicles.hpp b/A3A/addons/config_fixes/CUP/CfgVehicles.hpp index 2462f5a140..d55ae8ac1e 100644 --- a/A3A/addons/config_fixes/CUP/CfgVehicles.hpp +++ b/A3A/addons/config_fixes/CUP/CfgVehicles.hpp @@ -2,5 +2,37 @@ class CfgVehicles { -#include "sfp_air.hpp" + #include "sfp_air.hpp" + + // Nose-fall tweaks to make planes turn at a semi-decent rate when flown by AI + class Plane_Base_F; + class CUP_A10_Base : Plane_Base_F + { + draconicTorqueXCoef = 2; + }; + class CUP_L39_base : Plane_base_F + { + draconicTorqueXCoef = 2; + }; + + // The faster planes benefit slightly from more torque, so we use the array form + class Plane; + class CUP_AV8B_Base : Plane + { + draconicTorqueXCoef[] = {2,3,4,5,6,7,8,9,10,10.1,10.2}; + }; + class CUP_Su25_base : Plane + { + draconicTorqueXCoef[] = {2,3,4,5,6,7,8,9,10,10.1,10.2}; + //speeds in m/s: {0, 37.5, 75, 112.5, 150, 187.5, 225, 262.5, 300, 337.5, 375m/s} + }; + class CUP_F35B_base : Plane + { + draconicTorqueXCoef[] = {2,3.5,5,6.5,8,9,10,11,12,12.1,12.2}; + //speeds in m/s: {0, 58.3, 117, 175, 233, 292, 350, 408, 467, 525, 583m/s} + }; + class CUP_SU34_BASE : Plane + { + draconicTorqueXCoef[] = {2,3.5,5,6.5,8,9,10,11,12,12.1,12.2}; + }; }; \ No newline at end of file diff --git a/A3A/addons/config_fixes/IFA/CfgVehicles.hpp b/A3A/addons/config_fixes/IFA/CfgVehicles.hpp index b4351416e0..f4c440e5d6 100644 --- a/A3A/addons/config_fixes/IFA/CfgVehicles.hpp +++ b/A3A/addons/config_fixes/IFA/CfgVehicles.hpp @@ -62,4 +62,26 @@ class CfgVehicles class LIB_Armored_Target_Dummy : Tank { delete EventHandlers; }; + + // Nose-fall tweaks to make planes turn at a semi-decent rate when flown by AI + // Note: LIB_Ju87 not adjusted because planes with low maxSpeed use different AI logic + class LIB_GER_Plane_base; + class LIB_FW190F8 : LIB_GER_Plane_base + { + draconicTorqueXCoef = 2; + }; + class LIB_SU_Plane_base; + class LIB_P39 : LIB_SU_Plane_base + { + draconicTorqueXCoef = 2; + }; + class LIB_Pe2 : LIB_SU_Plane_base + { + draconicTorqueXCoef = 2; + }; + class LIB_US_Plane_base; + class LIB_P47 : LIB_US_Plane_base + { + draconicTorqueXCoef = 2; + }; }; diff --git a/A3A/addons/core/CfgFunctions.hpp b/A3A/addons/core/CfgFunctions.hpp index 5e9052a383..7ad4bf2c35 100644 --- a/A3A/addons/core/CfgFunctions.hpp +++ b/A3A/addons/core/CfgFunctions.hpp @@ -733,6 +733,7 @@ class CfgFunctions class secondsToTimeSpan {}; class systemTime_format_S {}; class timeSpan_format {}; + class systemTimeDurationToTimeSpan {}; }; class UI { diff --git a/A3A/addons/core/CfgVehicles.hpp b/A3A/addons/core/CfgVehicles.hpp new file mode 100644 index 0000000000..434a2d42bf --- /dev/null +++ b/A3A/addons/core/CfgVehicles.hpp @@ -0,0 +1,150 @@ +class CfgVehicles +{ + // Unbreak the vanilla inheritance chain + class Man; + class CAManBase : Man { + class EventHandlers; + }; + class SoldierGB : CAManBase { + class EventHandlers : EventHandlers {}; + }; + class I_G_Soldier_base_F : SoldierGB { + class EventHandlers : EventHandlers + { + init = "if (local (_this select 0)) then {[(_this select 0), [], []] call BIS_fnc_unitHeadgear;};"; + //init line to perserve the behaviour BI intended for the I_G_Soldier_base_F classs + }; + }; + + // Rebel AI unit types + + //don't need to change this one? + class I_G_Survivor_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_unarmed : I_G_Survivor_F {}; + + class I_G_Soldier_F : I_G_Soldier_base_F{}; + class a3a_unit_reb : I_G_Soldier_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_G_medic_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_medic : I_G_medic_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_G_Sharpshooter_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_sniper : I_G_Sharpshooter_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_G_Soldier_M_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_marksman : I_G_Soldier_M_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_G_Soldier_LAT_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_lat : I_G_Soldier_LAT_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_G_Soldier_AR_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_mg : I_G_Soldier_AR_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_G_Soldier_exp_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_exp : I_G_Soldier_exp_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_G_Soldier_GL_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_gl : I_G_Soldier_GL_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_G_Soldier_SL_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_sl : I_G_Soldier_SL_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_G_engineer_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_eng : I_G_engineer_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_Soldier_AT_F; + class a3a_unit_reb_at : I_Soldier_AT_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_Soldier_AA_F; + class a3a_unit_reb_aa : I_Soldier_AA_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class I_G_officer_F : I_G_Soldier_base_F{}; + class a3a_unit_reb_petros : I_G_officer_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + // Base side types + + class B_G_Soldier_F : I_G_Soldier_base_F{}; + class a3a_unit_west : B_G_Soldier_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class O_G_Soldier_F : I_G_Soldier_base_F{}; + class a3a_unit_east : O_G_Soldier_F { + backpack = ""; + linkedItems[] = {"ItemMap","ItemCompass","ItemWatch"}; + magazines[] = {}; + weapons[] = {"Throw","Put"}; + }; + + class C_Man_1; + class a3a_unit_civ : C_Man_1 {}; + +}; diff --git a/A3A/addons/core/Includes/script_version.hpp b/A3A/addons/core/Includes/script_version.hpp index b99b870b2d..e9f89a06a5 100644 --- a/A3A/addons/core/Includes/script_version.hpp +++ b/A3A/addons/core/Includes/script_version.hpp @@ -1,4 +1,4 @@ #define MAJOR 3 -#define MINOR 6 +#define MINOR 7 #define PATCHLVL 0 #define BUILD 0 diff --git a/A3A/addons/core/Stringtable.xml b/A3A/addons/core/Stringtable.xml index 5d2d6bb663..64e2364ca5 100644 --- a/A3A/addons/core/Stringtable.xml +++ b/A3A/addons/core/Stringtable.xml @@ -2144,7 +2144,7 @@ 总部位置 - You must click near a map marker. + You must click near a rebel map marker. Devi cliccare vicino a un marcatore sulla mappa. Debe clicar cerca de un marcador de mapa. Vous devez cliquer à côté d'un marqueur de carte. @@ -2197,8 +2197,8 @@ Radyo Kulesi yeniden yapıldı. 通信塔已被重建 - - You cannot rebuild that. + + There is nothing to rebuild on this site. Non puoi ricostruire ciò. No puede reconstruir esto. Vous ne pouvez pas reconstruire ceci. @@ -2223,30 +2223,6 @@ Yeni ekipman yapmak için yeterinde paranız yok. 5.000 €'ya ihtiyacınız var. 你当前的资金不足以重建任何资产. 你需要 5.000 €. - - That Outpost does not have a destroyed Radio Tower. - Quell'Avamposto non ha un Torre Radio distrutta. - Esa base no tiene una torre de radio destruida. - Cet Avant-Poste n'a pas de Tour Radio détruite. - 이 전초기지는 파괴된 송신탑을 가지고 있지 않습니다. - На этом аванпосте нет разрушенной радиовышки. - Toto stanoviště nemá zničenou Rádiovou Věž. - Este Posto Avançado não tem Torre de Rádio. - O karakolun yıkılmış bir Radyo Kulesi yok. - 那个哨站没有被摧毁的通信塔 - - - You cannot rebuild a Radio Tower in an Outpost which does not belong to %1. - Non puoi ricostruire una Torre Radio in un Avamposto che non appartiene a %1. - No puede reconstruir una torre de radio en una base que no pertenezca a %1. - Vous ne pouvez pas reconstruire une Tour Radio dans un Avant-Poste qui n'appartient pas à %1. - %1의 소유가 아닌 전초기지의 송신탑은 재건축할 수 없습니다. - Вы не можете перестроить радиовышку на аванпосте, который не принадлежит %1. - Nemůžeš znovu postavit Radiovou věž na základně, která nespadá pod %1. - Não podes reconstruir a Torre de Rádio num Posto Avançado que não pertence a %1. - %1 'e ait olmayan bir Karakola Radyo Kulesi dikemezsiniz. - 你无法在一个不属于 %1 的哨站里重建通信塔 - Rebuild Assets Anlagen wiederherstellen @@ -3444,7 +3420,7 @@ Nemůžeš odpočívat když HQ je pod útokem. - All players must be in a 100m radius from HQ to be able to rest. + All players must be in a 100m radius from HQ to be able to rest.<br/><br/>More than 10 players are absent from HQ currently. Tutti i giocatori devono trovarsi entro 100m dal QG per riposare. Todos los jugadores deben estar en un radio de 100m del CG para poder descansar. Tous les joueurs doivent se trouver dans un rayon de 100 m du QG pour pouvoir se reposer. @@ -3453,6 +3429,12 @@ Wszyscy gracze muszą znajdować się w promieniu 100 m od siedziby głównej, aby móc odpocząć. Všichni hráči musí být v okruhu 100M od HQ abys mohl pustit odpočinek. + + All players must be in a 100m radius from HQ to be able to rest.<br/>The following players are not at HQ: %1, and %2. + + + All players must be in a 100m radius from HQ to be able to rest.<br/><br/>%1 is currently not at HQ. + Skip Time / Rest Salto Temporale / Riposa diff --git a/A3A/addons/core/Templates/Templates.hpp b/A3A/addons/core/Templates/Templates.hpp index 1538733f18..78cf5eb8c7 100644 --- a/A3A/addons/core/Templates/Templates.hpp +++ b/A3A/addons/core/Templates/Templates.hpp @@ -1287,7 +1287,7 @@ class Templates name = "IFA SOVIET ARMY"; file = "IFA_AI_SOV"; shortName = "SOV"; - lore = $STR_A3A_templates_lore_IFA_AI_SOV. + lore = $STR_A3A_templates_lore_IFA_AI_SOV; }; class IFA_ALLIES : IFA_Base { diff --git a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_BW_Arid.sqf b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_BW_Arid.sqf index 4513d7f388..a6514d02b5 100644 --- a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_BW_Arid.sqf +++ b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_BW_Arid.sqf @@ -45,10 +45,9 @@ ["vehiclesHelisLightAttack", ["CUP_B_UH1D_armed_GER_KSK_Des", "CUP_B_UH1D_gunship_GER_KSK_Des", "CUP_B_AW159_GER"]] call _fnc_saveToTemplate; ["vehiclesHelisAttack", ["CUP_B_AH1Z_Dynamic_USMC"]] call _fnc_saveToTemplate; -["vehiclesArtillery", ["CUP_B_M270_DPICM_USA","CUP_B_M270_HE_USA"]] call _fnc_saveToTemplate; +["vehiclesArtillery", ["CUP_B_M270_HE_USA"]] call _fnc_saveToTemplate; ["magazines", createHashMapFromArray [ -["CUP_B_M270_HE_USA", ["CUP_12Rnd_MLRS_HE"]], -["CUP_B_M270_DPICM_USA", ["CUP_12Rnd_MLRS_DPICM"]] +["CUP_B_M270_HE_USA", ["CUP_12Rnd_MLRS_HE"]] ]] call _fnc_saveToTemplate; ["uavsAttack", ["CUP_B_USMC_DYN_MQ9"]] call _fnc_saveToTemplate; diff --git a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_BW_Temperate.sqf b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_BW_Temperate.sqf index 5b32e5c851..ced4cc5e9f 100644 --- a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_BW_Temperate.sqf +++ b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_BW_Temperate.sqf @@ -45,10 +45,9 @@ ["vehiclesHelisLightAttack", ["CUP_B_UH1D_armed_GER_KSK", "CUP_B_UH1D_gunship_GER_KSK", "CUP_B_AW159_GER"]] call _fnc_saveToTemplate; ["vehiclesHelisAttack", ["CUP_B_AH1Z_Dynamic_USMC"]] call _fnc_saveToTemplate; -["vehiclesArtillery", ["CUP_B_M270_HE_USMC", "CUP_B_M270_DPICM_USMC"]] call _fnc_saveToTemplate; +["vehiclesArtillery", ["CUP_B_M270_HE_USMC"]] call _fnc_saveToTemplate; ["magazines", createHashMapFromArray [ -["CUP_B_M270_HE_USMC", ["CUP_12Rnd_MLRS_HE"]], -["CUP_B_M270_DPICM_USMC", ["CUP_12Rnd_MLRS_DPICM"]] +["CUP_B_M270_HE_USMC", ["CUP_12Rnd_MLRS_HE"]] ]] call _fnc_saveToTemplate; ["uavsAttack", ["CUP_B_USMC_DYN_MQ9"]] call _fnc_saveToTemplate; diff --git a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_HIL.sqf b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_HIL.sqf index 28d13449bb..bc4dd31663 100644 --- a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_HIL.sqf +++ b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_HIL.sqf @@ -45,10 +45,9 @@ ["vehiclesHelisLightAttack", ["CUP_B_AW159_HIL","CUP_B_412_Military_Armed_AT_HIL","CUP_B_412_Military_Armed_HIL","CUP_B_412_dynamicLoadout_HIL"]] call _fnc_saveToTemplate; ["vehiclesHelisAttack", ["CUP_B_AH1Z_Dynamic_USMC"]] call _fnc_saveToTemplate; -["vehiclesArtillery", ["CUP_B_M270_HE_HIL", "CUP_B_M270_DPICM_HIL"]] call _fnc_saveToTemplate; +["vehiclesArtillery", ["CUP_B_M270_HE_HIL"]] call _fnc_saveToTemplate; ["magazines", createHashMapFromArray [ -["CUP_B_M270_HE_HIL", ["CUP_12Rnd_MLRS_HE"]], -["CUP_B_M270_DPICM_HIL", ["CUP_12Rnd_MLRS_DPICM"]] +["CUP_B_M270_HE_HIL", ["CUP_12Rnd_MLRS_HE"]] ]] call _fnc_saveToTemplate; ["uavsAttack", ["CUP_B_USMC_DYN_MQ9"]] call _fnc_saveToTemplate; diff --git a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_ION_Arctic.sqf b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_ION_Arctic.sqf index 1c383b6466..0fe573b20d 100644 --- a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_ION_Arctic.sqf +++ b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_ION_Arctic.sqf @@ -45,8 +45,8 @@ ["vehiclesHelisLightAttack", ["CUP_I_412_dynamicLoadout_PMC", "CUP_I_412_Military_Armed_AT_PMC"]] call _fnc_saveToTemplate; ["vehiclesHelisAttack", ["CUP_I_Mi24_Mk3_ION"]] call _fnc_saveToTemplate; -["vehiclesArtillery", ["CUP_B_M270_DPICM_BAF_DES"]] call _fnc_saveToTemplate; -["magazines", createHashMapFromArray [["CUP_B_M270_DPICM_BAF_DES", ["CUP_12Rnd_MLRS_DPICM"]]]] call _fnc_saveToTemplate; //element format: [Vehicle class, [Magazines]] +["vehiclesArtillery", ["CUP_B_M270_HE_BAF"]] call _fnc_saveToTemplate; +["magazines", createHashMapFromArray [["CUP_B_M270_HE_BAF", ["CUP_12Rnd_MLRS_HE"]]]] call _fnc_saveToTemplate; //element format: [Vehicle class, [Magazines]] ["uavsAttack", ["CUP_B_USMC_DYN_MQ9"]] call _fnc_saveToTemplate; ["uavsPortable", ["B_UAV_01_F"]] call _fnc_saveToTemplate; diff --git a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_ION_Arid.sqf b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_ION_Arid.sqf index 19de07b330..36be4869a7 100644 --- a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_ION_Arid.sqf +++ b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_ION_Arid.sqf @@ -45,8 +45,8 @@ ["vehiclesHelisLightAttack", ["CUP_I_412_dynamicLoadout_PMC", "CUP_I_412_Military_Armed_AT_PMC"]] call _fnc_saveToTemplate; ["vehiclesHelisAttack", ["CUP_I_Mi24_Mk3_ION"]] call _fnc_saveToTemplate; -["vehiclesArtillery", ["CUP_B_M270_DPICM_BAF_DES"]] call _fnc_saveToTemplate; -["magazines", createHashMapFromArray [["CUP_B_M270_DPICM_BAF_DES", ["CUP_12Rnd_MLRS_DPICM"]]]] call _fnc_saveToTemplate; //element format: [Vehicle class, [Magazines]] +["vehiclesArtillery", ["CUP_B_M270_HE_BAF_DES"]] call _fnc_saveToTemplate; +["magazines", createHashMapFromArray [["CUP_B_M270_HE_BAF_DES", ["CUP_12Rnd_MLRS_HE"]]]] call _fnc_saveToTemplate; //element format: [Vehicle class, [Magazines]] ["uavsAttack", ["CUP_B_USMC_DYN_MQ9"]] call _fnc_saveToTemplate; ["uavsPortable", ["B_UAV_01_F"]] call _fnc_saveToTemplate; diff --git a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_US_Marine_Arid.sqf b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_US_Marine_Arid.sqf index 21f6709e8e..7e0195f05a 100644 --- a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_US_Marine_Arid.sqf +++ b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_US_Marine_Arid.sqf @@ -45,10 +45,9 @@ ["vehiclesHelisLightAttack", ["CUP_B_MH60L_DAP_4x_USN", "CUP_B_UH1Y_Gunship_Dynamic_USMC"]] call _fnc_saveToTemplate; ["vehiclesHelisAttack", ["CUP_B_AH1Z_Dynamic_USMC"]] call _fnc_saveToTemplate; -["vehiclesArtillery", ["CUP_B_M270_DPICM_USA","CUP_B_M270_HE_USA"]] call _fnc_saveToTemplate; +["vehiclesArtillery", ["CUP_B_M270_HE_USA"]] call _fnc_saveToTemplate; ["magazines", createHashMapFromArray [ -["CUP_B_M270_HE_USA", ["CUP_12Rnd_MLRS_HE"]], -["CUP_B_M270_DPICM_USA", ["CUP_12Rnd_MLRS_DPICM"]] +["CUP_B_M270_HE_USA", ["CUP_12Rnd_MLRS_HE"]] ]] call _fnc_saveToTemplate; ["uavsAttack", ["CUP_B_USMC_DYN_MQ9"]] call _fnc_saveToTemplate; diff --git a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_US_Marine_Temperate.sqf b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_US_Marine_Temperate.sqf index 7daad5b36c..8c77b8a622 100644 --- a/A3A/addons/core/Templates/Templates/CUP/CUP_AI_US_Marine_Temperate.sqf +++ b/A3A/addons/core/Templates/Templates/CUP/CUP_AI_US_Marine_Temperate.sqf @@ -45,10 +45,9 @@ ["vehiclesHelisLightAttack", ["CUP_B_MH60L_DAP_4x_USN", "CUP_B_UH1Y_Gunship_Dynamic_USMC"]] call _fnc_saveToTemplate; ["vehiclesHelisAttack", ["CUP_B_AH1Z_Dynamic_USMC"]] call _fnc_saveToTemplate; -["vehiclesArtillery", ["CUP_B_M270_HE_USMC","CUP_B_M270_DPICM_USMC"]] call _fnc_saveToTemplate; +["vehiclesArtillery", ["CUP_B_M270_HE_USMC"]] call _fnc_saveToTemplate; ["magazines", createHashMapFromArray [ -["CUP_B_M270_HE_USMC", ["CUP_12Rnd_MLRS_HE"]], -["CUP_B_M270_DPICM_USMC", ["CUP_12Rnd_MLRS_DPICM"]] +["CUP_B_M270_HE_USMC", ["CUP_12Rnd_MLRS_HE"]] ]] call _fnc_saveToTemplate; ["uavsAttack", ["CUP_B_USMC_DYN_MQ9"]] call _fnc_saveToTemplate; diff --git a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_AI_US.sqf b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_AI_US.sqf index 8768072a92..0e5f7031a8 100644 --- a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_AI_US.sqf +++ b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_AI_US.sqf @@ -14,25 +14,28 @@ ////////////////////////// ["attributeLowAir", true] call _fnc_saveToTemplate; // Use fewer air units in general +["attributeMoreTrucks", true] call _fnc_saveToTemplate; // Use more truck for transports ["attributeNoSAM", true] call _fnc_saveToTemplate; // Don't use SAM supports ["ammobox", "B_supplyCrate_F"] call _fnc_saveToTemplate; ["surrenderCrate", "SPE_Mine_AmmoBox_US"] call _fnc_saveToTemplate; ["equipmentBox", "Box_NATO_Equip_F"] call _fnc_saveToTemplate; -["vehiclesBasic", []] call _fnc_saveToTemplate; -["vehiclesLightUnarmed", ["SPE_US_M3_Halftrack_Unarmed"]] call _fnc_saveToTemplate; -["vehiclesLightArmed", ["SPE_US_M16_Halftrack", "SPE_US_M3_Halftrack"]] call _fnc_saveToTemplate; -["vehiclesTrucks", ["SPE_US_M3_Halftrack_Unarmed", "SPE_US_M3_Halftrack"]] call _fnc_saveToTemplate; -["vehiclesCargoTrucks", ["SPE_US_M3_Halftrack_Unarmed"]] call _fnc_saveToTemplate; -["vehiclesAmmoTrucks", ["SPE_US_M3_Halftrack_Ammo"]] call _fnc_saveToTemplate; -["vehiclesRepairTrucks", ["SPE_US_M3_Halftrack_Repair"]] call _fnc_saveToTemplate; -["vehiclesFuelTrucks", ["SPE_US_M3_Halftrack_Fuel"]] call _fnc_saveToTemplate; -["vehiclesMedical", ["SPE_US_M3_Halftrack_Ambulance"]] call _fnc_saveToTemplate; -["vehiclesLightAPCs", ["SPE_US_M3_Halftrack"]] call _fnc_saveToTemplate; -["vehiclesAPCs", ["SPE_M4A0_75_Early", "SPE_M4A0_75"]] call _fnc_saveToTemplate; -["vehiclesIFVs", ["SPE_M10", "SPE_M18_Hellcat"]] call _fnc_saveToTemplate; -["vehiclesTanks", ["SPE_M4A1_76", "SPE_M4A1_75"]] call _fnc_saveToTemplate; +["vehiclesBasic", ["SPE_US_G503_MB_Armoured"]] call _fnc_saveToTemplate; +["vehiclesLightUnarmed", ["SPE_US_G503_MB_Armoured"]] call _fnc_saveToTemplate; +["vehiclesLightArmed", ["SPE_US_M16_Halftrack", "SPE_M20_AUC","SPE_M20_AUC","SPE_FR_M20_AUC","SPE_M8_LAC","SPE_M8_LAC_ringMount","SPE_US_G503_MB_M1919_Armoured","SPE_US_G503_MB_M2_Armoured","SPE_US_G503_MB_M2","SPE_US_G503_MB_M2_PATROL","SPE_US_G503_MB_M1919_PATROL"]] call _fnc_saveToTemplate; +["vehiclesTrucks", ["SPE_CCKW_353","SPE_CCKW_353_Open","SPE_CCKW_353_M2","SPE_US_M3_Halftrack_Unarmed", "SPE_US_M3_Halftrack_Unarmed_Open"]] call _fnc_saveToTemplate; +["vehiclesCargoTrucks", ["SPE_CCKW_353_Open"]] call _fnc_saveToTemplate; +["vehiclesAmmoTrucks", ["SPE_US_M3_Halftrack_Ammo","SPE_CCKW_353_Ammo","SPE_CCKW_353_Ammo"]] call _fnc_saveToTemplate; +["vehiclesRepairTrucks", ["SPE_US_M3_Halftrack_Repair","SPE_CCKW_353_Repair","SPE_CCKW_353_Repair"]] call _fnc_saveToTemplate; +["vehiclesFuelTrucks", ["SPE_US_M3_Halftrack_Fuel","SPE_CCKW_353_Fuel","SPE_CCKW_353_Fuel"]] call _fnc_saveToTemplate; +["vehiclesMedical", ["SPE_US_M3_Halftrack_Ambulance","SPE_CCKW_353_Ambulance","SPE_US_G503_MB_Ambulance"]] call _fnc_saveToTemplate; +["vehiclesLightAPCs", []] call _fnc_saveToTemplate; +["vehiclesAPCs", ["SPE_US_M3_Halftrack","SPE_M20_AUC"]] call _fnc_saveToTemplate; //These got no protected turret, sufficent troop capacity, cost reduced +["vehiclesIFVs", ["SPE_M4A0_75_Early", "SPE_M4A0_75","SPE_M4A0_composite","SPE_M4A0_105","SPE_M4A3_105","SPE_M10"]] call _fnc_saveToTemplate; +["vehiclesLightTanks",["SPE_M18_Hellcat","SPE_M18_Hellcat","SPE_M10"]] call _fnc_saveToTemplate; +["vehiclesTanks", ["SPE_M4A1_75_erla","SPE_M4A1_76", "SPE_M4A1_75","SPE_M4A3_75","SPE_M4A3_76"]] call _fnc_saveToTemplate; +["vehiclesHeavyTanks", ["SPE_M4A1_T34_Calliope_Direct","SPE_M4A3_T34_Calliope_Direct"]] call _fnc_saveToTemplate; ["vehiclesAA", ["SPE_US_M16_Halftrack"]] call _fnc_saveToTemplate; ["vehiclesTransportBoats", ["B_Boat_Transport_01_F"]] call _fnc_saveToTemplate; @@ -48,20 +51,22 @@ ["vehiclesHelisLightAttack", []] call _fnc_saveToTemplate; ["vehiclesHelisAttack", []] call _fnc_saveToTemplate; -["vehiclesArtillery", ["SPE_M4A1_T34_Calliope"]] call _fnc_saveToTemplate; +["vehiclesArtillery", ["SPE_M4A1_T34_Calliope","SPE_M4A3_T34_Calliope","SPE_105mm_M3","SPE_105mm_M3","SPE_105mm_M3"]] call _fnc_saveToTemplate; ["magazines", createHashMapFromArray [ -["SPE_M4A1_T34_Calliope", ["SPE_60Rnd_M8"]] +["SPE_M4A1_T34_Calliope", ["SPE_60Rnd_M8"]], +["SPE_M4A3_T34_Calliope", ["SPE_60Rnd_M8"]], +["SPE_105mm_M3", ["SPE_20x_Shell_M3_M1_HE_Artillery","SPE_8x_Shell_M3_M67_HEAT_Artillery"]] ]] call _fnc_saveToTemplate; ["uavsAttack", []] call _fnc_saveToTemplate; ["uavsPortable", []] call _fnc_saveToTemplate; //Config special vehicles -["vehiclesMilitiaLightArmed", ["SPE_US_M3_Halftrack"]] call _fnc_saveToTemplate; -["vehiclesMilitiaTrucks", ["SPE_US_M3_Halftrack_Unarmed"]] call _fnc_saveToTemplate; -["vehiclesMilitiaCars", ["SPE_US_M3_Halftrack"]] call _fnc_saveToTemplate; +["vehiclesMilitiaLightArmed", ["SPE_FR_M20_AUC","SPE_US_G503_MB_M1919"]] call _fnc_saveToTemplate; +["vehiclesMilitiaTrucks", ["SPE_CCKW_353_Open"]] call _fnc_saveToTemplate; +["vehiclesMilitiaCars", ["SPE_US_G503_MB_Open"]] call _fnc_saveToTemplate; -["vehiclesPolice", ["SPE_FR_M3_Halftrack_Unarmed"]] call _fnc_saveToTemplate; +["vehiclesPolice", ["SPE_US_G503_MB"]] call _fnc_saveToTemplate; ["staticMGs", ["SPE_M1919A6_Bipod"]] call _fnc_saveToTemplate; ["staticAT", ["SPE_57mm_M1"]] call _fnc_saveToTemplate; @@ -87,6 +92,10 @@ "TanoanHead_A3_03", "TanoanHead_A3_04", "TanoanHead_A3_05", "TanoanHead_A3_06", "TanoanHead_A3_07", "TanoanHead_A3_08", "TanoanHead_A3_09", "WhiteHead_02"]] call _fnc_saveToTemplate; //12 to 1 so Mostly Colored Faces. ["milVoices", ["Male01FRE", "Male02FRE", "Male03FRE"]] call _fnc_saveToTemplate; +["polFaces", ["LivonianHead_6","SPE_Arnold","SPE_Connors","SPE_Davidson","SPE_Elliot","SPE_Oberst","SPE_Seppmeyer","SPE_Walter","WhiteHead_01","WhiteHead_02","WhiteHead_05","WhiteHead_06","WhiteHead_07","WhiteHead_08","WhiteHead_12","WhiteHead_15","WhiteHead_18"]] call _fnc_saveToTemplate; +["polVoices", ["spe_male01fre", "spe_male02fre"]] call _fnc_saveToTemplate; +"SPE_EnglishMen" call _fnc_saveNames; + ////////////////////////// // Loadouts // @@ -95,42 +104,51 @@ private _loadoutData = call _fnc_createLoadoutData; _loadoutData set ["rifles", [ ["SPE_M1_Garand", "SPE_ACC_M1_Bayo", "", "", ["SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_t"], [], ""], -["SPE_M1_Garand", "SPE_ACC_M1905_Bayo", "", "", ["SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_t"], [], ""], -["SPE_M1903A3_Springfield", "SPE_ACC_M1_Bayo", "", "", ["SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_t"], [], ""], +["SPE_M1_Garand", "SPE_ACC_M1_Bayo", "", "", ["SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_t"], [], ""], +["SPE_M1903A3_Springfield", "SPE_ACC_M1905_Bayo", "", "", ["SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_t"], [], ""], ["SPE_M1903A3_Springfield", "SPE_ACC_M1905_Bayo", "", "", ["SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_t"], [], ""] ]]; _loadoutData set ["slRifles", [ +["SPE_M1_Carbine", "", "", "", ["SPE_15Rnd_762x33", "SPE_15Rnd_762x33", "SPE_15Rnd_762x33_t"], [], ""], ["SPE_M1A1_Thompson", "", "", "", ["SPE_30Rnd_Thompson_45ACP", "SPE_30Rnd_Thompson_45ACP", "SPE_30Rnd_Thompson_45ACP_t"], [], ""], ["SPE_M3_GreaseGun", "", "", "", ["SPE_30Rnd_M3_GreaseGun_45ACP", "SPE_30Rnd_M3_GreaseGun_45ACP", "SPE_30Rnd_M3_GreaseGun_45ACP_t"], [], ""], -["SPE_M1918A2_BAR", "", "SPE_M1918A2_BAR_Handle", "", ["SPE_20Rnd_762x63_M1", "SPE_20Rnd_762x63_M1", "SPE_20Rnd_762x63_M2_AP"], [], ""] +["SPE_M1_Garand", "", "", "", ["SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_t"], [], ""] +]]; +_loadoutData set ["shotGuns", [ +["SPE_Model_37_Trenchgun", "SPE_ACC_M1917_Bayo", "", "", ["SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Slug"], [], ""], +["SPE_Model_37_Trenchgun", "SPE_ACC_M1917_Bayo", "", "", ["SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Slug"], [], ""], +["SPE_Model_37_Riotgun", "", "", "", ["SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Slug"], [], ""] ]]; _loadoutData set ["carbines", [ -["SPE_M1_Carbine", "", "", "", ["SPE_15Rnd_762x33", "SPE_15Rnd_762x33", "SPE_15Rnd_762x33_t"], [], ""] +["SPE_M1_Carbine", "", "", "", ["SPE_15Rnd_762x33", "SPE_15Rnd_762x33", "SPE_15Rnd_762x33_t"], [], ""], +["SPE_M1A1_Carbine", "", "", "", ["SPE_15Rnd_762x33", "SPE_15Rnd_762x33", "SPE_15Rnd_762x33_t"], [], ""] ]]; _loadoutData set ["grenadeLaunchers", [ ["SPE_M1_Garand_M7", "SPE_ACC_GL_M7", "", "", ["SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_t"], ["SPE_1Rnd_G_M9A1", "SPE_1Rnd_G_Mk2", "SPE_1Rnd_G_M17A1", "SPE_1Rnd_G_M2_ANM8"], ""], -["SPE_M1903A3_Springfield_M1_GL", "SPE_ACC_GL_M1", "", "", ["SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_t"], ["SPE_1Rnd_G_M9A1", "SPE_1Rnd_G_Mk2", "SPE_1Rnd_G_M17A1", "SPE_1Rnd_G_M2_ANM8"], ""], +["SPE_M1_Garand_M7", "SPE_ACC_GL_M7", "", "", ["SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_t"], ["SPE_1Rnd_G_Mk2", "SPE_1Rnd_G_M9A1", "SPE_1Rnd_G_M17A1", "SPE_1Rnd_G_M2_ANM8"], ""], +["SPE_M1903A3_Springfield_M1_GL", "SPE_ACC_GL_M1", "", "", ["SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_t"], ["SPE_1Rnd_G_Mk2", "SPE_1Rnd_G_M9A1", "SPE_1Rnd_G_M17A1", "SPE_1Rnd_G_M2_ANM8"], ""], ["SPE_M1_Carbine_M8", "SPE_ACC_GL_M8", "", "", ["SPE_15Rnd_762x33", "SPE_15Rnd_762x33", "SPE_15Rnd_762x33_t"], ["SPE_1Rnd_G_M9A1", "SPE_1Rnd_G_Mk2", "SPE_1Rnd_G_M17A1", "SPE_1Rnd_G_M2_ANM8"], ""] ]]; _loadoutData set ["SMGs", [ ["SPE_M1A1_Thompson", "", "", "", ["SPE_30Rnd_Thompson_45ACP", "SPE_30Rnd_Thompson_45ACP", "SPE_30Rnd_Thompson_45ACP_t"], [], ""], +["SPE_M3_GreaseGun", "", "", "", ["SPE_30Rnd_M3_GreaseGun_45ACP", "SPE_30Rnd_M3_GreaseGun_45ACP", "SPE_30Rnd_M3_GreaseGun_45ACP_t"], [], ""], ["SPE_M3_GreaseGun", "", "", "", ["SPE_30Rnd_M3_GreaseGun_45ACP", "SPE_30Rnd_M3_GreaseGun_45ACP", "SPE_30Rnd_M3_GreaseGun_45ACP_t"], [], ""] ]]; _loadoutData set ["machineGuns", [ ["SPE_M1919A4", "", "", "", ["SPE_50Rnd_762x63", "SPE_50Rnd_762x63_M1", "SPE_50Rnd_762x63_M2_AP"], [], ""], ["SPE_M1919A6", "", "", "", ["SPE_50Rnd_762x63", "SPE_50Rnd_762x63_M1", "SPE_50Rnd_762x63_M2_AP"], [], ""], +["SPE_M1918A2_BAR", "", "SPE_M1918A2_BAR_Handle", "", ["SPE_20Rnd_762x63_M1", "SPE_20Rnd_762x63_M1", "SPE_20Rnd_762x63"], [], ""], ["SPE_M1918A2_BAR", "", "SPE_M1918A2_BAR_Handle", "", ["SPE_20Rnd_762x63_M1", "SPE_20Rnd_762x63_M1", "SPE_20Rnd_762x63"], [], ""] ]]; _loadoutData set ["marksmanRifles", [ -["SPE_M1903A4_Springfield", "", "", "", ["SPE_5Rnd_762x63", "SPE_5Rnd_762x63", "SPE_5Rnd_762x63_t"], [], ""], ["SPE_M1903A4_Springfield", "", "", "", ["SPE_5Rnd_762x63", "SPE_5Rnd_762x63", "SPE_5Rnd_762x63_t"], [], ""] ]]; _loadoutData set ["sniperRifles", [ -["SPE_M1903A4_Springfield", "", "", "", ["SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M2_AP"], [], ""], ["SPE_M1903A4_Springfield", "", "", "", ["SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M2_AP"], [], ""] ]]; _loadoutData set ["lightATLaunchers", ["SPE_M1A1_Bazooka"]]; +_loadoutData set ["ATLaunchers", ["SPE_M9_Bazooka","SPE_M9A1_Bazooka"]]; _loadoutData set ["sidearms", ["SPE_M1911"]]; _loadoutData set ["ATMines", ["SPE_US_M1A1_ATMINE_mag"]]; @@ -151,11 +169,12 @@ _loadoutData set ["watches", ["SPE_US_ItemWatch"]]; _loadoutData set ["compasses", ["SPE_US_ItemCompass"]]; _loadoutData set ["radios", ["ItemRadio"]]; _loadoutData set ["binoculars", ["SPE_Binocular_US"]]; +_loadoutData set ["Flashlight", ["SPE_US_FL_TL122"]]; _loadoutData set ["uniforms", ["U_SPE_US_Private", "U_SPE_US_Private_1st", "U_SPE_US_Private_late"]]; _loadoutData set ["medUniforms", ["U_SPE_US_Med"]]; _loadoutData set ["engUniforms", ["U_SPE_US_Technician"]]; -_loadoutData set ["slUniorms", ["U_SPE_US_CC_1LT", "U_SPE_US_Sergeant"]]; +_loadoutData set ["slUniforms", ["U_SPE_US_CC_1LT", "U_SPE_US_Sergeant"]]; _loadoutData set ["vests", ["V_SPE_US_Vest_Carbine", "V_SPE_US_Vest_Garand", "V_SPE_US_Vest_Garand_M43"]]; _loadoutData set ["glVests", ["V_SPE_US_Vest_Grenadier"]]; @@ -172,8 +191,9 @@ _loadoutData set ["glBackpacks", ["B_SPE_US_Backpack_Bandoleer_Grenadier_1903"]] _loadoutData set ["engBackpacks", ["B_SPE_US_Backpack_eng"]]; _loadoutData set ["helmets", ["H_SPE_US_Helmet", "H_SPE_US_Helmet_Net", "H_SPE_US_Helmet_Net_ns", "H_SPE_US_Helmet_Net_os", "H_SPE_US_Helmet_ns", "H_SPE_US_Helmet_os"]]; -_loadoutData set ["medHelmets", ["H_SPE_US_Helmet_Med"]]; +_loadoutData set ["medHelmets", ["H_SPE_US_Helmet_Med","H_SPE_US_Helmet_Med_ns","H_SPE_US_Helmet_Med_os"]]; _loadoutData set ["slHelmets", ["H_SPE_US_Helmet_Cap", "H_SPE_US_Helmet_First_lieutenant", "H_SPE_US_Helmet_Net_os"]]; +_loadoutData set ["sniHelmets", ["H_SPE_US_Helmet_Scrim_ns"]]; //Item *set* definitions. These are added in their entirety to unit loadouts. No randomisation is applied. _loadoutData set ["items_medical_basic", ["BASIC"] call A3A_fnc_itemset_medicalSupplies]; @@ -217,7 +237,15 @@ private _sfLoadoutData = _loadoutData call _fnc_copyLoadoutData; _sfLoadoutData set ["uniforms", ["U_SPE_US_Rangers_Uniform", "U_SPE_US_Rangers_Private_1st"]]; _sfLoadoutData set ["medUniforms", ["U_SPE_US_Rangers_Med"]]; _sfLoadoutData set ["engUniforms", ["U_SPE_US_Rangers_Technician"]]; -_sfLoadoutData set ["slUniorms", ["U_SPE_US_Rangers_Sergeant", "U_SPE_US_Rangers_Corp"]]; +_sfLoadoutData set ["slUniforms", ["U_SPE_US_Rangers_Sergeant", "U_SPE_US_Rangers_Corp"]]; + +_sfLoadoutData set ["vests", ["V_SPE_US_Assault_Vest", "V_SPE_US_Assault_Vest_Light", "V_SPE_US_Assault_Vest_rifle"]]; +_sfLoadoutData set ["glVests", ["V_SPE_US_Assault_Vest_Bag"]]; +_sfLoadoutData set ["sniVests", ["V_SPE_US_Assault_Vest_Light"]]; +_sfLoadoutData set ["medVests", ["V_SPE_US_Assault_Vest_alt"]]; +_sfLoadoutData set ["engVests", ["V_SPE_US_Assault_Vest_eng"]]; +_sfLoadoutData set ["mgVests", ["V_SPE_US_Assault_Vest_Bag"]]; +_sfLoadoutData set ["slVests", ["V_SPE_US_Assault_Vest_alt", "V_SPE_US_Assault_Vest_rifle_M43"]]; _sfLoadoutData set ["helmets", ["H_SPE_US_Rangers_Helmet", "H_SPE_US_Rangers_Helmet_ns", "H_SPE_US_Rangers_Helmet_os", "H_SPE_US_Helmet_Net_os", "H_SPE_US_Helmet_ns", "H_SPE_US_Helmet_os"]]; _sfLoadoutData set ["medHelmets", ["H_SPE_US_Helmet_Med"]]; @@ -234,6 +262,10 @@ _sfLoadoutData set ["rifles", [ ["SPE_M1A1_Thompson", "", "", "", ["SPE_30Rnd_Thompson_45ACP", "SPE_30Rnd_Thompson_45ACP", "SPE_30Rnd_Thompson_45ACP_t"], [], ""], ["SPE_M1918A2_BAR", "", "SPE_M1918A2_BAR_Handle", "", ["SPE_20Rnd_762x63_M2_AP"], [], ""] ]]; +_sfLoadoutData set ["grenadeLaunchers", [ +["SPE_M1_Garand_M7", "SPE_ACC_GL_M7", "", "", ["SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_t"], ["SPE_1Rnd_G_M9A1", "SPE_1Rnd_G_Mk2", "SPE_1Rnd_G_M17A1", "SPE_1Rnd_G_M2_ANM8"], ""], +["SPE_M1_Garand_M7", "SPE_ACC_GL_M7", "", "", ["SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_M1", "SPE_8Rnd_762x63_t"], ["SPE_1Rnd_G_Mk2", "SPE_1Rnd_G_M9A1", "SPE_1Rnd_G_M17A1", "SPE_1Rnd_G_M2_ANM8"], ""] +]]; _sfLoadoutData set ["SMGs", [ ["SPE_M1A1_Thompson", "", "", "", ["SPE_30Rnd_Thompson_45ACP", "SPE_30Rnd_Thompson_45ACP", "SPE_30Rnd_Thompson_45ACP_t"], [], ""], ["SPE_M3_GreaseGun", "SPE_ACC_M3_Suppressor_45acp", "", "", ["SPE_30Rnd_M3_GreaseGun_45ACP", "SPE_30Rnd_M3_GreaseGun_45ACP", "SPE_30Rnd_M3_GreaseGun_45ACP_t"], [], ""] @@ -251,16 +283,20 @@ private _militaryLoadoutData = _loadoutData call _fnc_copyLoadoutData; private _policeLoadoutData = _loadoutData call _fnc_copyLoadoutData; -_policeLoadoutData set ["uniforms", ["U_SPE_US_Private"]]; -_policeLoadoutData set ["vests", ["V_SPE_US_Vest_Garand_M43"]]; -_policeLoadoutData set ["helmets", ["H_SPE_US_Helmet_29ID"]]; +_policeLoadoutData set ["uniforms", ["U_SPE_milice_3"]]; +_policeLoadoutData set ["vests", ["V_SPE_milice_Vest_zwart_rifle", "V_SPE_milice_Vest_zwart_rifle_sidearm","V_SPE_milice_Vest_zwart_sidearm"]]; +_policeLoadoutData set ["helmets", ["H_SPE_Milice_Adrian", "H_SPE_Milice_Adrian_ns"]]; +_policeLoadoutData set ["slHelmets", ["H_SPE_Milice_beret_1", "H_SPE_Milice_beret_2"]]; +_policeLoadoutData set ["SMGs", [ +["SPE_Sten_Mk2", "", "", "", ["SPE_32Rnd_9x19_Sten"], [], ""] +]]; _policeLoadoutData set ["rifles", [ -["SPE_M1903A3_Springfield", "SPE_ACC_M1_Bayo", "", "", ["SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_t"], [], ""], -["SPE_M1903A3_Springfield", "SPE_ACC_M1905_Bayo", "", "", ["SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_M1", "SPE_5Rnd_762x63_t"], [], ""] +["SPE_MAS_36", "", "", "", ["SPE_5Rnd_75x54"], [], ""] ]]; _policeLoadoutData set ["shotGuns", [ -["SPE_Fusil_Mle_208_12", "", "", "", ["SPE_2Rnd_12x65_No4_Buck", "SPE_2Rnd_12x65_Slug"], [], ""] +["SPE_Model_37_Riotgun", "", "", "", ["SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Slug"], [], ""], +["SPE_Model_37_Riotgun", "", "", "", ["SPE_5Rnd_12x70_Pellets"], [], ""] ]]; //////////////////////////////// @@ -270,13 +306,56 @@ _policeLoadoutData set ["shotGuns", [ private _militiaLoadoutData = _loadoutData call _fnc_copyLoadoutData; _militiaLoadoutData set ["uniforms", ["U_SPE_FR_HBT_Uniform", "U_SPE_FR_HBT_Uniform_Trop"]]; -_militiaLoadoutData set ["medUniforms", ["U_SPE_US_Med"]]; +_militiaLoadoutData set ["medUniforms", []]; _militiaLoadoutData set ["engUniforms", []]; -_militiaLoadoutData set ["slUniorms", []]; +_militiaLoadoutData set ["slUniforms", []]; -_militiaLoadoutData set ["helmets", ["H_SPE_FR_Adrian", "H_SPE_FR_Adrian_ns", "H_SPE_FR_US_Helmet_ns"]]; -_militiaLoadoutData set ["medHelmets", ["H_SPE_FR_Adrian_Medic", "H_SPE_FR_Adrian_Medic_ns"]]; -_militiaLoadoutData set ["slHelmets", ["H_SPE_FR_US_Helmet_ns"]]; +_militiaLoadoutData set ["helmets", ["H_SPE_FR_Adrian", "H_SPE_FR_Adrian_ns"]]; +_militiaLoadoutData set ["medHelmets", ["H_SPE_FR_Adrian_Medic_ns"]]; +_militiaLoadoutData set ["slHelmets", ["H_SPE_FR_Adrian_net","H_SPE_FR_Adrian_net_ns"]]; +_militiaLoadoutData set ["sniHelmets", ["H_SPE_FR_Adrian_cover_ns"]]; + +_militiaLoadoutData set ["ATLaunchers", []]; +_militiaLoadoutData set ["sidearms", []]; + +_militiaLoadoutData set ["rifles", [ +["SPE_No3_Mk1_Enfield", "SPE_ACC_M1917_Bayo", "", "", ["SPE_5Rnd_770x56"], [], ""], +["SPE_No3_Mk1_Enfield", "SPE_ACC_M1917_Bayo", "", "", ["SPE_5Rnd_770x56"], [], ""], +["SPE_No3_Mk1_Enfield", "", "", "", ["SPE_5Rnd_770x56", "SPE_5Rnd_770x56", "SPE_5Rnd_770x56_AP_MKI"], [], ""] +]]; +_militiaLoadoutData set ["slRifles", [ +["SPE_Sten_Mk2", "", "", "", ["SPE_32Rnd_9x19_Sten"], [], ""], +["SPE_M1_Carbine", "", "", "", ["SPE_15Rnd_762x33", "SPE_15Rnd_762x33", "SPE_15Rnd_762x33_t"], [], ""], +["SPE_No3_Mk1_Enfield", "", "", "", ["SPE_5Rnd_770x56", "SPE_5Rnd_770x56", "SPE_5Rnd_770x56_AP_MKI"], [], ""] +]]; +_militiaLoadoutData set ["shotGuns", [ +["SPE_Model_37_Riotgun", "", "", "", ["SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Slug"], [], ""], +["SPE_Model_37_Riotgun", "", "", "", ["SPE_5Rnd_12x70_Pellets", "SPE_5Rnd_12x70_Pellets"], [], ""] +]]; +_militiaLoadoutData set ["carbines", [ +["SPE_M1_Carbine", "", "", "", ["SPE_15Rnd_762x33", "SPE_15Rnd_762x33", "SPE_15Rnd_762x33_t"], [], ""], +["SPE_No3_Mk1_Enfield", "", "", "", ["SPE_5Rnd_770x56"], [], ""] +]]; +_militiaLoadoutData set ["grenadeLaunchers", [ +["SPE_M1_Carbine_M8", "SPE_ACC_GL_M8", "", "", ["SPE_15Rnd_762x33", "SPE_15Rnd_762x33", "SPE_15Rnd_762x33_t"], ["SPE_1Rnd_G_Mk2", "SPE_1Rnd_G_M9A1", "SPE_1Rnd_G_M17A1", "SPE_1Rnd_G_M2_ANM8"], ""], +["SPE_No3_Mk1_Enfield", "", "", "", ["SPE_5Rnd_770x56"], [], ""] +]]; +_militiaLoadoutData set ["marksmanRifles", [ +["SPE_No3_Mk1_Enfield", "", "", "", ["SPE_5Rnd_770x56"], [], ""] +]]; +_militiaLoadoutData set ["sniperRifles", [ +["SPE_No3_Mk1_Enfield", "", "", "", ["SPE_5Rnd_770x56"], [], ""] +]]; +_militiaLoadoutData set ["SMGs", [ +["SPE_Sten_Mk2", "", "", "", ["SPE_32Rnd_9x19_Sten"], [], ""], +["SPE_No3_Mk1_Enfield", "", "", "", ["SPE_5Rnd_770x56"], [], ""] +]]; +_militiaLoadoutData set ["machineGuns", [ +["SPE_LMG_303_Mk2", "", "", "", ["SPE_30Rnd_770x56"], [], ""], +["SPE_LMG_303_Mk2", "", "", "", ["SPE_30Rnd_770x56"], [], ""], +["SPE_M1918A2_erla_BAR", "", "SPE_M1918A2_BAR_Handle", "", ["SPE_20Rnd_762x63_M1"], [], ""], +["SPE_M1918A0_BAR", "", "", "", ["SPE_20Rnd_762x63_M1"], [], ""] +]]; ////////////////////////// // Misc Loadouts // @@ -293,6 +372,19 @@ _pilotLoadoutData set ["vests", ["V_SPE_US_LifeVest"]]; _pilotLoadoutData set ["helmets", ["H_SPE_US_Helmet_Pilot"]]; _pilotLoadoutData set ["backpacks", ["B_SPE_US_TypeA3"]]; +private _officerLoadoutData = _loadoutData call _fnc_copyLoadoutData; +_officerLoadoutData set ["slUniforms", ["U_SPE_US_Pilot_lthr", "U_SPE_US_Pilot"]]; +_officerLoadoutData set ["slVests", ["V_SPE_US_Vest_45_off", "V_SPE_US_Vest_45_high_off"]]; +_officerLoadoutData set ["slHelmets", ["H_SPE_US_Pilot_Cap", "H_SPE_US_Pilot_Cap_Khaki"]]; +_officerLoadoutData set ["backpacks", []]; +_officerLoadoutData set ["slBackpacks", []]; + +_officerLoadoutData set ["slRifles", [ +["SPE_M1_Carbine", "", "", "", ["SPE_15Rnd_762x33", "SPE_15Rnd_762x33", "SPE_15Rnd_762x33_t"], [], ""], +["SPE_M1A1_Thompson", "", "", "", ["SPE_30Rnd_Thompson_45ACP", "SPE_30Rnd_Thompson_45ACP", "SPE_30Rnd_Thompson_45ACP_t"], [], ""], +["SPE_M3_GreaseGun", "", "", "", ["SPE_30Rnd_M3_GreaseGun_45ACP", "SPE_30Rnd_M3_GreaseGun_45ACP", "SPE_30Rnd_M3_GreaseGun_45ACP_t"], [], ""] +]]; + ///////////////////////////////// // Unit Type Definitions // ///////////////////////////////// @@ -305,11 +397,11 @@ _pilotLoadoutData set ["backpacks", ["B_SPE_US_TypeA3"]]; private _squadLeaderTemplate = { ["slHelmets"] call _fnc_setHelmet; [["slVests", "vests"] call _fnc_fallback] call _fnc_setVest; - [["slUniorms", "uniforms"] call _fnc_fallback] call _fnc_setUniform; + [["slUniforms", "uniforms"] call _fnc_fallback] call _fnc_setUniform; [["slBackpacks", "backpacks"] call _fnc_fallback] call _fnc_setBackpack; - [selectRandom ["grenadeLaunchers", "slRifles"]] call _fnc_setPrimary; + [selectRandom ["shotGuns", "slRifles", "slRifles"]] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; ["primary", 4] call _fnc_addAdditionalMuzzleMagazines; @@ -327,6 +419,7 @@ private _squadLeaderTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; ["binoculars"] call _fnc_addBinoculars; }; @@ -336,12 +429,9 @@ private _riflemanTemplate = { ["vests"] call _fnc_setVest; ["uniforms"] call _fnc_setUniform; - [selectRandom ["rifles", "carbines"]] call _fnc_setPrimary; + ["rifles"] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; - ["sidearms"] call _fnc_setHandgun; - ["handgun", 2] call _fnc_addMagazines; - ["items_medical_standard"] call _fnc_addItemSet; ["items_rifleman_extras"] call _fnc_addItemSet; ["items_miscEssentials"] call _fnc_addItemSet; @@ -352,6 +442,7 @@ private _riflemanTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _medicTemplate = { @@ -359,7 +450,7 @@ private _medicTemplate = { [["medVests", "vests"] call _fnc_fallback] call _fnc_setVest; [["medUniforms", "uniforms"] call _fnc_fallback] call _fnc_setUniform; [["medBackpacks", "backpacks"] call _fnc_fallback] call _fnc_setBackpack; - ["carbines"] call _fnc_setPrimary; + [selectRandom ["carbines", "SMGs"]] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; ["sidearms"] call _fnc_setHandgun; @@ -375,6 +466,7 @@ private _medicTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _grenadierTemplate = { @@ -387,10 +479,6 @@ private _grenadierTemplate = { ["primary", 8] call _fnc_addMagazines; ["primary", 10] call _fnc_addAdditionalMuzzleMagazines; - ["sidearms"] call _fnc_setHandgun; - ["handgun", 4] call _fnc_addMagazines; - ["handgun", 2] call _fnc_addAdditionalMuzzleMagazines; - ["items_medical_standard"] call _fnc_addItemSet; ["items_grenadier_extras"] call _fnc_addItemSet; ["items_miscEssentials"] call _fnc_addItemSet; @@ -401,6 +489,7 @@ private _grenadierTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _explosivesExpertTemplate = { @@ -409,7 +498,7 @@ private _explosivesExpertTemplate = { [["engUniforms", "uniforms"] call _fnc_fallback] call _fnc_setUniform; [["engBackpacks", "backpacks"] call _fnc_fallback] call _fnc_setBackpack; - [selectRandom ["rifles", "carbines"]] call _fnc_setPrimary; + [selectRandom ["shotGuns", "rifles", "carbines", "SMGs"]] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; @@ -432,6 +521,7 @@ private _explosivesExpertTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _engineerTemplate = { @@ -440,7 +530,7 @@ private _engineerTemplate = { [["engUniforms", "uniforms"] call _fnc_fallback] call _fnc_setUniform; [["engBackpacks", "backpacks"] call _fnc_fallback] call _fnc_setBackpack; - ["carbines"] call _fnc_setPrimary; + [selectRandom ["shotGuns", "shotGuns", "carbines", "SMGs"]] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; ["sidearms"] call _fnc_setHandgun; @@ -459,6 +549,7 @@ private _engineerTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _latTemplate = { @@ -467,13 +558,11 @@ private _latTemplate = { ["uniforms"] call _fnc_setUniform; ["atBackpacks"] call _fnc_setBackpack; - [selectRandom ["rifles", "carbines"]] call _fnc_setPrimary; + ["rifles"] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; ["lightATLaunchers"] call _fnc_setLauncher; - - ["sidearms"] call _fnc_setHandgun; - ["handgun", 2] call _fnc_addMagazines; + ["launcher", 1] call _fnc_addMagazines; ["items_medical_standard"] call _fnc_addItemSet; ["items_lat_extras"] call _fnc_addItemSet; @@ -485,6 +574,7 @@ private _latTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _atTemplate = { @@ -496,10 +586,8 @@ private _atTemplate = { [selectRandom ["rifles", "carbines"]] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; - ["lightATLaunchers"] call _fnc_setLauncher; - - ["sidearms"] call _fnc_setHandgun; - ["handgun", 2] call _fnc_addMagazines; + [["ATLaunchers", "lightATLaunchers"] call _fnc_fallback] call _fnc_setLauncher; + ["launcher", 2] call _fnc_addMagazines; ["items_medical_standard"] call _fnc_addItemSet; ["items_at_extras"] call _fnc_addItemSet; @@ -511,6 +599,7 @@ private _atTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _aaTemplate = { @@ -519,13 +608,11 @@ private _aaTemplate = { ["uniforms"] call _fnc_setUniform; ["atBackpacks"] call _fnc_setBackpack; - [selectRandom ["rifles", "carbines"]] call _fnc_setPrimary; + ["rifles"] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; ["lightATLaunchers"] call _fnc_setLauncher; - - ["sidearms"] call _fnc_setHandgun; - ["handgun", 2] call _fnc_addMagazines; + ["launcher", 1] call _fnc_addMagazines; ["items_medical_standard"] call _fnc_addItemSet; ["items_aa_extras"] call _fnc_addItemSet; @@ -537,6 +624,7 @@ private _aaTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _machineGunnerTemplate = { @@ -561,10 +649,11 @@ private _machineGunnerTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _marksmanTemplate = { - ["helmets"] call _fnc_setHelmet; + ["sniHelmets"] call _fnc_setHelmet; [["sniVests", "vests"] call _fnc_fallback] call _fnc_setVest; ["uniforms"] call _fnc_setUniform; @@ -584,11 +673,12 @@ private _marksmanTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; ["binoculars"] call _fnc_addBinoculars; }; private _sniperTemplate = { - ["helmets"] call _fnc_setHelmet; + ["sniHelmets"] call _fnc_setHelmet; [["sniVests", "vests"] call _fnc_fallback] call _fnc_setVest; ["uniforms"] call _fnc_setUniform; @@ -631,6 +721,12 @@ private _policeTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; +}; +private _policeSLTemplate = { + call _policeTemplate; + ["slHelmets"] call _fnc_setHelmet; + [selectRandom ["rifles", "SMGs"]] call _fnc_setPrimary; }; private _crewTemplate = { @@ -667,10 +763,14 @@ private _unarmedTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _traitorTemplate = { call _unarmedTemplate; + + ["shotGuns"] call _fnc_setPrimary; + ["primary", 2] call _fnc_addMagazines; ["sidearms"] call _fnc_setHandgun; ["handgun", 2] call _fnc_addMagazines; }; @@ -735,7 +835,7 @@ private _unitTypes = [ //////////////////////// private _prefix = "police"; private _unitTypes = [ - ["SquadLeader", _policeTemplate], + ["SquadLeader", _policeSLTemplate], ["Standard", _policeTemplate] ]; @@ -771,8 +871,8 @@ private _unitTypes = [ //The following lines are determining the loadout of the pilots ["other", [["Pilot", _crewTemplate]], _pilotLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; //The following lines are determining the loadout for the unit used in the "kill the official" mission -["other", [["Official", _SquadLeaderTemplate]], _militaryLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; +["other", [["Official", _SquadLeaderTemplate]], _officerLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; //The following lines are determining the loadout for the AI used in the "kill the traitor" mission -["other", [["Traitor", _traitorTemplate]], _militaryLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; +["other", [["Traitor", _traitorTemplate]], _militiaLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; //The following lines are determining the loadout for the AI used in the "Invader Punishment" mission ["other", [["Unarmed", _UnarmedTemplate]], _militaryLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; diff --git a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_AI_WEH.sqf b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_AI_WEH.sqf index cad97bce81..33c30c2406 100644 --- a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_AI_WEH.sqf +++ b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_AI_WEH.sqf @@ -14,25 +14,28 @@ ////////////////////////// ["attributeLowAir", true] call _fnc_saveToTemplate; // Use fewer air units in general +["attributeMoreTrucks", true] call _fnc_saveToTemplate; // Use more truck for transports ["attributeNoSAM", true] call _fnc_saveToTemplate; // Don't use SAM supports ["ammobox", "B_supplyCrate_F"] call _fnc_saveToTemplate; ["surrenderCrate", "SPE_Weaponcrate_MP40_GER"] call _fnc_saveToTemplate; ["equipmentBox", "Box_NATO_Equip_F"] call _fnc_saveToTemplate; -["vehiclesBasic", []] call _fnc_saveToTemplate; -["vehiclesLightUnarmed", ["SPE_ST_OpelBlitz_Open", "SPE_ST_OpelBlitz"]] call _fnc_saveToTemplate; -["vehiclesLightArmed", ["SPE_SdKfz250_1", "SPE_SdKfz250_1", "SPE_ST_OpelBlitz_Flak38"]] call _fnc_saveToTemplate; -["vehiclesTrucks", ["SPE_ST_OpelBlitz_Open", "SPE_ST_OpelBlitz"]] call _fnc_saveToTemplate; +["vehiclesBasic", ["SPE_ST_R200_Unarmed"]] call _fnc_saveToTemplate; +["vehiclesLightUnarmed", ["SPE_ST_R200_Unarmed","SPE_ST_R200_Hood"]] call _fnc_saveToTemplate; +["vehiclesLightArmed", ["SPE_SdKfz250_1", "SPE_SdKfz250_1", "SPE_ST_R200_MG34", "SPE_ST_OpelBlitz_Flak38"]] call _fnc_saveToTemplate; +["vehiclesTrucks", ["SPE_ST_OpelBlitz_Open", "SPE_ST_OpelBlitz", "SPE_ST_OpelBlitz", "SPE_OpelBlitz_Open"]] call _fnc_saveToTemplate; ["vehiclesCargoTrucks", ["SPE_ST_OpelBlitz_Open"]] call _fnc_saveToTemplate; ["vehiclesAmmoTrucks", ["SPE_ST_OpelBlitz_Ammo"]] call _fnc_saveToTemplate; ["vehiclesRepairTrucks", ["SPE_ST_OpelBlitz_Repair"]] call _fnc_saveToTemplate; ["vehiclesFuelTrucks", ["SPE_ST_OpelBlitz_Fuel"]] call _fnc_saveToTemplate; ["vehiclesMedical", ["SPE_ST_OpelBlitz_Ambulance"]] call _fnc_saveToTemplate; ["vehiclesLightAPCs", []] call _fnc_saveToTemplate; -["vehiclesAPCs", ["SPE_PzKpfwIII_N", "SPE_PzKpfwIII_M", "SPE_PzKpfwIII_L"]] call _fnc_saveToTemplate; -["vehiclesIFVs", ["SPE_PzKpfwIII_N", "SPE_PzKpfwIII_M", "SPE_PzKpfwIII_L"]] call _fnc_saveToTemplate; -["vehiclesTanks", ["SPE_PzKpfwVI_H1", "SPE_ST_PzKpfwIII_J", "SPE_PzKpfwIV_G"]] call _fnc_saveToTemplate; +["vehiclesAPCs", []] call _fnc_saveToTemplate; +["vehiclesIFVs", ["SPE_StuG_III_G_SKB","SPE_StuG_III_G_Late"]] call _fnc_saveToTemplate; +["vehiclesLightTanks",["SPE_PzKpfwIII_N", "SPE_PzKpfwIII_L", "SPE_PzKpfwIII_M", "SPE_PzKpfwIII_J", "SPE_StuG_III_G_Late", "SPE_Nashorn"]] call _fnc_saveToTemplate; +["vehiclesTanks", ["SPE_PzKpfwIII_M", "SPE_PzKpfwIV_G", "SPE_PzKpfwIV_G", "SPE_PzKpfwV_G"]] call _fnc_saveToTemplate; +["vehiclesHeavyTanks", ["SPE_Jagdpanther_G1","SPE_PzKpfwVI_H1", "SPE_PzKpfwVI_H1", "SPE_PzKpfwV_G", "SPE_PzKpfwV_G", "SPE_PzKpfwV_G"]] call _fnc_saveToTemplate; ["vehiclesAA", ["SPE_ST_OpelBlitz_Flak38"]] call _fnc_saveToTemplate; ["vehiclesTransportBoats", ["B_Boat_Transport_01_F"]] call _fnc_saveToTemplate; @@ -57,11 +60,11 @@ ["uavsPortable", []] call _fnc_saveToTemplate; //Config special vehicles -["vehiclesMilitiaLightArmed", ["LIB_Kfz1_MG42_sernyt"]] call _fnc_saveToTemplate; -["vehiclesMilitiaTrucks", ["SPE_ST_OpelBlitz_Open"]] call _fnc_saveToTemplate; -["vehiclesMilitiaCars", ["LIB_Kfz1_sernyt"]] call _fnc_saveToTemplate; +["vehiclesMilitiaLightArmed", ["SPE_GER_R200_MG34"]] call _fnc_saveToTemplate; +["vehiclesMilitiaTrucks", ["SPE_OpelBlitz_Open"]] call _fnc_saveToTemplate; +["vehiclesMilitiaCars", ["SPE_GER_R200_Unarmed", "SPE_GER_R200_Hood"]] call _fnc_saveToTemplate; -["vehiclesPolice", ["LIB_Kfz1_sernyt"]] call _fnc_saveToTemplate; +["vehiclesPolice", ["SPE_Milice_R200_Unarmed", "SPE_Milice_R200_Hood"]] call _fnc_saveToTemplate; ["staticMGs", ["SPE_MG42_Lafette_Deployed", "SPE_MG34_Lafette_Deployed"]] call _fnc_saveToTemplate; ["staticAT", ["SPE_leFH18_AT", "SPE_Pak40"]] call _fnc_saveToTemplate; @@ -82,7 +85,12 @@ ///////////////////// ["faces", ["LivonianHead_6","SPE_boyartsev","SPE_bykov","SPE_Connors","SPE_DAgostino","SPE_Davidson","SPE_Elliot","SPE_Grishka","SPE_Hauptmann","SPE_Klimakov","SPE_Krueger","SPE_Kuzmin","SPE_Neumann","SPE_Oberst","SPE_OBrien","SPE_Vasiliev","SPE_Walter","SPE_Wolf","Sturrock","WhiteHead_01","WhiteHead_02","WhiteHead_03","WhiteHead_04","WhiteHead_05","WhiteHead_06","WhiteHead_08","WhiteHead_09","WhiteHead_11","WhiteHead_12","WhiteHead_13","WhiteHead_14","WhiteHead_15","WhiteHead_18","WhiteHead_19","WhiteHead_20","WhiteHead_21"]] call _fnc_saveToTemplate; -["voices", ["Male01ENG", "Male02ENG", "Male03ENG", "Male04ENG", "Male05ENG", "Male06ENG", "Male07ENG", "Male08ENG", "Male09ENG", "Male10ENG", "Male11ENG", "Male12ENG"]] call _fnc_saveToTemplate; +["voices", ["spe_male01ger", "spe_male02ger"]] call _fnc_saveToTemplate; +["milFaces", ["LivonianHead_6","SPE_Arnold","SPE_Connors","SPE_Davidson","SPE_Elliot","SPE_Oberst","SPE_Seppmeyer","SPE_Walter","WhiteHead_01","WhiteHead_02","WhiteHead_05","WhiteHead_06","WhiteHead_07","WhiteHead_08","WhiteHead_12","WhiteHead_15","WhiteHead_18"]] call _fnc_saveToTemplate; +["milVoices", ["spe_male01fre", "spe_male02fre"]] call _fnc_saveToTemplate; +["polFaces", ["LivonianHead_6","SPE_Arnold","SPE_Connors","SPE_Davidson","SPE_Elliot","SPE_Oberst","SPE_Seppmeyer","SPE_Walter","WhiteHead_01","WhiteHead_02","WhiteHead_05","WhiteHead_06","WhiteHead_07","WhiteHead_08","WhiteHead_12","WhiteHead_15","WhiteHead_18"]] call _fnc_saveToTemplate; +["polVoices", ["spe_male01fre", "spe_male02fre"]] call _fnc_saveToTemplate; +"SPE_GermanMen" call _fnc_saveNames; ////////////////////////// // Loadouts // @@ -98,10 +106,10 @@ _loadoutData set ["slRifles", [ ["SPE_MP40", "", "", "", ["SPE_32Rnd_9x19", "SPE_32Rnd_9x19", "SPE_32rnd_9x19_t"], [], ""], ["SPE_G43", "", "", "", ["SPE_10Rnd_792x57", "SPE_10Rnd_792x57", "SPE_10Rnd_792x57_T"], [], ""], ["SPE_K98_Late", "SPE_ACC_K98_Bayo", "", "", ["SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_t"], [], ""], -["SPE_K98_Late_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_PZGR_40", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""], -["SPE_STG44", "", "", "", ["SPE_30Rnd_792x33", "SPE_30Rnd_792x33", "SPE_30rnd_792x33_t"], [], ""] +["SPE_K98_Late_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_PZGR_40", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""] ]]; _loadoutData set ["grenadeLaunchers", [ +["SPE_K98_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""], ["SPE_K98_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_PZGR_30", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""], ["SPE_K98_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_PZGR_40", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""] ]]; @@ -113,15 +121,16 @@ _loadoutData set ["machineGuns", [ ["SPE_MG34", "", "", "", ["SPE_50Rnd_792x57", "SPE_50Rnd_792x57", "SPE_50Rnd_792x57_SMK"], [], ""] ]]; _loadoutData set ["marksmanRifles", [ -["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_t"], [], ""], -["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_t"], [], ""] +["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], [], ""], +["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], [], ""] ]]; _loadoutData set ["sniperRifles", [ -["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_762x63_M2_AP"], [], ""], -["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_762x63_M2_AP"], [], ""] +["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_SMK"], [], ""], +["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_SMK"], [], ""] ]]; _loadoutData set ["lightATLaunchers", ["SPE_PzFaust_60m", "SPE_PzFaust_30m", "SPE_Faustpatrone"]]; +_loadoutData set ["ATLaunchers", ["SPE_RPzB_43","SPE_RPzB_54"]]; _loadoutData set ["sidearms", ["SPE_P08"]]; _loadoutData set ["ATMines", ["SPE_TMI_42_MINE_mag"]]; @@ -130,8 +139,8 @@ _loadoutData set ["lightExplosives", ["SPE_Ladung_Small_MINE_mag"]]; _loadoutData set ["heavyExplosives", ["SPE_Ladung_Big_MINE_mag"]]; _loadoutData set ["antiTankGrenades", ["SPE_Shg24x7"]]; -_loadoutData set ["antiInfantryGrenades", ["SPE_Shg24_Frag"]]; -_loadoutData set ["smokeGrenades", ["SPE_NB39"]]; +_loadoutData set ["antiInfantryGrenades", ["SPE_Shg24","SPE_Shg24_Frag"]]; +_loadoutData set ["smokeGrenades", ["SPE_NB39", "SPE_NBK39b"]]; _loadoutData set ["signalsmokeGrenades", ["SPE_Handrauchzeichen_Yellow", "SPE_Handrauchzeichen_Red", "SPE_Handrauchzeichen_Violet"]]; @@ -142,10 +151,12 @@ _loadoutData set ["watches", ["SPE_GER_ItemWatch"]]; _loadoutData set ["compasses", ["SPE_GER_ItemCompass", "SPE_GER_ItemCompass_deg"]]; _loadoutData set ["radios", ["ItemRadio"]]; _loadoutData set ["binoculars", ["SPE_Binocular_GER"]]; +_loadoutData set ["Flashlight", ["SPE_GER_FL_Signal_Flashlight"]]; -_loadoutData set ["uniforms", ["U_SPE_ST_Soldier_E44_Camo", "U_SPE_ST_Soldier_Camo"]]; -_loadoutData set ["medUniforms", ["U_SPE_ST_Medic_E44"]]; -_loadoutData set ["slUniorms", ["U_SPE_ST_Unterofficier_E44"]]; +_loadoutData set ["uniforms", ["U_SPE_GER_Soldier_Boots", "U_SPE_GER_Soldier_Gaiters", "U_SPE_GER_MG_schutze", "U_SPE_GER_Gefreiter_Gaiters", "U_SPE_GER_Gefreiter", "U_SPE_GER_Oberschutze"]]; +_loadoutData set ["sniUniforms", []]; +_loadoutData set ["medUniforms", ["U_SPE_GER_Medic"]]; +_loadoutData set ["slUniforms", ["U_SPE_GER_Unterofficer"]]; _loadoutData set ["vests", ["V_SPE_GER_VestMP40", "V_SPE_GER_VestG43", "V_SPE_GER_VestKar98", "V_SPE_DAK_VestKar98"]]; _loadoutData set ["glVests", ["V_SPE_US_Vest_Grenadier"]]; @@ -159,9 +170,12 @@ _loadoutData set ["medBackpacks", ["B_SPE_GER_MedicBackpack_Empty"]]; _loadoutData set ["slBackpacks", ["B_SPE_GER_Radio"]]; _loadoutData set ["engBackpacks", ["B_SPE_GER_SapperBackpack_empty"]]; -_loadoutData set ["helmets", ["H_SPE_ST_Helmet", "H_SPE_ST_Helmet3"]]; +_loadoutData set ["helmets", ["H_SPE_GER_Helmet", "H_SPE_GER_Helmet_ns", "H_SPE_GER_HelmetUtility_Oak_OS"]]; +_loadoutData set ["sniHelmets", []]; _loadoutData set ["medHelmets", ["H_SPE_GER_Helmet_Medic"]]; -_loadoutData set ["slHelmets", ["H_SPE_GER_OfficerCap"]]; +_loadoutData set ["slHelmets", ["H_SPE_GER_Cap_Offz"]]; + +_loadoutData set ["facewear", ["G_SPE_GER_GM30","G_SPE_Dust_Goggles","G_SPE_Dust_Goggles_2"]]; //Item *set* definitions. These are added in their entirety to unit loadouts. No randomisation is applied. _loadoutData set ["items_medical_basic", ["BASIC"] call A3A_fnc_itemset_medicalSupplies]; @@ -204,23 +218,38 @@ _loadoutData set ["items_unarmed_extras", []]; private _sfLoadoutData = _loadoutData call _fnc_copyLoadoutData; _sfLoadoutData set ["uniforms", ["U_SPE_ST_Soldier_E44_Camo", "U_SPE_ST_MGunner_E44", "U_SPE_ST_Soldier_E44_Camo2", "U_SPE_ST_Soldier_E44"]]; _sfLoadoutData set ["medUniforms", ["U_SPE_ST_Medic_E44"]]; -_sfLoadoutData set ["slUniorms", ["U_SPE_ST_Unterofficier_E44"]]; +_sfLoadoutData set ["slUniforms", ["U_SPE_ST_Unterofficier_E44"]]; _sfLoadoutData set ["helmets", ["H_SPE_ST_Helmet2", "H_SPE_ST_Helmet4"]]; +_sfLoadoutData set ["slHelmets", ["H_SPE_GER_Fieldcap2"]]; _sfLoadoutData set ["rifles", [ ["SPE_G43", "", "", "", ["SPE_10Rnd_792x57", "SPE_10Rnd_792x57", "SPE_10Rnd_792x57_T"], [], ""], ["SPE_STG44", "", "", "", ["SPE_30Rnd_792x33", "SPE_30Rnd_792x33", "SPE_30rnd_792x33_t"], [], ""], -["SPE_K98_Late", "SPE_ACC_K98_Bayo", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], [], ""], -["SPE_K98_Late_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_PZGR_40", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""] +["SPE_K98_Late_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_PZGR_40", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""] ]]; _sfLoadoutData set ["slRifles", [ ["SPE_G43", "", "", "", ["SPE_10Rnd_792x57", "SPE_10Rnd_792x57", "SPE_10Rnd_792x57_T"], [], ""], ["SPE_STG44", "", "", "", ["SPE_30Rnd_792x33", "SPE_30Rnd_792x33", "SPE_30rnd_792x33_t"], [], ""] ]]; _sfLoadoutData set ["grenadeLaunchers", [ -["SPE_K98_Late_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_PZGR_30", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""], -["SPE_K98_Late_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_PZGR_40", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""] +["SPE_K98_Late_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_PZGR_30", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""], +["SPE_K98_Late_GW", "SPE_ACC_GW_SB_Empty", "", "", ["SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_SMK", "SPE_5Rnd_792x57_t"], ["SPE_1Rnd_G_PZGR_40", "SPE_1Rnd_G_SPRGR_30", "SPE_1Rnd_G_FLGR", "SPE_1Rnd_G_NBGR_42"], ""] +]]; +_sfLoadoutData set ["machineGuns", [ +["SPE_MG42", "", "", "", ["SPE_50Rnd_792x57", "SPE_50Rnd_792x57", "SPE_50Rnd_792x57_SMK"], [], ""], +["SPE_MG34", "", "", "", ["SPE_50Rnd_792x57", "SPE_50Rnd_792x57", "SPE_50Rnd_792x57_SMK"], [], ""], +["SPE_FG42_E", "", "", "", ["SPE_20Rnd_792x57", "SPE_20Rnd_792x57", "SPE_20Rnd_792x57_t2"], [], ""] +]]; +_sfLoadoutData set ["marksmanRifles", [ +["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57_SMK"], [], ""], +["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57_SMK"], [], ""], +["SPE_FG42_E", "", "", "SPE_Optic_ZFG42", ["SPE_20Rnd_792x57", "SPE_20Rnd_792x57", "SPE_20Rnd_792x57_t2"], [], ""] +]]; +_sfLoadoutData set ["sniperRifles", [ +["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57_SMK"], [], ""], +["SPE_K98ZF39", "", "", "", ["SPE_5Rnd_792x57_SMK"], [], ""], +["SPE_FG42_E", "", "", "SPE_Optic_ZFG42", ["SPE_20Rnd_792x57", "SPE_20Rnd_792x57", "SPE_20Rnd_792x57_t2"], [], ""] ]]; ///////////////////////////////// @@ -228,16 +257,31 @@ _sfLoadoutData set ["grenadeLaunchers", [ ///////////////////////////////// private _militaryLoadoutData = _loadoutData call _fnc_copyLoadoutData; + +_militaryLoadoutData set ["sniUniforms", ["U_SPE_GER_Soldier_camo", "U_SPE_GER_Soldier_camo4"]]; +_militaryLoadoutData set ["sniHelmets", ["H_SPE_GER_HelmetUtility_Oak_OS", "H_SPE_GER_HelmetUtility_Grass_OS", "H_SPE_GER_M38_2", "H_SPE_GER_Cap"]]; //See LoadoutData /////////////////////////////// // Police Loadout Data // /////////////////////////////// private _policeLoadoutData = _loadoutData call _fnc_copyLoadoutData; -_policeLoadoutData set ["uniforms", ["U_SPE_GER_Soldier_Boots"]]; +_policeLoadoutData set ["uniforms", ["U_SPE_milice_3"]]; +_policeLoadoutData set ["vests", ["V_SPE_milice_Vest_zwart_rifle", "V_SPE_milice_Vest_zwart_rifle_sidearm","V_SPE_milice_Vest_zwart_sidearm"]]; +_policeLoadoutData set ["helmets", ["H_SPE_Milice_Adrian", "H_SPE_Milice_Adrian_ns"]]; +_policeLoadoutData set ["slHelmets", ["H_SPE_Milice_beret_1"]]; + +_policeLoadoutData set ["SMGs", [ +["SPE_MP35", "", "", "", ["SPE_24Rnd_MP35_9x19", "SPE_24Rnd_MP35_9x19", "SPE_24rnd_MP35_9x19_t"], [], ""] +]]; _policeLoadoutData set ["rifles", [ -["SPE_K98", "SPE_ACC_K98_Bayo", "", "", ["SPE_5Rnd_792x57", "SPE_5Rnd_792x57", "SPE_5Rnd_792x57_t"], [], ""] +["SPE_MAS_36", "", "", "", ["SPE_5Rnd_75x54"], [], ""] +]]; +_policeLoadoutData set ["shotGuns", [ +["SPE_Fusil_Mle_208_12", "", "", "", ["SPE_2Rnd_12x65_Slug", "SPE_2Rnd_12x65_No4_Buck", "SPE_2Rnd_12x65_Pellets"], [], ""], +["SPE_Fusil_Mle_208_12", "", "", "", ["SPE_2Rnd_12x65_No4_Buck", "SPE_2Rnd_12x65_Slug", "SPE_2Rnd_12x65_Pellets"], [], ""], +["SPE_Fusil_Mle_208_12", "", "", "", ["SPE_2Rnd_12x65_Pellets", "SPE_2Rnd_12x65_Slug", "SPE_2Rnd_12x65_No4_Buck"], [], ""] ]]; //////////////////////////////// @@ -246,18 +290,68 @@ _policeLoadoutData set ["rifles", [ private _militiaLoadoutData = _loadoutData call _fnc_copyLoadoutData; -_militiaLoadoutData set ["uniforms", ["U_SPE_GER_Soldier_Boots", "U_SPE_GER_Soldier_Gaiters", "U_SPE_GER_Schutze_HBT", "U_SPE_GER_MG_schutze_HBT"]]; -_militiaLoadoutData set ["medUniforms", ["U_SPE_GER_Medic"]]; -_militiaLoadoutData set ["slUniorms", ["U_SPE_GER_Leutnant", "U_SPE_GER_Oberleutnant", "U_SPE_GER_Hauptmann"]]; -_militiaLoadoutData set ["helmets", ["H_SPE_GER_Helmet", "H_SPE_GER_Cap"]]; +_militiaLoadoutData set ["uniforms", ["U_SPE_milice_2"]]; +_militiaLoadoutData set ["medUniforms", ["U_SPE_milice_2_CD"]]; +_militiaLoadoutData set ["slUniforms", ["U_SPE_milice_2_CT"]]; + +_militiaLoadoutData set ["vests", ["V_SPE_Milice_Vest_rifle", "V_SPE_milice_Vest_MG"]]; +_militiaLoadoutData set ["glVests", ["V_SPE_Milice_Vest_rifle"]]; +_militiaLoadoutData set ["sniVests", ["V_SPE_milice_Vest_rifle_sidearm"]]; +_militiaLoadoutData set ["engVests", ["V_SPE_milice_Vest_rifle_sidearm"]]; +_militiaLoadoutData set ["mgVests", ["V_SPE_milice_Vest_MG", "V_SPE_milice_Vest_MG_sidearm"]]; +_militiaLoadoutData set ["slVests", ["V_SPE_milice_Vest_smg", "V_SPE_milice_Vest_sidearm"]]; + +_militiaLoadoutData set ["backpacks", ["B_SPE_CIV_musette", "B_SPE_FFI_Gasbag"]]; +_militiaLoadoutData set ["medBackpacks", ["B_SPE_GER_MedicBackpack_Empty"]]; +_militiaLoadoutData set ["slBackpacks", ["B_SPE_Milice_Radio"]]; +_militiaLoadoutData set ["engBackpacks", ["B_SPE_CIV_musette"]]; + +_militiaLoadoutData set ["helmets", ["H_SPE_Milice_Adrian", "H_SPE_Milice_Adrian_ns"]]; +_militiaLoadoutData set ["medHelmets", ["H_SPE_FR_Adrian_Medic"]]; +_militiaLoadoutData set ["slHelmets", ["H_SPE_Milice_beret_2"]]; + +_militiaLoadoutData set ["ATLaunchers", []]; +_militiaLoadoutData set ["sidearms", []]; + +_militiaLoadoutData set ["rifles", [ +["SPE_No3_Mk1_Enfield", "SPE_ACC_M1917_Bayo", "", "", ["SPE_5Rnd_770x56", "SPE_5Rnd_770x56"], [], ""], +["SPE_MAS_36", "", "", "", ["SPE_5Rnd_75x54"], [], ""], +["SPE_MAS_36", "", "", "", ["SPE_5Rnd_75x54"], [], ""] +]]; +_militiaLoadoutData set ["shotGuns", [ +["SPE_Fusil_Mle_208_12", "", "", "", ["SPE_2Rnd_12x65_Pellets"], [], ""], +["SPE_Fusil_Mle_208_12_Sawedoff", "", "", "", ["SPE_2Rnd_12x65_Pellets"], [], ""] +]]; +_militiaLoadoutData set ["slRifles", [ +["SPE_MAS_36", "", "", "", ["SPE_5Rnd_75x54"], [], ""], +["SPE_MP35", "", "", "", ["SPE_24Rnd_MP35_9x19", "SPE_24Rnd_MP35_9x19", "SPE_24rnd_MP35_9x19_t"], [], ""] +]]; +_militiaLoadoutData set ["grenadeLaunchers", [ +["SPE_MAS_36", "", "", "", ["SPE_5Rnd_75x54"], [], ""] +]]; +_militiaLoadoutData set ["marksmanRifles", [ +["SPE_MAS_36", "", "", "", ["SPE_5Rnd_75x54"], [], ""] +]]; +_militiaLoadoutData set ["sniperRifles", [ +["SPE_MAS_36", "", "", "", ["SPE_5Rnd_75x54"], [], ""] +]]; +_militiaLoadoutData set ["SMGs", [ +["SPE_MAS_36", "", "", "", ["SPE_5Rnd_75x54"], [], ""], +["SPE_MP35", "", "", "", ["SPE_24Rnd_MP35_9x19", "SPE_24Rnd_MP35_9x19", "SPE_24rnd_MP35_9x19_t"], [], ""] +]]; +_militiaLoadoutData set ["machineGuns", [ +["SPE_LMG_303_Mk2", "", "", "", ["SPE_30Rnd_770x56"], [], ""], +["SPE_FM_24_M29", "", "", "", ["SPE_25Rnd_75x54"], [], ""], +["SPE_FM_24_M29", "", "", "", ["SPE_25Rnd_75x54"], [], ""] +]]; ////////////////////////// // Misc Loadouts // ////////////////////////// private _crewLoadoutData = _loadoutData call _fnc_copyLoadoutData; -_crewLoadoutData set ["uniforms", ["U_SPE_GER_Tank_crew_private"]]; +_crewLoadoutData set ["uniforms", ["U_SPE_GER_Tank_crew_private", "U_SPE_GER_lehr_gefreiter", "U_SPE_GER_lehr_unterofficer"]]; _crewLoadoutData set ["vests", ["V_SPE_GER_TankPrivateBelt"]]; _crewLoadoutData set ["helmets", ["H_SPE_GER_TankPrivateCap3", "H_SPE_GER_TankPrivateCap", "H_SPE_GER_TankPrivateCap2"]]; @@ -267,6 +361,17 @@ _pilotLoadoutData set ["vests", ["V_SPE_GER_PrivateBelt"]]; _pilotLoadoutData set ["helmets", ["H_SPE_GER_LW_PilotHelmet"]]; _pilotLoadoutData set ["backpacks", ["B_SPE_GER_LW_Paradrop"]]; +private _officerLoadoutData = _loadoutData call _fnc_copyLoadoutData; +_officerLoadoutData set ["slUniforms", ["U_SPE_GER_Hauptmann", "U_SPE_GER_Oberleutnant", "U_SPE_GER_Oberst"]]; +_officerLoadoutData set ["slVests", ["V_SPE_GER_PistolBelt"]]; +_officerLoadoutData set ["slHelmets", ["H_SPE_GER_OfficerCap"]]; +_officerLoadoutData set ["backpacks", []]; +_officerLoadoutData set ["slBackpacks", []]; + +_officerLoadoutData set ["slRifles", [ +["SPE_MP40", "", "", "", ["SPE_32Rnd_9x19"], [], ""] +]]; + ///////////////////////////////// // Unit Type Definitions // ///////////////////////////////// @@ -279,7 +384,7 @@ _pilotLoadoutData set ["backpacks", ["B_SPE_GER_LW_Paradrop"]]; private _squadLeaderTemplate = { ["slHelmets"] call _fnc_setHelmet; [["slVests", "vests"] call _fnc_fallback] call _fnc_setVest; - [["slUniorms", "uniforms"] call _fnc_fallback] call _fnc_setUniform; + [["slUniforms", "uniforms"] call _fnc_fallback] call _fnc_setUniform; [["slBackpacks", "backpacks"] call _fnc_fallback] call _fnc_setBackpack; @@ -301,6 +406,7 @@ private _squadLeaderTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; ["binoculars"] call _fnc_addBinoculars; }; @@ -310,7 +416,7 @@ private _riflemanTemplate = { ["vests"] call _fnc_setVest; ["uniforms"] call _fnc_setUniform; - [selectRandomWeighted ["rifles", 3, "SMGs", 1.5]] call _fnc_setPrimary; + ["rifles"] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; ["sidearms"] call _fnc_setHandgun; @@ -326,6 +432,7 @@ private _riflemanTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _medicTemplate = { @@ -349,6 +456,7 @@ private _medicTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _grenadierTemplate = { @@ -375,6 +483,7 @@ private _grenadierTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _explosivesExpertTemplate = { @@ -406,6 +515,7 @@ private _explosivesExpertTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _engineerTemplate = { @@ -433,6 +543,7 @@ private _engineerTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _latTemplate = { @@ -441,7 +552,7 @@ private _latTemplate = { ["uniforms"] call _fnc_setUniform; ["backpacks"] call _fnc_setBackpack; - [selectRandomWeighted ["rifles", 3, "SMGs", 1.5]] call _fnc_setPrimary; + ["rifles"] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; ["lightATLaunchers"] call _fnc_setLauncher; @@ -452,25 +563,28 @@ private _latTemplate = { ["items_medical_standard"] call _fnc_addItemSet; ["items_lat_extras"] call _fnc_addItemSet; ["items_miscEssentials"] call _fnc_addItemSet; - ["antiInfantryGrenades", 1] call _fnc_addItem; + ["antiTankGrenades", 1] call _fnc_addItem; ["smokeGrenades", 1] call _fnc_addItem; ["maps"] call _fnc_addMap; ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _atTemplate = { ["helmets"] call _fnc_setHelmet; + ["facewear"] call _fnc_setFacewear; ["vests"] call _fnc_setVest; ["uniforms"] call _fnc_setUniform; ["backpacks"] call _fnc_setBackpack; - [selectRandomWeighted ["rifles", 3, "SMGs", 1.5]] call _fnc_setPrimary; + [selectRandomWeighted ["rifles", 4, "SMGs", 1]] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; - ["lightATLaunchers"] call _fnc_setLauncher; + [["ATLaunchers", "lightATLaunchers"] call _fnc_fallback] call _fnc_setLauncher; + ["launcher", 2] call _fnc_addMagazines; ["sidearms"] call _fnc_setHandgun; ["handgun", 2] call _fnc_addMagazines; @@ -478,13 +592,14 @@ private _atTemplate = { ["items_medical_standard"] call _fnc_addItemSet; ["items_at_extras"] call _fnc_addItemSet; ["items_miscEssentials"] call _fnc_addItemSet; - ["antiInfantryGrenades", 1] call _fnc_addItem; + ["antiTankGrenades", 1] call _fnc_addItem; ["smokeGrenades", 1] call _fnc_addItem; ["maps"] call _fnc_addMap; ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _aaTemplate = { @@ -493,7 +608,7 @@ private _aaTemplate = { ["uniforms"] call _fnc_setUniform; ["backpacks"] call _fnc_setBackpack; - [selectRandomWeighted ["rifles", 3, "SMGs", 1.5]] call _fnc_setPrimary; + ["rifles"] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; ["lightATLaunchers"] call _fnc_setLauncher; @@ -504,13 +619,14 @@ private _aaTemplate = { ["items_medical_standard"] call _fnc_addItemSet; ["items_aa_extras"] call _fnc_addItemSet; ["items_miscEssentials"] call _fnc_addItemSet; - ["antiInfantryGrenades", 1] call _fnc_addItem; + ["antiTankGrenades", 1] call _fnc_addItem; ["smokeGrenades", 2] call _fnc_addItem; ["maps"] call _fnc_addMap; ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _machineGunnerTemplate = { @@ -535,12 +651,13 @@ private _machineGunnerTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _marksmanTemplate = { - ["helmets"] call _fnc_setHelmet; + [["sniHelmets", "helmets"] call _fnc_fallback] call _fnc_setHelmet; [["sniVests", "vests"] call _fnc_fallback] call _fnc_setVest; - ["uniforms"] call _fnc_setUniform; + [["sniUniforms", "uniforms"] call _fnc_fallback] call _fnc_setUniform; ["marksmanRifles"] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; @@ -562,9 +679,9 @@ private _marksmanTemplate = { }; private _sniperTemplate = { - ["helmets"] call _fnc_setHelmet; + [["sniHelmets", "helmets"] call _fnc_fallback] call _fnc_setHelmet; [["sniVests", "vests"] call _fnc_fallback] call _fnc_setVest; - ["uniforms"] call _fnc_setUniform; + [["sniUniforms", "uniforms"] call _fnc_fallback] call _fnc_setUniform; ["sniperRifles"] call _fnc_setPrimary; ["primary", 8] call _fnc_addMagazines; @@ -590,7 +707,7 @@ private _policeTemplate = { ["vests"] call _fnc_setVest; ["uniforms"] call _fnc_setUniform; - [selectRandomWeighted ["rifles", 3, "SMGs", 1.5]] call _fnc_setPrimary; + [selectRandomWeighted ["rifles", 3, "shotGuns", 1]] call _fnc_setPrimary; ["primary", 3] call _fnc_addMagazines; ["sidearms"] call _fnc_setHandgun; @@ -605,6 +722,12 @@ private _policeTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; +}; +private _policeSLTemplate = { + call _policeTemplate; + ["slHelmets"] call _fnc_setHelmet; + [selectRandom ["rifles", "SMGs"]] call _fnc_setPrimary; }; private _crewTemplate = { @@ -641,10 +764,13 @@ private _unarmedTemplate = { ["watches"] call _fnc_addWatch; ["compasses"] call _fnc_addCompass; ["radios"] call _fnc_addRadio; + ["Flashlight"] call _fnc_addNVGs; }; private _traitorTemplate = { call _unarmedTemplate; + ["shotGuns"] call _fnc_setPrimary; + ["primary", 6] call _fnc_addMagazines; ["sidearms"] call _fnc_setHandgun; ["handgun", 2] call _fnc_addMagazines; }; @@ -709,7 +835,7 @@ private _unitTypes = [ //////////////////////// private _prefix = "police"; private _unitTypes = [ - ["SquadLeader", _policeTemplate], + ["SquadLeader", _policeSLTemplate], ["Standard", _policeTemplate] ]; @@ -745,8 +871,8 @@ private _unitTypes = [ //The following lines are determining the loadout of the pilots ["other", [["Pilot", _crewTemplate]], _pilotLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; //The following lines are determining the loadout for the unit used in the "kill the official" mission -["other", [["Official", _SquadLeaderTemplate]], _militaryLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; +["other", [["Official", _SquadLeaderTemplate]], _officerLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; //The following lines are determining the loadout for the AI used in the "kill the traitor" mission -["other", [["Traitor", _traitorTemplate]], _militaryLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; +["other", [["Traitor", _traitorTemplate]], _militiaLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; //The following lines are determining the loadout for the AI used in the "Invader Punishment" mission ["other", [["Unarmed", _UnarmedTemplate]], _militaryLoadoutData] call _fnc_generateAndSaveUnitsToTemplate; diff --git a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_CIV.sqf b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_CIV.sqf index 9fca0c590b..1db612c6c5 100644 --- a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_CIV.sqf +++ b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_CIV.sqf @@ -3,17 +3,19 @@ ////////////////////////// ["vehiclesCivCar", [ - "SPE_OpelBlitz", 1 - , "SPE_OpelBlitz_Open", 1 - , "LIB_GazM1", 1 - , "LIB_GazM1_dirty", 1 - , "LIB_GazM1_SOV_camo_sand", 1 - , "LIB_GazM1_SOV", 1 + "LIB_GazM1", 1.5, + "LIB_GazM1_dirty", 2.5, + "LIB_CIV_FFI_CitC4", 0.125, + "LIB_CIV_FFI_CitC4_2", 0.125, + "LIB_CIV_FFI_CitC4_3", 0.125, + "LIB_GazM1_SOV_camo_sand", 1, + "LIB_GazM1_SOV", 1 ]] call _fnc_saveToTemplate; ["vehiclesCivIndustrial", [ - "SPE_OpelBlitz", 1 - , "SPE_OpelBlitz_Open", 1 + "LIB_CIV_FFI_CitC4", 0.25, + "LIB_CIV_FFI_CitC4_2", 0.25, + "LIB_CIV_FFI_CitC4_3", 0.25 ]] call _fnc_saveToTemplate; ["vehiclesCivBoat", [ @@ -21,22 +23,22 @@ ]] call _fnc_saveToTemplate; ["vehiclesCivRepair", [ - "SPE_OpelBlitz_Repair", 0.1 ]] call _fnc_saveToTemplate; ["vehiclesCivMedical", [ - "SPE_OpelBlitz_Ambulance", 0.1 ]] call _fnc_saveToTemplate; ["vehiclesCivFuel", [ - "SPE_OpelBlitz_Fuel", 0.1 ]] call _fnc_saveToTemplate; +#include "SPE_Vehicle_Attributes.sqf" + ///////////////////// /// Identities /// ///////////////////// ["faces", ["LivonianHead_6","SPE_Connors","SPE_Ivanych","SPE_OBrien","SPE_Vasiliev","WhiteHead_02","WhiteHead_04","WhiteHead_05","WhiteHead_09","WhiteHead_11","WhiteHead_13","WhiteHead_20","WhiteHead_21"]] call _fnc_saveToTemplate; +"SPE_FrenchMen" call _fnc_saveNames; ////////////////////////// // Loadouts // diff --git a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_REB_FFF.sqf b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_REB_FFF.sqf index 70bee7dd78..e07e38a025 100644 --- a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_REB_FFF.sqf +++ b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_IFA_REB_FFF.sqf @@ -17,8 +17,8 @@ ["mediKits", ["SPE_US_Medkit", "SPE_GER_Medkit"]] call _fnc_saveToTemplate; // Relies on autodetection. However, item is tested for for help and reviving. ["toolKits", ["SPE_ToolKit"]] call _fnc_saveToTemplate; // Relies on autodetection. -["diveGear", [""]] call _fnc_saveToTemplate; -["flyGear", [""]] call _fnc_saveToTemplate; +["diveGear", ["U_SPE_FR_Tank_Crew"]] call _fnc_saveToTemplate; +["flyGear", ["U_SPE_FR_Tank_Crew", "B_SPE_US_T5_erla"]] call _fnc_saveToTemplate; ["surrenderCrate", "SPE_Mine_AmmoBox_US"] call _fnc_saveToTemplate; @@ -26,10 +26,10 @@ // Vehicles // ////////////////////////// -["vehiclesBasic", ["SPE_FFI_OpelBlitz_Open"]] call _fnc_saveToTemplate; -["vehiclesLightUnarmed", ["LIB_Kfz1_sernyt","LIB_Kfz1_Hood_sernyt"]] call _fnc_saveToTemplate; -["vehiclesLightArmed", ["SPE_US_M3_Halftrack","LIB_Kfz1_MG42_sernyt"]] call _fnc_saveToTemplate; -["vehiclesTruck", ["SPE_US_M3_Halftrack_Unarmed"]] call _fnc_saveToTemplate; +["vehiclesBasic", ["SPE_FFI_R200_Unarmed"]] call _fnc_saveToTemplate; +["vehiclesLightUnarmed", ["SPE_FFI_R200_Hood"]] call _fnc_saveToTemplate; +["vehiclesLightArmed", ["SPE_FFI_R200_MG34"]] call _fnc_saveToTemplate; +["vehiclesTruck", ["SPE_FFI_OpelBlitz_Open"]] call _fnc_saveToTemplate; ["vehiclesAT", []] call _fnc_saveToTemplate; ["vehiclesAA", ["SPE_OpelBlitz_Flak38"]] call _fnc_saveToTemplate; @@ -64,20 +64,23 @@ ["vehicleHealthStation", ["", 75]] call _fnc_saveToTemplate; ["vehicleRepairStation", ["", 5000]] call _fnc_saveToTemplate; +#include "SPE_Reb_Vehicle_Attributes.sqf" + /////////////////////////// // Rebel Starting Gear // /////////////////////////// private _initialRebelEquipment = [ - "SPE_Fusil_Mle_208_12", "SPE_Fusil_Mle_208_12_Sawedoff", "SPE_K98", - "SPE_2Rnd_12x65_Pellets", "SPE_2Rnd_12x65_Slug", "SPE_5Rnd_792x57", + "SPE_Fusil_Mle_208_12", "SPE_Fusil_Mle_208_12_Sawedoff", + "SPE_2Rnd_12x65_Pellets", "SPE_2Rnd_12x65_Slug","SPE_2Rnd_12x65_No4_Buck", "SPE_P08", "SPE_8Rnd_9x19_P08", - ["SPE_PzFaust_30m", 50], ["SPE_1Rnd_PzFaust_30m", 50], + ["SPE_Faustpatrone", 50], ["SPE_1Rnd_Faustpatrone", 50], ["SPE_Ladung_Small_MINE_mag", 10], ["SPE_US_TNT_half_pound_mag", 10], ["SPE_US_TNT_4pound_mag", 3], ["SPE_Ladung_Big_MINE_mag", 3], - "SPE_Shg24_Frag", "SPE_NB39", "SPE_US_Mk_1", - "V_SPE_US_Vest_M1919", "V_SPE_DAK_VestKar98", - "B_SPE_FFI_M36_Saboteur", "B_SPE_GER_MedicBackpack_Empty", - "SPE_Binocular_US" + "SPE_NB39", "SPE_Shg24", + "V_SPE_FFI_Vest_Pouch","V_SPE_FFI_Vest_Pouch_frag", "V_SPE_FFI_Vest_rifle","V_SPE_FFI_Vest_rifle_frag", + "V_SPE_FFI_Vest_rifle_pouch","V_SPE_FFI_Vest_SMG","V_SPE_FFI_Vest_SMG_frag","V_SPE_FFI_Vest_SMG_pouch", + "B_SPE_FFI_Gasbag", "B_SPE_CIV_musette", "B_SPE_CIV_satchel", + "SPE_Binocular_GER" ]; if (A3A_hasTFAR) then {_initialRebelEquipment append ["tf_microdagr", "tf_anprc154"]}; @@ -122,6 +125,9 @@ private _rebUniforms = [ "H_SPE_CIV_Fedora_Cap_6", "H_SPE_CIV_Worker_Cap_1", "H_SPE_CIV_Worker_Cap_2", + "H_SPE_CIV_Worker_Cap_3", + "H_SPE_CIV_Worker_Cap_1", + "H_SPE_CIV_Worker_Cap_2", "H_SPE_CIV_Worker_Cap_3" ]] call _fnc_saveToTemplate; //Headgear used by Rebell Ai until you have Armored Headgear. @@ -130,7 +136,8 @@ private _rebUniforms = [ ///////////////////// ["faces", ["LivonianHead_6","SPE_Arnold","SPE_Connors","SPE_Davidson","SPE_Elliot","SPE_Oberst","SPE_Seppmeyer","SPE_Walter","WhiteHead_01","WhiteHead_02","WhiteHead_05","WhiteHead_06","WhiteHead_07","WhiteHead_08","WhiteHead_12","WhiteHead_15","WhiteHead_18"]] call _fnc_saveToTemplate; -["voices", ["Male01FRE","Male02FRE","Male03FRE"]] call _fnc_saveToTemplate; +["voices", ["spe_male01fre", "spe_male02fre"]] call _fnc_saveToTemplate; +"SPE_FrenchMen" call _fnc_saveNames; ////////////////////////// // Loadouts // diff --git a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_Reb_Vehicle_Attributes.sqf b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_Reb_Vehicle_Attributes.sqf new file mode 100644 index 0000000000..35f28d4ed4 --- /dev/null +++ b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_Reb_Vehicle_Attributes.sqf @@ -0,0 +1,4 @@ +["attributesVehicles", [ + ["SPE_FFI_R200_Unarmed", ["rebCost", 200]], + ["SPE_OpelBlitz_Flak38", ["rebCost", 2000]] +]] call _fnc_saveToTemplate; diff --git a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_Vehicle_Attributes.sqf b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_Vehicle_Attributes.sqf index d5af5fc0b7..9defba3e7c 100644 --- a/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_Vehicle_Attributes.sqf +++ b/A3A/addons/core/Templates/Templates/SPE_IFA/SPE_Vehicle_Attributes.sqf @@ -1,5 +1,12 @@ ["attributesVehicles", [ // WW2 planes are not super effective ["SPE_P47", ["cost", 75]], - ["SPE_FW190F8", ["cost", 75]] + ["SPE_FW190F8", ["cost", 75]], + + ["SPE_US_M3_Halftrack", ["cost", 60]], + ["SPE_M20_AUC", ["cost", 60]], + // M8 is too powerful for a lightarmed and not powerful enough for lighttank + ["SPE_M8_LAC", ["cost", 80]], + ["SPE_M8_LAC_ringMount", ["cost", 80]] + ]] call _fnc_saveToTemplate; diff --git a/A3A/addons/core/config.cpp b/A3A/addons/core/config.cpp index 6d068dcb4f..b08c911018 100644 --- a/A3A/addons/core/config.cpp +++ b/A3A/addons/core/config.cpp @@ -60,3 +60,6 @@ class CfgMPGameTypes { }; #include "CfgMarkers.hpp" + +// Base AI unit definitions +#include "CfgVehicles.hpp" diff --git a/A3A/addons/core/functions/Base/fn_destroyCity.sqf b/A3A/addons/core/functions/Base/fn_destroyCity.sqf index 3814493f32..f6de9102e1 100644 --- a/A3A/addons/core/functions/Base/fn_destroyCity.sqf +++ b/A3A/addons/core/functions/Base/fn_destroyCity.sqf @@ -1,21 +1,18 @@ -private ["_markerX","_positionX","_size","_buildings"]; +params ["_markerX"]; -_markerX = _this select 0; +private _positionX = getMarkerPos _markerX; +private _size = [_markerX] call A3A_fnc_sizeMarker; -_positionX = getMarkerPos _markerX; -_size = [_markerX] call A3A_fnc_sizeMarker; - -_buildings = _positionX nearobjects ["house",_size]; +private _buildings = _positionX nearObjects ["house",_size]; { -if (random 100 < 70) then - { - for "_i" from 1 to 7 do - { - _x sethit [format ["dam%1",_i],1]; - _x sethit [format ["dam %1",_i],1]; - }; - } + private _hitpoints = getAllHitPointsDamage _x; + if (_hitpoints isEqualTo []) then { continue }; + if (random 100 < 30) then { continue }; + private _building = _x; + { + _building setHit [_x, 1]; + } forEach (_hitpoints # 1 select { _x find "dam" == 0 }); } forEach _buildings; [_markerX,false] spawn A3A_fnc_blackout; \ No newline at end of file diff --git a/A3A/addons/core/functions/Base/fn_getVehicleSellPrice.sqf b/A3A/addons/core/functions/Base/fn_getVehicleSellPrice.sqf index 750100dc70..e3969cdd8a 100644 --- a/A3A/addons/core/functions/Base/fn_getVehicleSellPrice.sqf +++ b/A3A/addons/core/functions/Base/fn_getVehicleSellPrice.sqf @@ -15,6 +15,8 @@ Dependencies: Example: [_vehicle] call A3A_getVehicleSellPrice + + TODO: The sell prices themselves could do with a rework. Not even sure what's balanced */ #include "..\..\script_component.hpp" @@ -46,13 +48,16 @@ if (_typeX in _blacklistedAssets) exitWith {0}; if (_veh isKindOf "StaticWeapon") exitWith {100}; // in case rebel static is same as enemy statics -if (_typeX in FactionGet(all,"vehiclesReb")) exitWith { ([_typeX] call A3A_fnc_vehiclePrice) / 2 }; - if ( - (_typeX in arrayCivVeh) + _typeX in FactionGet(all,"vehiclesReb") + or (_typeX in arrayCivVeh) or (_typeX in civBoats) or (_typeX in (FactionGet(reb,"vehiclesCivBoat") + FactionGet(reb,"vehiclesCivCar") + FactionGet(reb,"vehiclesCivTruck"))) -) exitWith {25}; +) exitWith { + private _vehiclePrice = ([_typeX] call A3A_fnc_vehiclePrice) / 2; + if (_vehiclePrice == 0) exitWith {25}; + _vehiclePrice; +}; if ( (_typeX in FactionGet(all,"vehiclesLight")) diff --git a/A3A/addons/core/functions/Base/fn_getVehiclesGroundTransport.sqf b/A3A/addons/core/functions/Base/fn_getVehiclesGroundTransport.sqf index 012459dce3..2ea359a383 100644 --- a/A3A/addons/core/functions/Base/fn_getVehiclesGroundTransport.sqf +++ b/A3A/addons/core/functions/Base/fn_getVehiclesGroundTransport.sqf @@ -30,10 +30,19 @@ private _lapcWeight = [30, 40, 50, 50, 45, 40, 35, 30, 25, 20] select _leve private _apcWeight = [ 0, 10, 15, 20, 25, 30, 35, 40, 40, 40] select _level; private _ifvWeight = [ 0, 0, 2, 4, 6, 8, 12, 16, 20, 25] select _level; -// Assumption is that at least one of APC or battle bus exists -if (_faction get "vehiclesIFVs" isEqualTo []) then { _apcWeight = _apcWeight + _ifvWeight }; -if (_faction get "vehiclesAPCs" isEqualTo []) then { _lapcWeight = _lapcWeight + _apcWeight }; +if (_faction getOrDefault ["attributeMoreTrucks", false]) then { + _truckWeight = [60, 60, 60, 60, 60, 60, 55, 50, 45, 40] select _level; + _lapcWeight = [10, 15, 20, 20, 20, 20, 20, 20, 20, 20] select _level; + _apcWeight = [ 0, 4, 8, 12, 16, 20, 20, 20, 20, 20] select _level; + _ifvWeight = [ 0, 0, 2, 4, 6, 8, 12, 16, 20, 25] select _level; +}; + if (_faction get "vehiclesLightAPCs" isEqualTo []) then { _apcWeight = _apcWeight + _lapcWeight/2; _truckWeight = _truckWeight + _lapcWeight/2; }; +if (_faction get "vehiclesIFVs" isEqualTo []) then { _apcWeight = _apcWeight + _ifvWeight }; +if (_faction get "vehiclesAPCs" isEqualTo []) then { + if (_faction get "vehiclesLightAPCs" isEqualTo []) exitWith { _ifvWeight = _ifvWeight + _apcWeight }; + _lapcWeight = _lapcWeight + _apcWeight; +}; // only occupants use militia vehicle types? if (_side == Occupants) then diff --git a/A3A/addons/core/functions/Base/fn_rebuildAssets.sqf b/A3A/addons/core/functions/Base/fn_rebuildAssets.sqf index 87f92c78bf..d35194ff14 100644 --- a/A3A/addons/core/functions/Base/fn_rebuildAssets.sqf +++ b/A3A/addons/core/functions/Base/fn_rebuildAssets.sqf @@ -3,12 +3,9 @@ FIX_LINE_NUMBERS() private _titleStr = localize "STR_A3A_fn_base_rebasset_title"; -_resourcesFIA = server getVariable "resourcesFIA"; - +private _resourcesFIA = server getVariable "resourcesFIA"; if (_resourcesFIA < 5000) exitWith {[_titleStr, localize "STR_A3A_fn_base_rebasset_no_money"] call A3A_fnc_customHint;}; -_destroyedSites = destroyedSites - citiesX; - if (!visibleMap) then {openMap true}; positionTel = []; [_titleStr, localize "STR_A3A_fn_base_rebasset_click_zone"] call A3A_fnc_customHint; @@ -20,55 +17,31 @@ onMapSingleClick ""; if (!visibleMap) exitWith {}; -_positionTel = positionTel; - -_siteX = [markersX,_positionTel] call BIS_fnc_nearestPosition; - -if (getMarkerPos _siteX distance _positionTel > 50) exitWith {[_titleStr, localize "STR_A3A_fn_base_rebasset_click_marker"] call A3A_fnc_customHint;}; - -if ((not(_siteX in _destroyedSites)) and (!(_siteX in outposts))) exitWith {[_titleStr, localize "STR_A3A_fn_base_rebasset_no"] call A3A_fnc_customHint;}; - -_leave = false; -_antennaDead = objNull; -_textX = localize "STR_A3A_fn_base_rebasset_no_notower"; -if (_siteX in outposts) then - { - _antennasDead = antennasDead select {_x inArea _siteX}; - if (count _antennasDead > 0) then - { - if (sidesX getVariable [_siteX, sideUnknown] != teamPlayer) then - { - _leave = true; - _textX = format [localize "STR_A3A_fn_base_rebasset_no_owner",FactionGet(reb,"name")]; - } - else - { - _antennaDead = _antennasDead select 0; - }; - } - else - { - _leave = true - }; - }; +private _positionTel = positionTel; -if (_leave) exitWith {[_titleStr, format ["%1",_textX]] call A3A_fnc_customHint;}; +private _siteX = [markersX,_positionTel] call BIS_fnc_nearestPosition; -if (isNull _antennaDead) then - { - _nameX = [_siteX] call A3A_fnc_localizar; +if (getMarkerPos _siteX distance2d _positionTel > 50) exitWith {[_titleStr, localize "STR_A3A_fn_base_rebasset_click_marker"] call A3A_fnc_customHint;}; +if (sidesX getVariable [_siteX, sideUnknown] != teamPlayer) exitWith {[_titleStr, localize "STR_A3A_fn_base_rebasset_click_marker"] call A3A_fnc_customHint;}; - [_titleStr, format [localize "STR_A3A_fn_base_rebasset_done_1", _nameX]] call A3A_fnc_customHint; +private _destroyedSites = destroyedSites - citiesX; +if (_siteX in _destroyedSites) exitWith { + private _nameX = [_siteX] call A3A_fnc_localizar; + [_titleStr, format [localize "STR_A3A_fn_base_rebasset_done_1", _nameX]] call A3A_fnc_customHint; - [0,10,_positionTel] remoteExec ["A3A_fnc_citySupportChange",2]; + [0,10,_positionTel] remoteExec ["A3A_fnc_citySupportChange",2]; [Occupants, 10, 30] remoteExec ["A3A_fnc_addAggression",2]; [Invaders, 10, 30] remoteExec ["A3A_fnc_addAggression",2]; - destroyedSites = destroyedSites - [_siteX]; - publicVariable "destroyedSites"; - } -else - { - [_titleStr, localize "STR_A3A_fn_base_rebasset_done_2"] call A3A_fnc_customHint; - [_antennaDead] remoteExec ["A3A_fnc_rebuildRadioTower", 2]; - }; -[0,-5000] remoteExec ["A3A_fnc_resourcesFIA",2]; + destroyedSites = destroyedSites - [_siteX]; + publicVariable "destroyedSites"; + [0,-5000] remoteExec ["A3A_fnc_resourcesFIA",2]; +}; + +private _radioTowers = antennasDead select {_x inArea _siteX}; +if (_radioTowers isNotEqualTo []) exitWith { + [_titleStr, localize "STR_A3A_fn_base_rebasset_done_2"] call A3A_fnc_customHint; + [_radioTowers#0] remoteExec ["A3A_fnc_rebuildRadioTower", 2]; + [0,-5000] remoteExec ["A3A_fnc_resourcesFIA",2]; +}; + +[_titleStr, localize "STR_A3A_fn_base_rebasset_no_nothing"] call A3A_fnc_customHint; diff --git a/A3A/addons/core/functions/CREATE/fn_AIVEHinit.sqf b/A3A/addons/core/functions/CREATE/fn_AIVEHinit.sqf index a2820466b8..f9e4a6c286 100644 --- a/A3A/addons/core/functions/CREATE/fn_AIVEHinit.sqf +++ b/A3A/addons/core/functions/CREATE/fn_AIVEHinit.sqf @@ -80,7 +80,7 @@ if (_veh isKindOf "Car" or _veh isKindOf "Tank") then } else { - if ( _typeX in (FactionGet(all,"vehiclesFixedWing") + FactionGet(all,"vehiclesHelis")) ) then + if (_veh isKindOf "Air") then { _veh addEventHandler ["GetIn", { @@ -101,6 +101,12 @@ else _veh addEventHandler ["GetOut", {private ["_veh"];_veh = _this select 0; if ((isTouchingGround _veh) and (isEngineOn _veh)) then {if (side (_this select 2) != teamPlayer) then {if (_veh getVariable "within") then {_veh setVariable ["within",false]; [_veh] call A3A_fnc_smokeCoverAuto}}}}]; _veh addEventHandler ["GetIn", {private ["_veh"];_veh = _this select 0; if (side (_this select 2) != teamPlayer) then {_veh setVariable ["within",true]}}]; }; + _veh addEventHandler ["RopeAttach", { + params ["_object1", "_rope", "_object2"]; + { + [_x, false] remoteExec ["setCaptive", _x]; + } forEach crew _object1; + }]; }; } else diff --git a/A3A/addons/core/functions/CREATE/fn_createAIAirbase.sqf b/A3A/addons/core/functions/CREATE/fn_createAIAirbase.sqf index ef8911cfee..7a01b907de 100644 --- a/A3A/addons/core/functions/CREATE/fn_createAIAirbase.sqf +++ b/A3A/addons/core/functions/CREATE/fn_createAIAirbase.sqf @@ -253,7 +253,7 @@ private _ammoBox = if (garrison getVariable [_markerX + "_lootCD", 0] == 0) then // Otherwise when destroyed, ammoboxes sink 100m underground and are never cleared up _ammoBox addEventHandler ["Killed", { [_this#0] spawn { sleep 10; deleteVehicle (_this#0) } }]; [_ammoBox] spawn A3A_fnc_fillLootCrate; - [_ammoBox] call A3A_Logistics_fnc_addLoadAction; + [_ammoBox, nil, true] call A3A_Logistics_fnc_addLoadAction; [_ammoBox] spawn { sleep 1; //make sure fillLootCrate finished clearing the crate diff --git a/A3A/addons/core/functions/CREATE/fn_createAIOutposts.sqf b/A3A/addons/core/functions/CREATE/fn_createAIOutposts.sqf index eb5328afb9..1525eccc7f 100644 --- a/A3A/addons/core/functions/CREATE/fn_createAIOutposts.sqf +++ b/A3A/addons/core/functions/CREATE/fn_createAIOutposts.sqf @@ -155,7 +155,7 @@ private _ammoBox = if (garrison getVariable [_markerX + "_lootCD", 0] == 0) then // Otherwise when destroyed, ammoboxes sink 100m underground and are never cleared up _ammoBox addEventHandler ["Killed", { [_this#0] spawn { sleep 10; deleteVehicle (_this#0) } }]; [_ammoBox] spawn A3A_fnc_fillLootCrate; - [_ammoBox] call A3A_Logistics_fnc_addLoadAction; + [_ammoBox, nil, true] call A3A_Logistics_fnc_addLoadAction; if (_markerX in seaports) then { [_ammoBox] spawn { diff --git a/A3A/addons/core/functions/CREATE/fn_createAIcontrols.sqf b/A3A/addons/core/functions/CREATE/fn_createAIcontrols.sqf index 6821d2a80c..4e2f92c820 100644 --- a/A3A/addons/core/functions/CREATE/fn_createAIcontrols.sqf +++ b/A3A/addons/core/functions/CREATE/fn_createAIcontrols.sqf @@ -74,7 +74,7 @@ if (_isControl) then if !(A3A_hasIFA) then { _pos = [getPos (_roads select 0), 7, _dirveh + 270] call BIS_Fnc_relPos; - if (worldname == "SPE_Normandy") then { + if ((worldname == "SPE_Normandy") or (worldname == "SPE_Mortain")) then { _bunker = "Land_SPE_Sandbag_Nest" createVehicle _pos; _bunker setDir _dirveh; _pos = _bunker modelToWorld [-0.200684,-0.91333,-0.421184]; @@ -97,7 +97,7 @@ if (_isControl) then _soldiers pushBack _unit; sleep 1; _pos = [getPos (_roads select 0), 7, _dirveh + 90] call BIS_Fnc_relPos; - if (worldname == "SPE_Normandy") then { + if ((worldname == "SPE_Normandy") or (worldname == "SPE_Mortain")) then { _bunker = "Land_SPE_Sandbag_Nest" createVehicle _pos; _bunker setDir _dirveh + 180; _pos = _bunker modelToWorld [-0.200684,-0.91333,-0.421184]; diff --git a/A3A/addons/core/functions/CREATE/fn_createVehicleQRFBehaviour.sqf b/A3A/addons/core/functions/CREATE/fn_createVehicleQRFBehaviour.sqf index 16a42c27b6..db3cfce435 100644 --- a/A3A/addons/core/functions/CREATE/fn_createVehicleQRFBehaviour.sqf +++ b/A3A/addons/core/functions/CREATE/fn_createVehicleQRFBehaviour.sqf @@ -138,7 +138,7 @@ else // ground vehicle //Set the waypoints for cargoGroup private _cargoWP0 = _cargoGroup addWaypoint [_landpos, 0]; - _cargoWP0 setWaypointType "GETOUT"; + //_cargoWP0 setWaypointType "GETOUT"; _cargoWP0 setWaypointStatements ["true", "if !(local this) exitWith {}; (group this) leaveVehicle (assignedVehicle this); (group this) spawn A3A_fnc_attackDrillAI"]; private _cargoWP1 = _cargoGroup addWaypoint [_posDestination, 0]; _cargoWP1 setWaypointBehaviour "AWARE"; @@ -170,7 +170,7 @@ else // ground vehicle //Set the waypoints for cargoGroup private _cargoWP0 = _cargoGroup addWaypoint [_landpos, 0]; - _cargoWP0 setWaypointType "GETOUT"; + //_cargoWP0 setWaypointType "GETOUT"; _cargoWP0 setWaypointStatements ["true", "if !(local this) exitWith {}; (group this) leaveVehicle (assignedVehicle this); (group this) spawn A3A_fnc_attackDrillAI"]; private _cargoWP1 = _cargoGroup addWaypoint [_posDestination, 0]; _cargoWP1 setWaypointBehaviour "AWARE"; diff --git a/A3A/addons/core/functions/CREATE/fn_patrolReinf.sqf b/A3A/addons/core/functions/CREATE/fn_patrolReinf.sqf index 29c319944a..0f08ef20bd 100644 --- a/A3A/addons/core/functions/CREATE/fn_patrolReinf.sqf +++ b/A3A/addons/core/functions/CREATE/fn_patrolReinf.sqf @@ -88,7 +88,8 @@ else _returnWP setWaypointStatements ["true", "if (!local this or !alive this) exitWith {}; deleteVehicle (vehicle this); {deleteVehicle _x} forEach thisList"]; _getoutWP = _cargoGroup addWaypoint [_landpos, 0]; - _getoutWP setWaypointType "GETOUT"; + //_getoutWP setWaypointType "GETOUT"; + _getoutWP setWaypointStatements ["true", "if !(local this) exitWith {}; (group this) leaveVehicle (assignedVehicle this)"]; _reinfWP = _cargoGroup addWaypoint [_posDest, 0]; _reinfWP setWaypointBehaviour "AWARE"; _landWP synchronizeWaypoint [_getoutWP]; diff --git a/A3A/addons/core/functions/Dialogs/fn_skiptime.sqf b/A3A/addons/core/functions/Dialogs/fn_skiptime.sqf index 2753d080af..5be18bc2e1 100644 --- a/A3A/addons/core/functions/Dialogs/fn_skiptime.sqf +++ b/A3A/addons/core/functions/Dialogs/fn_skiptime.sqf @@ -3,7 +3,6 @@ private _titleStr = localize "STR_A3A_fn_dialogs_skiptime_title"; if (player!= theBoss) exitWith {[_titleStr, localize "STR_A3A_fn_dialogs_skiptime_no_commander"] call A3A_fnc_customHint;}; -_presente = false; private _rebelSpawners = units teamPlayer select { _x getVariable ["spawner",false] }; private _presente = (-1 != (_rebelSpawners findIf { [getPosATL _x] call A3A_fnc_enemyNearCheck })); @@ -12,12 +11,29 @@ if ("rebelAttack" in A3A_activeTasks) exitWith {[_titleStr, localize "STR_A3A_fn if ("invaderPunish" in A3A_activeTasks) exitWith {[_titleStr, localize "STR_A3A_fn_dialogs_skiptime_no_civatt"] call A3A_fnc_customHint;}; if ("DEF_HQ" in A3A_activeTasks) exitWith {[_titleStr, localize "STR_A3A_fn_dialogs_skiptime_no_hqatt"] call A3A_fnc_customHint;}; -_checkX = false; -_posHQ = getMarkerPos respawnTeamPlayer; +private _absentPlayers = []; +private _posHQ = getMarkerPos respawnTeamPlayer; { -if ((_x distance _posHQ > 100) and (side _x == teamPlayer)) then {_checkX = true}; +if ((_x distance _posHQ > 100) and (side _x in [teamPlayer,civilian])) then {_absentPlayers pushBackUnique name _x;}; } forEach (allPlayers - (entities "HeadlessClient_F")); -if (_checkX) exitWith {[_titleStr, localize "STR_A3A_fn_dialogs_skiptime_no_radius"] call A3A_fnc_customHint;}; - -remoteExec ["A3A_fnc_resourcecheckSkipTime", 0]; +switch (true) do { + case (count _absentPlayers == 0): + { + remoteExec ["A3A_fnc_resourcecheckSkipTime", 0]; + }; + case (count _absentPlayers == 1): + { + [_titleStr, format [localize "STR_A3A_fn_dialogs_skiptime_no_radius_singleplayer",_absentPlayers#0]] call A3A_fnc_customHint; + }; + case (count _absentPlayers > 10): + { + [_titleStr, localize "STR_A3A_fn_dialogs_skiptime_no_radius"] call A3A_fnc_customHint; + }; + default + { + private _lastPlayer = _absentPlayers deleteAt 0; + private _absentString = _absentPlayers joinString ", "; + [_titleStr, format [localize "STR_A3A_fn_dialogs_skiptime_no_radius_players",_absentString,_lastPlayer]] call A3A_fnc_customHint; + }; +}; \ No newline at end of file diff --git a/A3A/addons/core/functions/Missions/fn_DES_Heli.sqf b/A3A/addons/core/functions/Missions/fn_DES_Heli.sqf index baece299a6..ac05e7cf2d 100644 --- a/A3A/addons/core/functions/Missions/fn_DES_Heli.sqf +++ b/A3A/addons/core/functions/Missions/fn_DES_Heli.sqf @@ -167,7 +167,8 @@ deleteGroup _groupX; //moving to crash site private _escortWP = _groupVeh addWaypoint [_posCrash, 0]; -_escortWP setWaypointType "GETOUT"; +//_escortWP setWaypointType "GETOUT"; +_escortWP setWaypointStatements ["true", "if !(local this) exitWith {}; (group this) leaveVehicle (assignedVehicle this)"]; _escortWP setWaypointBehaviour "SAFE"; Debug_2("Placed Group: %1 in Lite Vehicle and set waypoint %2", _typeGroup, _posCrash); diff --git a/A3A/addons/core/functions/Revive/fn_unconscious.sqf b/A3A/addons/core/functions/Revive/fn_unconscious.sqf index bbbfbb15a7..1b05b155f9 100644 --- a/A3A/addons/core/functions/Revive/fn_unconscious.sqf +++ b/A3A/addons/core/functions/Revive/fn_unconscious.sqf @@ -87,6 +87,10 @@ while {(time < _bleedOut) and (_unit getVariable ["incapacitated",false]) and (a }; if (_isPlayer) then { + // Slow down self-revive timeout expiry while downed + private _timeout = _unit getVariable ["A3A_selfReviveTimeout", -1]; + if (_timeout > 0) then { _unit setVariable ["A3A_selfReviveTimeout", _timeout + 0.5] }; + private _helpText = "" + call { if (isNull _helper) exitWith {localize "STR_A3A_fn_revive_unconscious_noAI"}; if (_helper distance _unit < 3) exitWith { format [localize "STR_A3A_fn_revive_unconscious_helping", name _helper] }; diff --git a/A3A/addons/core/functions/Supports/fn_SUP_ASFRoutine.sqf b/A3A/addons/core/functions/Supports/fn_SUP_ASFRoutine.sqf index 6086b3bf1a..6098c5689c 100644 --- a/A3A/addons/core/functions/Supports/fn_SUP_ASFRoutine.sqf +++ b/A3A/addons/core/functions/Supports/fn_SUP_ASFRoutine.sqf @@ -35,6 +35,7 @@ _plane setVariable ["SupportData", _suppData]; // for use in EHs private _group = [_side, _plane] call A3A_fnc_createVehicleCrew; { [_x, nil, false, _resPool] call A3A_fnc_NATOinit } forEach units _group; _group deleteGroupWhenEmpty true; +[-10 * count units _group, _side, _resPool] call A3A_fnc_addEnemyResources; _plane addEventHandler ["Killed", { params ["_plane"]; diff --git a/A3A/addons/core/functions/Supports/fn_SUP_CASDiveBombRun.sqf b/A3A/addons/core/functions/Supports/fn_SUP_CASDiveBombRun.sqf index 7138212f81..b4812d00c9 100644 --- a/A3A/addons/core/functions/Supports/fn_SUP_CASDiveBombRun.sqf +++ b/A3A/addons/core/functions/Supports/fn_SUP_CASDiveBombRun.sqf @@ -17,6 +17,9 @@ private _group = group driver _plane; (_plane getVariable "diveParams") params ["_startAlt", "_endAlt", "_diveSpeed", "_diveAngle", "_turnRate", "_bombDrag"]; +// Reduce accuracy against foot troops +private _targetOffset = [0,0,0]; +if (_target isKindOf "Man") then { _targetOffset getPos [random 100, random 360]; _targetOffset set [2, 0] }; // Delay on loop until we're in the correct position private _inPosition = false; @@ -28,6 +31,7 @@ while {true} do { // Target lead calc private _timeToTarget = 1.1 * (_plane distance _target) / _diveSpeed; private _targetPos = eyePos _target vectorAdd (velocity _target vectorMultiply _timeToTarget); // posASL + _targetPos = _targetPos vectorAdd _targetOffset; private _targDirFwd = getPosASL _plane vectorFromTo _targetPos; _targDirFwd = vectorNormalized [_targDirFwd#0, _targDirFwd#1, 0]; @@ -65,7 +69,7 @@ _plane setVariable ["A3A_diveLastDir", vectorDir _plane]; _plane setVariable ["A3A_diveLastPos", getPosASL _plane]; private _ehID = addMissionEventHandler ["EachFrame", { - _thisArgs params ["_plane", "_target", "_endAlt", "_diveSpeed", "_turnRate", "_bombDrag"]; + _thisArgs params ["_plane", "_target", "_endAlt", "_diveSpeed", "_turnRate", "_bombDrag", "_targetOffset"]; if (!alive _target or !canMove _plane or isNull driver _plane) exitWith { Debug("EachFrame handler abandoned due to target or plane damage"); @@ -78,6 +82,7 @@ private _ehID = addMissionEventHandler ["EachFrame", { private _bombOffset = _bombOffset vectorAdd (vectorNormalized [_dir#1, -(_dir#0), 0] vectorMultiply (_bombDrag#1)); private _timeToTarget = (_plane distance _target) / _diveSpeed; private _targetPos = getPosASL _target vectorAdd (velocity _target vectorMultiply _timeToTarget) vectorAdd _bombOffset; + _targetPos = _targetPos vectorAdd _targetOffset; private _targetDir = getPosASL _plane vectorFromTo _targetPos; // heading adjustment @@ -103,7 +108,7 @@ private _ehID = addMissionEventHandler ["EachFrame", { _plane setVectorDirAndUp [_dir, _dir vectorCrossProduct [0,0,1] vectorCrossProduct _dir]; _plane setVelocity (_dir vectorMultiply _diveSpeed); - if (getPosATL _plane#2 < _endAlt) exitWith { + if (getPosASL _plane#2 - getPosASL _target#2 < _endAlt) exitWith { removeMissionEventHandler ["EachFrame", _thisEventHandler]; driver _plane enableAI "All"; if (_targetDir vectorDotProduct vectorDir _plane < 0.9) exitWith { @@ -126,7 +131,7 @@ private _ehID = addMissionEventHandler ["EachFrame", { _plane setVariable ["bombsDropped", true]; }; -}, [_plane, _target, _endAlt, _diveSpeed, _turnRate, _bombDrag]]; +}, [_plane, _target, _endAlt, _diveSpeed, _turnRate, _bombDrag, _targetOffset]]; waitUntil { sleep 1; !(getEventHandlerInfo ["EachFrame", _ehID] # 0) }; diff --git a/A3A/addons/core/functions/Supports/fn_SUP_CASRoutine.sqf b/A3A/addons/core/functions/Supports/fn_SUP_CASRoutine.sqf index 1ec5480865..01b5d598b2 100644 --- a/A3A/addons/core/functions/Supports/fn_SUP_CASRoutine.sqf +++ b/A3A/addons/core/functions/Supports/fn_SUP_CASRoutine.sqf @@ -35,6 +35,8 @@ private _group = [_side, _plane] call A3A_fnc_createVehicleCrew; { [_x, nil, false, _resPool] call A3A_fnc_NATOinit } forEach units _group; _group deleteGroupWhenEmpty true; _group setBehaviourStrong "CARELESS"; +[-10 * count units _group, _side, _resPool] call A3A_fnc_addEnemyResources; + _plane addEventHandler ["Killed", { params ["_plane"]; diff --git a/A3A/addons/core/functions/Supports/fn_SUP_UAVRoutine.sqf b/A3A/addons/core/functions/Supports/fn_SUP_UAVRoutine.sqf index f11ecf4c84..f7a6fda729 100644 --- a/A3A/addons/core/functions/Supports/fn_SUP_UAVRoutine.sqf +++ b/A3A/addons/core/functions/Supports/fn_SUP_UAVRoutine.sqf @@ -27,6 +27,7 @@ private _uav = createVehicle [_planeType, _spawnPos, [], 0, "FLY"]; [_side, _uav] call A3A_fnc_createVehicleCrew; _groupVeh = group driver _uav; { [_x, nil, false, _resPool] call A3A_fnc_NATOinit } forEach (crew _uav); // arguable +[-10 * count units _groupVeh, _side, _resPool] call A3A_fnc_addEnemyResources; [_uav, _side, _resPool] call A3A_fnc_AIVEHinit; _wp = _groupVeh addWayPoint [_suppCenter, 0]; diff --git a/A3A/addons/core/functions/Supports/fn_SUP_airstrikeRoutine.sqf b/A3A/addons/core/functions/Supports/fn_SUP_airstrikeRoutine.sqf index c44ac34ee3..22882842dd 100644 --- a/A3A/addons/core/functions/Supports/fn_SUP_airstrikeRoutine.sqf +++ b/A3A/addons/core/functions/Supports/fn_SUP_airstrikeRoutine.sqf @@ -38,6 +38,7 @@ _group deleteGroupWhenEmpty true; _x disableAI "TARGET"; _x disableAI "AUTOTARGET"; } forEach units _group; +[-10 * count units _group, _side, _resPool] call A3A_fnc_addEnemyResources; // Should we really have these? _plane addEventHandler ["Killed", { diff --git a/A3A/addons/core/functions/Supports/fn_SUP_artillery.sqf b/A3A/addons/core/functions/Supports/fn_SUP_artillery.sqf index a2316bdbbe..55dc91f24b 100644 --- a/A3A/addons/core/functions/Supports/fn_SUP_artillery.sqf +++ b/A3A/addons/core/functions/Supports/fn_SUP_artillery.sqf @@ -64,4 +64,4 @@ A3A_activeSupports pushBack _suppData; [_reveal, _side, "ARTILLERY", _targPos, _delay] spawn A3A_fnc_showInterceptedSetupCall; // Vehicle cost + extra support cost for balance -(A3A_vehicleResourceCosts get _vehType) + 200; +(A3A_vehicleResourceCosts get _vehType) + (10 * count units _group) + 200; diff --git a/A3A/addons/core/functions/Supports/fn_SUP_artilleryAvailable.sqf b/A3A/addons/core/functions/Supports/fn_SUP_artilleryAvailable.sqf index d968fc48df..f258da4698 100644 --- a/A3A/addons/core/functions/Supports/fn_SUP_artilleryAvailable.sqf +++ b/A3A/addons/core/functions/Supports/fn_SUP_artilleryAvailable.sqf @@ -19,4 +19,4 @@ if (_target isKindOf "Air") exitWith { 0 }; // can't hit air // Weighted against mortars if(tierWar < 5) exitWith { 0 }; -(tierWar - 4) / 8; // ~12.5% at tier 5, 75% at tier 10 +(tierWar - 4) / 12; // ~8.3% at tier 5, 50% at tier 10 diff --git a/A3A/addons/core/functions/Supports/fn_SUP_mortar.sqf b/A3A/addons/core/functions/Supports/fn_SUP_mortar.sqf index e376b2e3d4..51b7ba5e32 100644 --- a/A3A/addons/core/functions/Supports/fn_SUP_mortar.sqf +++ b/A3A/addons/core/functions/Supports/fn_SUP_mortar.sqf @@ -83,4 +83,4 @@ A3A_activeSupports pushBack _suppData; [_reveal, _side, "MORTAR", _targPos, _delay] spawn A3A_fnc_showInterceptedSetupCall; // Mortar cost (might be free?) + extra support cost for balance -(A3A_vehicleResourceCosts getOrDefault [_vehType, 0]) + 100; +(A3A_vehicleResourceCosts getOrDefault [_vehType, 0]) + (10 * count units _group) + 100; diff --git a/A3A/addons/core/functions/Supports/fn_SUP_mortarAvailable.sqf b/A3A/addons/core/functions/Supports/fn_SUP_mortarAvailable.sqf index 2833e7b1cf..913e0b5373 100644 --- a/A3A/addons/core/functions/Supports/fn_SUP_mortarAvailable.sqf +++ b/A3A/addons/core/functions/Supports/fn_SUP_mortarAvailable.sqf @@ -20,4 +20,4 @@ if (_target isKindOf "Air") exitWith { 0 }; // can't hit air // balance this one against artillery if (tierWar < 2) exitWith { 0 }; if (tierWar < 5 or !("ARTILLERY" in _availTypes)) exitWith { 1 }; -1 - (tierWar - 4) / 8; // // 87.5% at tier 5, 25% at tier 10 +1 - (tierWar - 4) / 12; // // 91.7% at tier 5, 50% at tier 10 diff --git a/A3A/addons/core/functions/Templates/fn_compatibilityLoadFaction.sqf b/A3A/addons/core/functions/Templates/fn_compatibilityLoadFaction.sqf index f06845819d..1ac0ae501d 100644 --- a/A3A/addons/core/functions/Templates/fn_compatibilityLoadFaction.sqf +++ b/A3A/addons/core/functions/Templates/fn_compatibilityLoadFaction.sqf @@ -26,29 +26,29 @@ missionNamespace setVariable ["A3A_faction_" + _factionPrefix, _faction]; [_faction, _factionPrefix] call A3A_fnc_compileGroups; private _baseUnitClass = switch (_side) do { - case west: { "B_G_Soldier_F" }; - case east: { "O_G_Soldier_F" }; - case independent: { "I_G_Soldier_F" }; - case civilian: { "C_Man_1" }; + case west: { "a3a_unit_west" }; + case east: { "a3a_unit_east" }; + case independent: { "a3a_unit_reb" }; + case civilian: { "a3a_unit_civ" }; }; private _unitClassMap = if (_side isNotEqualTo independent) then { createHashMap } else { createHashMapFromArray [ // Cases matter. Lower case here because allVariables on namespace returns lowercase - ["militia_Unarmed", "I_G_Survivor_F"], - ["militia_Rifleman", "I_G_Soldier_F"], - ["militia_staticCrew", "I_G_Soldier_F"], - ["militia_Medic", "I_G_medic_F"], - ["militia_Sniper", "I_G_Sharpshooter_F"], - ["militia_Marksman", "I_G_Soldier_M_F"], - ["militia_LAT", "I_G_Soldier_LAT_F"], - ["militia_MachineGunner", "I_G_Soldier_AR_F"], - ["militia_ExplosivesExpert", "I_G_Soldier_exp_F"], - ["militia_Grenadier", "I_G_Soldier_GL_F"], - ["militia_SquadLeader", "I_G_Soldier_SL_F"], - ["militia_Engineer", "I_G_engineer_F"], - ["militia_AT", "I_Soldier_AT_F"], - ["militia_AA", "I_Soldier_AA_F"], - ["militia_Petros", "I_G_officer_F"] + ["militia_Unarmed", "a3a_unit_reb_unarmed"], + ["militia_Rifleman", "a3a_unit_reb"], + ["militia_staticCrew", "a3a_unit_reb"], + ["militia_Medic", "a3a_unit_reb_medic"], + ["militia_Sniper", "a3a_unit_reb_sniper"], + ["militia_Marksman", "a3a_unit_reb_marksman"], + ["militia_LAT", "a3a_unit_reb_lat"], + ["militia_MachineGunner", "a3a_unit_reb_mg"], + ["militia_ExplosivesExpert", "a3a_unit_reb_exp"], + ["militia_Grenadier", "a3a_unit_reb_gl"], + ["militia_SquadLeader", "a3a_unit_reb_sl"], + ["militia_Engineer", "a3a_unit_reb_eng"], + ["militia_AT", "a3a_unit_reb_at"], + ["militia_AA", "a3a_unit_reb_aa"], + ["militia_Petros", "a3a_unit_reb_petros"] ] }; //validate loadouts diff --git a/A3A/addons/core/functions/Time/fn_systemTimeDurationToTimeSpan.sqf b/A3A/addons/core/functions/Time/fn_systemTimeDurationToTimeSpan.sqf new file mode 100644 index 0000000000..9a770fdce3 --- /dev/null +++ b/A3A/addons/core/functions/Time/fn_systemTimeDurationToTimeSpan.sqf @@ -0,0 +1,154 @@ +/* + * File: fn_systemTimeDurationToTimeSpan.sqf + * Function: + * Author: + * Function description + * converts the arma 3 timespans to antistai timespans + * Arguments: + * 0: timespan + * 1: timespan + * + * Return Value: + * 0: timespan in antistasi format + * + * Example: + * [systemTimeUTC, _locktime] call A3A_fnc_systemTimeDurationToTimeSpan + * + * Public: No + */ + + /* + I MUST PREFACE THIS HERE. I FUCKING HATE DOING THIS SHIT IN SQF. + THIS CODE WENT THROUGH ABOUT 6 DIFFERENT REVISIONS, WHETHER BY + FIXING RANDOM ERRORS THAT ONLY SQF COULD HAVE, OR THE FUCKING + STUPID FACT THAT WE ONLY HAVE FUCKING FLOATS IN THIS LANGUAGE. + THAT WOULDN'T BE A PROBLEM IF WE HAD LOWER LEVEL OPERATORS + AND FUNCTIONS, BUT AFTER 20+ YEARS THOSE NEVER MATERAILIZED. + FLOATS CAN ONLY SUPPORT INT VALUES UP TO 16,777,216. NOW THINK + WHY IS THIS A PROBLEM. ONE YEAR, NON LEAP, IS 31,536,000 SECONDS. + IT IS IMPOSSIBLE TO ENCODE UNIX TIMESTAMPS OR ANY NORMAL STAMP + WITH THIS ABYSMAL LANGUAGE. SO WHAT DO WE DO? WE FUCKING HAVE + TO MANUALLY FUCKING SUBTRACT PER TIME UNIT. WHY? WHY? WHY? THIS + IS FUCKING STUPID, I'M NOT A FUCKING EXPERT ON CALENDAR + CALCULATIONS BUT THIS LANGUAGE HAS FORCED MY HAND. I WANT THIS + LANGUAGE TO DIE A HORRIBLE DEATH. IF WE WENT TO INTERCEPT OR + JUST A PLAIN EXTENSION, I WOULDN'T HAVE HAD TO SPEND HOURS + ON THIS. I'M NOT A BETTER PROGRAMMER AFTER EXPERIENCING THIS. + MY TIME IS VALUABLE, IT IS A FINITE RESOURCE. I HAVE LOST IT + HERE, I'LL NEVER GET IT BACK. THIS LANGUAGE TREATS US LIKE + SHIT, ONLY BY SPENDING TIME AWAY FROM IT DO WE REASON HOW + TERRIBLE WE HAVE IT. IF THIS WAS ANY OTHER LANGUAGE THIS CODE + WOULD HAVE BEEN THREE LINES MAX. + + MAY GOD HAVE MERCY ON THE SOULS THAT MAINTAIN THIS PIECE OF + SHIT. + + */ + +params ["_systemTimeFinal", "_systemTimeinit"]; + +#define YEARS 0 +#define MONTHS 1 +#define DAYS 2 +#define HOURS 3 +#define MINUTES 4 +#define SECONDS 5 +#define MILLISECS 6 + +// test case here [false,580,0,48,22,210,0,0] +//_systemTimeinit = [2022, 11, 30, 16, 31, 2, 685]; +//_systemTimeFinal = [2024, 7, 2, 17, 19, 24, 895]; + +private _daysToMonths365 = [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365]; +private _daysToMonths366 = [0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366]; + +private _daysInMonths365 = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; +private _daysInMonths366 = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; + + +private _fnc_isLeapYear = +{ + (_this % 4) == 0 && {( _this % 100) != 0 || {_this % 400 == 0}} +}; + +private _fnc_daysToYear = +{ + private _year = _this - 1; + private _century = floor (_year / 100); + floor (_year * (365 * 4 + 1) / 4) - _century + floor (_century / 4) +}; + +// make a copy of init for use in adder math stuff. +private _finalTime = +_systemTimeFinal; +private _initTime = +_systemTimeinit; + +// we don't support months and years, so convert them to days +private _finalDaysFrom = _finalTime # YEARS call _fnc_daysToYear; +_finalDaysFrom = _finalDaysFrom + ([_daysToMonths365, _daysToMonths366] select ((_finalTime # YEARS) call _fnc_isLeapYear) select (_finalTime # MONTHS) - 1); +_finalTime set [DAYS, (_finalTime # DAYS) + _finalDaysFrom]; + +private _initDaysFrom = _initTime # YEARS call _fnc_daysToYear; +_initDaysFrom = _initDaysFrom+ ([_daysToMonths365, _daysToMonths366] select ((_initTime # YEARS) call _fnc_isLeapYear) select (_initTime # MONTHS) - 1); +_initTime set [DAYS, (_initTime # DAYS) + _initDaysFrom]; + +// we go one by one for readability +// I definitly do not like doing this. +private _durationMS = _finalTime # MILLISECS - _initTime # MILLISECS; +if(_durationMS < 0) then +{ + // now do adder stuff + _finalTime set [SECONDS, (_finalTime # SECONDS) - 1]; + _finalTime set [MILLISECS, (_finalTime # MILLISECS) + 1000]; + _durationMS = _finalTime # MILLISECS - _initTime # MILLISECS; +}; + +private _durationSEC = _finalTime # SECONDS - _initTime # SECONDS; +if(_durationSEC < 0) then +{ + _finalTime set [MINUTES, (_finalTime # MINUTES) - 1]; + _finalTime set [SECONDS, (_finalTime # SECONDS) + 60]; + _durationSEC = _finalTime # SECONDS - _initTime # SECONDS; +}; + +private _durationMIN = _finalTime # MINUTES - _initTime # MINUTES; +if(_durationMIN < 0) then +{ + _finalTime set [HOURS, (_finalTime # HOURS) - 1]; + _finalTime set [MINUTES, (_finalTime # MINUTES) + 60]; + _durationMIN = _finalTime # MINUTES - _initTime # MINUTES; +}; + +private _durationHOUR = _finalTime # HOURS - _initTime # HOURS; +if(_durationHOUR < 0) then +{ + _finalTime set [DAYS, (_finalTime # DAYS) - 1]; + _finalTime set [HOURS, (_finalTime # HOURS) + 24]; + _durationHOUR = _finalTime # HOURS - _initTime # HOURS; +}; + +private _durationDAYS = _finalTime # DAYS - _initTime # DAYS; +if(_durationDAYS < 0) exitwith +{ + // days are not uniform, so just do this shit. WELCOME TO HELL. + [false, 0, 0, 0, 0, 0, 0, 0] +}; + +// DON'T FUCKING UNCOMMENT THIS SHIT BELOW +// IT'S HERE TO REMIND OF WHAT SQF TOOK FROM ME +// private _durationMONTHS = _finalTime # MONTHS - _initTime # MONTHS; +// if(_durationMONTHS < 0) then +// { +// _finalTime set [YEARS, (_finalTime # YEARS) - 1]; +// _finalTime set [MONTHS, (_finalTime # MONTHS) + 12]; +// _durationMONTHS = _finalTime # MONTHS - _initTime # MONTHS; +// }; + +// private _durationYEARS = _finalTime # YEARS - _initTime # YEARS; +// if(_durationYEARS < 0) exitWith +// { +// // well shit, you're not supposed to get here... just return a zero array +// [0,0,0,0,0,0,0] +// }; + + +[false, _durationDAYS, _durationHOUR, _durationMIN, _durationSEC, _durationMS, 0, 0] \ No newline at end of file diff --git a/A3A/addons/core/functions/init/fn_initACE.sqf b/A3A/addons/core/functions/init/fn_initACE.sqf index 41e665d3bb..1c7a16e305 100644 --- a/A3A/addons/core/functions/init/fn_initACE.sqf +++ b/A3A/addons/core/functions/init/fn_initACE.sqf @@ -50,9 +50,16 @@ if (A3A_hasACEMedical) then { if (isNil "ace_interact_menu_fnc_compileMenu" || isNil "ace_interact_menu_fnc_compileMenuSelfAction") exitWith { Error("ACE non-public functions have changed, rebel group join/leave actions will not be removed."); }; -// Remove group join action from all rebel unit types + +// Remove actions from Antistasi unit types // Need to compile the menus first, because ACE delays creating menus until a unit of that class is created -private _unitTypes = ["I_G_soldier_F", "I_G_Soldier_TL_F", "I_G_Soldier_AR_F", "I_G_medic_F", "I_G_engineer_F", "I_G_Soldier_GL_F", "I_G_officer_F"]; + +// Player units +private _unitTypes = ["I_G_soldier_F", "I_G_Soldier_TL_F", "I_G_Soldier_AR_F", "I_G_medic_F", "I_G_engineer_F", "I_G_Soldier_GL_F"]; +// AI units +_unitTypes append ["a3a_unit_west", "a3a_unit_east", "a3a_unit_civ", "a3a_unit_reb", "a3a_unit_reb_unarmed", "a3a_unit_reb_medic", "a3a_unit_reb_sniper", "a3a_unit_reb_marksman", + "a3a_unit_reb_lat", "a3a_unit_reb_mg", "a3a_unit_reb_exp", "a3a_unit_reb_gl", "a3a_unit_reb_sl", "a3a_unit_reb_eng", "a3a_unit_reb_at", "a3a_unit_reb_aa", "a3a_unit_reb_petros"]; + { [_x] call ace_interact_menu_fnc_compileMenu; [_x] call ace_interact_menu_fnc_compileMenuSelfAction; @@ -60,4 +67,3 @@ private _unitTypes = ["I_G_soldier_F", "I_G_Soldier_TL_F", "I_G_Soldier_AR_F", " [_x, 1, ["ACE_SelfActions", "ACE_TeamManagement", "ACE_LeaveGroup"]] call ace_interact_menu_fnc_removeActionFromClass; [_x, 0, ["ACE_MainActions", "ACE_JoinGroup"]] call ace_interact_menu_fnc_removeActionFromClass; } forEach _unitTypes; // TODO: add raw unit types from new templates - diff --git a/A3A/addons/core/functions/init/fn_initServer.sqf b/A3A/addons/core/functions/init/fn_initServer.sqf index dfe82f7fa6..8a600ac198 100644 --- a/A3A/addons/core/functions/init/fn_initServer.sqf +++ b/A3A/addons/core/functions/init/fn_initServer.sqf @@ -17,6 +17,7 @@ if (call A3A_fnc_modBlacklist) exitWith {}; // hide all the HQ objects { + _x enableRopeAttach false; _x allowDamage false; _x hideObjectGlobal true; } forEach [boxX, flagX, vehicleBox, fireX, mapX, petros]; @@ -25,6 +26,7 @@ switch (toLower worldname) do { case "cam_lao_nam": {}; case "vn_khe_sanh": {mapX setObjectTextureGlobal [0,"Pictures\Mission\whiteboard.paa"];}; case "spe_normandy": {mapX setObjectTextureGlobal [0,"Pictures\Mission\whiteboard.paa"];}; + case "spe_mortain": {mapX setObjectTextureGlobal [0,"Pictures\Mission\whiteboard.paa"];}; default {mapX setObjectTextureGlobal [0,"Pictures\Mission\whiteboard.jpg"];}; }; diff --git a/A3A/addons/core/functions/init/fn_initVarServer.sqf b/A3A/addons/core/functions/init/fn_initVarServer.sqf index 8a91cc55fa..088a329c03 100644 --- a/A3A/addons/core/functions/init/fn_initVarServer.sqf +++ b/A3A/addons/core/functions/init/fn_initVarServer.sqf @@ -262,10 +262,12 @@ FIX_LINE_NUMBERS() ////////////////////////////////////// Info("Setting up faction and DLC equipment flags"); +// Arma bug: Need to hardcode CDLC because arma3.cfg mod loading method doesn't register CDLC as "official" +private _loadedDLC = getLoadedModsInfo select { (_x#2) and !(_x#1 in ["A3","curator","argo","tacops"]) }; +_loadedDLC append (getLoadedModsInfo select { tolower (_x#1) in ["gm", "rf", "spe", "vn", "ws"] }); +_loadedDLC = _loadedDLC apply { tolower (_x#1) }; + // Set enabled & disabled DLC/CDLC arrays for faction/equipment modification -private _loadedDLC = getLoadedModsInfo select { - (_x#3) and {!(_x#1 in ["A3","curator","argo","tacops"])} -} apply {tolower (_x#1)}; A3A_enabledDLC = (_saveData get "DLC") apply {tolower _x}; // should be pre-checked against _loadedDLC { A3A_enabledDLC insert [0, getArray (configFile/"A3A"/"Templates"/_x/"forceDLC"), true]; // add unique elements only @@ -276,7 +278,7 @@ A3A_disabledMods = A3A_disabledDLC; // Split to allow CUP civili // Everything that counts as vanilla: Official DLC plus various junk tags A3A_vanillaMods = (getLoadedModsInfo select {_x#2 and _x#3} apply {tolower (_x#1)}) + ["", "officialmod"]; -Debug_3("DLC enabled: %1 Disabled: %2 Vanilla: %3", A3A_enabledDLC, A3A_disabledDLC, A3A_vanillaMods); +Debug_4("DLC loaded: %1 Enabled: %2 Disabled: %3 Vanilla: %4", _loadedDLC, A3A_enabledDLC, A3A_disabledDLC, A3A_vanillaMods); // TODO: fix all allowDLCxxx and A3A_hasxxx references in templates // for the moment just fudge the ones that we're using diff --git a/A3A/addons/core/functions/init/fn_setupMonitor.sqf b/A3A/addons/core/functions/init/fn_setupMonitor.sqf index b71aa7fc43..13a812b785 100644 --- a/A3A/addons/core/functions/init/fn_setupMonitor.sqf +++ b/A3A/addons/core/functions/init/fn_setupMonitor.sqf @@ -15,10 +15,9 @@ private _addonVics = "true" configClasses (configFile/"A3A"/"AddonVics"); // Ignore DLC without equipment and vehicles // Need the true names from here, so pass it all in -private _loadedDLC = getLoadedModsInfo select { - (_x#3) and {!(_x#1 in ["A3","curator","argo","tacops"])} -}; - +// Arma bug: Need to hardcode CDLC because arma3.cfg mod loading method doesn't register CDLC as "official" +private _loadedDLC = getLoadedModsInfo select { (_x#2) and !(_x#1 in ["A3","curator","argo","tacops"]) }; +_loadedDLC append (getLoadedModsInfo select { tolower (_x#1) in ["gm", "rf", "spe", "vn", "ws"] }); private _autoLoadTime = "autoLoadLastGame" call BIS_fnc_getParamValue; private _autoLoadData = nil; diff --git a/A3A/addons/garage/Core/fn_reciveBroadcast.sqf b/A3A/addons/garage/Core/fn_reciveBroadcast.sqf index b81b02a542..c84f42f890 100644 --- a/A3A/addons/garage/Core/fn_reciveBroadcast.sqf +++ b/A3A/addons/garage/Core/fn_reciveBroadcast.sqf @@ -26,7 +26,7 @@ #include "defines.inc" FIX_LINE_NUMBERS() Trace_1("Reciving broadcast: %1",_this); -params ["_lockUID", "_checkoutUID", "_catIndex", "_vehUID", "_player", "_switch"]; +params ["_lockUID", "_checkoutUID", "_catIndex", "_vehUID", "_player", "_switch", "_time"]; private _cat = HR_GRG_Vehicles#_catIndex; private _vehicle = _cat get _vehUID; @@ -37,6 +37,7 @@ if (_switch) then { [getPlayerUID _player] call HR_GRG_fnc_releaseAllVehicles }; if (!isNil "_lockUID") then { _vehicle set [2, _lockUID]; _vehicle set [5, if (_lockUID isEqualTo "") then { "" } else { name _player }]; + _vehicle set [7, [_time, []] select (_lockUID isEqualTo "")]; }; if (!isNil "_checkoutUID") then { diff --git a/A3A/addons/garage/Core/fn_reloadCategory.sqf b/A3A/addons/garage/Core/fn_reloadCategory.sqf index 4c16e59db5..8df30b1c7e 100644 --- a/A3A/addons/garage/Core/fn_reloadCategory.sqf +++ b/A3A/addons/garage/Core/fn_reloadCategory.sqf @@ -29,7 +29,7 @@ lbClear _ctrl; private _selected = -1; private _HR_GRG_SelectedVehicles = [-1,-1,""]; { - _y params ["_displayName", "_class", "_lockedUID", "_checkedOut", "", ["_lockName", ""]]; + _y params ["_displayName", "_class", "_lockedUID", "_checkedOut", "", ["_lockName", ""], "", ["_lockTime", []]]; private _index = _ctrl lbAdd _displayName; _ctrl lbSetData [_index, str _x]; _ctrl lbSetValue [_index, _x]; @@ -46,7 +46,7 @@ private _HR_GRG_SelectedVehicles = [-1,-1,""]; }; _ctrl lbSetPictureRight [_index, CheckOutIcon]; _ctrl lbSetPictureRightColor [_index, _color]; - _tooltipText = name (_checkedOut call BIS_fnc_getUnitByUID) +" "+( localize "STR_HR_GRG_Feedback_checkedOutToolTip" )+" "; + _tooltipText = format ["%1 %2 %3", name (_checkedOut call BIS_fnc_getUnitByUID), ( localize "STR_HR_GRG_Feedback_checkedOutToolTip" ), parseText "\n"]; }; if !( _lockedUID isEqualTo "" ) then { @@ -54,6 +54,13 @@ private _HR_GRG_SelectedVehicles = [-1,-1,""]; _ctrl lbSetPictureRight [_index, LockIcon]; _ctrl lbSetPictureRightColor [_index, _color]; _tooltipText = _tooltipText + ( localize "STR_HR_GRG_Feedback_LockedToolTip" )+" "+ _lockName; + + private _systemTime = systemTimeUTC; + if(_lockTime isEqualTo []) then {_lockTime = _systemTime;}; + private _timeSpan = [_systemTime, _locktime] call A3A_fnc_systemTimeDurationToTimeSpan; + _tooltipText = format [localize "STR_HR_GRG_Feedback_LockedToolTip_Ago", _tooltipText, + [_timeSpan, 0,0,false,2] call A3A_fnc_timeSpan_format + ]; }; _ctrl lbSetTooltip [_index, _tooltipText]; _ctrl lbSetPictureRightColorSelected [_index, [0.85,0.85,0.55,1]]; diff --git a/A3A/addons/garage/Core/fn_toggleLock.sqf b/A3A/addons/garage/Core/fn_toggleLock.sqf index 3117123181..43f4e2a58b 100644 --- a/A3A/addons/garage/Core/fn_toggleLock.sqf +++ b/A3A/addons/garage/Core/fn_toggleLock.sqf @@ -45,7 +45,10 @@ if (_lock isEqualTo "" && !(_vehUID in flatten HR_GRG_Sources) && {[_UID] call H ["STR_HR_GRG_Feedback_toggleLock_limit"] remoteExecCall ["HR_GRG_fnc_Hint", _player]; }; +private _lockTime = systemTimeUTC; + _veh set [2, _UID]; _veh set [5, [name _player, ""] select (_UID isEqualTo "")]; -[_UID, nil, _catIndex, _vehUID, _player, false] call HR_GRG_fnc_broadcast; +_veh set [7, [_lockTime, 0] select (_UID isEqualTo "")]; +[_UID, nil, _catIndex, _vehUID, _player, false, _lockTime] call HR_GRG_fnc_broadcast; Info_3("Lock state toggled for Vehicle ID: %1 | By: %2 | Locked: %3", _vehUID, name _player, (_UID isNotEqualTo "")); diff --git a/A3A/addons/garage/Public/fn_addVehicle.sqf b/A3A/addons/garage/Public/fn_addVehicle.sqf index 37e2c23098..c97b246afe 100644 --- a/A3A/addons/garage/Public/fn_addVehicle.sqf +++ b/A3A/addons/garage/Public/fn_addVehicle.sqf @@ -172,6 +172,7 @@ private _addVehicle = { private _stateData = [_this] call HR_GRG_fnc_getState; private _customisation = [_this] call BIS_fnc_getVehicleCustomization; + private _lockTime = [systemTimeUTC, []] select (_lockUID isEqualTo ""); //Antistasi adaptions _this call _transferToArsenal; @@ -182,7 +183,7 @@ private _addVehicle = { //Add vehicle to garage private _vehUID = [] call HR_GRG_fnc_genVehUID; - (HR_GRG_Vehicles#_cat) set [_vehUID, [cfgDispName(_class), _class, _lockUID, "", _stateData, _lockName, _customisation]]; + (HR_GRG_Vehicles#_cat) set [_vehUID, [cfgDispName(_class), _class, _lockUID, "", _stateData, _lockName, _customisation, _lockTime]]; //register vehicle as a source if (_sourceIndex != -1) then { diff --git a/A3A/addons/garage/Stringtable.xml b/A3A/addons/garage/Stringtable.xml index 6ec3d40198..7ca07fc68f 100644 --- a/A3A/addons/garage/Stringtable.xml +++ b/A3A/addons/garage/Stringtable.xml @@ -422,6 +422,9 @@ Aracı kilitledi 载具被上锁,它属于 + + %1: %2 ago + Can't mount static Kann gegenstand nicht montieren. diff --git a/A3A/addons/gui/dialogues/arsenalLimitsDialog.hpp b/A3A/addons/gui/dialogues/arsenalLimitsDialog.hpp index 2d49af391b..f95761e102 100644 --- a/A3A/addons/gui/dialogues/arsenalLimitsDialog.hpp +++ b/A3A/addons/gui/dialogues/arsenalLimitsDialog.hpp @@ -76,6 +76,7 @@ class A3A_ArsenalLimitsDialog : A3A_DefaultDialog { idc = A3A_IDC_ARSLIMTYPESBASE + 0; text="\A3\Ui_f\data\GUI\Rsc\RscDisplayArsenal\PrimaryWeapon_ca.paa"; tooltip="$STR_A3_RscDisplayArsenal_tab_PrimaryWeapon"; + onLoad = "(_this # 0) ctrlEnable false"; // disable until init is complete onButtonClick = "['typeSelect', [ctrlIDC (_this#0)]] call A3A_GUI_fnc_arsenalLimitsDialog"; colorDisabled[] = {0,0,0,1}; colorBackgroundDisabled[] = {1,1,1,1}; diff --git a/A3A/addons/gui/functions/GUI/fn_adminTab.sqf b/A3A/addons/gui/functions/GUI/fn_adminTab.sqf index 910b5cd90c..5c34b01c94 100644 --- a/A3A/addons/gui/functions/GUI/fn_adminTab.sqf +++ b/A3A/addons/gui/functions/GUI/fn_adminTab.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles updating and controls on the Admin tab of the Main dialog. Arguments: @@ -17,6 +17,9 @@ Dependencies: Example: ["update"] call A3A_fnc_adminTab; + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_aiManagementTab.sqf b/A3A/addons/gui/functions/GUI/fn_aiManagementTab.sqf index 5086b8a31e..63edc6bd54 100644 --- a/A3A/addons/gui/functions/GUI/fn_aiManagementTab.sqf +++ b/A3A/addons/gui/functions/GUI/fn_aiManagementTab.sqf @@ -1,22 +1,25 @@ /* -Maintainer: DoomMetal -Handles updating and controls on the AI Management tab of the Main dialog. +Maintainer: Caleb Serafin, DoomMetal + Handles updating and controls on the AI Management tab of the Main dialog. Arguments: - Mode -> Array of params for the mode when applicable. Params for specific modes are documented in the modes. + Mode + > Array of params for the mode when applicable. Params for specific modes are documented in the modes. Return Value: -Nothing + Nothing Scope: Clients, Local Arguments, Local Effect Environment: Scheduled for control changes / Unscheduled for update Public: No Dependencies: -None + None Example: -["update"] call FUNC(aiManagementTab); + ["update"] call FUNC(aiManagementTab); + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_airSupportTab.sqf b/A3A/addons/gui/functions/GUI/fn_airSupportTab.sqf index 89212d7eda..912380a18e 100644 --- a/A3A/addons/gui/functions/GUI/fn_airSupportTab.sqf +++ b/A3A/addons/gui/functions/GUI/fn_airSupportTab.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles updating and controls on the Air Support tab of the Main dialog. Arguments: @@ -17,6 +17,9 @@ Dependencies: Example: ["update"] call FUNC(airSupportTab); + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_arsenalLimitsDialog.sqf b/A3A/addons/gui/functions/GUI/fn_arsenalLimitsDialog.sqf index c1b2fb3997..49d038391a 100644 --- a/A3A/addons/gui/functions/GUI/fn_arsenalLimitsDialog.sqf +++ b/A3A/addons/gui/functions/GUI/fn_arsenalLimitsDialog.sqf @@ -1,4 +1,5 @@ /* +Maintainer: John Jordan Handles the initialization and updating of the arsenal guest limits dialog. Arguments: @@ -10,6 +11,7 @@ Returns: Environment: Should not be called by onLoad because findDisplay and ctrlParent do not work in that context. + */ #include "..\..\dialogues\ids.inc" @@ -19,7 +21,7 @@ FIX_LINE_NUMBERS() params ["_mode", "_params"]; -private _fnc_defaultLimit = { [A3A_guestItemLimit, 3*A3A_guestItemLimit] select (_this == 26) }; +private _fnc_defaultLimit = { jna_minItemMember select _this;}; private _display = findDisplay A3A_IDD_ARSENALLIMITSDIALOG; private _listBox = _display displayCtrl A3A_IDC_ARSLIMLISTBOX; @@ -42,7 +44,7 @@ switch (_mode) do [localize "STR_antistasi_arsenal_limits_dialog_hint_title", localize "STR_antistasi_arsenal_limits_dialog_guest_warning"] call A3A_fnc_customHint; (_display displayctrl A3A_IDC_ARSLIMRESETBUTTON) ctrlEnable false; }; - ["typeSelect", [A3A_IDC_ARSLIMTYPESBASE]] call A3A_GUI_fnc_ArsenalLimitsDialog; + ["typeSelect", [A3A_IDC_ARSLIMTYPESBASE]] call A3A_GUI_fnc_arsenalLimitsDialog; }; case ("typeSelect"): @@ -91,7 +93,7 @@ switch (_mode) do _button ctrlCommit 0; _button ctrlSetText _text; _button setVariable ["A3A_params", [_valCtrl, _adjust]]; - _button ctrlAddEventHandler ["ButtonClick", { ["listButton", _this] call A3A_GUI_fnc_ArsenalLimitsDialog }]; + _button ctrlAddEventHandler ["ButtonClick", { ["listButton", _this] call A3A_GUI_fnc_arsenalLimitsDialog }]; } forEach [["R", "R", 66], ["-", -5, 70], ["+", 5, 82], ["U", "U", 86]]; } forEach (jna_datalist#_typeIndex select {_x#1>0}); // only show non-unlocked items @@ -138,7 +140,7 @@ switch (_mode) do A3A_arsenalLimits deleteAt (_x#0); } forEach (jna_datalist#_typeIndex); - ["typeSelect", [_typeIndex + A3A_IDC_ARSLIMTYPESBASE]] call A3A_GUI_fnc_ArsenalLimitsDialog; // refresh the display + ["typeSelect", [_typeIndex + A3A_IDC_ARSLIMTYPESBASE]] call A3A_GUI_fnc_arsenalLimitsDialog; // refresh the display }; /* case ("stepButton"): diff --git a/A3A/addons/gui/functions/GUI/fn_buyVehicleDialog.sqf b/A3A/addons/gui/functions/GUI/fn_buyVehicleDialog.sqf index 38b1f39147..3b08b7f243 100644 --- a/A3A/addons/gui/functions/GUI/fn_buyVehicleDialog.sqf +++ b/A3A/addons/gui/functions/GUI/fn_buyVehicleDialog.sqf @@ -1,19 +1,26 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles the initialization and updating of the Buy Vehicle dialog. This function should only be called from BuyVehicle onLoad and control activation EHs. + Arguments: Mode, only possible value for this dialog is "onLoad" > Array of params for the mode when applicable. Params for specific modes are documented in the modes. + Return Value: Nothing + Scope: Clients, Local Arguments, Local Effect Environment: Scheduled for onLoad mode / Unscheduled for everything else unless specified Public: No Dependencies: None + Example: ["onLoad"] spawn A3A_GUI_fnc_buyVehicleDialog; // initialization + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_buyVehicleTabs.sqf b/A3A/addons/gui/functions/GUI/fn_buyVehicleTabs.sqf index eae03965ed..e41bacadb3 100644 --- a/A3A/addons/gui/functions/GUI/fn_buyVehicleTabs.sqf +++ b/A3A/addons/gui/functions/GUI/fn_buyVehicleTabs.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal, killerswin2 +Maintainer: Caleb Serafin, DoomMetal, killerswin2 Handles the initialization and updating of the Buy item dialog. This function should only be called from Buyvehicle onLoad and control activation EHs. @@ -18,6 +18,9 @@ Dependencies: Example: ["logistics"] call A3A_GUI_fnc_buyVehicleTab; + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_commanderTab.sqf b/A3A/addons/gui/functions/GUI/fn_commanderTab.sqf index 392ebe7412..ed196b3854 100644 --- a/A3A/addons/gui/functions/GUI/fn_commanderTab.sqf +++ b/A3A/addons/gui/functions/GUI/fn_commanderTab.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles updating and controls on the Commander tab of the Main dialog. Arguments: @@ -17,6 +17,9 @@ Dependencies: Example: ["update"] call FUNC(commanderTab); + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_configColorToArray.sqf b/A3A/addons/gui/functions/GUI/fn_configColorToArray.sqf index 105cfaf6c0..933a7b0574 100644 --- a/A3A/addons/gui/functions/GUI/fn_configColorToArray.sqf +++ b/A3A/addons/gui/functions/GUI/fn_configColorToArray.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Converts colors defined in mission config to arrays usable in sqf. From this: {1,0,0,1} @@ -23,6 +23,9 @@ Dependencies: Example: [A3A_COLOR_BLACK] call FUNC(configColorToArray); // [0,0,0,1] [{0,0,0,1}] call FUNC(configColorToArray); // [0,0,0,1] + +License: APL-ND + */ private _configColor = _this select 0; diff --git a/A3A/addons/gui/functions/GUI/fn_constructTab.sqf b/A3A/addons/gui/functions/GUI/fn_constructTab.sqf index 44502a9d11..c95a77789c 100644 --- a/A3A/addons/gui/functions/GUI/fn_constructTab.sqf +++ b/A3A/addons/gui/functions/GUI/fn_constructTab.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles updating and controls on the Construct tab of the Main dialog. Arguments: @@ -17,6 +17,9 @@ Dependencies: Example: ["update"] call FUNC(constructTab); + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_donateTab.sqf b/A3A/addons/gui/functions/GUI/fn_donateTab.sqf index 1f54d8736e..f3cc7f35de 100644 --- a/A3A/addons/gui/functions/GUI/fn_donateTab.sqf +++ b/A3A/addons/gui/functions/GUI/fn_donateTab.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles updating and controls on the Donate tab of the Main dialog. Arguments: @@ -17,6 +17,9 @@ Dependencies: Example: ["update"] call FUNC(donateTab); + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_fastTravelTab.sqf b/A3A/addons/gui/functions/GUI/fn_fastTravelTab.sqf index 8278d8c27f..38ab7ed32b 100644 --- a/A3A/addons/gui/functions/GUI/fn_fastTravelTab.sqf +++ b/A3A/addons/gui/functions/GUI/fn_fastTravelTab.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles updating and controls on the Fast Travel tab of the Main dialog. Arguments: @@ -17,6 +17,9 @@ Dependencies: Example: ["update"] call FUNC(fastTravelTab); + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_fireMissionEH.sqf b/A3A/addons/gui/functions/GUI/fn_fireMissionEH.sqf index ac86d4c5fa..b89543ae23 100644 --- a/A3A/addons/gui/functions/GUI/fn_fireMissionEH.sqf +++ b/A3A/addons/gui/functions/GUI/fn_fireMissionEH.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Event Handler for drawing fire mission markers to the commander map Arguments: @@ -16,6 +16,9 @@ Dependencies: Example: _commanderMap ctrlAddEventHandler ["Draw","_this call A3A_GUI_fnc_fireMissionEH"]; + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_getGroupInfo.sqf b/A3A/addons/gui/functions/GUI/fn_getGroupInfo.sqf index 0dd6d054b8..bed8402e67 100644 --- a/A3A/addons/gui/functions/GUI/fn_getGroupInfo.sqf +++ b/A3A/addons/gui/functions/GUI/fn_getGroupInfo.sqf @@ -1,5 +1,12 @@ // TODO UI-update: update header +/* +Maintainer: Caleb Serafin, DoomMetal + +License: APL-ND + +*/ + // Returns info about a group // Group name, position, alive/combat ready counts, vehicle status etc. // Mostly rewritten stuff from REINF/fn_vehStats.sqf diff --git a/A3A/addons/gui/functions/GUI/fn_getGroupVehicle.sqf b/A3A/addons/gui/functions/GUI/fn_getGroupVehicle.sqf index b1348ce5cb..c9415d0175 100644 --- a/A3A/addons/gui/functions/GUI/fn_getGroupVehicle.sqf +++ b/A3A/addons/gui/functions/GUI/fn_getGroupVehicle.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Gets a high command groups assigned vehicle Arguments: @@ -16,6 +16,9 @@ Dependencies: Example: [_someGroup] call FUNC(getGroupVehicle); // Returns the group vehicle if it has one, objNull if not + +License: APL-ND + */ // This function was part of A3A_fnc_vehStats diff --git a/A3A/addons/gui/functions/GUI/fn_getVehicleCrewCount.sqf b/A3A/addons/gui/functions/GUI/fn_getVehicleCrewCount.sqf index 7091d45b37..efdba30966 100644 --- a/A3A/addons/gui/functions/GUI/fn_getVehicleCrewCount.sqf +++ b/A3A/addons/gui/functions/GUI/fn_getVehicleCrewCount.sqf @@ -1,17 +1,22 @@ /* +Maintainer: Caleb Serafin, DoomMetal + Returns an array with numbers of vehicle positions - Params: - 0 : String - classname of vehicle - - Returns - Array : - 0 - driver - 1 - copilot - 2 - commander - 3 - gunners - 4 - passengers (includes FFV seats) - 5 - FFV seats +Params: + 0 : String - classname of vehicle + +Returns + Array : + 0 - driver + 1 - copilot + 2 - commander + 3 - gunners + 4 - passengers (includes FFV seats) + 5 - FFV seats + +License: APL-ND + */ // TODO UI-update: Update header diff --git a/A3A/addons/gui/functions/GUI/fn_hqDialog.sqf b/A3A/addons/gui/functions/GUI/fn_hqDialog.sqf index 839bc81604..f2a98145e9 100644 --- a/A3A/addons/gui/functions/GUI/fn_hqDialog.sqf +++ b/A3A/addons/gui/functions/GUI/fn_hqDialog.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles the initialization and updating of the HQ Dialog This function should only be called from HqDialog onLoad and control activation EHs. @@ -19,6 +19,9 @@ Dependencies: Example: ["onLoad"] spawn FUNC(hqDialog); // initialization ["switchTab", ["garrison"]] call FUNC(hqDialog); // switching to the garrison tab + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_mainDialog.sqf b/A3A/addons/gui/functions/GUI/fn_mainDialog.sqf index 578ad20a99..cf3c2d22c9 100644 --- a/A3A/addons/gui/functions/GUI/fn_mainDialog.sqf +++ b/A3A/addons/gui/functions/GUI/fn_mainDialog.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles the initialization and tab switching on the Main Dialog (aka the Y-Menu). This function should only be called from MainDialog onLoad and control activation EHs. @@ -19,6 +19,9 @@ Dependencies: Example: ["onLoad"] spawn FUNC(mainDialog); // initialization ["switchTab", ["player"]] call FUNC(mainDialog); // switching to the player tab + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_mapDrawHcGroupsEH.sqf b/A3A/addons/gui/functions/GUI/fn_mapDrawHcGroupsEH.sqf index 1fd52713dd..7cceb8d292 100644 --- a/A3A/addons/gui/functions/GUI/fn_mapDrawHcGroupsEH.sqf +++ b/A3A/addons/gui/functions/GUI/fn_mapDrawHcGroupsEH.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Event Handler for drawing High Command group markers to the maps Arguments: @@ -16,6 +16,9 @@ Dependencies: Example: _commanderMap ctrlAddEventHandler ["Draw","_this call A3A_GUI_fnc_mapDrawHcGroupsEH"]; + +License: APL-ND + */ #include "..\..\script_component.hpp" FIX_LINE_NUMBERS() diff --git a/A3A/addons/gui/functions/GUI/fn_mapDrawOutpostsEH.sqf b/A3A/addons/gui/functions/GUI/fn_mapDrawOutpostsEH.sqf index d30db6b385..0909d4d811 100644 --- a/A3A/addons/gui/functions/GUI/fn_mapDrawOutpostsEH.sqf +++ b/A3A/addons/gui/functions/GUI/fn_mapDrawOutpostsEH.sqf @@ -1,26 +1,29 @@ /* - Maintainer: DoomMetal - Draws map markers to map controls - - Arguments: - None - - Return Value: - None - - Scope: Internal - Environment: Unscheduled - Public: No - Dependencies: - airportsX - resourcesX - factories - outposts - seaports - citiesX - - Example: - _fastTravelMap ctrlAddEventHandler ["Draw","_this call A3A_GUI_fnc_mapDrawOutpostsEH"]; +Maintainer: Caleb Serafin, DoomMetal + Draws map markers to map controls + +Arguments: + None + +Return Value: + None + +Scope: Internal +Environment: Unscheduled +Public: No +Dependencies: + airportsX + resourcesX + factories + outposts + seaports + citiesX + +Example: + _fastTravelMap ctrlAddEventHandler ["Draw","_this call A3A_GUI_fnc_mapDrawOutpostsEH"]; + +License: APL-ND + */ #include "..\..\dialogues\textures.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_mapDrawSelectEH.sqf b/A3A/addons/gui/functions/GUI/fn_mapDrawSelectEH.sqf index 2975cf5350..5ef72a86b2 100644 --- a/A3A/addons/gui/functions/GUI/fn_mapDrawSelectEH.sqf +++ b/A3A/addons/gui/functions/GUI/fn_mapDrawSelectEH.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Event Handler for drawing select markers to maps. Draws a pulsing selection marker on the position specified in @@ -20,6 +20,9 @@ Dependencies: Example: _commanderMap ctrlAddEventHandler ["Draw","_this call A3A_GUI_fnc_mapDrawSelectEH"]; + +License: APL-ND + */ #include "..\..\dialogues\defines.hpp" diff --git a/A3A/addons/gui/functions/GUI/fn_mapDrawUserMarkersEH.sqf b/A3A/addons/gui/functions/GUI/fn_mapDrawUserMarkersEH.sqf index 64b4185552..29c702411b 100644 --- a/A3A/addons/gui/functions/GUI/fn_mapDrawUserMarkersEH.sqf +++ b/A3A/addons/gui/functions/GUI/fn_mapDrawUserMarkersEH.sqf @@ -1,22 +1,25 @@ /* - Maintainer: doomMetal - Draws user markers to map controls - Used for cases where we want only user created markers, not editor placed ones +Maintainer: Caleb Serafin, DoomMetal + Draws user markers to map controls + Used for cases where we want only user created markers, not editor placed ones - Arguments: - None - - Return Value: - None +Arguments: + None - Scope: internal - Environment: Unscheduled - Public: No - Dependencies: +Return Value: None - Example: - _commanderMap ctrlAddEventHandler ["Draw", "_this call A3A_GUI_fnc_mapDrawUserMarkersEH"]; +Scope: internal +Environment: Unscheduled +Public: No +Dependencies: +None + +Example: + _commanderMap ctrlAddEventHandler ["Draw", "_this call A3A_GUI_fnc_mapDrawUserMarkersEH"]; + +License: APL-ND + */ #include "..\..\dialogues\textures.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_playerManagementTab.sqf b/A3A/addons/gui/functions/GUI/fn_playerManagementTab.sqf index 8a578de3e2..e7979ba1e3 100644 --- a/A3A/addons/gui/functions/GUI/fn_playerManagementTab.sqf +++ b/A3A/addons/gui/functions/GUI/fn_playerManagementTab.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles updating and controls on the Player Management tab of the Main dialog. Arguments: @@ -17,6 +17,9 @@ Dependencies: Example: ["update"] call FUNC(playerManagementTab); + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_playerTab.sqf b/A3A/addons/gui/functions/GUI/fn_playerTab.sqf index 9b3c919ecf..616ada07c6 100644 --- a/A3A/addons/gui/functions/GUI/fn_playerTab.sqf +++ b/A3A/addons/gui/functions/GUI/fn_playerTab.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles updating and controls on the Player tab of the Main dialog. Arguments: @@ -17,6 +17,9 @@ Dependencies: Example: ["update"] spawn FUNC(playerTab); + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_recruitDialog.sqf b/A3A/addons/gui/functions/GUI/fn_recruitDialog.sqf index cc235414cd..d2e472c0af 100644 --- a/A3A/addons/gui/functions/GUI/fn_recruitDialog.sqf +++ b/A3A/addons/gui/functions/GUI/fn_recruitDialog.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles the initialization and updating of the Recruit Units dialog. This function should only be called from RecruitDialog onLoad and control activation EHs. @@ -18,6 +18,9 @@ Dependencies: Example: ["onLoad"] spawn FUNC(recruitDialog); // initialization + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_recruitSquadDialog.sqf b/A3A/addons/gui/functions/GUI/fn_recruitSquadDialog.sqf index 5e28b3ab7a..797563cbd7 100644 --- a/A3A/addons/gui/functions/GUI/fn_recruitSquadDialog.sqf +++ b/A3A/addons/gui/functions/GUI/fn_recruitSquadDialog.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles the initialization and updating of the Recruit Squad dialog. This function should only be called from RecruitSquadDialog onLoad and control activation EHs. @@ -19,6 +19,9 @@ Dependencies: Example: ["onLoad"] spawn FUNC(recruitDialog); // initialization ["update"] spawn FUNC(recruitDialog); // update + +License: APL-ND + */ #include "..\..\dialogues\ids.inc" diff --git a/A3A/addons/gui/functions/GUI/fn_requestMissionDialog.sqf b/A3A/addons/gui/functions/GUI/fn_requestMissionDialog.sqf index 0276290818..23ae246879 100644 --- a/A3A/addons/gui/functions/GUI/fn_requestMissionDialog.sqf +++ b/A3A/addons/gui/functions/GUI/fn_requestMissionDialog.sqf @@ -1,5 +1,5 @@ /* -Maintainer: DoomMetal +Maintainer: Caleb Serafin, DoomMetal Handles controls on the Request Mission dialog. Arguments: @@ -17,6 +17,9 @@ Dependencies: Example: ["missionButtonClicked", ["CON"]] call FUNC(requestMissionDialog); + +License: APL-ND + */ #include "..\..\script_component.hpp" diff --git a/A3A/addons/gui/functions/GUI/fn_setUpPlacerHints.sqf b/A3A/addons/gui/functions/GUI/fn_setUpPlacerHints.sqf index 7ca85dfe70..7abe568b4e 100644 --- a/A3A/addons/gui/functions/GUI/fn_setUpPlacerHints.sqf +++ b/A3A/addons/gui/functions/GUI/fn_setUpPlacerHints.sqf @@ -1,16 +1,23 @@ /* -Author: [Killerswin2] - creates the controls for the dialog. Picture and Button are created. Data Saved to buttons. +Maintainer: Caleb Serafin, Killerswin2 + Creates the controls for the dialog. Picture and Button are created. Data Saved to buttons. + Arguments: -1. string for initilizer + string for initilizer + Return Value: -NONE + + NONE Scope: Client Environment: scheduled -Public: -no +Public: No + Example: -["onLoad"] spawn A3A_GUI_fnc_teamLeaderRTSPlacerDialog + ["onLoad"] spawn A3A_GUI_fnc_teamLeaderRTSPlacerDialog + +License: APL-ND + As of 1st July 2024 Ellis Nielsen, the owner of the code, has transfered the ownership to Calep Serafin. + */ diff --git a/A3A/addons/gui/functions/GUI/fn_teamLeaderRTSPlacerDialog.sqf b/A3A/addons/gui/functions/GUI/fn_teamLeaderRTSPlacerDialog.sqf index 1b26c86aa4..818b5e12bd 100644 --- a/A3A/addons/gui/functions/GUI/fn_teamLeaderRTSPlacerDialog.sqf +++ b/A3A/addons/gui/functions/GUI/fn_teamLeaderRTSPlacerDialog.sqf @@ -1,16 +1,22 @@ /* -Author: [Killerswin2, Hakon (Stole his bb code)] - creates the controls for the dialog. Picture and Button are created. Data Saved to buttons. +Maintainer: Caleb Serafin, Killerswin2, Hakon + Creates the controls for the dialog. Picture and Button are created. Data Saved to buttons. + Arguments: -1. string for initilizer + string for initilizer + Return Value: -NONE + NONE + Scope: Client Environment: scheduled -Public: -no +Public: No Example: -["onLoad"] spawn A3A_GUI_fnc_teamLeaderRTSPlacerDialog + ["onLoad"] spawn A3A_GUI_fnc_teamLeaderRTSPlacerDialog + +License: APL-ND + As of 1st July 2024 Ellis Nielsen, the owner of the code, has transfered the ownership to Calep Serafin. + */ diff --git a/A3A/addons/gui/functions/SetupGUI/fn_setupDialog.sqf b/A3A/addons/gui/functions/SetupGUI/fn_setupDialog.sqf index 2e6220e2a6..1178046aa2 100644 --- a/A3A/addons/gui/functions/SetupGUI/fn_setupDialog.sqf +++ b/A3A/addons/gui/functions/SetupGUI/fn_setupDialog.sqf @@ -116,6 +116,7 @@ switch (_mode) do ,["tem_anizay", "Anizay"] ,["cup_chernarus_A3", "Cherno 2020"] ,["SPE_Normandy", "Normandy"] + ,["SPE_Mortain", "Mortain"] ]; { private _realMap = _x get "map"; diff --git a/A3A/addons/jeroen_arsenal/JNA/fn_arsenal_init.sqf b/A3A/addons/jeroen_arsenal/JNA/fn_arsenal_init.sqf index 92a89e54ef..578ad30549 100644 --- a/A3A/addons/jeroen_arsenal/JNA/fn_arsenal_init.sqf +++ b/A3A/addons/jeroen_arsenal/JNA/fn_arsenal_init.sqf @@ -47,8 +47,13 @@ IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL 26 jna_minItemMember = [-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1]; //jna_minItemMember = [24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,24,memberOnlyMagLimit,24,24,24,24,memberOnlyMagLimit]; jna_minItemMember = jna_minItemMember apply { A3A_guestItemLimit }; -jna_minItemMember set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMAG, A3A_guestItemLimit*3]; -jna_minItemMember set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL, A3A_guestItemLimit*3]; +jna_minItemMember set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMAG, minWeaps]; +jna_minItemMember set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL, minWeaps]; + +if (minWeaps == -1) then { + jna_minItemMember set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMAG, A3A_guestItemLimit*3]; + jna_minItemMember set [IDC_RSCDISPLAYARSENAL_TAB_CARGOMAGALL, A3A_guestItemLimit*3]; +}; //server if(isServer)then{ diff --git a/A3A/addons/logistics/Nodes/SPE.hpp b/A3A/addons/logistics/Nodes/SPE.hpp index d127351659..e89d39930d 100644 --- a/A3A/addons/logistics/Nodes/SPE.hpp +++ b/A3A/addons/logistics/Nodes/SPE.hpp @@ -70,4 +70,72 @@ class SPE_US_M3_Halftrack : TRIPLES(ADDON,Nodes,Base) }; }; }; -class SPE_FR_M3_Halftrack : SPE_US_M3_Halftrack {}; \ No newline at end of file +class SPE_FR_M3_Halftrack : SPE_US_M3_Halftrack {}; + +class SPE_CCKW_353 : TRIPLES(ADDON,Nodes,Base) +{ + canLoadWeapon = 0; + class Nodes + { + class Node1 + { + offset[] = {0,0.3,-0.7}; + seats[] = {3,4}; + }; + class Node2 + { + offset[] = {0,-0.5,-0.7}; + seats[] = {5,6,7,8}; + }; + class Node3 + { + offset[] = {0,-1.3,-0.7}; + seats[] = {9,10}; + }; + class Node4 + { + offset[] = {0,-2.1,-0.7}; + seats[] = {0,1}; + }; + }; +}; +class SPE_CCKW_353_M2 : SPE_CCKW_353 {}; +class SPE_CCKW_353_Open : TRIPLES(ADDON,Nodes,Base) +{ + class Nodes + { + class Node1 + { + offset[] = {0,0.3,-0.7}; + seats[] = {3,4}; + }; + class Node2 + { + offset[] = {0,-0.5,-0.7}; + seats[] = {5,6,7,8}; + }; + class Node3 + { + offset[] = {0,-1.3,-0.7}; + seats[] = {9,10}; + }; + class Node4 + { + offset[] = {0,-2.1,-0.7}; + seats[] = {0,1}; + }; + }; +}; + +class SPE_US_G503_MB : TRIPLES(ADDON,Nodes,Base) +{ + class Nodes + { + class Node1 + { + offset[] = {0,-1.07,-0.6}; + }; + }; +}; +class SPE_US_G503_MB_Armoured : SPE_US_G503_MB {}; +class SPE_US_G503_MB_Open : SPE_US_G503_MB {}; \ No newline at end of file diff --git a/A3A/addons/logistics/Private/fn_addAction.sqf b/A3A/addons/logistics/Private/fn_addAction.sqf index b41c9f8408..bdfea02207 100644 --- a/A3A/addons/logistics/Private/fn_addAction.sqf +++ b/A3A/addons/logistics/Private/fn_addAction.sqf @@ -6,6 +6,8 @@ Arguments: 0. Object to add action to 1. Which action to add ("load"/"unload") + 2. JIP key + 3. Whether loading should break undercover Return Value: @@ -17,7 +19,7 @@ Example: [_object , _action] remoteExec ["A3A_Logistics_fnc_addAction", 0, _object]; */ -params [["_object", objNull, [objNull]], "_action", ["_jipKey", "", [""]]]; +params [["_object", objNull, [objNull]], "_action", ["_jipKey", "", [""]], ["_breakUC",false]]; if (isNull _object) exitWith { remoteExec ["", _jipKey]; //clear custom JIP }; @@ -32,10 +34,11 @@ switch (_action) do { [ _loadText, { - params ["_target"]; + params ["_target","_caller","_actionID","_breakUC"]; [_target] remoteExecCall ["A3A_Logistics_fnc_tryLoad",2]; + if (_breakUC) then {_caller setCaptive false}; }, - nil, + _breakUC, -5, true, true, diff --git a/A3A/addons/logistics/Public/fn_addLoadAction.sqf b/A3A/addons/logistics/Public/fn_addLoadAction.sqf index 6853a9f59a..bfa58eeeb6 100644 --- a/A3A/addons/logistics/Public/fn_addLoadAction.sqf +++ b/A3A/addons/logistics/Public/fn_addLoadAction.sqf @@ -6,6 +6,7 @@ Arguments: 0. Cargo that you want to be able to load in a vehicle 1. "load" or "unload" action (optional - should not really be used) + 2. Whether loading the object should break undercover Return Value: @@ -19,7 +20,7 @@ */ #include "..\script_component.hpp" FIX_LINE_NUMBERS() -params [["_object", objNull, [objNull]], ["_action", "load"]]; +params [["_object", objNull, [objNull]], ["_action", "load"],["_breakUC",false]]; if (isNull _object) exitWith { Error("No object passed, aborting"); @@ -34,5 +35,5 @@ if (!alive _object) exitWith { if (([_object] call A3A_Logistics_fnc_getCargoNodeType) isEqualTo -1) exitWith {nil}; private _jipKey = "A3A_Logistics_" + _action + ((str _object splitString ":") joinString ""); -[_object, _action, _jipKey] remoteExec ["A3A_Logistics_fnc_addAction", 0, _jipKey]; +[_object, _action, _jipKey,_breakUC] remoteExec ["A3A_Logistics_fnc_addAction", 0, _jipKey]; nil diff --git a/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/Pictures/Mission/PIC.jpg b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/Pictures/Mission/PIC.jpg new file mode 100644 index 0000000000..2af5bab2c9 Binary files /dev/null and b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/Pictures/Mission/PIC.jpg differ diff --git a/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/Pictures/Mission/whiteboard.paa b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/Pictures/Mission/whiteboard.paa new file mode 100644 index 0000000000..62802d8eaf Binary files /dev/null and b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/Pictures/Mission/whiteboard.paa differ diff --git a/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/cba_settings.sqf b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/cba_settings.sqf new file mode 100644 index 0000000000..1d06e32420 --- /dev/null +++ b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/cba_settings.sqf @@ -0,0 +1 @@ +#include "\x\A3A\Addons\core\Includes\cba_settings.sqf" diff --git a/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/description.ext b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/description.ext new file mode 100644 index 0000000000..bfd5ac3e52 --- /dev/null +++ b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/description.ext @@ -0,0 +1,41 @@ +#include "..\missionDescription\master.hpp" + +OnLoadName = $STR_antistasi_mission_info_SPE_Mortain_mapname_short_text; +OnLoadMission = $STR_antistasi_mission_info_SPE_Mortain_blurb_text; +briefingName = $STR_antistasi_mission_info_SPE_Mortain_mapname_text; +overviewText = $STR_antistasi_mission_info_SPE_Mortain_description_text; +loadScreen = "Pictures\Mission\pic.jpg"; // NB, this will resolve from root +overviewPicture = "Pictures\Mission\pic.jpg"; // NB, this will resolve from root + +class CfgNotifications +{ + #include "..\missionDescription\CfgNotificationsContents.hpp" +}; + +class CfgDebriefing { + #include "..\missionDescription\CfgDebriefingContents.hpp" + class End1 + { + title = "V I C T O R Y"; + subtitle = "Mortain is Ours!"; + description = "The population of Mortain loves you!
The SDK brave soldiers have proven their valour, and Petros, Mortains new Prime Minister, could at last to have a nice holiday. A deserved rest in a Greek island with drinks and fine food."; + picture = "n_inf"; + pictureColor[] = {0.0,0.5,0.0,1}; + }; + class petrosDead + { + title = "Petros is Dead"; + subtitle = "Petros is Dead"; + description = "Congratulations!: Petros is Dead. Now with Syndikat without a leader, you may think about joining them, and free the Mortain."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; + class destroyedSites + { + title = "The Mortain is Destroyed"; + subtitle = "The Mortain got Destroyed by the Invaders"; + description = "One third of the population in Mortain has been murdered by the Invaders.
Mortain no longer exists, nobody wants to live here."; + picture = "b_unknown"; + pictureColor[] = {0.5,0.0,0.0,1}; + }; +}; diff --git a/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/initPlayerLocal.sqf b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/initPlayerLocal.sqf new file mode 100644 index 0000000000..8c79a66d7b --- /dev/null +++ b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/initPlayerLocal.sqf @@ -0,0 +1 @@ +_this call A3A_fnc_initClient; \ No newline at end of file diff --git a/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/initServer.sqf b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/initServer.sqf new file mode 100644 index 0000000000..bc311d07b9 --- /dev/null +++ b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/initServer.sqf @@ -0,0 +1 @@ +call A3A_fnc_initServer; diff --git a/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/mapInfo.hpp b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/mapInfo.hpp new file mode 100644 index 0000000000..466dd75768 --- /dev/null +++ b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/mapInfo.hpp @@ -0,0 +1,29 @@ +class SPE_Mortain { + population[] = { + {"Vil_Romagny",477},{"Vil_Neufbourg",562},{"Vil_Mortain",878},{"Vil_Barthelemy",305},{"Vil_Bellefontaine",453},{"Vil_Tournerie",253},{"Vil_Les_Liards",219},{"Vil_La_Vieille_Vente",78},{"Vil_La_Deliniere",209},{"Vil_La_Bagotiere",299},{"Vil_La_Baffardiere",188},{"Vil_La_Menardiere",241},{"Vil_lagranderoche",91},{"Vil_belleeau",103},{"Vil_Les_Aulnays",255},{"Vil_LaGalpichere",191},{"Vil_LeClosMonnier",223},{"Vil_Le_Tertre",321},{"Loc_La_Morinais",385},{"Vil_Calvaire",469},{"Vil_LePillon",179},{"Vil_LaRiffaudiere",110},{"Vil_Saint_Hilaire",544},{"Vil_LaGesberdiere",464},{"Vil_La_Fieffe_de_Brousse_Pave",172},{"Vil_Le_Chene_des_Maires",260},{"Vil_Brousse_Pave",224} + }; + disabledTowns[] = { + "Vil_La_Bougonniere","Vil_longueveille","Vil_Abbeye_Blanche","Vil_La_Giffardiere","Vil_Ruandelle" + }; + antennas[] = { + {3952.95,5297.37,0.00991821},{5179.92,3040.97,0.0291138},{4223.79,7540.87,0.0480347},{542.119,4122.41,0.0940552},{7802.82,6414.54,0.131439} + }; + antennasBlacklistIndex[] = {}; + banks[] = {}; //no suitable/defined buildings + garrison[] = { + {},{"airport_6","outpost_8","outpost_9","outpost_15","factory_3","resource_5","resource_6","resource_10","control_5","control_10","control_19","control_20","control_21","control_25","control_28","control_30"}, + {},{"control_5","control_10","control_19","control_20","control_21","control_25","control_28","control_30"} + }; + fuelStationTypes[] = { + "Land_FuelStation_Feed_F","Land_fs_feed_F","Land_FuelStation_01_pump_malevil_F","Land_FuelStation_01_pump_F","Land_FuelStation_02_pump_F","Land_FuelStation_03_pump_F","SPE_Fuel_Barrel_German_01","SPE_Fuel_Barrel_US_01" + }; + climate = "arid"; + buildObjects[] = { + // Pillbox bunkers + {"Land_PillboxBunker_01_hex_F", 200}, {"Land_PillboxBunker_01_rectangle_F", 300}, + // SPE sandbag walls + {"Land_SPE_Sandbag_Long", 15}, {"Land_SPE_Sandbag_Short", 10}, {"Land_SPE_Sandbag_Nest", 15}, {"Land_SPE_Sandbag_Curve", 20}, + // Some extra stuff from vanilla + {"Land_Barricade_01_4m_F", 30}, {"Land_GuardBox_01_brown_F", 80}, {"Land_Tyres_F", 10} + }; +}; diff --git a/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/mission.sqm b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/mission.sqm new file mode 100644 index 0000000000..a5ece72f51 --- /dev/null +++ b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/mission.sqm @@ -0,0 +1,43957 @@ +version=54; +class EditorData +{ + moveGridStep=1; + angleGridStep=0.2617994; + scaleGridStep=1; + autoGroupingDist=10; + toggles=1025; + class ItemIDProvider + { + nextID=2326; + }; + class MarkerIDProvider + { + nextID=1; + }; + class LayerIndexProvider + { + nextID=866; + }; + class Camera + { + pos[]={6788.0767,414.48041,7503.6963}; + dir[]={0.012287639,-0.59082907,0.80676359}; + up[]={0.0089972997,0.80676401,0.5908075}; + aside[]={0.99992353,4.0014197e-007,-0.01522763}; + }; +}; +binarizationWanted=0; +sourceName="Antistasi_Mortain"; +addons[]= +{ + "A3_Structures_F_Ind_FuelStation", + "WW2_SPE_Structures_c", + "WW2_SPE_Structures_c_SimpleObjects_c", + "WW2_SPE_Core_c_EditorPreviews_c", + "WW2_SPE_Assets_c_Vehicles_SimpleObjects_c", + "A3_Modules_F", + "A3_Ui_F", + "WW2_SPE_Core_c_UI_Gui_c", + "WW2_SPE_Assets_c_Vehicles_Planes_c_FW190F8", + "WW2_SPE_Assets_c_Vehicles_Icons_c", + "A3_Structures_F_Enoch_Military_Radar", + "A3_Structures_F_Exp_Walls_Polewalls", + "A3_Structures_F_Ind_Transmitter_Tower", + "A3_Structures_F_Mil_Helipads", + "A3_Characters_F", + "A3_Weapons_F", + "WW2_SPE_Assets_c_Weapons_InfantryWeapons_c", + "A3_Structures_F_Exp_Military_Flags", + "A3_Weapons_F_Ammoboxes", + "A3_Props_F_Enoch_Military_Camps", + "A3_Structures_F_EPC_Civ_InfoBoards", + "A3_Modules_F_Curator_Curator", + "A3_Modules_F_Hc", + "WW2_SPE_Structures2_c" +}; +class AddonsMetaData +{ + class List + { + items=20; + class Item0 + { + className="A3_Structures_F_Ind"; + name="Arma 3 - Industrial Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item1 + { + className="WW2_SPE_Structures_c"; + name="WW2_SPE_Structures_c"; + }; + class Item2 + { + className="WW2_SPE_Structures_c_SimpleObjects_c"; + name="WW2_SPE_Structures_c_SimpleObjects_c"; + }; + class Item3 + { + className="WW2_SPE_Core_c_EditorPreviews_c"; + name="WW2_SPE_Core_c_EditorPreviews_c"; + }; + class Item4 + { + className="WW2_SPE_Assets_c_Vehicles_SimpleObjects_c"; + name="WW2_SPE_Assets_c_Vehicles_SimpleObjects_c"; + }; + class Item5 + { + className="A3_Modules_F"; + name="Arma 3 Alpha - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item6 + { + className="A3_Ui_F"; + name="Arma 3 - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item7 + { + className="WW2_SPE_Core_c_UI_Gui_c"; + name="WW2_SPE_Core_c_UI_Gui_c"; + }; + class Item8 + { + className="WW2_SPE_Assets_c_Vehicles_Planes_c_FW190F8"; + name="WW2_SPE_Assets_c_Vehicles_Planes_c_FW190F8"; + }; + class Item9 + { + className="WW2_SPE_Assets_c_Vehicles_Icons_c"; + name="WW2_SPE_Assets_c_Vehicles_Icons_c"; + }; + class Item10 + { + className="A3_Structures_F_Enoch_Military"; + name="Arma 3 Contact Platform - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item11 + { + className="A3_Structures_F_Exp"; + name="Arma 3 Apex - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item12 + { + className="A3_Structures_F_Mil"; + name="Arma 3 - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item13 + { + className="A3_Characters_F"; + name="Arma 3 Alpha - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item14 + { + className="A3_Weapons_F"; + name="Arma 3 Alpha - Weapons and Accessories"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item15 + { + className="WW2_SPE_Assets_c_Weapons_InfantryWeapons_c"; + name="WW2_SPE_Assets_c_Weapons_InfantryWeapons_c"; + }; + class Item16 + { + className="A3_Props_F_Enoch"; + name="Arma 3 Contact Platform - Decorative and Mission Objects"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item17 + { + className="A3_Structures_F_EPC"; + name="Arma 3 Win Episode - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item18 + { + className="A3_Modules_F_Curator"; + name="Arma 3 Zeus Update - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item19 + { + className="WW2_SPE_Structures2_c"; + name="WW2_SPE_Structures2_c"; + }; + }; +}; +dlcs[]= +{ + "SPE", + "Enoch", + "Expansion", + "Contact" +}; +randomSeed=1517823; +class CustomAttributes +{ + class Category0 + { + name="Scenario"; + class Attribute0 + { + property="SPE_All_Obj_FX"; + expression="false"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + nAttributes=1; + }; +}; +class Mission +{ + class Intel + { + briefingName=$STR_antistasi_mission_info_SPE_Mortain_mapname_text; + resistanceWest=0; + timeOfChanges=1800.0002; + startWeather=0.30000001; + startWind=0.1; + startWaves=0.1; + forecastWeather=0; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=1944; + month=8; + day=7; + hour=6; + minute=0; + startFogDecay=0.014; + forecastFogDecay=0.014; + }; + class Entities + { + items=7; + class Item0 + { + dataType="Layer"; + name="Fuelstation"; + state=2; + class Entities + { + items=7; + class Item0 + { + dataType="Layer"; + name="FuelStation"; + class Entities + { + items=17; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={4525.4922,223.05991,3305.6421}; + angles[]={0,4.8856406,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2187; + type="Land_FuelStation_Feed_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={4521.3042,222.31,3306.6482}; + angles[]={0,1.7292238,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2188; + type="Land_SPE_House_Small_04"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={4525.4307,222.31,3301.8037}; + angles[]={0,1.7454165,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2189; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={4527.2065,222.31,3311.2539}; + angles[]={0,4.8985167,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2190; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={4526.4268,222.30359,3307.3782}; + angles[]={0,4.8856406,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2191; + type="Land_SPE_Dugout_Decal_01"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={4526.1255,223.05928,3309.5525}; + angles[]={0,1.7082139,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2192; + type="Land_FuelStation_Feed_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={4523.6147,222.75012,3304.7839}; + angles[]={0,4.8864059,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2193; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={4523.6895,222.75012,3305.6628}; + angles[]={0,4.8864059,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2194; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={4523.8994,222.75012,3306.5742}; + angles[]={0,4.8842959,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2195; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={4524.2412,222.75012,3305.1077}; + angles[]={0,4.8864059,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2196; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={4524.396,222.75012,3305.8262}; + angles[]={0,4.8824611,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2197; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={4524.1772,222.75012,3308.3469}; + angles[]={0,4.8872824,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2198; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={4524.4033,222.75012,3309.3467}; + angles[]={0,4.8872824,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2199; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={4524.7368,222.75012,3307.2922}; + angles[]={0,4.8824611,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2200; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={4525.4966,222.75012,3307.4885}; + angles[]={0,4.8824611,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2201; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={4525.2588,222.75012,3308.7063}; + angles[]={0,4.8853402,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2202; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={4524.0122,222.31,3306.6328}; + angles[]={0,4.8856406,0}; + }; + areaSize[]={10.482788,0,10.424072}; + flags=1; + id=2203; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=2186; + }; + class Item1 + { + dataType="Layer"; + name="FuelStation_1"; + class Entities + { + items=17; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.8215,297.91928,6469.6372}; + angles[]={0,4.2589679,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2206; + type="Land_FuelStation_Feed_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={3627.8396,296.89047,6467.9966}; + angles[]={0,1.1025513,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2207; + type="Land_SPE_House_Small_04"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={3634.0227,297.40265,6466.4922}; + angles[]={0,1.118744,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2208; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={3629.9194,296.95761,6475.1885}; + angles[]={0,4.2718439,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2209; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.5605,297.12097,6471.5918}; + angles[]={0,4.2589679,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2210; + type="Land_SPE_Dugout_Decal_01"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={3630.041,297.73145,6473.1763}; + angles[]={0,1.0815413,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2211; + type="Land_FuelStation_Feed_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={3630.8042,297.53888,6467.8418}; + angles[]={0.014998405,4.2607346,0.094716646}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2212; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={3630.3491,297.48734,6468.5967}; + angles[]={0.0099949092,4.2596798,0.094717279}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2213; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={3629.9849,297.44431,6469.4585}; + angles[]={0.0099949092,4.2595587,0.079832405}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2214; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={3631.1216,297.56195,6468.4712}; + angles[]={0.0099949092,4.2603464,0.094717279}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2215; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={3630.8259,297.52713,6469.1436}; + angles[]={0.0099949092,4.2592115,0.094717279}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2216; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={3629.1707,297.35605,6471.0571}; + angles[]={0.0050033992,4.2590389,0.094716646}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2217; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={3628.7671,297.31299,6471.9995}; + angles[]={0.0050033992,4.2586699,0.094716646}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2218; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={3630.2422,297.45926,6470.5308}; + angles[]={0.0050152978,4.2592115,0.08975438}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2219; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={3630.7422,297.50125,6471.1353}; + angles[]={0.0050152978,4.2592115,0.08975438}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2220; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={3629.8357,297.41461,6471.9824}; + angles[]={0.0050033992,4.2587228,0.094716646}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2221; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={3630.0417,297.00824,6469.5723}; + angles[]={0.0099949092,4.2589679,0.094717279}; + }; + areaSize[]={10.482788,0,10.424072}; + flags=1; + id=2222; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=2205; + atlOffset=0.00085449219; + }; + class Item2 + { + dataType="Layer"; + name="FuelStation_2"; + class Entities + { + items=17; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={2879.676,161.53304,1990.4692}; + angles[]={0,6.1547546,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2225; + type="Land_FuelStation_Feed_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={2879.3931,160.86479,1994.767}; + angles[]={0,2.9983361,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2226; + type="Land_SPE_House_Small_04"; + atlOffset=-0.19998169; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={2875.9929,160.59079,1989.3876}; + angles[]={0,3.0145309,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2227; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={2885.5439,160.95605,1990.4994}; + angles[]={0,6.1676311,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2228; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={2881.6118,160.81483,1990.0925}; + angles[]={0,6.1547546,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2229; + type="Land_SPE_Dugout_Decal_01"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={2883.5984,161.69484,1991.0265}; + angles[]={0,2.9773283,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2230; + type="Land_FuelStation_Feed_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={2878.2993,161.28954,1992.0067}; + angles[]={6.2182741,6.1550422,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2231; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={2879.1602,161.32771,1992.1968}; + angles[]={6.2182741,6.155076,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2232; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={2880.093,161.36206,1992.267}; + angles[]={6.2133002,6.1550903,0.034989785}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2233; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={2878.7944,161.26929,1991.505}; + angles[]={6.2133002,6.1550422,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2234; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=-1.5258789e-005; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={2879.5261,161.29581,1991.5704}; + angles[]={6.2133002,6.1550422,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2235; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=-1.5258789e-005; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={2881.8677,161.44052,1992.5282}; + angles[]={6.2182741,6.1551018,0.029997652}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2236; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=3.0517578e-005; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={2882.8899,161.47644,1992.6095}; + angles[]={6.2182741,6.1551018,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2237; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={2881.0271,161.35211,1991.6807}; + angles[]={6.2083287,6.1550903,0.034989785}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2238; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={2881.4404,161.31656,1991.0137}; + angles[]={6.2083287,6.1551957,0.034989785}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2239; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={2882.5327,161.39627,1991.6023}; + angles[]={6.2083287,6.1551523,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2240; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={2882.0798,160.99403,1992.3325}; + angles[]={6.2182741,6.1547465,0.029989703}; + }; + areaSize[]={15.641441,0,10.512042}; + areaIsRectangle=1; + flags=1; + id=2241; + type="ModuleHideTerrainObjects_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=2224; + atlOffset=-0.0027313232; + }; + class Item3 + { + dataType="Layer"; + name="FuelStation_3"; + class Entities + { + items=17; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={2867.8159,277.11423,4318.9297}; + angles[]={0,1.448101,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2244; + type="Land_FuelStation_Feed_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={2872.115,276.36688,4319.188}; + angles[]={0,4.5748744,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2245; + type="Land_SPE_House_Small_04"; + atlOffset=-0.20001221; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={2866.7554,276.12994,4322.6187}; + angles[]={0,4.5910625,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2246; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={2867.8123,276.66663,4313.0615}; + angles[]={0,1.4609773,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2247; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={2867.428,276.44156,4316.9961}; + angles[]={0,1.448101,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2248; + type="Land_SPE_Dugout_Decal_01"; + atlOffset=-3.0517578e-005; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={2868.3506,277.34219,4315.0039}; + angles[]={0,4.5538602,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2249; + type="Land_FuelStation_Feed_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={2869.3611,276.81332,4320.2974}; + angles[]={0.049961641,1.4448229,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2250; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={2869.5461,276.86563,4319.4355}; + angles[]={0.049946126,1.4442163,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2251; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=-3.0517578e-005; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={2869.6111,276.91553,4318.5024}; + angles[]={0.049946126,1.4456426,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2252; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=-3.0517578e-005; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={2868.8567,276.81268,4319.8052}; + angles[]={0.049946126,1.4448229,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2253; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=-3.0517578e-005; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={2868.918,276.85236,4319.0732}; + angles[]={0.049961641,1.4442163,0.049946126}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2254; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={2869.8621,277.01694,4316.7261}; + angles[]={0.049961641,1.4456428,0.049946126}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2255; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=3.0517578e-005; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={2869.9375,277.07333,4315.7031}; + angles[]={0.054953203,1.4456426,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2256; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={2869.0193,276.93256,4317.5718}; + angles[]={0.049961641,1.4456426,0.049946126}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2257; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=3.0517578e-005; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={2868.3501,276.91953,4317.1621}; + angles[]={0.049946126,1.4453648,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2258; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={2868.9324,277.00342,4316.0664}; + angles[]={0.049946126,1.4456428,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2259; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={2869.646,276.53278,4317.3911}; + angles[]={0.049961641,1.4480997,0.049946126}; + }; + areaSize[]={15.831408,0,10.424}; + areaIsRectangle=1; + flags=1; + id=2260; + type="ModuleHideTerrainObjects_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=2243; + atlOffset=6.1035156e-005; + }; + class Item4 + { + dataType="Layer"; + name="FuelStation_4"; + class Entities + { + items=17; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={7356.0708,175.80272,627.76587}; + angles[]={0,0.55924231,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2263; + type="Land_FuelStation_Feed_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={7358.5796,175.04077,631.26666}; + angles[]={0,3.6860113,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2264; + type="Land_SPE_House_Small_04"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={7352.5381,175.06561,629.26794}; + angles[]={0,3.702204,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2265; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={7360.6245,175.06624,624.06464}; + angles[]={0,0.57211858,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2266; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={7357.3271,175.06303,626.24628}; + angles[]={0,0.55924231,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2267; + type="Land_SPE_Dugout_Decal_01"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={7359.4551,175.80556,625.70703}; + angles[]={0,3.6650014,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2268; + type="Land_FuelStation_Feed_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={7355.9829,175.49013,629.82806}; + angles[]={0,0.55921835,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2269; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={7356.7686,175.49013,629.42822}; + angles[]={0,0.55928743,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2270; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={7357.5342,175.49013,628.89044}; + angles[]={0,0.55928743,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2271; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={7356.0469,175.49013,629.1261}; + angles[]={0,0.55924785,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2272; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={7356.6538,175.49013,628.71204}; + angles[]={0,0.55931258,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2273; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={7359.0718,175.49013,627.96558}; + angles[]={0,0.55925643,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2274; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={7359.9131,175.49013,627.3797}; + angles[]={0,0.55924928,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2275; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={7357.8838,175.49091,627.8443}; + angles[]={0.0049795164,0.55923951,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2276; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={7357.7798,175.4948,627.06677}; + angles[]={0.0049795164,0.55923951,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2277; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={7358.9976,175.491,626.82825}; + angles[]={0.0049914722,0.55925643,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2278; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={7359.2603,175.05,628.07794}; + angles[]={0,0.55923837,0}; + }; + areaSize[]={14.683163,0,10.096}; + areaIsRectangle=1; + flags=1; + id=2279; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=2262; + atlOffset=0.00085449219; + }; + class Item5 + { + dataType="Layer"; + name="FuelStation_5"; + class Entities + { + items=17; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6419.0723,269.8945,4318.3174}; + angles[]={0,3.11538,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2282; + type="Land_FuelStation_Feed_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6418.916,268.90637,4314.0132}; + angles[]={0,6.2421489,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2283; + type="Land_SPE_House_Small_04"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6422.8467,269.38223,4319.0176}; + angles[]={0,6.2583418,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2284; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6413.2319,268.48203,4318.8857}; + angles[]={0,3.1282563,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2285; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6417.1855,268.96863,4318.8896}; + angles[]={0,3.11538,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2286; + type="Land_SPE_Dugout_Decal_01"; + atlOffset=3.0517578e-005; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6415.1143,269.52609,4318.1631}; + angles[]={0,6.221139,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2287; + type="Land_FuelStation_Feed_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6420.2856,269.55542,4316.647}; + angles[]={6.2132926,3.1156068,0.034989785}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2288; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6419.4092,269.49768,4316.5459}; + angles[]={6.2282476,3.1156449,0.054938007}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2289; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=3.0517578e-005; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6418.4741,269.4476,4316.5713}; + angles[]={6.2282476,3.1156449,0.054938007}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2290; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6419.8442,269.57303,4317.1968}; + angles[]={6.2132926,3.11536,0.069893055}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2291; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=3.0517578e-005; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={6419.1094,269.52228,4317.2065}; + angles[]={6.2132926,3.1152627,0.069893055}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2292; + type="Land_SPE_Fuel_Barrel_German"; + atlOffset=3.0517578e-005; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={6416.6816,269.32748,4316.4927}; + angles[]={6.2631836,3.1156693,0.054952115}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2293; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={6415.6567,269.26126,4316.5161}; + angles[]={6.2631836,3.1146705,0.084803045}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2294; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={6417.6045,269.42328,4317.25}; + angles[]={6.2282486,3.1152627,0.08975438}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2295; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={6417.2617,269.43124,4317.9556}; + angles[]={6.2282486,3.1153414,0.08975438}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2296; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={6416.1152,269.3161,4317.4814}; + angles[]={6.2631836,3.1152921,0.054952115}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2297; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={6419.0273,269.12766,4317.0908}; + angles[]={6.2132926,3.1153779,0.069893055}; + }; + areaSize[]={15.26146,0,8.5187712}; + areaIsRectangle=1; + flags=1; + id=2298; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.059387207; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=2281; + atlOffset=0.017669678; + }; + class Item6 + { + dataType="Layer"; + name="FuelStation_6"; + class Entities + { + items=17; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={2042.3176,219.56905,7338.5869}; + angles[]={0,1.096715,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2301; + type="Land_FuelStation_Feed_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={2046.2649,218.86359,7340.3096}; + angles[]={0,4.223484,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2302; + type="Land_SPE_House_Small_04"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={2040.0521,218.75104,7341.6855}; + angles[]={0,4.2396765,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2303; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={2044.3341,218.90758,7333.0762}; + angles[]={0,1.1095912,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2304; + type="Land_SPE_Dugout_Decal_03"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={2042.619,218.84972,7336.6377}; + angles[]={0,1.096715,0}; + }; + side="Empty"; + flags=1; + class Attributes + { + }; + id=2305; + type="Land_SPE_Dugout_Decal_01"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={2044.1709,219.63905,7335.085}; + angles[]={0,4.2024741,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=2306; + type="Land_FuelStation_Feed_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={2043.2977,219.25652,7340.4028}; + angles[]={0.014998405,1.0973281,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2307; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={2043.7682,219.27946,7339.6572}; + angles[]={0.014998405,1.0969636,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2308; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={2044.1503,219.29881,7338.8037}; + angles[]={0.014998405,1.0965129,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2309; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={2042.9934,219.25845,7339.7671}; + angles[]={0.014998405,1.0965027,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2310; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={2043.303,219.27618,7339.1006}; + angles[]={0.014998405,1.0965027,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2311; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={2044.9974,219.319,7337.2222}; + angles[]={0.0049914722,1.0964994,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2312; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={2045.4202,219.32579,7336.2881}; + angles[]={0.0050033992,1.096615,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2313; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={2043.9152,219.30937,7337.7261}; + angles[]={0.0050033992,1.0967377,0.024989013}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2314; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={2043.4276,219.30025,7337.1113}; + angles[]={0.0050033992,1.096715,0.024989013}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2315; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={2044.3516,219.32047,7336.2827}; + angles[]={0.0050033992,1.096715,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2316; + type="Land_SPE_Fuel_Barrel_German"; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={2044.3688,218.86949,7338.1563}; + angles[]={0.014998405,1.0967126,0.0050033992}; + }; + areaSize[]={12.365829,0,10.424}; + areaIsRectangle=1; + flags=1; + id=2317; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=2300; + atlOffset=-0.0027313232; + }; + }; + id=2204; + atlOffset=-47.387299; + }; + class Item1 + { + dataType="Layer"; + name="airports"; + state=2; + class Entities + { + items=6; + class Item0 + { + dataType="Layer"; + name="airport_1"; + class Entities + { + items=98; + class Item0 + { + dataType="Marker"; + position[]={419.16214,195.06583,4039.6792}; + name="airp_1_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=379; + }; + class Item1 + { + dataType="Marker"; + position[]={523.31,196.38451,4094.4678}; + name="airp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=195.45294; + id=382; + }; + class Item2 + { + dataType="Marker"; + position[]={647.93835,195.60544,4056.792}; + name="airport_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=308.72116; + b=98.176781; + id=383; + atlOffset=-2.3106079; + }; + class Item3 + { + dataType="Marker"; + position[]={418.55997,193.80556,4109.1738}; + name="spawnPoint_1"; + type="hd_start"; + id=384; + }; + class Item4 + { + dataType="Marker"; + position[]={659.14673,196.01598,4111.3657}; + name="airp_1_plane"; + markerType="RECTANGLE"; + type=""; + colorName="ColorCIV"; + a=8; + b=8; + angle=90.517654; + id=385; + }; + class Item5 + { + dataType="Marker"; + position[]={631.11932,196.4144,4110.3745}; + name="airp_1_plane_1"; + markerType="RECTANGLE"; + type=""; + colorName="ColorCIV"; + a=8; + b=8; + angle=90.543343; + id=746; + }; + class Item6 + { + dataType="Marker"; + position[]={602.65198,196.71349,4110.5684}; + name="airp_1_plane_2"; + markerType="RECTANGLE"; + type=""; + colorName="ColorCIV"; + a=8; + b=8; + angle=90.177818; + id=747; + }; + class Item7 + { + dataType="Marker"; + position[]={572.27539,196.89604,4109.8135}; + name="airp_1_plane_3"; + markerType="RECTANGLE"; + type=""; + colorName="ColorCIV"; + a=8; + b=8; + angle=89.317467; + id=748; + }; + class Item8 + { + dataType="Marker"; + position[]={524.08545,196.02066,4109.7441}; + name="airp_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=126.35674; + id=892; + }; + class Item9 + { + dataType="Marker"; + position[]={469.94882,195.69624,4051.3535}; + name="airp_1_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=10.396377; + id=893; + }; + class Item10 + { + dataType="Marker"; + position[]={587.43805,197.75984,4027.4692}; + name="airp_1_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=902; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={931.99274,201.97592,3986.3286}; + angles[]={0.029989703,2.7117319,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=646; + type="Land_SPE_BarbedWire_04"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={945.4826,202.78477,3988.1033}; + angles[]={0.054945603,6.209743,0.41030809}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=788; + type="Land_SPE_BarbedWire_04"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={872.77789,199.04228,4104.665}; + angles[]={0.049960449,2.2562892,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=886; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={880.71661,199.0235,4104.5688}; + angles[]={0.049961641,3.8097513,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=890; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={355.75363,191.0575,4148.8721}; + angles[]={0.079832405,1.8086694,6.2132993}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=712; + type="Land_SPE_Element_c"; + atlOffset=1.5258789e-005; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={346.26361,191.1187,4142.146}; + angles[]={0,2.3341298,6.2782059}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=785; + type="Land_SPE_Element_c"; + atlOffset=1.5258789e-005; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={932.55621,200.15266,4013.3408}; + angles[]={0.034988083,5.8682361,0.21177252}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=786; + type="Land_SPE_Element_c"; + atlOffset=1.5258789e-005; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={942.67627,200.49474,4033.406}; + angles[]={0.084795304,0.19673558,0.094717279}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=787; + type="Land_SPE_Element_c"; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={897.32446,198.98874,4111.5938}; + angles[]={0.054945603,0.87529737,0.1046123}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=710; + type="SPE_FW190F8_MRWreck"; + atlOffset=0.0034637451; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={432.19724,195.72112,4016.3076}; + angles[]={6.2681909,2.1286082,0.009988944}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=711; + type="SPE_FW190F8_MRWreck"; + atlOffset=0.0055847168; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={929.69714,202.16183,3998.0276}; + angles[]={0.064911485,5.9421368,6.2132993}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=656; + type="Land_SPE_Guardbox"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={945.25818,202.0264,3979.1763}; + angles[]={6.2033539,4.8739858,0.27300769}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=866; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={937.00079,201.55173,3968.6965}; + angles[]={0.054944519,4.8739858,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=867; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={912.88892,200.4935,4217.7095}; + angles[]={0.16352737,4.8739858,0.21655147}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=868; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={908.94916,200.41905,4214.832}; + angles[]={0.17809334,4.8739858,0.21655147}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=869; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={901.33014,199.73398,4224.8252}; + angles[]={6.278182,4.8739858,0.044974733}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=870; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={936.41492,201.07419,3882.7048}; + angles[]={0.21655147,4.526351,6.2332239}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=871; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={945.82172,201.28416,3881.2783}; + angles[]={0.22132003,4.8739858,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=872; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={943.01337,201.12354,3892.5903}; + angles[]={6.0148177,5.4486046,0.089761689}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=873; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={952.94995,201.5397,3891.113}; + angles[]={6.134294,2.1504548,0.044968102}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=874; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={543.65289,197.06912,4123.7051}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=718; + type="Land_Radar_01_airshaft_F"; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={516.73633,201.63005,4038.1567}; + angles[]={0,4.6966376,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=660; + type="Land_Radar_01_HQ_F"; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={478.02963,195.49878,4113.2144}; + angles[]={0,0.15248697,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=833; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={478.87042,195.49115,4115.5708}; + angles[]={0,0.15248697,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=834; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={478.31134,195.46858,4115.6113}; + angles[]={0,0.15248697,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=835; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={478.5867,195.51869,4113.1729}; + angles[]={0,0.15248697,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=836; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={480.60538,195.70148,4107.2466}; + angles[]={0,5.8554473,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=837; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={480.11658,195.68109,4106.9751}; + angles[]={0,5.8554544,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=838; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={479.52765,195.61052,4109.4067}; + angles[]={0,5.8554544,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=839; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={479.03723,195.59392,4109.1343}; + angles[]={0,5.8554544,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=840; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={503.72278,196.02315,4010.7725}; + angles[]={0,4.9174657,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=844; + type="Land_PoleWall_01_pole_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={501.41348,195.96834,4011.7358}; + angles[]={0,4.9174657,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=845; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={501.34344,195.95792,4011.1797}; + angles[]={0,4.9174657,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=846; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={503.79324,196.03357,4011.3267}; + angles[]={0,4.9174657,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=847; + type="Land_PoleWall_01_pole_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={509.81772,196.24989,4013.031}; + angles[]={0,4.3372407,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=848; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={510.06296,196.24971,4012.5286}; + angles[]={0,4.3372478,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=849; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={507.60349,196.1674,4012.0684}; + angles[]={0,4.3372478,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=850; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={507.85019,196.16597,4011.5647}; + angles[]={0,4.3372478,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=851; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={562.66473,195.81839,4129.7349}; + angles[]={0,2.0009391,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=855; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={564.70093,195.99376,4128.2808}; + angles[]={0,2.0009391,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=856; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={564.89331,195.94661,4128.8076}; + angles[]={0,2.0009391,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=857; + type="Land_PoleWall_01_pole_F"; + atlOffset=4.5776367e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={562.47241,195.86435,4129.2104}; + angles[]={0,2.0009391,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=858; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={556.21948,195.74049,4128.8936}; + angles[]={0,1.4207141,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=859; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={556.09271,195.68555,4129.4385}; + angles[]={0,1.4207213,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=860; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={558.59271,195.75761,4129.3379}; + angles[]={0,1.4207213,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=861; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={558.4646,195.70432,4129.8838}; + angles[]={0,1.4207213,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=862; + type="Land_PoleWall_01_pole_F"; + atlOffset=4.5776367e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={696.74329,198.45828,4006.1948}; + angles[]={0,4.9174657,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=875; + type="Land_PoleWall_01_pole_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={694.43402,198.43425,4007.1582}; + angles[]={0,4.9174657,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=876; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={694.36401,198.43356,4006.6021}; + angles[]={0,4.9174657,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=877; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={696.81378,198.46175,4006.749}; + angles[]={0,4.9174657,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=878; + type="Land_PoleWall_01_pole_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={702.83826,198.55246,4008.4534}; + angles[]={0,4.3372407,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=879; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={703.0835,198.55565,4007.9509}; + angles[]={0,4.3372478,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=880; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={700.62402,198.51416,4007.4907}; + angles[]={0,4.3372478,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=881; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={700.87073,198.51357,4006.9871}; + angles[]={0,4.3372478,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=882; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={928.77893,201.79002,3991.8286}; + angles[]={0.054944519,1.4007171,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=701; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={874.27393,199.07393,4103.729}; + angles[]={0.049961641,3.8095396,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=887; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={880.18866,199.08986,4103.0376}; + angles[]={0.049953286,2.257093,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=889; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={880.42932,199.29382,4098.8428}; + angles[]={0.044966776,3.8095396,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=891; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={420.59143,195.55766,4043.3057}; + angles[]={0,5.0476227,0.0099949092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=898; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={416.71948,195.5071,4042.9131}; + angles[]={6.278194,0.94108993,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=899; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={417.61609,195.48853,4036.115}; + angles[]={6.278182,1.9047168,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=900; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=4.5776367e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={421.48755,195.53918,4036.5122}; + angles[]={6.278182,4.0811691,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=901; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={588.86731,198.2206,4031.0957}; + angles[]={0.0049914722,5.0476227,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=903; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={584.99536,198.19672,4030.7031}; + angles[]={0,0.94108993,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=904; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={585.89197,198.21173,4023.905}; + angles[]={0.0049914722,1.9047168,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=905; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=4.5776367e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={589.76343,198.24905,4024.3022}; + angles[]={0.0049914722,4.0811691,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=906; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={932.37152,201.65437,3992.3379}; + angles[]={0.059925474,2.8725381,0.01999305}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=713; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={478.00336,195.73808,4110.9287}; + angles[]={0.010000871,4.438664,0.044968102}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=843; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={506.00366,196.30673,4010.6262}; + angles[]={6.268187,2.9211726,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=854; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={560.47406,195.92802,4130.3867}; + angles[]={0.099666774,0.0031165364,0.020004973}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=865; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={699.02417,198.70284,4006.0486}; + angles[]={6.278194,2.9211726,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=885; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={877.50067,198.93105,4105.5239}; + angles[]={0.049953286,0.65535605,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=888; + type="Land_SPE_Sandbag_Nest"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={541.54352,214.8399,4124.2246}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=719; + type="Land_TTowerBig_1_F"; + atlOffset=1.5258789e-005; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={478.42825,195.70963,4114.2837}; + angles[]={0,3.2529809,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=841; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={479.86371,195.86195,4108.0879}; + angles[]={0,2.6727631,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=842; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item86 + { + dataType="Object"; + class PositionInfo + { + position[]={502.6756,196.209,4011.2266}; + angles[]={0,1.734774,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=852; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item87 + { + dataType="Object"; + class PositionInfo + { + position[]={508.93854,196.42349,4012.3345}; + angles[]={0,1.1545563,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=853; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item88 + { + dataType="Object"; + class PositionInfo + { + position[]={563.58429,196.1114,4129.0591}; + angles[]={0,5.1014333,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=863; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item89 + { + dataType="Object"; + class PositionInfo + { + position[]={557.23206,195.9303,4129.377}; + angles[]={0,4.5212154,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=864; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item90 + { + dataType="Object"; + class PositionInfo + { + position[]={695.69617,198.65901,4006.6489}; + angles[]={0,1.734774,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=883; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item91 + { + dataType="Object"; + class PositionInfo + { + position[]={701.95911,198.74728,4007.7568}; + angles[]={0,1.1545563,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=884; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item92 + { + dataType="Logic"; + class PositionInfo + { + position[]={519.23547,197.30968,4050.2791}; + }; + areaSize[]={10.883514,0,5.375}; + areaIsRectangle=1; + flags=1; + id=720; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.13597107; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item93 + { + dataType="Marker"; + position[]={453.6398,195.56248,4051.2153}; + name="airp_1_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=10.396377; + id=918; + }; + class Item94 + { + dataType="Marker"; + position[]={437.79871,195.39697,4050.6841}; + name="airp_1_vehicle_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=10.396377; + id=919; + }; + class Item95 + { + dataType="Object"; + class PositionInfo + { + position[]={556.30701,197.38765,4026.6079}; + angles[]={6.278194,0,0.014998405}; + }; + side="Empty"; + class Attributes + { + }; + id=915; + type="Land_HelipadEmpty_F"; + }; + class Item96 + { + dataType="Object"; + class PositionInfo + { + position[]={619.11932,197.92,4026.8477}; + angles[]={6.278194,0,0.014998405}; + }; + side="Empty"; + class Attributes + { + }; + id=916; + type="Land_HelipadEmpty_F"; + }; + class Item97 + { + dataType="Object"; + class PositionInfo + { + position[]={723.0321,198.71927,4029.2432}; + angles[]={6.278194,0,0.014998405}; + }; + side="Empty"; + class Attributes + { + }; + id=917; + type="Land_HelipadEmpty_F"; + }; + }; + id=330; + atlOffset=0.0014648438; + }; + class Item1 + { + dataType="Layer"; + name="airport_2"; + class Entities + { + items=63; + class Item0 + { + dataType="Marker"; + position[]={4180.2891,223.27652,3963.335}; + name="airp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=203.75656; + id=388; + }; + class Item1 + { + dataType="Marker"; + position[]={4198.3428,225.74899,4043.092}; + name="airport_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=108.659; + b=79.302002; + angle=25.867271; + id=389; + atlOffset=-0.064117432; + }; + class Item2 + { + dataType="Marker"; + position[]={4175.1216,222.9575,3955.7437}; + name="spawnPoint_2"; + type="hd_start"; + id=390; + }; + class Item3 + { + dataType="Marker"; + position[]={4174.6455,224.80806,4033.0107}; + name="airp_2_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=391; + }; + class Item4 + { + dataType="Marker"; + position[]={4251.2036,228.86,4005.7834}; + name="airp_2_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=920; + }; + class Item5 + { + dataType="Marker"; + position[]={4195.6064,225.8,4000.1665}; + name="airp_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=187.12627; + id=922; + }; + class Item6 + { + dataType="Marker"; + position[]={4196.521,225.79306,4017.3862}; + name="airp_2_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=209.82312; + id=923; + }; + class Item7 + { + dataType="Marker"; + position[]={4276.9653,228.11601,4016.6338}; + name="airp_2_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=55.86285; + id=924; + }; + class Item8 + { + dataType="Marker"; + position[]={4256.5737,228.10001,4020.1382}; + name="airp_2_vehicle_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=95.644196; + id=1008; + }; + class Item9 + { + dataType="Marker"; + position[]={4270.0996,228.10001,3999.1797}; + name="airp_2_vehicle_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=51.746475; + id=1009; + }; + class Item10 + { + dataType="Marker"; + position[]={4187.2441,225.69331,4050.1201}; + name="airp_2_vehicle_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=188.00298; + id=1010; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={4201.3745,226.75447,4116.46}; + angles[]={6.2731905,1.1019987,0.024986627}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=987; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={4193.353,226.57198,4117.2627}; + angles[]={6.2731905,2.6554077,0.024986627}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=988; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={4209.7246,226.59279,4130.8013}; + angles[]={0.039979152,1.895623,0.054944519}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=989; + type="Land_SPE_Element_c"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={4324.395,233.40773,4046.7334}; + angles[]={5.9689493,5.024291,0.12435512}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1006; + type="Land_SPE_Element_c"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={4310.8799,232.39694,4033.8489}; + angles[]={0.32774219,4.7689505,0.24026266}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1007; + type="Land_SPE_Element_c"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={4198.1948,228.05943,4112.4551}; + angles[]={6.278182,2.7297878,0.024996169}; + }; + side="Empty"; + class Attributes + { + createAsSimpleObject=1; + }; + id=990; + type="Land_SPE_Guardbox"; + atlOffset=0.6398468; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={4223.3403,227.36761,4114.541}; + angles[]={0,4.9816656,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=962; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={4221.0977,227.23653,4115.6504}; + angles[]={0,4.9816656,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=963; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={4220.9922,227.23401,4115.0996}; + angles[]={0,4.9816656,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=964; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={4223.4463,227.37123,4115.0894}; + angles[]={0,4.9816656,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=965; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={4209.3574,226.68747,4098.0073}; + angles[]={0,4.2038946,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=966; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={4209.667,226.68217,4097.5415}; + angles[]={0,4.2038946,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=967; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={4207.2905,226.5778,4096.7583}; + angles[]={0,4.2038946,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=968; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={4207.6021,226.57471,4096.2915}; + angles[]={0,4.2038946,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=969; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={4219.3618,227.14798,4115.3164}; + angles[]={0,4.9816656,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=972; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={4217.1191,227.0424,4116.4258}; + angles[]={0,4.9816656,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=973; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={4217.0137,227.03552,4115.875}; + angles[]={0,4.9816656,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=974; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={4219.4678,227.15327,4115.8647}; + angles[]={0,4.9816656,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=975; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={4273.2188,229.73849,4057.813}; + angles[]={0,2.868722,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=977; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={4273.4258,229.67616,4055.3196}; + angles[]={0,2.868722,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=978; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={4273.9517,229.60477,4055.5134}; + angles[]={0,2.868722,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=979; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={4272.6943,229.78256,4057.6208}; + angles[]={0,2.868722,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=980; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={4274.8018,229.51717,4052.4844}; + angles[]={0,2.8780918,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=982; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={4274.9854,229.51991,4049.989}; + angles[]={0,2.8780918,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=983; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={4275.5132,229.52881,4050.178}; + angles[]={0,2.8780918,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=984; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={4274.2754,229.58069,4052.2971}; + angles[]={0,2.8780918,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=985; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={4204.1646,226.43513,4095.5486}; + angles[]={0,4.4086876,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=996; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={4204.373,226.41853,4095.0295}; + angles[]={0,4.4086876,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=997; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={4201.8872,226.35374,4094.7461}; + angles[]={0,4.4086876,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=998; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={4202.0972,226.33972,4094.2256}; + angles[]={0,4.4086876,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=999; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={4173.7192,225.78864,4099.4297}; + angles[]={0,1.7650218,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1001; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={4173.7842,225.79337,4099.9854}; + angles[]={0,1.7650218,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1002; + type="Land_PoleWall_01_pole_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={4176.104,225.84772,4099.0474}; + angles[]={0,1.7650218,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1003; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={4176.168,225.8521,4099.6045}; + angles[]={0,1.7650218,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1004; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={4175.6313,225.1441,3975.2515}; + angles[]={6.105092,4.4742751,0.034989785}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=934; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={4193.5913,225.77879,3974.115}; + angles[]={6.2182741,1.1325737,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=935; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={4193.0449,225.20999,3968.2244}; + angles[]={6.1489944,5.8620338,0.064910568}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=936; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=4.5776367e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={4199.8101,226.69287,4115.6831}; + angles[]={6.2731848,2.6551845,0.029995665}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=991; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={4193.8994,226.5593,4115.9521}; + angles[]={6.2731848,1.1027673,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=992; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={4194.5415,226.52528,4109.1714}; + angles[]={0,4.2547913,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=993; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={4197.9707,226.61484,4110.7578}; + angles[]={6.278182,4.2547741,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=994; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={4179.2344,225.27812,3975.9014}; + angles[]={6.1294107,2.8725381,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=939; + type="Land_SPE_Sandbag_Nest"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={4191.1748,225.42174,3971.6741}; + angles[]={6.19839,4.2617888,0.069885373}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=940; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={4197.2583,226.61212,4117.9824}; + angles[]={6.2681789,5.7841911,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=995; + type="Land_SPE_Sandbag_Nest"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={4222.3247,227.51451,4115.061}; + angles[]={0,1.7989742,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=970; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={4208.5781,226.84367,4097.1997}; + angles[]={0,1.0212033,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=971; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={4218.3462,227.30763,4115.8364}; + angles[]={0,1.7989742,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=976; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={4273.2974,229.90872,4056.6748}; + angles[]={0,5.9692159,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=981; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={4274.8696,229.77393,4051.3455}; + angles[]={0,5.9785857,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=986; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={4203.2373,226.5979,4094.9163}; + angles[]={0,1.2259963,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1000; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={4174.8359,226.02892,4099.5425}; + angles[]={0,4.8655157,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1005; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item62 + { + dataType="Logic"; + class PositionInfo + { + position[]={4183.2329,224.32779,3970.7827}; + angles[]={6.2232599,0,0.024996169}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=921; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=338; + atlOffset=-0.35786438; + }; + class Item2 + { + dataType="Layer"; + name="airport_3"; + class Entities + { + items=86; + class Item0 + { + dataType="Marker"; + position[]={1463.1959,122.33348,977.56879}; + name="airp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.151976; + b=5; + angle=256.48557; + id=395; + atlOffset=-0.63376617; + }; + class Item1 + { + dataType="Marker"; + position[]={1443.0432,122.65024,962.6568}; + name="airport_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=102.934; + b=101.526; + angle=349.62659; + id=396; + atlOffset=1.2938766; + }; + class Item2 + { + dataType="Marker"; + position[]={1437.2277,121.59135,991.6123}; + name="spawnPoint_3"; + type="hd_start"; + id=397; + atlOffset=0.00050354004; + }; + class Item3 + { + dataType="Marker"; + position[]={1403.4194,120.39378,986.68512}; + name="airp_3_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=2; + b=2; + id=398; + atlOffset=1.5258789e-005; + }; + class Item4 + { + dataType="Marker"; + position[]={1437.4562,123.23821,1012.1019}; + name="airp_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=4.8189025; + b=5; + angle=78.389221; + id=1206; + atlOffset=-7.6293945e-006; + }; + class Item5 + { + dataType="Marker"; + position[]={1427.5863,123.6505,1026.3818}; + name="airp_3_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=4.8189025; + b=5; + angle=92.319519; + id=1208; + }; + class Item6 + { + dataType="Marker"; + position[]={1445.2465,121.69518,973.7627}; + name="airp_3_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=4.8189025; + b=5; + angle=77.41214; + id=1236; + atlOffset=7.6293945e-006; + }; + class Item7 + { + dataType="Marker"; + position[]={1417.5865,116.35854,915.82056}; + name="airp_3_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=2; + b=2; + id=1280; + atlOffset=7.6293945e-006; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={1429.886,120.27773,873.82526}; + angles[]={6.2631865,6.0937796,0.069885373}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1269; + type="Land_SPE_Netting_02"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={1419.6265,119.25688,873.6084}; + angles[]={0.0049914722,6.1951184,0.064910568}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1270; + type="Land_SPE_Netting_02"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={1405.155,118.22398,870.60394}; + angles[]={0.069885373,0.13300116,0.1095605}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1271; + type="Land_SPE_Netting_02"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={1374.0573,116.9731,889.73181}; + angles[]={6.2731848,4.257391,6.2232561}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1272; + type="Land_SPE_Netting_02"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={1349.4055,119.69933,1015.6196}; + angles[]={6.2033577,2.5209379,0.099667378}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1273; + type="Land_SPE_Netting_02"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={1443.8254,124.58804,1045.8922}; + angles[]={6.2531977,0,0.049956869}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1212; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={1441.9608,124.64095,1051.0902}; + angles[]={6.2531958,0,0.044968102}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1213; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={1493.9818,127.37297,1039.0105}; + angles[]={6.278194,0,0.11449444}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1214; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={1480.5854,126.80584,1040.373}; + angles[]={6.2531958,0,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1215; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={1475.3633,126.75228,1043.8186}; + angles[]={6.2531958,0,0.034986377}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1216; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={1464.8322,126.1917,1042.976}; + angles[]={6.2531919,0,0.074860819}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1217; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={1454.4117,125.46702,1048.6652}; + angles[]={6.2531958,0,0.08975438}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1218; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={1451.5477,125.25432,1049.7583}; + angles[]={6.2531919,0,0.084799528}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1219; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={1449.2245,125.14513,1052.5719}; + angles[]={6.2531958,0,0.07983166}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1220; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={1423.5353,124.22903,1040.9963}; + angles[]={0.024991399,0,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1221; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={1413.5975,124.13467,1039.0188}; + angles[]={0.015002378,0,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1222; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={1404.4432,123.592,1038.5233}; + angles[]={0.18293318,0,0.064906895}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1223; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={1384.2634,122.25845,1030.2878}; + angles[]={0.010000871,0,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1224; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={1373.9736,121.41546,1022.0796}; + angles[]={6.19839,0,0.049958061}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1225; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={1349.7485,119.29829,1021.2068}; + angles[]={6.248199,0,0.13419099}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1226; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={1340.4111,118.04393,1019.8459}; + angles[]={6.2631893,0,0.089758366}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1227; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={1468.7106,121.64146,881.50726}; + angles[]={6.2631865,0,0.029993678}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1228; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={1463.1572,121.408,879.30121}; + angles[]={6.2382174,0,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1229; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={1456.9597,120.99097,882.82819}; + angles[]={0.049958061,0,0.064907812}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1230; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={1446.7765,120.39528,881.52374}; + angles[]={0.099666774,0,0.099670969}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1231; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={1440.9364,120.22535,876.73291}; + angles[]={0.044972081,0,0.1046163}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1232; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={1426.0365,118.96532,878.12225}; + angles[]={0.14889148,0,0.099666774}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1233; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={1406.9363,117.2818,874.66608}; + angles[]={0.11942752,0,0.12927616}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1234; + type="Land_SPE_HedgeHog"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={1423.3108,121.14446,962.57965}; + angles[]={0,4.5807714,6.2332287}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1199; + type="Land_SPE_maintenanceCrane"; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={1387.7924,122.93672,1003.8405}; + angles[]={6.2581916,0,0.054941263}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1196; + type="Land_SPE_Tent_01"; + atlOffset=0.0029449463; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={1417.2908,121.40974,954.09039}; + angles[]={6.1391888,0,0.059929453}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1197; + type="Land_SPE_Tent_01"; + atlOffset=-7.6293945e-006; + }; + class Item39 + { + dataType="Logic"; + class PositionInfo + { + position[]={1463.4987,123.05708,978.2467}; + angles[]={6.2132993,4.4765177,0.13909525}; + }; + areaSize[]={16.928453,0,7.3594303}; + areaIsRectangle=1; + flags=1; + id=1205; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item40 + { + dataType="Logic"; + class PositionInfo + { + position[]={1436.4617,123.46382,1017.8542}; + angles[]={6.2132993,4.4765177,0.13909525}; + }; + areaSize[]={11.180687,0,4.1208277}; + areaIsRectangle=1; + flags=1; + id=1207; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.051948547; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item41 + { + dataType="Logic"; + class PositionInfo + { + position[]={1438.8409,125.28233,977.46698}; + angles[]={0,4.4765248,0}; + }; + areaSize[]={12.325,0,10.57}; + areaIsRectangle=1; + flags=1; + id=1235; + type="ModuleHideTerrainObjects_F"; + atlOffset=4.0230103; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=3; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={1427.1772,126.31537,990.3399}; + angles[]={0,6.1048861,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1275; + type="Land_Radar_01_HQ_F"; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={1468.5425,122.07696,884.30609}; + angles[]={0.044970755,4.5929337,0.034984674}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1241; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={1451.97,121.03832,883.61743}; + angles[]={0.12927616,4.5929337,0.10461573}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1242; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={1433.8782,119.99063,879.05164}; + angles[]={0.13418743,4.6024108,0.074860819}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1243; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={1415.4578,118.52409,876.2301}; + angles[]={0.089758366,4.5929337,0.10461573}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1244; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={1396.4836,116.69812,872.05127}; + angles[]={0.044968102,4.3324404,0.079832405}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1245; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={1383.0006,116.26876,876.3703}; + angles[]={0.034986377,2.1359413,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1246; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={1370.6261,116.57294,900.93677}; + angles[]={0.029989703,5.871655,6.2182784}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1247; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=-7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={1364.21,117.11597,914.71161}; + angles[]={0.039980642,5.7550945,6.1539092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1248; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=-7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={1346.0548,115.99706,931.6156}; + angles[]={6.2631893,5.9753256,0.054944519}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1249; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={1343.0104,118.66547,1016.1395}; + angles[]={6.2631893,3.8709388,0.089758366}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1250; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={1356.9298,120.5278,1019.4066}; + angles[]={6.134294,4.5929337,0.069889642}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1251; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=-7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={1381.4302,122.41005,1025.3939}; + angles[]={6.1539092,3.9512534,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1252; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={1393.6324,123.01604,1026.9752}; + angles[]={6.1050959,4.5929337,0.084795304}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1253; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={1455.5763,125.92458,1045.0323}; + angles[]={6.2531958,2.0295484,0.089758366}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1254; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={1469.1102,126.84254,1040.3245}; + angles[]={6.2531939,4.5929337,0.054944519}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1255; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={1485.0225,127.26721,1036.6637}; + angles[]={6.2531958,4.8337212,0.024991399}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1256; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={1496.3975,128.0163,1031.5754}; + angles[]={6.2382174,5.5297918,0.13418743}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1257; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={1499.4136,128.04759,1022.631}; + angles[]={6.2631865,6.0681367,0.16352773}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1258; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={1516.5356,127.21124,981.25958}; + angles[]={6.1686912,6.1359181,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1259; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={1514.0712,127.64583,992.43713}; + angles[]={0.024993783,2.495121,6.2132993}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1260; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={1508.8065,128.13165,1003.7338}; + angles[]={6.134294,6.1184587,6.2581892}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1261; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={1485.0237,124.21013,944.44452}; + angles[]={6.1884718,2.8437181,0.25436646}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1262; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={1493.7437,124.91611,928.96161}; + angles[]={6.2432094,2.8081586,0.24497873}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1263; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=-7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={1499.9734,125.52587,911.06781}; + angles[]={0.010006829,3.0394213,0.19258296}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1264; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={1503.3635,125.03553,893.96387}; + angles[]={0.07983166,3.173027,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1265; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={1497.9325,123.7289,883.98596}; + angles[]={6.1391888,4.5929337,0.15865518}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1266; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={1403.4014,122.0922,993.2337}; + angles[]={6.0382066,4.5929337,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1276; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={1403.8374,121.58406,982.03802}; + angles[]={0.094716646,4.5929337,0.024991399}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1277; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={1409.4358,122.02435,987.7348}; + angles[]={6.2332273,0.070623554,0.21654786}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1278; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={1398.1292,121.66203,987.08997}; + angles[]={6.2332287,6.1767669,6.1736255}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1279; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={1416.5144,118.52396,922.65948}; + angles[]={6.1934271,4.5929337,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1281; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={1417.9834,118.26118,909.73529}; + angles[]={0.074860819,4.5929337,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1282; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={1424.26,118.82596,916.6264}; + angles[]={6.2332273,0.070623554,0.16352773}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1283; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={1410.6725,118.14854,917.2168}; + angles[]={6.2581916,6.1767669,6.2332239}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1284; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={1427.2578,124.39718,1033.6711}; + angles[]={6.22824,0.23303458,0.06988623}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1200; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={1503.9772,128.52206,1019.3284}; + angles[]={6.278194,1.0051401,0.07983166}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1201; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={1509.0924,126.42385,960.38}; + angles[]={6.2182775,2.4852731,0.074860021}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1202; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={1405.2754,119.30025,949.79468}; + angles[]={6.2133002,3.7167695,0.044970755}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1203; + type="Land_SPE_Sandbag_Nest"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={1396.8469,123.77256,1033.218}; + angles[]={6.1245303,5.7326336,0.094712868}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1204; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={1464.4935,122.04955,949.25305}; + angles[]={6.2631893,3.0603366,0.034989785}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1209; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={1452.4235,121.78384,949.90729}; + angles[]={6.2631865,2.4878953,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1210; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={1444.4659,124.83848,1038.7767}; + angles[]={6.2531939,6.0330105,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1211; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={1462.7634,122.20458,882.16132}; + angles[]={0.049958061,3.0783329,0.06988623}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1268; + type="Land_SPE_Netting_02"; + }; + }; + id=346; + atlOffset=1.0173798; + }; + class Item3 + { + dataType="Layer"; + name="airport_4"; + class Entities + { + items=20; + class Item0 + { + dataType="Marker"; + position[]={5102.1108,308.85199,2579.8271}; + name="airport_4"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorEAST"; + a=97.778; + b=170.55605; + id=403; + atlOffset=0.49465942; + }; + class Item1 + { + dataType="Marker"; + position[]={5120.7441,310.08038,2560.0112}; + name="spawnPoint_4"; + type="hd_start"; + id=404; + atlOffset=0.00048828125; + }; + class Item2 + { + dataType="Marker"; + position[]={5092.4072,305.91003,2508.9797}; + name="airp_4_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + id=1018; + atlOffset=3.0517578e-005; + }; + class Item3 + { + dataType="Marker"; + position[]={5124.668,307.28003,2662.3215}; + name="airp_4_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + id=1019; + atlOffset=3.0517578e-005; + }; + class Item4 + { + dataType="Marker"; + position[]={5122.5161,308.87112,2491.3018}; + name="airp_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=334.47586; + id=1020; + }; + class Item5 + { + dataType="Marker"; + position[]={5113.0581,308.10855,2486.396}; + name="airp_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=334.3678; + id=1021; + + }; + class Item6 + { + dataType="Marker"; + position[]={5089.2319,306.75201,2483.1746}; + name="airp_4_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=8.2509308; + id=1022; + }; + class Item7 + { + dataType="Marker"; + position[]={5116.2344,308.06021,2603.4702}; + name="airp_4_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=264.45648; + id=1024; + }; + class Item8 + { + dataType="Marker"; + position[]={5110.3013,307.61334,2662.7334}; + name="airp_4_vehicle_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=270.07217; + id=1026; + }; + class Item9 + { + dataType="Logic"; + class PositionInfo + { + position[]={5116.3345,308.07013,2603.4417}; + angles[]={0.014998405,4.6104298,0.094716646}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1025; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Logic"; + class PositionInfo + { + position[]={5110.3984,307.61493,2662.6951}; + angles[]={6.2731905,4.7083945,0.019999012}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1027; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={5120.2207,309.5025,2738.9463}; + angles[]={0.0050033992,0.7778632,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1011; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={5130.394,309.08392,2692.8833}; + angles[]={6.2382174,1.231956,6.1245265}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1012; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={5153.5596,308.57968,2592.9463}; + angles[]={0.019783247,1.3853396,6.1486826}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1013; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={5143.0059,309.80396,2513.0632}; + angles[]={0.034974448,1.3217608,6.100256}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1014; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={5076.8687,305.67258,2488.5947}; + angles[]={0.014998405,5.8620005,0.11942402}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1015; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={5078.8809,304.43579,2570.8813}; + angles[]={0.029989703,5.1745901,0.2069986}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1016; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={5124.8657,309.71838,2502.0012}; + angles[]={6.1835108,6.1526055,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1017; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Logic"; + class PositionInfo + { + position[]={5089.1802,306.75339,2483.084}; + angles[]={0.034993853,0.13995159,0.034993853}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1023; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item19 + { + dataType="Logic"; + class PositionInfo + { + position[]={5111.4766,308.42929,2478.9048}; + }; + areaSize[]={3.7929688,0,12.4198}; + flags=1; + id=2324; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.1885376; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=354; + atlOffset=0.051727295; + }; + class Item4 + { + dataType="Layer"; + name="airport_5"; + class Entities + { + items=92; + class Item0 + { + dataType="Marker"; + position[]={4140.856,266.07999,7532.8584}; + name="airp_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=96.581024; + id=409; + }; + class Item1 + { + dataType="Marker"; + position[]={4175.2808,270.9068,7519.0933}; + name="airport_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=154.80121; + b=117.77638; + id=410; + atlOffset=-3.0517578e-005; + }; + class Item2 + { + dataType="Marker"; + position[]={4165.0752,266.48535,7532.8975}; + name="spawnPoint_5"; + type="hd_start"; + id=411; + }; + class Item3 + { + dataType="Marker"; + position[]={4054.5522,265.31409,7501.439}; + name="airp_5_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=2; + b=2; + id=412; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={4226.9614,275.75482,7541.208}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=911; + type="Land_Radar_01_airshaft_F"; + atlOffset=6.1035156e-005; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={4224.8521,293.62033,7541.7275}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=912; + type="Land_TTowerBig_1_F"; + }; + class Item6 + { + dataType="Marker"; + position[]={4197.3301,275.48999,7493.1343}; + name="airp_5_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=10.580712; + b=5; + angle=28.969177; + id=1074; + }; + class Item7 + { + dataType="Marker"; + position[]={4233.6226,276.62549,7483.208}; + name="airp_5_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=286.8663; + id=1078; + atlOffset=3.0517578e-005; + }; + class Item8 + { + dataType="Marker"; + position[]={4160.4824,265.68439,7555.4751}; + name="airp_5_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=2; + b=2; + id=1190; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={4179.812,264.50647,7623.7295}; + angles[]={6.2182751,5.1334143,0.084803045}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1178; + type="Land_SPE_Sandbag_Short"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Logic"; + class PositionInfo + { + position[]={4140.9224,266.07999,7532.9497}; + angles[]={0,1.67295,0}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1073; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Logic"; + class PositionInfo + { + position[]={4197.7666,275.46121,7494.2227}; + angles[]={0.0050033992,1.9934878,6.278182}; + }; + areaSize[]={9.3589916,0,10.851587}; + areaIsRectangle=1; + flags=1; + id=1075; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.026550293; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item12 + { + dataType="Logic"; + class PositionInfo + { + position[]={4233.541,276.6217,7483.1299}; + angles[]={0.029989703,4.9940567,0.074856833}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1079; + type="ModuleHideTerrainObjects_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={4299.4326,279.81964,7442.2451}; + angles[]={6.2382174,4.1361341,0.064911485}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1080; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={4296.9302,279.31689,7434.7104}; + angles[]={6.2332239,5.6897001,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1081; + type="Land_SPE_BarbedWire_04"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={4315.7896,281.62305,7448.2515}; + angles[]={6.2282476,4.1547394,0.12435465}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1082; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={4323.8511,281.88608,7448.3184}; + angles[]={6.2282486,5.692234,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1083; + type="Land_SPE_BarbedWire_04"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={4289.9878,279.02548,7436.0117}; + angles[]={6.2382188,4.1361341,0.044966776}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1132; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={4293.4575,279.04718,7432.9761}; + angles[]={6.2332239,3.0233922,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1133; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={4143.1245,272.84912,7426.1294}; + angles[]={0.034988083,5.0028944,0.024986627}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1134; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={4135.7593,272.76871,7423.1655}; + angles[]={0.034988083,0.27359235,0.024986627}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1135; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={4132.2622,272.45999,7429.3027}; + angles[]={0.039971694,5.0031052,0.024989013}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1142; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={4132.1904,272.63507,7424.6929}; + angles[]={0.034989785,3.89047,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1143; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={4117.0317,260.69315,7603.3809}; + angles[]={0.064911485,6.0426474,0.074856833}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1184; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={4112.354,260.43192,7602.3804}; + angles[]={0.069878548,6.0397501,0.064910568}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1185; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={4114.3096,261.43817,7589.7993}; + angles[]={0.069893055,3.6389153,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1186; + type="Land_SPE_BarbedWire_04"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={4110.1763,261.00369,7592.4321}; + angles[]={0.074856833,3.6494026,0.059940398}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1187; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={4106.9775,260.68118,7594.2417}; + angles[]={0.074872769,3.6560419,0.054938007}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1188; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={4324.9067,281.26093,7445.7524}; + angles[]={6.2282486,0.4437058,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1084; + type="Land_SPE_Element_c"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={4285.1016,278.52066,7439.9243}; + angles[]={6.2382174,0.41438708,0.039973188}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1085; + type="Land_SPE_Element_c"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={4217.0093,273.05005,7560.5498}; + angles[]={0.18292925,1.4135059,0.18776457}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1189; + type="Land_SPE_Element_c"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={4292.7056,279.99918,7437.4292}; + angles[]={6.2332239,4.2074943,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1086; + type="Land_SPE_Guardbox"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={4318.5195,282.77148,7452.5757}; + angles[]={6.268187,5.7637429,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1087; + type="Land_SPE_Guardbox"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={4135.1011,273.62762,7428.146}; + angles[]={0.039971694,5.0765338,0.025003321}; + }; + side="Empty"; + class Attributes + { + createAsSimpleObject=1; + }; + id=1136; + type="Land_SPE_Guardbox"; + atlOffset=0.27349854; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={4088.0327,266.07382,7539.8828}; + angles[]={0,1.1007115,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1144; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={4090.437,266.39816,7540.5742}; + angles[]={0,1.1007115,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1145; + type="Land_PoleWall_01_pole_F"; + atlOffset=0.13806152; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={4090.1443,266.26382,7541.0522}; + angles[]={0,1.1007115,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1146; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={4088.3245,266.05942,7539.4063}; + angles[]={0,1.1007115,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1147; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={4043.2522,265.02832,7509.8584}; + angles[]={0,0.88002616,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1155; + type="Land_PoleWall_01_pole_F"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={4045.447,265.064,7511.0596}; + angles[]={0,0.88002616,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1156; + type="Land_PoleWall_01_pole_F"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={4045.0566,265.0195,7511.4614}; + angles[]={0,0.88002616,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1157; + type="Land_PoleWall_01_pole_F"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={4043.6409,265.07309,7509.457}; + angles[]={0,0.88002616,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1158; + type="Land_PoleWall_01_pole_F"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={4041.207,265.15308,7503.6885}; + angles[]={0,0.29980117,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1159; + type="Land_PoleWall_01_pole_F"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={4040.6614,265.16864,7503.8115}; + angles[]={0,0.29980832,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1160; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={4041.8384,265.17957,7506.019}; + angles[]={0,0.29980832,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1161; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={4041.291,265.13541,7506.1411}; + angles[]={0,0.29980832,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1162; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={4171.1016,264.42941,7606.5518}; + angles[]={0,4.7841125,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1166; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={4168.6851,264.19675,7607.1992}; + angles[]={0,4.7841125,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1167; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={4168.6895,264.23352,7606.6387}; + angles[]={0,4.7841125,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1168; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={4171.0977,264.38998,7607.1104}; + angles[]={0,4.7841125,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1169; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={4176.8423,264.69943,7609.6006}; + angles[]={0,4.2038875,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1170; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={4177.1519,264.75833,7609.1348}; + angles[]={0,4.2038946,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1171; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={4174.7759,264.61124,7608.3516}; + angles[]={0,4.2038946,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1172; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={4175.0874,264.67035,7607.8853}; + angles[]={0,4.2038946,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1173; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={4108.5195,260.53461,7596.1338}; + angles[]={0.069893055,5.2859983,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1179; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={4110.2236,260.3736,7599.9106}; + angles[]={0.069878548,4.4926887,0.064910568}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1180; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={4115.9595,260.68387,7600.9443}; + angles[]={0.069877692,4.627305,0.069893055}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1182; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={4114.9414,261.22427,7592.0718}; + angles[]={0.069893055,5.2136302,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1183; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={4298.0864,279.66702,7441.104}; + angles[]={6.2382174,5.6892838,0.064911485}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1109; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={4292.0977,279.43405,7443.1855}; + angles[]={6.2432137,1.0058752,0.049946126}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1110; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={4291.5659,279.09955,7436.3853}; + angles[]={6.2382026,5.7678432,0.044982687}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1111; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={4295.6318,279.27539,7435.6782}; + angles[]={6.2332239,4.137042,0.054953203}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1112; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={4317.2617,281.74921,7449.1934}; + angles[]={6.2033539,5.7053938,0.064911485}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1113; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={4323.1665,281.95438,7449.5625}; + angles[]={6.2282486,4.1377745,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1114; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={4321.7974,282.11267,7456.2349}; + angles[]={6.2232599,1.0050313,0.064895861}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1115; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={4318.5591,281.97723,7454.2871}; + angles[]={0.069877692,1.0060564,0.0099949092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1116; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={4056.3179,265.79218,7504.2183}; + angles[]={0.029989703,5.0476227,0.084803045}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1117; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={4052.4458,265.51947,7503.8257}; + angles[]={0.049961641,0.94108993,0.064911485}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1118; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={4052.8008,265.79654,7498.3901}; + angles[]={0.074856833,1.9047168,0.1046123}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1119; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={4056.6724,266.10062,7498.7871}; + angles[]={0.069877692,4.0811691,0.1095605}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1120; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={4141.3838,272.78171,7426.418}; + angles[]={0.034974448,0.27298939,0.025003321}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1137; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={4139.0986,272.50137,7432.3325}; + angles[]={0.039971694,1.8726355,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1138; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={4133.5679,272.5173,7428.3403}; + angles[]={0.039971694,0.35158288,0.024989013}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1139; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={4135.6577,272.6958,7424.7817}; + angles[]={0.034974448,5.0039673,0.025003321}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1140; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={4162.248,266.31454,7558.2544}; + angles[]={6.1835108,5.0476227,0.069893055}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1191; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={4158.376,266.26852,7557.8618}; + angles[]={6.2282333,0.94108993,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1192; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={4158.7314,266.1868,7552.4263}; + angles[]={0.034972742,1.9047168,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1193; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={4162.6025,266.224,7552.8232}; + angles[]={0.034972742,4.0811691,0.034988083}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1194; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={4298.8169,279.50308,7437.4849}; + angles[]={6.2382174,2.5352476,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1121; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={4320.0464,281.68182,7447.1826}; + angles[]={6.2282486,2.5353465,6.2731786}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1122; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={4139.0952,272.77899,7423.5205}; + angles[]={0.029989703,3.4021726,0.024989013}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1141; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={4085.7905,265.93451,7538.7544}; + angles[]={0.014998405,5.2809572,0.14888383}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1152; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={4041.7126,265.20819,7508.1689}; + angles[]={0.11942402,5.1692705,0.13419813}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1163; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={4182.5938,265.01672,7623.2549}; + angles[]={6.2631836,0.21232384,6.2232599}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1174; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={4106.6709,260.28152,7598.6128}; + angles[]={0.074856833,5.0323429,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1181; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={4089.134,266.09753,7540.1831}; + angles[]={0,4.2011995,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1153; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + atlOffset=-0.29998779; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item86 + { + dataType="Object"; + class PositionInfo + { + position[]={4044.2607,265.27518,7510.3926}; + angles[]={0,3.9805202,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1164; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item87 + { + dataType="Object"; + class PositionInfo + { + position[]={4041.2124,265.34705,7504.8105}; + angles[]={0,3.4003026,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1165; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item88 + { + dataType="Object"; + class PositionInfo + { + position[]={4170.0034,264.53021,7606.8623}; + angles[]={0,1.601421,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1175; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item89 + { + dataType="Object"; + class PositionInfo + { + position[]={4176.0635,264.90021,7608.793}; + angles[]={0,1.0212033,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1176; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item90 + { + dataType="Logic"; + class PositionInfo + { + position[]={4227.2798,275.66803,7497}; + }; + areaSize[]={6.4941406,0,8.6408691}; + flags=1; + id=2323; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.12402344; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item91 + { + dataType="Logic"; + class PositionInfo + { + position[]={4214.041,275.39163,7505.957}; + angles[]={0.099675752,0,6.1343088}; + }; + areaSize[]={9.0510254,0,9.9414063}; + areaIsRectangle=1; + flags=1; + id=2322; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.14117432; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=362; + atlOffset=-0.56848145; + }; + class Item5 + { + dataType="Layer"; + name="airport_6"; + class Entities + { + items=43; + class Item0 + { + dataType="Marker"; + position[]={7714.3433,288.03586,6364.0029}; + name="airp_6_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=209.5211; + id=423; + atlOffset=2.6858521; + }; + class Item1 + { + dataType="Marker"; + position[]={7779.603,290.64993,6447.6094}; + name="airport_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorEAST"; + a=73.351654; + b=122.10732; + angle=21.673447; + id=424; + atlOffset=-3.0517578e-005; + }; + class Item2 + { + dataType="Marker"; + position[]={7772.0835,285.55835,6379.939}; + name="spawnPoint_6"; + type="hd_start"; + id=425; + atlOffset=0.00048828125; + }; + class Item3 + { + dataType="Marker"; + position[]={7745.7217,285.37,6375.0981}; + name="airp_6_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=426; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={7805.8818,287.89844,6411.375}; + angles[]={0,2.0508587,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=909; + type="Land_Radar_01_airshaft_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={7804.251,306.01898,6412.8101}; + angles[]={0,0.4800624,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=910; + type="Land_TTowerBig_1_F"; + }; + class Item6 + { + dataType="Marker"; + position[]={7709.8213,290.11029,6412.3008}; + name="airp_6_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=290.93286; + id=1029; + atlOffset=2.6858215; + }; + class Item7 + { + dataType="Marker"; + position[]={7721.1069,295.82944,6442.3423}; + name="airp_6_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=17.031616; + id=1031; + atlOffset=2.6858521; + }; + class Item8 + { + dataType="Marker"; + position[]={7789.8511,291.36307,6424.0972}; + name="airp_6_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=354.51385; + id=1033; + atlOffset=2.6858521; + }; + class Item9 + { + dataType="Marker"; + position[]={7829.1772,292.78586,6479.7207}; + name="airp_6_vehicle_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=307.60437; + id=1035; + atlOffset=2.6858521; + }; + class Item10 + { + dataType="Marker"; + position[]={7760.2207,290.71808,6473.2173}; + name="airp_6_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=1044; + }; + class Item11 + { + dataType="Marker"; + position[]={7727.1812,288.03177,6373.269}; + name="airp_6_vehicle_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=210.20341; + id=1069; + atlOffset=2.6858521; + }; + class Item12 + { + dataType="Marker"; + position[]={7718.3794,288.51871,6397.9937}; + name="airp_6_vehicle_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=304.82361; + id=1071; + atlOffset=2.7371826; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={7788.126,290.12,6499.6367}; + angles[]={0,0.081460595,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1039; + type="Land_HelipadEmpty_F"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={7736.8452,286.47797,6389.2266}; + }; + side="Empty"; + class Attributes + { + }; + id=1041; + type="Land_HelipadEmpty_F"; + atlOffset=0.96237183; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={7688.5938,285.82687,6401.6191}; + angles[]={6.2332392,3.2463951,0.0099949092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1050; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={7690.6504,286.16696,6405.4492}; + angles[]={6.1934156,1.0072256,0.010006829}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1051; + type="Land_SPE_Sandbag_Short"; + atlOffset=6.1035156e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={7801.5215,288.5043,6430.5693}; + angles[]={6.2033539,5.0473108,6.223259}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1053; + type="Land_SPE_Sandbag_Short"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={7801.8926,288.13867,6426.5806}; + angles[]={6.1934166,3.4837689,6.2232599}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1054; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={7697.9556,285.35724,6361.2725}; + angles[]={0.0099949092,1.6632763,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1056; + type="Land_SPE_Sandbag_Short"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={7696.6377,285.32471,6365.0557}; + angles[]={0.0049795164,0.099747539,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1057; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={7787.4561,290.13272,6539.4443}; + angles[]={0,1.8516372,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1059; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={7786.8696,290.16269,6543.4072}; + angles[]={6.278182,0.28809476,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1060; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={7818.5894,290.16266,6559.1196}; + angles[]={6.278182,5.0473108,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1062; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={7821.269,290.14368,6556.1802}; + angles[]={0,3.2433589,6.2782059}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1063; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={7816.4956,290.17642,6559.7778}; + angles[]={6.278182,5.0473108,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1065; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item26 + { + dataType="Logic"; + class PositionInfo + { + position[]={7714.5029,285.35016,6363.9668}; + angles[]={0.0049795164,3.6567926,0}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1028; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item27 + { + dataType="Logic"; + class PositionInfo + { + position[]={7710.019,287.465,6412.4995}; + angles[]={6.0954213,5.0776925,0.0050152978}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1030; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item28 + { + dataType="Logic"; + class PositionInfo + { + position[]={7720.9434,293.15509,6442.3428}; + angles[]={6.1637464,0.29722947,6.2133079}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1032; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item29 + { + dataType="Logic"; + class PositionInfo + { + position[]={7789.1729,288.76822,6424.6895}; + angles[]={6.1983833,6.1874409,6.2232599}; + }; + areaSize[]={5.3300924,0,5}; + areaIsRectangle=1; + flags=1; + id=1034; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item30 + { + dataType="Logic"; + class PositionInfo + { + position[]={7829.1191,290.10001,6479.5679}; + angles[]={0,5.3686967,0}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1036; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item31 + { + dataType="Logic"; + class PositionInfo + { + position[]={7785.9453,290.12,6499.8853}; + angles[]={0,3.6274357,0}; + }; + areaSize[]={10.797195,0,13.510096}; + flags=1; + id=1040; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item32 + { + dataType="Logic"; + class PositionInfo + { + position[]={7735.6411,285.4523,6386.938}; + angles[]={6.268187,3.545619,0.0050033992}; + }; + areaSize[]={7,0,9.5585699}; + flags=1; + id=1042; + type="ModuleHideTerrainObjects_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item33 + { + dataType="Logic"; + class PositionInfo + { + position[]={7745.6792,285.37,6375.1577}; + angles[]={0,3.545619,0}; + }; + areaSize[]={3,0,3}; + flags=1; + id=1043; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item34 + { + dataType="Logic"; + class PositionInfo + { + position[]={7760.1782,290.71725,6473.2769}; + angles[]={0,3.545619,0}; + }; + areaSize[]={3,0,3}; + flags=1; + id=1045; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item35 + { + dataType="Logic"; + class PositionInfo + { + position[]={7818.9854,290.14496,6555.0835}; + angles[]={0,4.8665667,0}; + }; + areaSize[]={8.3816586,0,3.0170829}; + areaIsRectangle=1; + flags=1; + id=1064; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.00045776367; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={7821.3628,290.64212,6561.3188}; + angles[]={6.278182,0.36480758,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1067; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={7782.7051,290.65109,6543.8154}; + angles[]={6.278182,2.7464881,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + }; + id=1068; + type="Land_SPE_BarbedWire_04"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={7688.624,286.41769,6404.0464}; + angles[]={6.1934156,5.0289397,0.010006829}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1049; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={7803.3901,288.64166,6428.6426}; + angles[]={6.1934309,1.8391143,6.223259}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1052; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={7695.6792,285.76028,6362.6943}; + angles[]={0.010006829,4.7382784,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1055; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={7785.4858,290.56616,6541.2671}; + angles[]={6.278194,4.9266291,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1058; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={7820.856,290.57028,6558.6104}; + angles[]={6.278182,0.43817711,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1061; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=370; + atlOffset=-0.82507324; + }; + }; + id=329; + atlOffset=1.0198975; + }; + class Item2 + { + dataType="Layer"; + name="Antistasi assets"; + state=2; + class Entities + { + items=6; + class Item0 + { + dataType="Layer"; + name="HQ assets"; + class Entities + { + items=23; + class Item0 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6728.8809,288.83569,2485.196}; + angles[]={0,2.2023785,0}; + }; + side="Independent"; + flags=7; + class Attributes + { + name="petros"; + class Inventory + { + }; + }; + id=477; + type="I_G_officer_F"; + class CustomAttributes + { + class Attribute0 + { + property="face"; + expression="_this setface _value;"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=476; + }; + class Item1 + { + dataType="Group"; + side="Independent"; + class Entities + { + items=38; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6729.2422,289.42712,2471.9426}; + }; + side="Independent"; + flags=3; + class Attributes + { + name="commanderX"; + description="Default Commander"; + isPlayer=1; + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=479; + type="I_G_Soldier_TL_F"; + atlOffset=0.57568359; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male04GRE"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6734.0371,288.84143,2469.2395}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=480; + type="I_G_Soldier_TL_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6733.1104,288.84222,2470.21}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=481; + type="I_G_Soldier_TL_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6731.228,288.84717,2471.1982}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=482; + type="I_G_Soldier_TL_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6731.0747,288.85144,2472.7817}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=483; + type="I_G_Soldier_TL_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6731.7783,288.85144,2474.1062}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=484; + type="I_G_Soldier_TL_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6731.0557,288.85144,2474.7214}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=485; + type="I_G_Soldier_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6730.6133,288.84836,2477.6121}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=486; + type="I_G_Soldier_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6736.3965,288.83951,2469.3625}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=487; + type="I_G_Soldier_F"; + atlOffset=6.1035156e-005; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6735.3301,288.84143,2470.4375}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=488; + type="I_G_Soldier_F"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={6733.3989,288.84448,2471.4658}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=489; + type="I_G_Soldier_F"; + atlOffset=3.0517578e-005; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={6733.3501,288.84473,2472.9341}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=490; + type="I_G_Soldier_F"; + atlOffset=3.0517578e-005; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={6733.8916,288.84143,2474.2283}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=491; + type="I_G_Soldier_F"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={6733.167,288.84155,2474.8582}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=492; + type="I_G_Soldier_F"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={6738.5049,288.82895,2469.3987}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=493; + type="I_G_Soldier_AR_F"; + atlOffset=6.1035156e-005; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={6737.6016,288.8334,2470.5742}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=494; + type="I_G_Soldier_AR_F"; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={6735.3765,288.84146,2471.6436}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=495; + type="I_G_Soldier_AR_F"; + atlOffset=3.0517578e-005; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={6735.3628,288.84146,2473.062}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=496; + type="I_G_Soldier_AR_F"; + atlOffset=3.0517578e-005; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={6735.9072,288.84143,2474.1746}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=497; + type="I_G_Soldier_AR_F"; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={6735.2832,288.84143,2474.9324}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=498; + type="I_G_Soldier_AR_F"; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={6740.5938,288.82553,2469.4778}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=499; + type="I_G_Soldier_GL_F"; + atlOffset=3.0517578e-005; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={6739.3984,288.83142,2470.5313}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=500; + type="I_G_Soldier_GL_F"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={6737.4497,288.83417,2471.9307}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=501; + type="I_G_Soldier_GL_F"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={6737.2856,288.83499,2473.2085}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=502; + type="I_G_Soldier_GL_F"; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={6737.9609,288.8316,2474.2644}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=503; + type="I_G_Soldier_GL_F"; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={6737.3184,288.83484,2475.0535}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=504; + type="I_G_Soldier_GL_F"; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={6742.1211,288.81021,2469.5559}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=505; + type="I_G_medic_F"; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={6740.8799,288.82263,2470.5703}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=506; + type="I_G_medic_F"; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={6739.0132,288.83145,2472.0977}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=507; + type="I_G_medic_F"; + atlOffset=3.0517578e-005; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={6738.9351,288.83142,2473.1733}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=508; + type="I_G_medic_F"; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={6739.4961,288.83148,2474.4041}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=509; + type="I_G_medic_F"; + atlOffset=6.1035156e-005; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={6738.9697,288.83127,2475.114}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=510; + type="I_G_medic_F"; + atlOffset=3.0517578e-005; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={6743.9229,288.80017,2469.7209}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=511; + type="I_G_engineer_F"; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={6742.8809,288.80704,2470.7559}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=512; + type="I_G_engineer_F"; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={6740.814,288.82327,2472.2021}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=513; + type="I_G_engineer_F"; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={6740.5688,288.82574,2473.4185}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=514; + type="I_G_engineer_F"; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={6741.1182,288.81787,2474.5261}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=515; + type="I_G_engineer_F"; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={6740.4766,288.82047,2475.2937}; + }; + side="Independent"; + flags=5; + class Attributes + { + isPlayable=1; + class Inventory + { + map="ItemMap"; + }; + }; + id=516; + type="I_G_engineer_F"; + }; + }; + class Attributes + { + }; + id=478; + atlOffset=0.57568359; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={6718.8359,292.71625,2495.5442}; + }; + side="Empty"; + flags=5; + class Attributes + { + name="flagX"; + }; + id=517; + type="Flag_Syndikat_F"; + atlOffset=-3.0517578e-005; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={6719.5195,289.71692,2486.884}; + angles[]={0.0049795164,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="boxX"; + }; + id=518; + type="IG_supplyCrate_F"; + atlOffset=-0.0010986328; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6715.6611,289.43933,2489.6868}; + angles[]={6.278194,0,6.258182}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="fireX"; + }; + id=519; + type="Land_TentSolar_01_olive_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6719.4521,289.57471,2491.5588}; + angles[]={0.014998405,0,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="vehicleBox"; + }; + id=520; + type="Box_East_AmmoVeh_F"; + atlOffset=-0.00012207031; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6712.8936,289.94006,2493.5188}; + angles[]={6.278194,5.6506429,6.2431989}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="mapX"; + }; + id=521; + type="MapBoard_seismic_F"; + atlOffset=-0.0014648438; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item7 + { + dataType="Logic"; + class PositionInfo + { + position[]={6704.1152,289.29053,2475.9814}; + angles[]={5.7916288,0,5.5195098}; + }; + name="garrison"; + id=522; + type="Logic"; + atlOffset=-3.0517578e-005; + }; + class Item8 + { + dataType="Logic"; + class PositionInfo + { + position[]={6711.374,288.94196,2470.0615}; + angles[]={0.039971694,0,6.2282486}; + }; + name="killZones"; + id=523; + type="Logic"; + }; + class Item9 + { + dataType="Logic"; + class PositionInfo + { + position[]={6712.0918,288.93799,2469.0693}; + angles[]={0.034989785,0,6.2332239}; + }; + name="pathfinding"; + id=524; + type="Logic"; + }; + class Item10 + { + dataType="Logic"; + class PositionInfo + { + position[]={6707.7773,289.05978,2473.2295}; + angles[]={0.029989703,0,6.2083135}; + }; + name="roadsX"; + id=525; + type="Logic"; + }; + class Item11 + { + dataType="Logic"; + class PositionInfo + { + position[]={6702.541,289.41769,2477.3936}; + angles[]={0.63920277,0,5.7548728}; + }; + name="server"; + id=526; + type="Logic"; + }; + class Item12 + { + dataType="Logic"; + class PositionInfo + { + position[]={6710.4629,288.9588,2470.8936}; + angles[]={0.039971694,0,6.2282486}; + }; + name="sidesX"; + id=527; + type="Logic"; + }; + class Item13 + { + dataType="Logic"; + class PositionInfo + { + position[]={6705.9023,289.16708,2474.5605}; + angles[]={0.020001993,0,6.1983981}; + }; + name="spawner"; + id=528; + type="Logic"; + atlOffset=-3.0517578e-005; + }; + class Item14 + { + dataType="Logic"; + class PositionInfo + { + position[]={6709.1934,288.9921,2472.1455}; + angles[]={0.029989703,0,6.2133079}; + }; + name="timer"; + id=529; + type="Logic"; + }; + class Item15 + { + dataType="Logic"; + class PositionInfo + { + position[]={6715.272,288.85092,2484.7354}; + angles[]={0,0,6.2681909}; + }; + name="hc"; + isPlayable=1; + id=530; + type="HeadlessClient_F"; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={6716.3003,288.84006,2483.751}; + }; + name="hc_1"; + isPlayable=1; + id=531; + type="HeadlessClient_F"; + atlOffset=6.1035156e-005; + }; + class Item17 + { + dataType="Logic"; + class PositionInfo + { + position[]={6717.2456,288.84003,2482.9287}; + }; + name="hc_2"; + isPlayable=1; + id=532; + type="HeadlessClient_F"; + atlOffset=3.0517578e-005; + }; + class Item18 + { + dataType="Logic"; + class PositionInfo + { + position[]={6708.9014,289.09235,2489.1619}; + angles[]={6.2681909,0,6.2332249}; + }; + id=533; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="#adminLogged"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=3; + }; + }; + }; + nAttributes=4; + }; + }; + class Item19 + { + dataType="Logic"; + class PositionInfo + { + position[]={6709.7896,289.00098,2486.8623}; + angles[]={6.2581987,0,6.2382188}; + }; + name="HC_commanderX"; + id=534; + type="HighCommand"; + atlOffset=-3.0517578e-005; + }; + class Item20 + { + dataType="Logic"; + class PositionInfo + { + position[]={6713.1899,288.90158,2486.7686}; + angles[]={6.2631836,0,6.2631836}; + }; + id=535; + type="HighCommandSubordinate"; + }; + class Item21 + { + dataType="Marker"; + position[]={6717.6655,288.80594,2492.5811}; + name="Synd_HQ"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorPink"; + a=50; + b=50; + id=536; + atlOffset=3.0517578e-005; + }; + class Item22 + { + dataType="Marker"; + position[]={6717.8638,2.7037606e+012,2493.1997}; + name="respawn_guerrila"; + text="Your Headquarters"; + type="hd_flag"; + colorName="ColorGUER"; + id=537; + atlOffset=2.7037606e+012; + }; + }; + id=1; + atlOffset=1.3518803e+012; + }; + class Item1 + { + dataType="Layer"; + name="seaSpawnAttack"; + state=2; + class Entities + { + items=17; + class Item0 + { + dataType="Marker"; + position[]={-330.49338,196.5766,5137.2227}; + name="seaAttackSpawn"; + type="mil_ambush"; + angle=28.695; + id=67; + atlOffset=3.4275208; + }; + class Item1 + { + dataType="Marker"; + position[]={-330.98926,262.94601,6742.1855}; + name="seaAttackSpawn_1"; + type="mil_ambush"; + angle=28.695; + id=538; + atlOffset=3.4275208; + }; + class Item2 + { + dataType="Marker"; + position[]={-330.98926,173.04349,8107.519}; + name="seaAttackSpawn_2"; + type="mil_ambush"; + angle=28.695; + id=539; + atlOffset=3.4275208; + }; + class Item3 + { + dataType="Marker"; + position[]={1489.4551,179.55437,8500.5693}; + name="seaAttackSpawn_3"; + type="mil_ambush"; + angle=28.695; + id=540; + atlOffset=3.4275208; + }; + class Item4 + { + dataType="Marker"; + position[]={2978.9092,252.94383,8428.166}; + name="seaAttackSpawn_4"; + type="mil_ambush"; + angle=28.695; + id=541; + atlOffset=3.4275208; + }; + class Item5 + { + dataType="Marker"; + position[]={4716.606,249.05174,8479.8828}; + name="seaAttackSpawn_5"; + type="mil_ambush"; + angle=28.695; + id=542; + atlOffset=3.4275208; + }; + class Item6 + { + dataType="Marker"; + position[]={6454.3027,302.14987,8490.2266}; + name="seaAttackSpawn_6"; + type="mil_ambush"; + angle=28.695; + id=543; + atlOffset=3.4275208; + }; + class Item7 + { + dataType="Marker"; + position[]={8450.5859,280.55682,8479.8828}; + name="seaAttackSpawn_7"; + type="mil_ambush"; + angle=28.695; + id=544; + atlOffset=3.4275208; + }; + class Item8 + { + dataType="Marker"; + position[]={8554.0195,266.32922,6028.4883}; + name="seaAttackSpawn_8"; + type="mil_ambush"; + angle=28.695; + id=545; + atlOffset=3.4275208; + }; + class Item9 + { + dataType="Marker"; + position[]={8595.3945,300.27231,4435.5996}; + name="seaAttackSpawn_9"; + type="mil_ambush"; + angle=28.695; + id=546; + atlOffset=3.4275208; + }; + class Item10 + { + dataType="Marker"; + position[]={8471.2715,303.52179,2822.0234}; + name="seaAttackSpawn_10"; + type="mil_ambush"; + angle=28.695; + id=547; + atlOffset=3.4275208; + }; + class Item11 + { + dataType="Marker"; + position[]={8543.6777,218.49384,1373.9419}; + name="seaAttackSpawn_11"; + type="mil_ambush"; + angle=28.695; + id=548; + atlOffset=3.4275208; + }; + class Item12 + { + dataType="Marker"; + position[]={8016.1631,142.70099,-84.482422}; + name="seaAttackSpawn_12"; + type="mil_ambush"; + angle=28.695; + id=549; + atlOffset=3.4275208; + }; + class Item13 + { + dataType="Marker"; + position[]={4499.3965,100.53369,-260.32129}; + name="seaAttackSpawn_13"; + type="mil_ambush"; + angle=28.695; + id=550; + atlOffset=3.4275208; + }; + class Item14 + { + dataType="Marker"; + position[]={1427.396,109.37988,-270.66406}; + name="seaAttackSpawn_14"; + type="mil_ambush"; + angle=28.695; + id=551; + atlOffset=3.4275208; + }; + class Item15 + { + dataType="Marker"; + position[]={-403.3916,124.73386,401.6582}; + name="seaAttackSpawn_15"; + type="mil_ambush"; + angle=28.695; + id=552; + atlOffset=3.4275208; + }; + class Item16 + { + dataType="Marker"; + position[]={-393.04834,217.21269,2946.1436}; + name="seaAttackSpawn_16"; + type="mil_ambush"; + angle=28.695; + id=553; + atlOffset=3.4275208; + }; + }; + id=66; + atlOffset=36.161804; + }; + class Item2 + { + dataType="Layer"; + name="controls"; + class Entities + { + items=64; + class Item0 + { + dataType="Marker"; + position[]={3043.6482,238.17003,4882.3462}; + name="control"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=69; + }; + class Item1 + { + dataType="Marker"; + position[]={1272.3702,99.588142,384.2933}; + name="control_1"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2113; + }; + class Item2 + { + dataType="Marker"; + position[]={2183.6724,114.38215,871.26276}; + name="control_2"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2116; + }; + class Item3 + { + dataType="Marker"; + position[]={4122.2749,140.99922,1890.2871}; + name="control_3"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=189.27982; + id=2118; + }; + class Item4 + { + dataType="Marker"; + position[]={5765.2554,126.55769,780.58948}; + name="control_4"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=279.9173; + id=2120; + }; + class Item5 + { + dataType="Marker"; + position[]={6090.9858,183.05061,1327.1113}; + name="control_5"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=239.88968; + id=2122; + atlOffset=-1.5258789e-005; + }; + class Item6 + { + dataType="Marker"; + position[]={4842.437,283.52994,3948.5845}; + name="control_6"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=141.37418; + id=2124; + }; + class Item7 + { + dataType="Marker"; + position[]={3567.3389,177.49216,2340.4021}; + name="control_7"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=149.91714; + id=2126; + }; + class Item8 + { + dataType="Marker"; + position[]={1911.9059,147.10291,1991.9633}; + name="control_8"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2128; + }; + class Item9 + { + dataType="Marker"; + position[]={5391.3765,254.22685,4516.1338}; + name="control_9"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=225.89606; + id=2130; + atlOffset=-1.5258789e-005; + }; + class Item10 + { + dataType="Marker"; + position[]={7294.1504,292.97226,4392.249}; + name="control_10"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=206.0385; + id=2132; + }; + class Item11 + { + dataType="Marker"; + position[]={1022.0308,218.45862,4542.1694}; + name="control_11"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=124.24186; + id=2134; + }; + class Item12 + { + dataType="Marker"; + position[]={516.04633,192.62468,3573.6145}; + name="control_12"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=299.33173; + id=2136; + }; + class Item13 + { + dataType="Marker"; + position[]={1136.4902,201.19289,3654.6672}; + name="control_13"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=81.949852; + id=2138; + }; + class Item14 + { + dataType="Marker"; + position[]={4084.3015,245.91995,4503.5386}; + name="control_14"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=143.76999; + id=2140; + }; + class Item15 + { + dataType="Marker"; + position[]={5451.4658,304.48111,2920.4319}; + name="control_15"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=211.83839; + id=2142; + atlOffset=-3.0517578e-005; + }; + class Item16 + { + dataType="Marker"; + position[]={4514.4507,224.89537,2359.7773}; + name="control_16"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + angle=102.64864; + id=2144; + }; + class Item17 + { + dataType="Marker"; + position[]={4195.624,253.32001,6999.605}; + name="control_17"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2147; + }; + class Item18 + { + dataType="Marker"; + position[]={3423.958,244.20697,7793.0464}; + name="control_18"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2149; + }; + class Item19 + { + dataType="Marker"; + position[]={7389.4419,280.90924,6873.5566}; + name="control_19"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2151; + }; + class Item20 + { + dataType="Marker"; + position[]={7003.2153,284.96127,6479.5508}; + name="control_20"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2153; + }; + class Item21 + { + dataType="Marker"; + position[]={7361.7344,281.01401,6083.104}; + name="control_21"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2155; + }; + class Item22 + { + dataType="Marker"; + position[]={1576.3357,196.66591,7204.8311}; + name="control_22"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2157; + }; + class Item23 + { + dataType="Marker"; + position[]={1186.3271,278.33594,6001.79}; + name="control_23"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2159; + }; + class Item24 + { + dataType="Marker"; + position[]={3915.3843,281.29395,5738.2949}; + name="control_24"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2161; + }; + class Item25 + { + dataType="Marker"; + position[]={6648.0518,256.69357,5290.252}; + name="control_25"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2163; + }; + class Item26 + { + dataType="Marker"; + position[]={2854.3091,275.49246,4322.1934}; + name="control_26"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2165; + }; + class Item27 + { + dataType="Marker"; + position[]={2733.2202,258.02701,3175.1414}; + name="control_27"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2167; + }; + class Item28 + { + dataType="Marker"; + position[]={5639.209,280.98401,6620.1411}; + name="control_28"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2169; + }; + class Item29 + { + dataType="Marker"; + position[]={2532.2969,286.24072,6779.7783}; + name="control_29"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2171; + }; + class Item30 + { + dataType="Marker"; + position[]={6565.9966,273.27975,3719.2554}; + name="control_30"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2172; + }; + class Item31 + { + dataType="Marker"; + position[]={4895.4063,116.82419,942.80615}; + name="control_31"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2174; + }; + class Item32 + { + dataType="Marker"; + position[]={2434.439,261.29959,5674.3828}; + name="control_32"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2175; + }; + class Item33 + { + dataType="Marker"; + position[]={5649.8076,257.27655,5492.3315}; + name="control_33"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2176; + }; + class Item34 + { + dataType="Marker"; + position[]={5779.5869,314.89972,2551.627}; + name="control_34"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2177; + }; + class Item35 + { + dataType="Marker"; + position[]={5795.0635,245.00238,5285.7144}; + name="control_35"; + markerType="RECTANGLE"; + type="rectangle"; + a=5; + b=5; + id=2178; + }; + class Item36 + { + dataType="Logic"; + class PositionInfo + { + position[]={1272.4862,99.58757,384.81711}; + angles[]={0,5.7593422,6.2782059}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2115; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item37 + { + dataType="Logic"; + class PositionInfo + { + position[]={2183.7881,114.39725,871.78656}; + angles[]={0,5.7593422,0}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2117; + type="ModuleHideTerrainObjects_F"; + atlOffset=-7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item38 + { + dataType="Logic"; + class PositionInfo + { + position[]={4122.0757,140.96973,1889.7888}; + angles[]={6.2531958,2.7797139,0.07983166}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2119; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item39 + { + dataType="Logic"; + class PositionInfo + { + position[]={5764.7593,126.57435,780.79419}; + angles[]={6.2382174,4.3616371,6.2681832}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2121; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item40 + { + dataType="Logic"; + class PositionInfo + { + position[]={6090.4741,183.05237,1326.949}; + angles[]={6.278194,3.6630228,6.278182}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2123; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item41 + { + dataType="Logic"; + class PositionInfo + { + position[]={4842.6733,283.51419,3948.1025}; + angles[]={6.2432122,1.9436018,0.015002378}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2125; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item42 + { + dataType="Logic"; + class PositionInfo + { + position[]={3567.501,177.47868,2339.8904}; + angles[]={6.2481956,2.0927045,0.014998405}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2127; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item43 + { + dataType="Logic"; + class PositionInfo + { + position[]={1912.0219,147.09215,1992.4872}; + angles[]={0.014998405,5.7593422,6.2581892}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2129; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item44 + { + dataType="Logic"; + class PositionInfo + { + position[]={5387.9883,254.21913,4516.687}; + angles[]={0.0050033992,3.418788,0.020001993}; + }; + areaSize[]={8.0481453,0,12}; + areaIsRectangle=1; + flags=1; + id=2131; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.052856445; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item45 + { + dataType="Logic"; + class PositionInfo + { + position[]={7293.5503,292.97,4391.811}; + angles[]={0,3.0722079,0}; + }; + areaSize[]={6.9553943,0,12}; + areaIsRectangle=1; + flags=1; + id=2133; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item46 + { + dataType="Logic"; + class PositionInfo + { + position[]={1022.3241,218.46504,4540.7769}; + angles[]={6.2432051,1.6445867,0.059933435}; + }; + areaSize[]={8.8335218,0,12}; + areaIsRectangle=1; + flags=1; + id=2135; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.044509888; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item47 + { + dataType="Logic"; + class PositionInfo + { + position[]={515.64636,192.62782,3573.9722}; + angles[]={6.268187,4.7004828,0.0050033992}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2137; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item48 + { + dataType="Logic"; + class PositionInfo + { + position[]={1137.1438,201.12727,3654.4746}; + angles[]={0.094717279,0.90645176,6.1539059}; + }; + areaSize[]={8.3256636,0,12}; + areaIsRectangle=1; + flags=1; + id=2139; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.0010528564; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item49 + { + dataType="Logic"; + class PositionInfo + { + position[]={4085.8191,245.89757,4506.0049}; + angles[]={6.2332249,1.9854177,0.010000871}; + }; + areaSize[]={14.396976,0,12}; + areaIsRectangle=1; + flags=1; + id=2141; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.18832397; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item50 + { + dataType="Logic"; + class PositionInfo + { + position[]={5450.7749,304.46429,2920.0581}; + angles[]={0.0050033992,3.173435,0.049961641}; + }; + areaSize[]={7.9063535,0,12}; + areaIsRectangle=1; + flags=1; + id=2143; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.015838623; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item51 + { + dataType="Logic"; + class PositionInfo + { + position[]={4521.1294,225.09622,2364.1423}; + angles[]={0,5.9114413,0}; + }; + areaSize[]={5,0,7.1513333}; + flags=1; + id=2146; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.011245728; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item52 + { + dataType="Logic"; + class PositionInfo + { + position[]={4196.4502,253.32001,7000.3208}; + angles[]={0,6.0188441,0}; + }; + areaSize[]={10.37575,0,12}; + areaIsRectangle=1; + flags=1; + id=2148; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.002243042; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item53 + { + dataType="Logic"; + class PositionInfo + { + position[]={3423.6616,244.16974,7790.4771}; + angles[]={0,4.8448806,0}; + }; + areaSize[]={11.146948,0,12}; + areaIsRectangle=1; + flags=1; + id=2150; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.21856689; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item54 + { + dataType="Logic"; + class PositionInfo + { + position[]={7391.7886,280.89728,6873.1543}; + angles[]={0,0.39327908,0}; + }; + areaSize[]={10.129868,0,12}; + areaIsRectangle=1; + flags=1; + id=2152; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.18798828; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item55 + { + dataType="Logic"; + class PositionInfo + { + position[]={7007.2881,284.96005,6479.4727}; + angles[]={0,0.15090227,0}; + }; + areaSize[]={9.0018101,0,12}; + areaIsRectangle=1; + flags=1; + id=2154; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.10488892; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item56 + { + dataType="Logic"; + class PositionInfo + { + position[]={7361.8799,281.03876,6083.5767}; + angles[]={0,1.0451832,0}; + }; + areaSize[]={10.642615,0,12}; + areaIsRectangle=1; + flags=1; + id=2156; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.00018310547; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item57 + { + dataType="Logic"; + class PositionInfo + { + position[]={1576.4517,196.66678,7205.3545}; + angles[]={0,0.04921627,0}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2158; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item58 + { + dataType="Logic"; + class PositionInfo + { + position[]={1188.9325,278.33508,6001.6826}; + angles[]={0,0.24830675,0}; + }; + areaSize[]={10.511495,0,12}; + areaIsRectangle=1; + flags=1; + id=2160; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.045135498; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item59 + { + dataType="Logic"; + class PositionInfo + { + position[]={3915.5005,281.28931,5738.8184}; + angles[]={0,4.3256588,0}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2162; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item60 + { + dataType="Logic"; + class PositionInfo + { + position[]={6648.168,256.70111,5290.7754}; + angles[]={0,5.7593422,0}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2164; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item61 + { + dataType="Logic"; + class PositionInfo + { + position[]={2854.5715,275.46481,4321.7417}; + angles[]={0,4.5629869,0}; + }; + areaSize[]={7.9828954,0,12}; + areaIsRectangle=1; + flags=1; + id=2166; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.055114746; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item62 + { + dataType="Logic"; + class PositionInfo + { + position[]={2733.1299,258.02844,3175.6714}; + angles[]={0,0.029659748,0}; + }; + areaSize[]={8.5302639,0,12}; + areaIsRectangle=1; + flags=1; + id=2168; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.0072631836; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item63 + { + dataType="Logic"; + class PositionInfo + { + position[]={5639.3252,280.9968,6620.6646}; + angles[]={0,0.88433886,0}; + }; + areaSize[]={5,0,12}; + areaIsRectangle=1; + flags=1; + id=2170; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=68; + atlOffset=1.4402771; + }; + class Item3 + { + dataType="Marker"; + position[]={8223.6875,308.17786,3074.6943}; + name="CSAT_carrier"; + type="flag_CSAT"; + id=70; + atlOffset=5.9841614; + }; + class Item4 + { + dataType="Marker"; + position[]={-11.480358,190.40454,5162.3115}; + name="NATO_carrier"; + type="flag_UN"; + id=71; + }; + class Item5 + { + dataType="Layer"; + name="detectPlayer"; + class Entities + { + items=1; + class Item0 + { + dataType="Marker"; + position[]={787.54211,202.62973,4055.7988}; + name="detectPlayer"; + markerType="RECTANGLE"; + type="rectangle"; + a=113.51956; + b=87.018066; + id=73; + atlOffset=3.044281; + }; + }; + id=72; + atlOffset=3.044281; + }; + }; + id=0; + atlOffset=4.2246259e+010; + }; + class Item3 + { + dataType="Layer"; + name="factories"; + state=2; + class Entities + { + items=4; + class Item0 + { + dataType="Layer"; + name="factory_1"; + class Entities + { + items=12; + class Item0 + { + dataType="Marker"; + position[]={4797.7192,120.84179,1096.4268}; + name="fact_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=139.14987; + id=429; + atlOffset=0.64398193; + }; + class Item1 + { + dataType="Marker"; + position[]={4802.8667,119.975,1115.099}; + name="factory_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=138.4427; + b=71.695671; + angle=12.219986; + id=430; + atlOffset=-0.18500519; + }; + class Item2 + { + dataType="Marker"; + position[]={4700.7837,120.37119,1142.937}; + name="fact_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=148.74677; + id=641; + atlOffset=0.60462189; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={4931.3408,122.82614,1096.9465}; + angles[]={6.2182775,0.22114806,0.094716646}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1346; + type="Land_SPE_Sandbag_Nest"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={4903.7007,120.02214,1033.2174}; + angles[]={6.2581892,3.2558877,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1347; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={4745.9023,119.54472,1103.0753}; + angles[]={6.19839,3.6813679,0.039979152}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1348; + type="Land_SPE_Sandbag_Nest"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={4673.4297,120.06255,1132.8765}; + angles[]={0.019996032,4.6310163,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1349; + type="Land_SPE_Sandbag_Nest"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={4704.6182,121.75765,1201.1239}; + angles[]={0.019996032,5.8383784,6.2232561}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1351; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={4825.7837,122.63695,1170.8207}; + angles[]={6.22824,0.038376823,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1353; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={4674.9575,119.60595,1130.7292}; + angles[]={6.2481956,2.3774049,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1350; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={4703.0293,121.67354,1199.1953}; + angles[]={0.16352737,3.8066325,6.1391883}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1352; + type="Land_SPE_Sandbag_Short"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={4828,122.19662,1169.4436}; + angles[]={6.2232561,5.2020116,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1354; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=77; + atlOffset=0.53688049; + }; + class Item1 + { + dataType="Layer"; + name="factory_2"; + class Entities + { + items=63; + class Item0 + { + dataType="Marker"; + position[]={561.21802,263.9942,6630.7036}; + name="fact_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=182.84389; + id=432; + atlOffset=0.60525513; + }; + class Item1 + { + dataType="Marker"; + position[]={510.88409,267.16211,6586.2588}; + name="factory_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=95.316391; + b=89.112083; + angle=330.80106; + id=433; + atlOffset=0.3734436; + }; + class Item2 + { + dataType="Marker"; + position[]={527.10962,264.64343,6637.9429}; + name="fact_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=109.05211; + id=1345; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={487.40198,267.34854,6548.896}; + angles[]={0.025003321,0,6.2481976}; + }; + areaSize[]={2.9372406,0,2.2307129}; + flags=1; + id=1288; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={519.47614,266.88071,6551.085}; + angles[]={0,5.0888643,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1290; + type="Land_PoleWall_01_pole_F"; + atlOffset=6.1035156e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={519.31238,266.89157,6550.5503}; + angles[]={0,5.088872,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1291; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={517.20093,266.99042,6551.8931}; + angles[]={0,5.088872,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1292; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={517.03717,267.00131,6551.3569}; + angles[]={0,5.088872,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1293; + type="Land_PoleWall_01_pole_F"; + atlOffset=6.1035156e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={528.1377,266.42551,6555.5024}; + angles[]={0,0.4268434,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1295; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={527.61182,266.45084,6555.6934}; + angles[]={0,0.42685053,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1296; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={529.05988,266.35953,6557.7339}; + angles[]={0,0.42685053,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1297; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={528.53235,266.38406,6557.9243}; + angles[]={0,0.42685053,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1298; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={486.09225,267.9079,6555.3071}; + angles[]={6.139185,0.43167558,6.1391997}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1300; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={485.5676,268.0101,6555.5}; + angles[]={6.1440897,0.43168274,6.1343012}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1301; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={487.02518,268.04062,6557.5337}; + angles[]={6.1686978,0.43168274,6.1835103}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1302; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={486.49832,268.14212,6557.7271}; + angles[]={6.1686978,0.43168274,6.1835103}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1303; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={535.36389,264.57648,6649.1309}; + angles[]={0,4.7833819,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1305; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={535.36841,264.57358,6648.5718}; + angles[]={0,4.7833891,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1306; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={532.95105,264.7319,6649.2178}; + angles[]={0,4.7833891,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1307; + type="Land_PoleWall_01_pole_F"; + atlOffset=6.1035156e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={532.95605,264.73364,6648.6567}; + angles[]={0,4.7833891,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1308; + type="Land_PoleWall_01_pole_F"; + atlOffset=6.1035156e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={510.81161,264.8526,6654.4961}; + angles[]={0,4.7170625,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1310; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={510.85291,264.88116,6653.938}; + angles[]={0,4.7170696,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1311; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={508.39828,264.8187,6654.4229}; + angles[]={0,4.7170696,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1312; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={508.44073,264.84363,6653.8638}; + angles[]={0,4.7170696,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1313; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={442.76047,265.49597,6639.7051}; + angles[]={0,3.3467734,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1315; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={443.31509,265.52243,6639.6348}; + angles[]={0,3.3467805,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1316; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={442.35147,265.72589,6637.3252}; + angles[]={0,3.3467805,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1317; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={442.90829,265.74216,6637.2554}; + angles[]={0,3.3467805,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1318; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={432.26959,267.12695,6611.5532}; + angles[]={0,3.5374141,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1320; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={432.80081,267.20163,6611.3794}; + angles[]={0,3.5374212,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1321; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={431.41708,267.41415,6609.2944}; + angles[]={0,3.5374212,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1322; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={431.95053,267.53168,6609.1201}; + angles[]={0,3.5374212,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1323; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={457.31955,268.39862,6583.5371}; + angles[]={0,5.4392405,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1325; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={456.98172,268.42151,6583.0913}; + angles[]={0,5.4392476,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1326; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={455.46033,268.35678,6585.0776}; + angles[]={0,5.4392476,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1327; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={455.12256,268.38034,6584.6299}; + angles[]={0,5.4392476,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1328; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={451.9689,268.28339,6587.4849}; + angles[]={0,5.243938,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1330; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={451.72446,268.30841,6586.9824}; + angles[]={0,5.2439451,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1331; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={449.84607,268.25204,6588.6353}; + angles[]={0,5.2439451,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1332; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={449.60117,268.27603,6588.1304}; + angles[]={0,5.2439451,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1333; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={446.33878,268.15268,6591.0493}; + angles[]={0,5.4181371,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1335; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={446.01044,268.17307,6590.5962}; + angles[]={0,5.4181442,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1336; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={444.44745,268.0824,6592.5498}; + angles[]={0,5.4181442,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1337; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={444.1192,268.10513,6592.0952}; + angles[]={0,5.4181442,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1338; + type="Land_PoleWall_01_pole_F"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={440.00937,267.83401,6597.0161}; + angles[]={0,5.6001759,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1340; + type="Land_PoleWall_01_pole_F"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={439.6044,267.85324,6596.6299}; + angles[]={0,5.600183,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1341; + type="Land_PoleWall_01_pole_F"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={438.42099,267.72195,6598.8345}; + angles[]={0,5.600183,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1342; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={438.01584,267.74323,6598.4468}; + angles[]={0,5.600183,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=1343; + type="Land_PoleWall_01_pole_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={559.57178,263.80786,6648.5757}; + angles[]={0.014998405,0.10061212,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1285; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={447.50995,265.44061,6648.5293}; + angles[]={0.079832405,5.2479901,0.069893911}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1286; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={495.03741,267.30096,6556.6177}; + angles[]={6.268187,3.941869,6.2681713}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1287; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={561.94275,263.83984,6599.4834}; + angles[]={6.1934309,1.472422,6.1391845}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1289; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={518.35828,267.14651,6551.1763}; + angles[]={0,1.9061803,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1294; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={528.2851,266.6199,6556.6147}; + angles[]={0,3.5273447,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1299; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={486.2453,268.23914,6556.418}; + angles[]={6.2132926,3.532177,6.1391997}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1304; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={534.27032,264.87732,6648.8818}; + angles[]={0,1.6006976,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1309; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={509.73669,265.07498,6654.1748}; + angles[]={0,1.5343781,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1314; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={442.86084,265.82715,6638.5879}; + angles[]={0,0.16408904,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1319; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={432.15646,267.50516,6610.4375}; + angles[]={0,0.35472977,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1324; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={456.3006,268.6055,6584.0068}; + angles[]={0,2.256556,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1329; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={450.87863,268.49286,6587.748}; + angles[]={0,2.0612538,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1334; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={445.31015,268.34299,6591.4971}; + angles[]={0,2.2354527,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1339; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={439.0788,268.00534,6597.6426}; + angles[]={0,2.4174917,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1344; + type="Land_SPE_Wood_TrenchLogWall_01_4m_v2"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=81; + atlOffset=-0.041778564; + }; + class Item2 + { + dataType="Layer"; + name="factory_3"; + class Entities + { + items=48; + class Item0 + { + dataType="Marker"; + position[]={6509.1289,268.94974,6039.8667}; + name="fact_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=333.71036; + id=435; + }; + class Item1 + { + dataType="Marker"; + position[]={6489.6968,266.36432,5991.3716}; + name="factory_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBrown"; + a=96.184349; + b=75.493118; + angle=339.04108; + id=436; + atlOffset=0.0077514648; + }; + class Item2 + { + dataType="Marker"; + position[]={6543.1016,267.49179,6036.8105}; + name="fact_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=345.19986; + id=1425; + }; + class Item3 + { + dataType="Marker"; + position[]={6472.1348,268.48969,6014.0381}; + name="fact_3_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=62.77766; + id=1427; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6535.938,269.48572,6072.2075}; + angles[]={6.2731905,0,6.2332249}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1396; + type="Land_SPE_BarbedWire_02"; + atlOffset=0.0016479492; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6548.6675,268.67563,6065.5977}; + angles[]={0.014998405,4.6087961,6.1934304}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1397; + type="Land_SPE_BarbedWire_02"; + atlOffset=3.0517578e-005; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6510.1724,266.70975,5988.9512}; + angles[]={6.2631865,6.0429826,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1386; + type="Land_SPE_Guardbox"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6508.29,265.13867,5979.4326}; + angles[]={6.2282486,0,6.2481976}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1384; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6512.2437,265.05865,5980.1084}; + angles[]={6.2282333,0,6.2531977}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1385; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6426.7979,271.237,6019.0952}; + angles[]={6.2531958,0,6.2132926}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1399; + type="Land_SPE_HedgeHog"; + atlOffset=-3.0517578e-005; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={6422.9102,271.2554,6015.4307}; + angles[]={6.1686831,0,6.2182751}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1400; + type="Land_SPE_HedgeHog"; + atlOffset=6.1035156e-005; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={6421.0415,271.32855,6032.1455}; + angles[]={6.2132916,0,6.2432122}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1401; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={6413.1274,271.61407,6024.769}; + angles[]={0.044968102,0,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1402; + type="Land_SPE_HedgeHog"; + atlOffset=-6.1035156e-005; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={6405.0522,271.68301,6027.4854}; + angles[]={6.2531819,0,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1403; + type="Land_SPE_HedgeHog"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={6436.4341,270.86148,6038.71}; + angles[]={6.09061,0,6.1983824}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1404; + type="Land_SPE_HedgeHog"; + atlOffset=-6.1035156e-005; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={6449.4683,270.14609,6039.1279}; + angles[]={6.2481956,0,6.2332239}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1405; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={6459.4243,270.31384,6045.8403}; + angles[]={6.1637616,0,6.2431989}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1406; + type="Land_SPE_HedgeHog"; + atlOffset=-3.0517578e-005; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={6472.625,270.12683,6047.1665}; + angles[]={6.1785579,0,6.2581964}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1407; + type="Land_SPE_HedgeHog"; + atlOffset=-3.0517578e-005; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={6514.7144,264.26996,5971.0073}; + angles[]={6.1983824,0,6.2332239}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1408; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={6503.9434,263.9465,5960.5034}; + angles[]={6.1983824,0,6.2182751}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1409; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={6506.6514,262.95407,5950.333}; + angles[]={6.2033539,0,6.2332239}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1410; + type="Land_SPE_HedgeHog"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={6430.1411,269.90579,6011.1484}; + angles[]={6.0335016,0,6.2332225}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1411; + type="Land_SPE_HedgeHog"; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={6437.2544,268.49466,5996.3354}; + angles[]={6.2132926,0,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1412; + type="Land_SPE_HedgeHog"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={6441.0537,267.84763,5988.0566}; + angles[]={6.2132916,0,6.2581964}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1413; + type="Land_SPE_HedgeHog"; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={6463.8418,266.60928,5973.1479}; + angles[]={6.2382174,0,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1414; + type="Land_SPE_HedgeHog"; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={6446.1196,266.60126,5972.7153}; + angles[]={6.2083135,0,6.2632012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1415; + type="Land_SPE_HedgeHog"; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={6540.9663,268.46506,6076.4863}; + angles[]={0.0050152978,0,6.2083287}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1416; + type="Land_SPE_HedgeHog"; + atlOffset=-3.0517578e-005; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={6534.6108,268.92068,6079.0439}; + angles[]={6.2731905,0,6.2182741}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1417; + type="Land_SPE_HedgeHog"; + atlOffset=-6.1035156e-005; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={6556.2505,267.1077,6069.7437}; + angles[]={0.020001993,0,6.1736255}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1418; + type="Land_SPE_HedgeHog"; + atlOffset=0.00012207031; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={6555.6201,267.28168,6062.21}; + angles[]={0.009988944,0,6.1686831}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1419; + type="Land_SPE_HedgeHog"; + atlOffset=9.1552734e-005; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={6571.4907,262.40161,5987.7876}; + angles[]={6.1934309,4.9282417,6.2033539}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1420; + type="Land_SPE_HedgeHog"; + atlOffset=-3.0517578e-005; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={6574.104,262.40491,5990.2793}; + angles[]={6.1983981,5.5071363,6.1983824}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1421; + type="Land_SPE_HedgeHog"; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={6576.1553,262.5463,5994.27}; + angles[]={6.2083287,5.5130415,6.1934156}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1422; + type="Land_SPE_HedgeHog"; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={6579.1641,262.63452,5999.6821}; + angles[]={6.2232599,2.2610402,6.183526}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1423; + type="Land_SPE_HedgeHog"; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={6567.5576,262.2702,5983.1499}; + angles[]={6.1884689,0,6.2133069}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1424; + type="Land_SPE_HedgeHog"; + atlOffset=-3.0517578e-005; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={6506.3862,265.7933,5984.2856}; + angles[]={6.2581797,5.3839417,6.258194}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1383; + type="Land_SPE_Sandbag_Curve"; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={6546.1948,268.65622,6062.1021}; + angles[]={0.020001993,6.0960364,6.1934309}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1389; + type="Land_SPE_Sandbag_Curve"; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={6534.9141,269.20926,6069.3413}; + angles[]={0,4.6487036,6.2431989}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1393; + type="Land_SPE_Sandbag_Curve"; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={6541.1982,268.9122,6066.9814}; + angles[]={0.014998405,5.3311324,6.2282486}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1391; + type="Land_SPE_Sandbag_Long"; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={6538.5708,268.65146,6068.9961}; + angles[]={0,5.3012691,6.2332249}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1392; + type="Land_SPE_Sandbag_Short"; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={6543.8789,268.38,6065.2319}; + angles[]={0.015014294,2.1120665,6.2132926}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1394; + type="Land_SPE_Sandbag_Short"; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={6434.541,270.64401,6020.4063}; + angles[]={0,0,6.1983824}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1381; + type="Land_SPE_Tarp_Side"; + }; + class Item42 + { + dataType="Logic"; + class PositionInfo + { + position[]={6476.9385,268.03387,6015.4985}; + angles[]={0,5.7563324,0}; + }; + areaSize[]={5,0,14.251825}; + flags=1; + id=1426; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.46166992; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={6509.5952,265.65424,5982.1714}; + angles[]={6.2431989,2.8725381,6.2581964}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1378; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={6431.0366,271.3743,6020.9248}; + angles[]={0,4.5322714,6.2033539}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1379; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={6530.9771,269.35693,6068.1948}; + angles[]={6.2631836,5.7261701,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1387; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={6546.0898,268.70859,6057.9727}; + angles[]={6.278194,1.7984734,6.1884689}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1388; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={6506.0503,265.82022,5982.4497}; + angles[]={6.2481956,4.1355047,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1398; + type="Land_SPE_BarbedWire_04"; + atlOffset=0.00045776367; + }; + }; + id=85; + atlOffset=-0.41372681; + }; + class Item3 + { + dataType="Layer"; + name="factory_4"; + class Entities + { + items=23; + class Item0 + { + dataType="Marker"; + position[]={4842.3994,250.258,5162.124}; + name="factory_4"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorBrown"; + a=103.52052; + b=119.0678; + angle=324.10867; + id=475; + }; + class Item1 + { + dataType="Marker"; + position[]={4828.6953,250.79448,5203.6807}; + name="fact_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=327.17239; + id=1376; + atlOffset=0.60447693; + }; + class Item2 + { + dataType="Marker"; + position[]={4834.9683,250.79556,5190.8164}; + name="fact_4_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=329.49048; + id=1377; + atlOffset=0.60447693; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={4822.2393,250.19,5207.0532}; + angles[]={0,5.8585739,0}; + }; + areaSize[]={7.4102163,0,3.3219428}; + flags=1; + id=1375; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.0035400391; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={4800.1641,254.33188,5208.5469}; + angles[]={0.054945603,3.7971954,5.9825821}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1359; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={4798.7124,254.8942,5207.769}; + angles[]={0.069885373,4.4742751,5.9917259}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1357; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={4774.1772,253.81735,5142.8804}; + angles[]={6.2182822,4.3309565,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1355; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={4785.3579,256.82401,5209.8301}; + angles[]={6.258182,5.6356268,6.1884689}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1356; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={4900.1738,250.63219,5239.5835}; + angles[]={6.2731848,1.0523483,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1361; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={4921.1304,249.06178,5157.0474}; + angles[]={6.228241,2.4791379,6.1835189}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1362; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={4862.7495,250.85063,5113.7217}; + angles[]={0,4.1675892,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1365; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={4875.54,250.85063,5121.5166}; + angles[]={0,1.0181829,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1366; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={4787.3647,256.18677,5209.04}; + angles[]={6.2481956,2.1594989,6.188468}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1358; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={4918.9409,248.83994,5156.6924}; + angles[]={6.2332239,4.3358021,6.1934304}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1363; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={4920.3306,248.8894,5160.729}; + angles[]={6.2432051,5.1932964,6.1934304}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1364; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={4867.2549,250.43341,5109.5122}; + angles[]={0,4.1711855,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1368; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={4872.5249,250.43341,5112.6084}; + angles[]={0,4.1711855,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1369; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={4877.7402,250.43341,5115.8462}; + angles[]={0,4.1711855,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1370; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={4866.6631,250.43341,5114.1089}; + angles[]={0,4.1711855,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1371; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={4868.562,250.43341,5115.3027}; + angles[]={0,4.1711855,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1372; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={4871.8604,250.43341,5117.4185}; + angles[]={0,4.1711855,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1373; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={4873.6992,250.43341,5118.5488}; + angles[]={0,4.1711855,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1374; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="hideObject"; + expression="if !(is3DEN) then {_this hideobjectglobal _value;};"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={4784.6821,256.79352,5205.7441}; + angles[]={6.2681909,0.42619967,6.1686831}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1360; + type="Land_SPE_Sandbag_Curve"; + }; + }; + id=89; + atlOffset=2.4587555; + }; + }; + id=76; + atlOffset=-8.8042297; + }; + class Item4 + { + dataType="Layer"; + name="outposts"; + class Entities + { + items=15; + class Item0 + { + dataType="Layer"; + name="outpost_2"; + class Entities + { + items=65; + class Item0 + { + dataType="Marker"; + position[]={3535.1162,243.9008,4200.147}; + name="outp_2_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=447; + }; + class Item1 + { + dataType="Marker"; + position[]={3557.095,244.356,4226.7651}; + name="outpost_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=114.005; + b=80; + angle=317.965; + id=450; + atlOffset=1.0258636; + }; + class Item2 + { + dataType="Marker"; + position[]={3540.1272,243.36865,4191.1323}; + name="outp_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=142.45743; + id=1980; + atlOffset=0.0004119873; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={3540.176,243.36507,4191.0996}; + angles[]={6.2531958,2.4852259,6.2382174}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1981; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Marker"; + position[]={3560.0742,242.76736,4197.1006}; + name="outp_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=144.47066; + id=1982; + atlOffset=0.19906616; + }; + class Item5 + { + dataType="Logic"; + class PositionInfo + { + position[]={3560.1218,242.82268,4197.0664}; + angles[]={6.2631927,2.5204301,6.2332239}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1983; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.25743103; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Marker"; + position[]={3567.8435,242.72899,4231.0864}; + name="outp_2_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=98.95948; + id=1984; + atlOffset=1.5258789e-005; + }; + class Item7 + { + dataType="Logic"; + class PositionInfo + { + position[]={3567.5544,242.75482,4231.2461}; + angles[]={6.2481956,1.7253978,6.2133002}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1985; + type="ModuleHideTerrainObjects_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Marker"; + position[]={3542.853,244.39644,4228.8491}; + name="outp_2_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=87.349205; + id=1986; + atlOffset=0.00039672852; + }; + class Item9 + { + dataType="Logic"; + class PositionInfo + { + position[]={3542.9077,244.39211,4228.8706}; + angles[]={0.0050152978,1.5229369,6.2132993}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1987; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Marker"; + position[]={3581.4063,241.3004,4212.2935}; + name="outp_2_vehicle_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=281.15067; + id=1988; + }; + class Item11 + { + dataType="Logic"; + class PositionInfo + { + position[]={3581.689,241.27579,4212.123}; + angles[]={6.2631836,4.9053001,6.2083287}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1989; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={3476.6362,245.02548,4275.9551}; + angles[]={0.059926469,5.7131348,0.08975438}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1971; + type="Land_SPE_BarbedWire_04"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={3489.4768,245.2238,4283.0552}; + angles[]={0.10462029,5.7131348,0.039979152}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1972; + type="Land_SPE_BarbedWire_04"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={3501.623,244.81567,4289.3281}; + angles[]={0.10955995,5.8108301,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1973; + type="Land_SPE_BarbedWire_04"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={3511.8218,244.40494,4293.3496}; + angles[]={0.08976236,5.8108301,6.2781701}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1974; + type="Land_SPE_BarbedWire_04"; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={3521.7986,244.02481,4298.0313}; + angles[]={0.054944519,5.8108301,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1975; + type="Land_SPE_BarbedWire_04"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={3532.3274,243.73305,4302.2627}; + angles[]={0.034989785,5.9614167,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1976; + type="Land_SPE_BarbedWire_04"; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={3542.5149,243.44272,4306.5029}; + angles[]={0.029997652,5.7506719,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1977; + type="Land_SPE_BarbedWire_04"; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={3552.5586,243.09734,4310.7856}; + angles[]={0.039979152,5.9668455,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1978; + type="Land_SPE_BarbedWire_04"; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={3563.9133,242.54124,4314.9463}; + angles[]={0.049961641,5.958395,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1979; + type="Land_SPE_BarbedWire_04"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={3626.9229,239.36252,4304.4131}; + angles[]={0.020001993,1.7452821,6.2083216}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1953; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.509,239.57121,4308.2285}; + angles[]={0.024996169,0.4415102,6.2182741}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1954; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={3619.5874,239.66588,4311.2959}; + angles[]={0.02999169,6.1073542,6.2232533}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1955; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={3598.2107,240.1456,4328.5771}; + angles[]={0.044968102,1.5493195,6.2432122}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1956; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={3599.7502,239.87434,4334.7896}; + angles[]={6.268187,0.34328538,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1957; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={3581.9165,241.01566,4322.8594}; + angles[]={0.054944519,5.3821239,6.2481976}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1958; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={3482.2561,244.73119,4279.2407}; + angles[]={0.084803045,4.3922839,0.064903215}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1959; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={3506.9507,244.13028,4291.3657}; + angles[]={0.094709083,4.9670744,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1960; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={3516.2568,243.72955,4295.5889}; + angles[]={0.074864805,3.8432591,6.2781701}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1961; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={3525.8132,243.42671,4299.9033}; + angles[]={0.049960449,1.7452821,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1962; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={3537.551,243.12483,4304.063}; + angles[]={0.029989703,5.8137565,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1963; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={3546.9773,242.81729,4308.9351}; + angles[]={0.029989703,0.53792977,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1964; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={3557.0403,242.43221,4312.0308}; + angles[]={0.044966776,0.57281768,6.2481976}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1965; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={3494.6799,244.55797,4286.4263}; + angles[]={0.11449496,3.220823,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1966; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={3467.9038,243.83173,4271.1763}; + angles[]={0.029989703,1.0150739,0.13419099}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1967; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={3449.468,240.66379,4260.7432}; + angles[]={6.2631927,0.38751075,0.18775691}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1968; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={3569.1563,241.77492,4316.8921}; + angles[]={0.049954481,6.0786042,6.2482042}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1969; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={3506.4954,245.81279,4231.0059}; + angles[]={0.014901142,2.2861543,0.040017951}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1927; + type="Land_HelipadEmpty_F"; + atlOffset=-1.5258789e-005; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={3535.6594,245.26237,4258.5938}; + angles[]={0,2.2861543,0}; + }; + side="Empty"; + class Attributes + { + }; + id=1928; + type="Land_HelipadEmpty_F"; + atlOffset=1.5258789e-005; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={3559.0637,243.78949,4279.6655}; + angles[]={0.049954481,2.2861543,6.2482042}; + }; + side="Empty"; + class Attributes + { + }; + id=1929; + type="Land_HelipadEmpty_F"; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={3537.5479,243.37401,4174.9248}; + angles[]={6.2481976,5.3807244,6.2481976}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1938; + type="Land_SPE_Sandbag_Curve"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={3613.697,239.04337,4208.2983}; + angles[]={6.2382188,2.199285,6.2083206}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1930; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={3647.2832,238.90247,4279.5938}; + angles[]={6.1588302,1.2808172,6.163754}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1931; + type="Land_SPE_Sandbag_Nest"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={3541.3542,243.20552,4173.02}; + angles[]={6.2481976,2.625699,6.2482042}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1936; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={3533.4868,243.57364,4176.5254}; + angles[]={6.2432065,4.1241522,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1937; + type="Land_SPE_Sandbag_Nest"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={3507.8337,245.81415,4220.4126}; + angles[]={6.2482042,5.5779958,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1947; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={3538.561,245.47926,4246.0093}; + angles[]={6.2731848,5.5779958,6.233232}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1948; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.9939,239.92719,4300.5239}; + angles[]={0.020001993,5.5559397,6.2133002}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1950; + type="Land_SPE_Sandbag_Nest"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={3645.8884,238.22908,4276.1934}; + angles[]={6.1934304,0.81969625,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1932; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={3645.1296,238.96863,4282.0459}; + angles[]={6.228241,5.2160244,6.2531977}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1933; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={3614.8586,238.67831,4211.1714}; + angles[]={6.2382107,2.9942641,6.2083287}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1934; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={3611.3101,238.72275,4206.4668}; + angles[]={6.2382188,1.5087719,6.2083206}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1935; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={3542.8096,242.82983,4175.606}; + angles[]={6.2531958,0.4937253,6.2482023}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1939; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={3544.0845,242.84079,4177.4434}; + angles[]={6.2531958,0.95766062,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1940; + type="Land_SPE_Sandbag_Short"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={3533.3508,243.26947,4179.25}; + angles[]={6.2432065,6.1964912,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1941; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={3533.9619,243.34621,4181.853}; + angles[]={6.2481976,0.41376883,6.2482042}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1942; + type="Land_SPE_Sandbag_Short"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={3511.8447,245.31656,4220.3838}; + angles[]={6.2482042,5.0781159,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1943; + type="Land_SPE_Sandbag_Short"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={3542.656,244.84987,4245.729}; + angles[]={6.268187,5.0781159,6.228241}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1944; + type="Land_SPE_Sandbag_Short"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={3538.3909,244.99207,4241.6636}; + angles[]={6.2581892,6.0253778,6.2332239}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1945; + type="Land_SPE_Sandbag_Short"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={3507.4463,245.26859,4216.3726}; + angles[]={6.2482042,5.959816,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1946; + type="Land_SPE_Sandbag_Short"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.4009,239.60269,4297.7622}; + angles[]={0.01999305,3.2182891,6.2033529}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1951; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={3625.033,239.67943,4295.3965}; + angles[]={0.020001993,3.3143313,6.2033529}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1952; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item63 + { + dataType="Logic"; + class PositionInfo + { + position[]={3625.8367,239.55168,4298.7017}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1949; + type="ModuleHideTerrainObjects_F"; + atlOffset=-4.5776367e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={3460.9028,243.32428,4265.9575}; + angles[]={6.278182,5.7131348,0.16352737}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1970; + type="Land_SPE_BarbedWire_04"; + }; + }; + id=118; + atlOffset=-3.1065063; + }; + class Item1 + { + dataType="Layer"; + name="outpost_3"; + class Entities + { + items=25; + class Item0 + { + dataType="Marker"; + position[]={5117.5654,316.34354,3084.7642}; + name="outp_3_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=554; + }; + class Item1 + { + dataType="Marker"; + position[]={5137.0039,316.37411,3094.6301}; + name="outp_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=21.35519; + b=5; + angle=265.70752; + id=556; + atlOffset=-0.63470459; + }; + class Item2 + { + dataType="Marker"; + position[]={5135.3901,319.46149,3054.9648}; + name="outpost_3"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorGUER"; + a=103.27671; + b=180.66194; + angle=355.20401; + id=557; + atlOffset=2.6105652; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={5183.0933,315.43875,3040.4426}; + angles[]={0,1.5707964,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=907; + type="Land_Radar_01_airshaft_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={5180.9839,333.46082,3040.9622}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=908; + type="Land_TTowerBig_1_F"; + }; + class Item5 + { + dataType="Marker"; + position[]={5149.1987,315.93106,3024.084}; + name="outp_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=269.11627; + id=2034; + }; + class Item6 + { + dataType="Marker"; + position[]={5119.6626,314.37057,2967.1821}; + name="outp_3_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=2042; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={5113.0054,318.38773,3087.0415}; + angles[]={6.1245418,3.5532691,6.1637464}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2029; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={5118.3423,318.49146,3079.1794}; + angles[]={0.024989013,4.5950942,6.1934309}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2030; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={5119.5107,318.06454,3090.2437}; + angles[]={0.025003321,4.9364901,6.1835108}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2031; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={5175.6987,314.71509,3032.4585}; + angles[]={0.0099949092,4.5950942,0.039971694}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2043; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={5182.6421,314.49106,3034.7095}; + angles[]={6.278182,4.2172194,6.183526}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2044; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={5191.085,313.61688,3037.5771}; + angles[]={6.268187,3.0795698,6.183526}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2045; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={5190.3799,313.76495,3044.3638}; + angles[]={6.2731786,2.7564559,6.2033687}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2046; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={5184.1475,314.42627,3048.6406}; + angles[]={0,4.7370734,6.1785579}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2047; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={5178.0317,314.75314,3048.5713}; + angles[]={6.2631865,4.6919618,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2048; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={5138.4341,312.16931,2903.0918}; + angles[]={6.1342869,1.9278401,6.2332392}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2035; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={5106.8257,312.01041,2918.9102}; + angles[]={6.2033539,4.2171001,0.16838855}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2036; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={5086.4194,320.80286,3173.6748}; + angles[]={6.2083287,0.53904861,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2037; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={5107.0034,317.48572,3134.4585}; + angles[]={6.2531958,1.3226979,6.1983824}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2038; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={5130.3135,317.47003,3052.1104}; + angles[]={0.0049914722,1.2569965,6.1983981}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2039; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={5138.3027,315.79715,2965.9268}; + angles[]={0.014998405,1.7077113,6.2133069}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2040; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={5117.7788,311.97275,2905.0798}; + angles[]={6.1736255,3.6085885,0.059941396}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2041; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Logic"; + class PositionInfo + { + position[]={5137.4878,316.99677,3094.458}; + angles[]={0.025003321,6.1738014,0.0099949092}; + }; + areaSize[]={5,0,21.725807}; + areaIsRectangle=1; + flags=1; + id=2032; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.025848389; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item24 + { + dataType="Logic"; + class PositionInfo + { + position[]={5149.041,315.94925,3024.1074}; + angles[]={6.2481976,0,6.1736255}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=2033; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=123; + atlOffset=-1.1253967; + }; + class Item2 + { + dataType="Layer"; + name="outpost_4"; + class Entities + { + items=174; + class Item0 + { + dataType="Marker"; + position[]={3619.8276,134.35419,1603.9438}; + name="outp_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.885468; + b=5; + angle=241.05707; + id=559; + atlOffset=0.073608398; + }; + class Item1 + { + dataType="Marker"; + position[]={3624.8613,134.27173,1588.6924}; + name="outpost_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=102.69428; + b=44.715759; + angle=330.94629; + id=560; + atlOffset=0.019500732; + }; + class Item2 + { + dataType="Marker"; + position[]={3646.4985,133.72812,1621.231}; + name="outp_4_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=561; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={3620.1812,134.35274,1603.9795}; + angles[]={6.278194,4.2072411,6.278182}; + }; + areaSize[]={12.908094,0,5}; + areaIsRectangle=1; + flags=1; + id=1435; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.073745728; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Marker"; + position[]={3575.2971,134.6916,1588.8595}; + name="outp_4_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=17.711285; + b=5; + angle=147.52995; + id=1798; + atlOffset=0.19184875; + }; + class Item5 + { + dataType="Logic"; + class PositionInfo + { + position[]={3575.2056,134.69443,1589.1885}; + angles[]={6.278182,2.5748749,6.268187}; + }; + areaSize[]={17.693342,0,5}; + areaIsRectangle=1; + flags=1; + id=1799; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.19447327; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Marker"; + position[]={3617.4941,134.41423,1576.0829}; + name="outp_4_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + angle=115.32433; + id=1805; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={3530.8718,135.9128,1579.3859}; + angles[]={6.2033615,3.1365538,6.2332249}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1638; + type="Land_SPE_BarbedWire_04"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={3536.5813,136.82414,1590.2343}; + angles[]={6.2133002,4.1629987,6.2182822}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1639; + type="Land_SPE_BarbedWire_04"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={3543.0925,134.40727,1564.448}; + angles[]={6.2631927,4.4170952,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1744; + type="Land_SPE_BarbedWire_03"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={3546.0791,134.35043,1554.4708}; + angles[]={0,4.4170952,0.01499443}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1745; + type="Land_SPE_BarbedWire_03"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={3549.9902,134.46899,1543.0244}; + angles[]={0,4.4170952,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1746; + type="Land_SPE_BarbedWire_03"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={3555.8965,134.64667,1533.2576}; + angles[]={0,3.8759754,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1747; + type="Land_SPE_BarbedWire_03"; + atlOffset=1.5258789e-005; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={3566.9495,134.89761,1527.879}; + angles[]={6.278182,3.3339183,0.01999305}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1748; + type="Land_SPE_BarbedWire_03"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={3578.8433,135.13396,1529.1133}; + angles[]={0.044968102,2.7776349,0.064911485}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1749; + type="Land_SPE_BarbedWire_03"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={3590.5664,135.18163,1534.3628}; + angles[]={0.020001993,2.7343898,0.069885373}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1750; + type="Land_SPE_BarbedWire_03"; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={3635.2849,134.17354,1554.0635}; + angles[]={0,2.7343898,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1751; + type="Land_SPE_BarbedWire_03"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={3621.8708,134.4908,1548.2035}; + angles[]={0.0050033992,2.7343898,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1752; + type="Land_SPE_BarbedWire_03"; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={3605.8074,134.91957,1540.9797}; + angles[]={0.024998553,2.7343898,6.2581868}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1753; + type="Land_SPE_BarbedWire_03"; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={3667.1826,133.64558,1575.6697}; + angles[]={0,1.9598225,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1754; + type="Land_SPE_BarbedWire_03"; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={3658.5046,133.88525,1564.8755}; + angles[]={0.044968102,2.6153717,0.08975438}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1755; + type="Land_SPE_BarbedWire_03"; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={3642.5325,134.29163,1669.6732}; + angles[]={6.1588302,0,6.178565}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1682; + type="Land_SPE_BarbedWire_02"; + atlOffset=0.039108276; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={3632.0964,134.5925,1664.6344}; + angles[]={6.198391,2.8220952,6.1785731}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1683; + type="Land_SPE_BarbedWire_02"; + atlOffset=0.039108276; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={3497.5547,137.40623,1565.1788}; + angles[]={6.1391926,1.3139147,6.1147971}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1684; + type="Land_SPE_BarbedWire_02"; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={3503.5605,136.10265,1552.5822}; + angles[]={6.2332311,1.0777808,6.1835108}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1685; + type="Land_SPE_BarbedWire_02"; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={3508.032,137.3219,1573.1666}; + angles[]={6.1588302,2.6152058,6.173625}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1686; + type="Land_SPE_BarbedWire_02"; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={3521.043,136.894,1578.8186}; + angles[]={6.139185,2.7164304,6.1835189}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1687; + type="Land_SPE_BarbedWire_02"; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={3502.2874,138.74113,1605.7491}; + angles[]={0.039973188,2.8220952,0.039980642}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1698; + type="Land_SPE_BarbedWire_02"; + atlOffset=1.5258789e-005; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={3528.929,138.11581,1620.047}; + angles[]={0.020001993,5.7148423,0.039980642}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1701; + type="Land_SPE_BarbedWire_02"; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={3544.7422,138.09291,1629.287}; + angles[]={6.2581964,5.2483702,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1702; + type="Land_SPE_BarbedWire_02"; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={3508.761,135.60629,1523.1666}; + angles[]={6.19839,4.1649451,0.11449496}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1703; + type="Land_SPE_BarbedWire_02"; + atlOffset=1.5258789e-005; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={3530.0295,135.68645,1497.6934}; + angles[]={6.2631807,4.1677141,0.099666774}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1704; + type="Land_SPE_BarbedWire_02"; + atlOffset=1.5258789e-005; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={3656.5786,133.78018,1573.7786}; + angles[]={6.278194,1.9019071,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1715; + type="Land_SPE_Dugout_6m45_sandbags"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={3665.9932,133.44785,1604.1599}; + angles[]={0.014998405,1.0678587,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1717; + type="Land_SPE_Dugout_6m45_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={3574.0979,135.00099,1537.9705}; + angles[]={0,2.7921228,0.0099949092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1737; + type="Land_SPE_Dugout_6m45_sandbags"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={3567.2219,134.91444,1540.9951}; + angles[]={0,3.6843672,0.01999305}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1738; + type="Land_SPE_Dugout_6m45_sandbags"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={3556.8455,134.86766,1583.9515}; + angles[]={6.2581868,4.7693591,6.2581868}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1778; + type="Land_SPE_Dugout_6m45_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={3655.7561,132.67177,1639.3711}; + angles[]={0.034988083,6.1137395,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1779; + type="Land_SPE_Dugout_6m45_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={3662.6047,133.67255,1591.8656}; + angles[]={0.0050033992,1.8905898,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1712; + type="Land_SPE_Dugout_6m_sandbags"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={3660.7454,133.74136,1586.244}; + angles[]={0,1.8905965,6.2581964}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1713; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={3658.8271,133.77132,1580.3984}; + angles[]={6.278182,1.8905615,6.2581964}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1714; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={3664.4712,133.57137,1597.4496}; + angles[]={0.010000871,1.8906108,6.25319}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1716; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={3644.6272,133.95746,1567.9868}; + angles[]={0,2.742363,6.2631865}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1721; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={3639.1721,134.05496,1565.6846}; + angles[]={6.278182,2.7424607,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1722; + type="Land_SPE_Dugout_6m_sandbags"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={3633.5095,134.1698,1563.2793}; + angles[]={0,2.7424419,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1723; + type="Land_SPE_Dugout_6m_sandbags"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={3650.0588,133.87041,1570.2587}; + angles[]={6.278182,2.7423823,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1724; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={3613.3403,134.61475,1554.3514}; + angles[]={0.0050033992,2.742363,6.2581964}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1725; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={3607.8853,134.75204,1552.0492}; + angles[]={0.0050033992,2.7424607,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1726; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={3602.2227,134.88733,1549.6439}; + angles[]={0.0050033992,2.7424419,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1727; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={3618.772,134.49144,1556.6233}; + angles[]={0.0050033992,2.7423823,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1728; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={3591.1313,135.04955,1544.9615}; + angles[]={0.0050033992,2.742363,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1729; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={3585.6763,135.07001,1542.6593}; + angles[]={0,2.7424607,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1730; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={3580.0137,135.06006,1540.254}; + angles[]={0,2.7424419,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1731; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={3596.563,134.9882,1547.2334}; + angles[]={0.0049914722,2.7423823,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1732; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={3563.2959,134.74126,1553.761}; + angles[]={0.010000871,4.4258738,0.029987715}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1739; + type="Land_SPE_Dugout_6m_sandbags"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={3561.6226,134.64146,1559.4406}; + angles[]={0.0050033992,4.4259343,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1740; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={3559.8701,134.57674,1565.338}; + angles[]={0,4.4259157,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1741; + type="Land_SPE_Dugout_6m_sandbags"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={3564.9419,134.83246,1548.108}; + angles[]={0.010000871,4.4259677,0.024993783}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1742; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={3558.1123,134.58017,1571.233}; + angles[]={6.268187,4.4259276,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1743; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={3662.6353,133.47324,1609.847}; + angles[]={0.015006351,0.99390703,6.2531877}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1770; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={3642.3496,133.34848,1634.6012}; + angles[]={0.034989785,5.7375975,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1780; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={3611.3149,134.42223,1617.0748}; + angles[]={6.278194,5.7854147,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1781; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={3626.8879,134.04626,1626.0515}; + angles[]={0.029997652,5.7378588,6.2581892}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1782; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={3566.0625,134.74689,1592.4376}; + angles[]={6.2631893,5.7854147,6.2531877}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1783; + type="Land_SPE_Dugout_6m_sandbags"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={3581.4133,134.46996,1601.214}; + angles[]={6.268187,5.7854147,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1784; + type="Land_SPE_Dugout_6m_sandbags"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={3490.2524,137.2984,1563.9644}; + angles[]={6.139185,0.95216131,6.2182751}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1640; + type="Land_SPE_HedgeHog"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item66 + { + dataType="Object"; + class PositionInfo + { + position[]={3491.3921,136.54466,1559.9528}; + angles[]={6.2083216,5.228261,6.1391926}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1641; + type="Land_SPE_HedgeHog"; + atlOffset=4.5776367e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={3493.0623,136.12637,1554.9399}; + angles[]={6.233232,4.3507061,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1642; + type="Land_SPE_HedgeHog"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item68 + { + dataType="Object"; + class PositionInfo + { + position[]={3493.7493,135.91429,1551.1133}; + angles[]={6.2232599,0.58375055,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1643; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item69 + { + dataType="Object"; + class PositionInfo + { + position[]={3499.7041,135.51991,1548.3015}; + angles[]={6.22824,4.0742793,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1644; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item70 + { + dataType="Object"; + class PositionInfo + { + position[]={3499.4485,135.31996,1541.8612}; + angles[]={6.2432065,3.6285002,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1645; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item71 + { + dataType="Object"; + class PositionInfo + { + position[]={3502.1973,135.09991,1535.6172}; + angles[]={6.2182741,1.0751283,0.074864008}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1646; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item72 + { + dataType="Object"; + class PositionInfo + { + position[]={3475.5569,137.6566,1576.5923}; + angles[]={6.2382188,4.0742793,6.2382188}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1647; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item73 + { + dataType="Object"; + class PositionInfo + { + position[]={3473.6729,138.05907,1582.5037}; + angles[]={6.2481976,4.5697622,6.2482042}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1648; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item74 + { + dataType="Object"; + class PositionInfo + { + position[]={3463.2559,137.94038,1569.7155}; + angles[]={6.2282486,2.7406602,6.2481976}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1649; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item75 + { + dataType="Object"; + class PositionInfo + { + position[]={3483.3293,137.86949,1586.5338}; + angles[]={6.228241,4.7680664,6.2531977}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1650; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item76 + { + dataType="Object"; + class PositionInfo + { + position[]={3488.6111,137.36176,1581.9075}; + angles[]={0.010000871,6.0561733,6.2681909}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1651; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item77 + { + dataType="Object"; + class PositionInfo + { + position[]={3497.3821,137.2175,1586.1509}; + angles[]={6.2083297,0.73672938,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1652; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item78 + { + dataType="Object"; + class PositionInfo + { + position[]={3649.3474,132.86464,1673.8285}; + angles[]={6.2033539,0,6.1637616}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1675; + type="Land_SPE_HedgeHog"; + atlOffset=4.5776367e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item79 + { + dataType="Object"; + class PositionInfo + { + position[]={3665.6521,132.03058,1660.5791}; + angles[]={0.01999305,2.4804862,6.2482042}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1676; + type="Land_SPE_HedgeHog"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item80 + { + dataType="Object"; + class PositionInfo + { + position[]={3661.3088,132.22903,1658.1127}; + angles[]={0.014998405,4.8970513,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1677; + type="Land_SPE_HedgeHog"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item81 + { + dataType="Object"; + class PositionInfo + { + position[]={3656.8298,132.45132,1654.5679}; + angles[]={0.01999305,3.2847829,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1678; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item82 + { + dataType="Object"; + class PositionInfo + { + position[]={3661.062,132.10321,1675.4584}; + angles[]={6.2182822,1.9118153,6.178565}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1679; + type="Land_SPE_HedgeHog"; + atlOffset=-7.6293945e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item83 + { + dataType="Object"; + class PositionInfo + { + position[]={3659.0527,132.70457,1678.7511}; + angles[]={6.1835179,5.1458426,6.178566}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1680; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item84 + { + dataType="Object"; + class PositionInfo + { + position[]={3661.2859,132.8044,1684.7762}; + angles[]={0.010000871,1.2526568,6.2382092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1681; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item85 + { + dataType="Object"; + class PositionInfo + { + position[]={3650.1069,132.85359,1641.2853}; + angles[]={0.024996169,5.9548264,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1785; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item86 + { + dataType="Object"; + class PositionInfo + { + position[]={3645.2954,133.0909,1639.576}; + angles[]={0.029989703,3.7610896,6.2432065}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1786; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item87 + { + dataType="Object"; + class PositionInfo + { + position[]={3636.0793,133.56262,1633.8578}; + angles[]={0.034989785,5.5973158,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1787; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item88 + { + dataType="Object"; + class PositionInfo + { + position[]={3633.3154,133.67801,1632.6381}; + angles[]={0.029989703,5.4214149,6.2581892}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1788; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item89 + { + dataType="Object"; + class PositionInfo + { + position[]={3630.4304,133.79996,1631.3103}; + angles[]={0.029997652,4.8381209,6.2581892}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1789; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item90 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.292,134.22076,1625.1716}; + angles[]={0.019996032,2.757529,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1790; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item91 + { + dataType="Object"; + class PositionInfo + { + position[]={3615.8176,134.3494,1622.4283}; + angles[]={0.010000871,5.9304633,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1791; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item92 + { + dataType="Object"; + class PositionInfo + { + position[]={3553.991,134.65222,1575.7383}; + angles[]={6.2531958,3.4692194,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1792; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item93 + { + dataType="Object"; + class PositionInfo + { + position[]={3554.2107,134.74261,1578.4199}; + angles[]={6.2481956,5.0942278,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1793; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item94 + { + dataType="Object"; + class PositionInfo + { + position[]={3560.3606,134.92909,1590.5397}; + angles[]={6.2581892,5.9330668,6.2432137}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1794; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item95 + { + dataType="Object"; + class PositionInfo + { + position[]={3570.4829,134.68187,1597.7548}; + angles[]={6.268187,2.3940899,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1795; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item96 + { + dataType="Object"; + class PositionInfo + { + position[]={3575.1411,134.58081,1599.5012}; + angles[]={6.2731848,5.3437281,6.2531977}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1796; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item97 + { + dataType="Object"; + class PositionInfo + { + position[]={3656.2695,133.83173,1581.424}; + angles[]={6.278182,5.0047669,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1705; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item98 + { + dataType="Object"; + class PositionInfo + { + position[]={3657.1846,133.82738,1584.215}; + angles[]={6.278182,5.0047936,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1706; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item99 + { + dataType="Object"; + class PositionInfo + { + position[]={3659.1279,133.7818,1590.0398}; + angles[]={0,5.0048194,6.2581892}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1707; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item100 + { + dataType="Object"; + class PositionInfo + { + position[]={3660.5188,133.73024,1592.8391}; + angles[]={0.0050033992,5.0048871,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1708; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item101 + { + dataType="Object"; + class PositionInfo + { + position[]={3658.1152,133.80711,1587.2181}; + angles[]={0,5.0048199,6.2581892}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1709; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item102 + { + dataType="Object"; + class PositionInfo + { + position[]={3655.3911,133.83388,1578.3381}; + angles[]={6.278182,5.0047588,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1710; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item103 + { + dataType="Object"; + class PositionInfo + { + position[]={3661.4578,133.67281,1596.6161}; + angles[]={0.010000871,5.0048871,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1718; + type="Land_SPE_US_Tent"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item104 + { + dataType="Object"; + class PositionInfo + { + position[]={3662.3745,133.62215,1599.3253}; + angles[]={0.0050033992,5.0048256,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1719; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item105 + { + dataType="Object"; + class PositionInfo + { + position[]={3663.6355,133.54091,1603.0023}; + angles[]={0.009988944,5.00489,6.2531977}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1720; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item106 + { + dataType="Object"; + class PositionInfo + { + position[]={3658.1924,133.69884,1604.5406}; + angles[]={0.010000871,5.00489,6.25319}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1756; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item107 + { + dataType="Object"; + class PositionInfo + { + position[]={3657.1279,133.76942,1601.1111}; + angles[]={0.010000871,5.00489,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1757; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item108 + { + dataType="Object"; + class PositionInfo + { + position[]={3656.1475,133.8264,1597.8358}; + angles[]={0.0050033992,5.00489,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1758; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item109 + { + dataType="Object"; + class PositionInfo + { + position[]={3655.1104,133.87907,1594.6346}; + angles[]={0.0050033992,5.00489,6.2581892}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1759; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item110 + { + dataType="Object"; + class PositionInfo + { + position[]={3654.2456,133.91373,1591.7788}; + angles[]={0.0050033992,5.00489,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1760; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item111 + { + dataType="Object"; + class PositionInfo + { + position[]={3653.2048,133.93703,1588.2264}; + angles[]={6.278182,5.00489,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1761; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item112 + { + dataType="Object"; + class PositionInfo + { + position[]={3652.4441,133.93979,1585.7334}; + angles[]={6.278182,5.00489,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1762; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item113 + { + dataType="Object"; + class PositionInfo + { + position[]={3651.1023,133.95255,1582.9208}; + angles[]={6.278182,5.00489,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1763; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item114 + { + dataType="Object"; + class PositionInfo + { + position[]={3650.0984,133.94427,1579.6241}; + angles[]={6.2731848,5.00489,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1764; + type="Land_SPE_US_Tent"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item115 + { + dataType="Object"; + class PositionInfo + { + position[]={3530.5466,137.01201,1588.3693}; + angles[]={0.0099949092,1.1923722,6.1736331}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1633; + type="Land_SPE_Sandbag_Curve"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item116 + { + dataType="Object"; + class PositionInfo + { + position[]={3529.7229,136.44466,1582.9404}; + angles[]={6.1342936,5.8676858,6.2083216}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1635; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item117 + { + dataType="Object"; + class PositionInfo + { + position[]={3575.2295,136.05545,1516.4745}; + angles[]={6.2133002,4.2561455,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1653; + type="Land_SPE_Sandbag_Long"; + atlOffset=0.0009765625; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item118 + { + dataType="Object"; + class PositionInfo + { + position[]={3595.6096,135.80113,1527.3894}; + angles[]={0.0099949092,4.2561455,6.2033615}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1654; + type="Land_SPE_Sandbag_Long"; + atlOffset=0.0009765625; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item119 + { + dataType="Object"; + class PositionInfo + { + position[]={3613.4417,135.41092,1534.0869}; + angles[]={0.029987715,4.2561455,6.228241}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1655; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item120 + { + dataType="Object"; + class PositionInfo + { + position[]={3651.5796,134.69957,1552.8353}; + angles[]={6.19839,4.2561455,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1656; + type="Land_SPE_Sandbag_Long"; + atlOffset=0.0009765625; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item121 + { + dataType="Object"; + class PositionInfo + { + position[]={3674.6082,134.69211,1564.6378}; + angles[]={6.2182741,4.2561455,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1657; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item122 + { + dataType="Object"; + class PositionInfo + { + position[]={3659.4614,132.43703,1673.3008}; + angles[]={6.2781701,5.6771393,6.2132993}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1658; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item123 + { + dataType="Object"; + class PositionInfo + { + position[]={3624.3835,134.55276,1661.7029}; + angles[]={6.2033606,4.2561455,6.2382092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1659; + type="Land_SPE_Sandbag_Long"; + atlOffset=0.0009765625; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item124 + { + dataType="Object"; + class PositionInfo + { + position[]={3608.2366,135.24765,1657.7035}; + angles[]={6.2581892,4.2561455,6.2083287}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1660; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item125 + { + dataType="Object"; + class PositionInfo + { + position[]={3587.0466,136.58467,1644.7448}; + angles[]={6.2482042,4.2561455,6.1934233}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1661; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item126 + { + dataType="Object"; + class PositionInfo + { + position[]={3560.0671,137.06595,1629.7197}; + angles[]={6.1983833,4.2561455,6.2232599}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1662; + type="Land_SPE_Sandbag_Long"; + atlOffset=0.0009765625; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item127 + { + dataType="Object"; + class PositionInfo + { + position[]={3541.1641,137.60081,1621.5747}; + angles[]={6.2033615,4.2561455,6.1983824}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1663; + type="Land_SPE_Sandbag_Long"; + atlOffset=0.0009765625; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item128 + { + dataType="Object"; + class PositionInfo + { + position[]={3501.9209,137.93161,1594.7976}; + angles[]={6.1588306,5.9824557,6.1686907}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1664; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item129 + { + dataType="Object"; + class PositionInfo + { + position[]={3654.6868,134.18011,1605.2097}; + angles[]={0.010000871,0.34914947,6.2531977}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1765; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item130 + { + dataType="Object"; + class PositionInfo + { + position[]={3653.0525,134.28543,1599.5826}; + angles[]={0.010000871,0.34914947,6.2531977}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1766; + type="Land_SPE_Sandbag_Long"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item131 + { + dataType="Object"; + class PositionInfo + { + position[]={3651.1167,134.36554,1593.8706}; + angles[]={0.0050033992,3.4671085,6.2581964}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1767; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item132 + { + dataType="Object"; + class PositionInfo + { + position[]={3649.0938,134.40694,1587.1991}; + angles[]={6.278182,0.32783917,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1768; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item133 + { + dataType="Object"; + class PositionInfo + { + position[]={3647.4944,134.39929,1581.8894}; + angles[]={6.2731967,0.28541541,6.2681909}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1769; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item134 + { + dataType="Object"; + class PositionInfo + { + position[]={3652.0361,134.04259,1620.6024}; + angles[]={0.029997652,0.2487786,6.2531877}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1800; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item135 + { + dataType="Object"; + class PositionInfo + { + position[]={3641.22,134.32169,1621.5828}; + angles[]={0.024998553,0.2487786,6.2581868}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1801; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item136 + { + dataType="Object"; + class PositionInfo + { + position[]={3644.9219,134.0743,1625.9945}; + angles[]={0.034982968,4.086091,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1802; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item137 + { + dataType="Object"; + class PositionInfo + { + position[]={3649.7915,133.94373,1625.3827}; + angles[]={0.039979152,5.2699194,6.2481976}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1803; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item138 + { + dataType="Object"; + class PositionInfo + { + position[]={3648.26,134.26244,1616.4607}; + angles[]={0.024996169,4.086091,6.2531877}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1804; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item139 + { + dataType="Object"; + class PositionInfo + { + position[]={3614.5574,134.96713,1571.3463}; + angles[]={0.010000871,2.2616496,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1806; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item140 + { + dataType="Object"; + class PositionInfo + { + position[]={3620.0701,134.80402,1580.7037}; + angles[]={0.010000871,2.2617891,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1807; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item141 + { + dataType="Object"; + class PositionInfo + { + position[]={3622.4744,134.81728,1575.4705}; + angles[]={0.0049914722,6.0990272,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1808; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item142 + { + dataType="Object"; + class PositionInfo + { + position[]={3619.8384,134.88753,1571.3304}; + angles[]={0.0049914722,0.9995786,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1809; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=1.5258789e-005; + }; + class Item143 + { + dataType="Object"; + class PositionInfo + { + position[]={3612.429,134.92734,1576.5311}; + angles[]={0.014998405,6.0990644,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1810; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item144 + { + dataType="Object"; + class PositionInfo + { + position[]={3644.5229,133.20528,1664.6763}; + angles[]={6.1884756,1.005841,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1668; + type="Land_SPE_Sandbag_Nest"; + atlOffset=0.0021209717; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item145 + { + dataType="Object"; + class PositionInfo + { + position[]={3610.4949,135.70557,1531.8452}; + angles[]={6.2531958,2.7806933,6.188468}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1690; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item146 + { + dataType="Object"; + class PositionInfo + { + position[]={3671.8616,134.52548,1562.4628}; + angles[]={6.2133002,2.0199876,0.034989785}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1691; + type="Land_SPE_Sandbag_Nest"; + atlOffset=-0.019287109; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item147 + { + dataType="Object"; + class PositionInfo + { + position[]={3604.7678,135.53946,1656.9469}; + angles[]={6.2581868,5.828474,6.2033529}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1693; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item148 + { + dataType="Object"; + class PositionInfo + { + position[]={3502.3901,137.67473,1591.2963}; + angles[]={6.2332239,4.0528355,6.2132993}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1694; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item149 + { + dataType="Object"; + class PositionInfo + { + position[]={3501.26,138.46504,1599.0656}; + angles[]={6.228241,5.316462,6.2033539}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1696; + type="Land_SPE_Sandbag_Nest"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item150 + { + dataType="Object"; + class PositionInfo + { + position[]={3531.9683,135.61346,1581.2888}; + angles[]={6.144083,1.1113641,6.1884756}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1636; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item151 + { + dataType="Object"; + class PositionInfo + { + position[]={3486.0315,138.26065,1590.337}; + angles[]={6.1934237,0.6630227,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1665; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item152 + { + dataType="Object"; + class PositionInfo + { + position[]={3525.541,137.61038,1611.811}; + angles[]={6.2132993,4.1971798,6.188468}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1666; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item153 + { + dataType="Object"; + class PositionInfo + { + position[]={3657.5071,132.44493,1676.04}; + angles[]={6.0906024,5.6192646,6.228241}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1667; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item154 + { + dataType="Object"; + class PositionInfo + { + position[]={3643.9539,132.78189,1662.171}; + angles[]={0.01999305,0.54211938,6.1686907}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1669; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item155 + { + dataType="Object"; + class PositionInfo + { + position[]={3642.4905,133.10751,1666.2604}; + angles[]={6.1245341,2.5132387,6.1934233}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1670; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item156 + { + dataType="Object"; + class PositionInfo + { + position[]={3642.1333,132.8618,1661.1763}; + angles[]={0.01999305,4.2982378,6.2482042}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1671; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item157 + { + dataType="Object"; + class PositionInfo + { + position[]={3640.1287,132.95844,1659.8531}; + angles[]={0.01999305,1.0335404,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1672; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item158 + { + dataType="Object"; + class PositionInfo + { + position[]={3641.0916,133.29968,1666.421}; + angles[]={6.11479,1.1756266,6.153913}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1673; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item159 + { + dataType="Object"; + class PositionInfo + { + position[]={3508.1084,135.58594,1532.2242}; + angles[]={0.099666774,2.5639641,0.16838855}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1688; + type="Land_SPE_Sandbag_Short"; + atlOffset=-6.1035156e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item160 + { + dataType="Object"; + class PositionInfo + { + position[]={3517.844,136.2952,1520.212}; + angles[]={6.2033529,2.781646,0.074856833}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1689; + type="Land_SPE_Sandbag_Short"; + atlOffset=-6.1035156e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item161 + { + dataType="Object"; + class PositionInfo + { + position[]={3669.3611,134.08549,1561.354}; + angles[]={6.19839,1.3333595,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1692; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item162 + { + dataType="Object"; + class PositionInfo + { + position[]={3503.2361,138.1144,1600.8232}; + angles[]={6.2033539,3.9008994,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1699; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item163 + { + dataType="Object"; + class PositionInfo + { + position[]={3504.8494,138.12538,1602.9083}; + angles[]={0.020001993,3.9008994,6.1934237}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1700; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item164 + { + dataType="Object"; + class PositionInfo + { + position[]={3576.4604,137.50415,1560.1278}; + angles[]={0.0099949092,5.875061,0.010000871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1771; + type="Land_SPE_Tent_03"; + }; + class Item165 + { + dataType="Object"; + class PositionInfo + { + position[]={3598.8372,137.37119,1569.4185}; + angles[]={0.01499443,5.875061,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1776; + type="Land_SPE_Tent_03"; + }; + class Item166 + { + dataType="Object"; + class PositionInfo + { + position[]={3634.0642,136.84622,1587.1415}; + angles[]={6.278194,5.875061,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1777; + type="Land_SPE_Tent_03"; + }; + class Item167 + { + dataType="Object"; + class PositionInfo + { + position[]={3633.7815,135.78355,1570.8568}; + angles[]={0,5.839448,6.2631865}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1772; + type="Land_SPE_Tent_01"; + }; + class Item168 + { + dataType="Object"; + class PositionInfo + { + position[]={3612.4307,136.22551,1560.5835}; + angles[]={0.0050033992,5.839448,6.2581892}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1773; + type="Land_SPE_Tent_01"; + }; + class Item169 + { + dataType="Object"; + class PositionInfo + { + position[]={3595.3127,136.57094,1553.5117}; + angles[]={0.010000871,5.839448,6.2731848}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1774; + type="Land_SPE_Tent_01"; + }; + class Item170 + { + dataType="Object"; + class PositionInfo + { + position[]={3578.5254,136.64262,1545.8428}; + angles[]={0.0050033992,5.9563398,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1775; + type="Land_SPE_Tent_01"; + atlOffset=1.5258789e-005; + }; + class Item171 + { + dataType="Object"; + class PositionInfo + { + position[]={3527.3909,137.11865,1585.7554}; + angles[]={6.0906024,4.3819723,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1631; + type="Land_SPE_Sandbag_Nest"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item172 + { + dataType="Object"; + class PositionInfo + { + position[]={3527.603,136.56711,1581.8163}; + angles[]={6.1099439,1.1783571,6.19839}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1634; + type="Land_SPE_BarbedWire_04"; + }; + class Item173 + { + dataType="Object"; + class PositionInfo + { + position[]={3763.7952,127.2833,1732.3901}; + angles[]={0,0,6.2182751}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1674; + type="Land_SPE_HedgeHog"; + atlOffset=-7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=128; + atlOffset=-0.96459961; + }; + class Item3 + { + dataType="Layer"; + name="outpost_5"; + class Entities + { + items=22; + class Item0 + { + dataType="Marker"; + position[]={1526.0804,196.32864,3678.1433}; + name="outp_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=109.57747; + id=563; + atlOffset=9.1552734e-005; + }; + class Item1 + { + dataType="Marker"; + position[]={1496.9965,196.42766,3669.01}; + name="outpost_5"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=98.021454; + b=87.026459; + angle=337.24435; + id=564; + atlOffset=0.70246887; + }; + class Item2 + { + dataType="Marker"; + position[]={1482.3927,195.7401,3673.8118}; + name="outp_5_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=2; + b=2; + id=565; + }; + class Item3 + { + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + dataType="Marker"; + position[]={1550.5466,196.76469,3672.074}; + name="outp_5_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=285.96228; + id=1921; + + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={1550.2601,196.75006,3672.0127}; + angles[]={6.2083287,4.9918365,0.034982968}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1922; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Marker"; + position[]={1507.953,196.39983,3723.8438}; + name="outp_5_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=61.319729; + id=1923; + atlOffset=7.6293945e-005; + }; + class Item6 + { + dataType="Logic"; + class PositionInfo + { + position[]={1508.1139,196.39273,3724.0886}; + angles[]={0.039979152,1.0711236,0.054944519}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1924; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Marker"; + position[]={1521.3517,196.52316,3689.0779}; + name="outp_5_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=70.879601; + id=1925; + + }; + class Item8 + { + dataType="Logic"; + class PositionInfo + { + position[]={1527.3619,196.53857,3685.4539}; + angles[]={6.2531958,1.2370834,0.044968102}; + }; + areaSize[]={10.530831,0,9.2331076}; + areaIsRectangle=1; + flags=1; + id=1926; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.14494324; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={1542.0122,198.62291,3711.6917}; + angles[]={6.2581892,4.4360876,0.049954481}; + }; + side="Empty"; + class Attributes + { + }; + id=1909; + type="Land_HelipadEmpty_F"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={1523.7911,197.67422,3706.1248}; + angles[]={6.2432065,2.6901228,0.064911485}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1912; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={1506.3065,196.05652,3665.2329}; + angles[]={6.2581892,2.7868838,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1910; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={1521.4309,197.64731,3708.822}; + angles[]={0,5.8721342,0.034988083}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1911; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={1555.4998,198.43411,3686.9558}; + angles[]={6.2133002,1.0788382,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1914; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={1485.4436,194.82884,3626.4653}; + angles[]={6.233232,3.4153969,6.2681909}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1915; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={1448.6481,195.34908,3683.1521}; + angles[]={0,4.6250324,0.079824187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1916; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={1519.0255,197.02284,3706.6611}; + angles[]={6.2432065,1.1066748,0.054944519}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1913; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={1449.7603,195.00348,3680.843}; + angles[]={6.268187,2.8625906,0.079824187}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1917; + type="Land_SPE_Sandbag_Short"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={1449.6233,194.8739,3685.55}; + angles[]={0.044966776,3.3556643,0.069885373}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1918; + type="Land_SPE_Sandbag_Short"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={1488.1267,194.38684,3626.7874}; + angles[]={6.233232,1.5267813,6.2631865}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1919; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={1483.4484,194.52267,3628.198}; + angles[]={6.233232,5.1844769,6.278182}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1920; + type="Land_SPE_Sandbag_Short"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={1533.0543,198.25148,3730.7854}; + angles[]={6.2254915,4.1016626,6.261086}; + }; + side="Empty"; + class Attributes + { + }; + id=1908; + type="Land_HelipadEmpty_F"; + }; + }; + id=133; + atlOffset=0.032669067; + }; + class Item4 + { + dataType="Layer"; + name="outpost_6"; + class Entities + { + items=41; + class Item0 + { + dataType="Marker"; + position[]={1162.7856,127.10178,1773.1738}; + name="outp_6_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=18.593079; + b=5; + id=567; + atlOffset=0.54423523; + }; + class Item1 + { + dataType="Marker"; + position[]={1163.3,124.41466,1746.5894}; + name="outpost_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=99.148796; + b=66.190453; + id=568; + atlOffset=0.20601654; + }; + class Item2 + { + dataType="Marker"; + position[]={1170.1776,124.25243,1746.3047}; + name="outp_6_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=569; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={1162.7256,127.10154,1773.1792}; + angles[]={6.1391888,0,0.029993678}; + }; + areaSize[]={18.626526,0,5}; + areaIsRectangle=1; + flags=1; + id=1437; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.54654694; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={1089.3856,124.13267,1766.5629}; + angles[]={6.1686907,4.2424664,0.10955995}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1625; + type="Land_SPE_BarbedWire_04"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={1091.464,124.25025,1761.4271}; + angles[]={6.2631893,3.5481758,0.17324494}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1629; + type="Land_SPE_BarbedWire_04"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={1094.2528,124.25,1772.0234}; + angles[]={0.01499443,5.8784871,6.2232561}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1630; + type="Land_SPE_BarbedWire_04"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={1139.5974,127.45296,1794.9879}; + angles[]={6.1686869,2.725718,0.064910568}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2013; + type="Land_SPE_BarbedWire_04"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={1148.3434,128.13293,1796.0408}; + angles[]={6.1588302,3.4197319,0.064911485}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2014; + type="Land_SPE_BarbedWire_04"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={1232.5784,129.40376,1783.9418}; + angles[]={6.2033529,4.4649429,0.0050152978}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2015; + type="Land_SPE_BarbedWire_04"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={1230.3877,129.41862,1794.203}; + angles[]={6.228241,4.6954288,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2016; + type="Land_SPE_BarbedWire_04"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={1226.4189,123.10207,1693.2656}; + angles[]={6.2083244,1.4640158,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2017; + type="Land_SPE_BarbedWire_04"; + atlOffset=7.6293945e-006; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={1224.6904,123.49723,1699.3514}; + angles[]={6.2482009,1.4456459,6.188468}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2018; + type="Land_SPE_BarbedWire_04"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={1166.9757,122.53953,1712.4963}; + angles[]={6.2133002,6.2511759,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2027; + type="Land_SPE_BarbedWire_04"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={1158.474,122.43595,1714.8031}; + angles[]={6.2133002,0.66215789,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2028; + type="Land_SPE_BarbedWire_04"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={1222.2545,124.46188,1714.2112}; + angles[]={6.2182784,1.4576066,6.2382135}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2019; + type="Land_SPE_BarbedWire_02"; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={1218.3737,125.71204,1731.5253}; + angles[]={6.2432051,1.4576066,6.1539092}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2020; + type="Land_SPE_BarbedWire_02"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={1195.5728,129.04559,1779.4901}; + angles[]={6.19839,6.1588383,0.024989013}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2021; + type="Land_SPE_BarbedWire_02"; + atlOffset=1.5258789e-005; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={1190.7217,130.30615,1797.1975}; + angles[]={6.1785731,2.9024129,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2022; + type="Land_SPE_BarbedWire_02"; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={1104.2959,123.67299,1739.8379}; + angles[]={6.2332287,4.1418648,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2023; + type="Land_SPE_BarbedWire_02"; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={1226.1099,128.70627,1780.5044}; + angles[]={6.1884689,1.7452821,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2005; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={1072.0425,123.3104,1792.3906}; + angles[]={0.029987715,1.7452821,0.049956869}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2006; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={1114.6433,122.62235,1723.2755}; + angles[]={6.1686907,1.7452821,6.1835146}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2007; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={1174.5728,128.05725,1789.3112}; + angles[]={6.0335021,4.1748543,0.039979152}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2008; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={1095.3534,124.12566,1769.7406}; + angles[]={0.079828672,1.6104678,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1624; + type="Land_SPE_Sandbag_Curve"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={1212.7543,128.43695,1774.9202}; + angles[]={6.2182741,6.1448188,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2002; + type="Land_SPE_Sandbag_Curve"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={1204.5806,128.87383,1779.0748}; + angles[]={6.1489944,4.6733136,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2003; + type="Land_SPE_Sandbag_Curve"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={1092.4066,124.31765,1765.1073}; + angles[]={0.024998553,0,0.079828672}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1626; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={1147.2863,127.80951,1793.9854}; + angles[]={6.1294069,1.6210531,0.069885373}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2011; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={1140.1384,127.02905,1792.9844}; + angles[]={5.9644394,4.3401747,0.089758366}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2012; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={1160.2253,122.58186,1716.3115}; + angles[]={6.2083244,5.1466646,0.029993678}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2025; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={1167.2262,122.68639,1714.5565}; + angles[]={6.2083244,1.5827167,0.034986377}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2026; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={1211.2513,128.93159,1778.869}; + angles[]={6.1736255,0.83646691,6.2182751}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2000; + type="Land_SPE_Sandbag_Nest"; + atlOffset=0.00012207031; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={1212.2533,128.18562,1771.0476}; + angles[]={6.2133002,2.7318254,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2009; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={1143.6238,127.56179,1794.323}; + angles[]={6.1686907,6.2060885,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2010; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={1163.4933,122.52316,1714.6239}; + angles[]={6.2133002,3.4485042,0.034986377}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2024; + type="Land_SPE_Sandbag_Nest"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={1093.7933,124.14556,1762.6893}; + angles[]={0.054944519,1.5267813,0.07982792}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1627; + type="Land_SPE_Sandbag_Short"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={1208.5848,128.60176,1779.5004}; + angles[]={6.1050925,4.699882,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2004; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item38 + { + dataType="Logic"; + class PositionInfo + { + position[]={1094.0134,124.01695,1766.4025}; + angles[]={0.034986377,1.2126547,0.069885373}; + }; + areaSize[]={3.961004,0,4.071382}; + flags=1; + id=1623; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.025062561; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item39 + { + dataType="Logic"; + class PositionInfo + { + position[]={1208.8793,128.01825,1775.2899}; + angles[]={6.2182751,0.69107342,0.0049914722}; + }; + areaSize[]={7.9090071,0,5}; + flags=1; + id=2001; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={1091.4105,124.27866,1768.6244}; + angles[]={0.0099949092,4.7998748,6.2531977}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1622; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=138; + atlOffset=0.76425934; + }; + class Item5 + { + dataType="Layer"; + name="outpost_7"; + class Entities + { + items=14; + class Item0 + { + dataType="Marker"; + position[]={5450.1978,1549.8904,636.35968}; + name="outp_7_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=281.2471; + id=571; + atlOffset=1432.8225; + }; + class Item1 + { + dataType="Marker"; + position[]={5453.6479,1549.4082,591.97583}; + name="outpost_7"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=98.712334; + b=100.73928; + angle=1.6206319; + id=572; + atlOffset=1434.0332; + }; + class Item2 + { + dataType="Marker"; + position[]={5462.1851,1548.1025,557.78711}; + name="outp_7_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + angle=1.6202816; + id=573; + atlOffset=1432.8236; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={5450.1597,117.04645,636.06531}; + angles[]={6.2033577,4.9093595,6.228241}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1438; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Marker"; + position[]={5416.627,1550.4923,618.41663}; + name="outp_7_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + angle=1.6206319; + id=2052; + atlOffset=1433.2289; + }; + class Item5 + { + dataType="Marker"; + position[]={5440.3931,1548.2035,574.68347}; + name="outp_7_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=266.27301; + id=2053; + atlOffset=1432.8225; + }; + class Item6 + { + dataType="Logic"; + class PositionInfo + { + position[]={5442.7939,115.33021,572.81458}; + angles[]={6.2731905,4.6449947,6.2731848}; + }; + areaSize[]={5,0,5.244606}; + areaIsRectangle=1; + flags=1; + id=2054; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Marker"; + position[]={5450.082,1547.1691,539.75128}; + name="outp_7_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=255.94658; + id=2055; + atlOffset=1432.8224; + }; + class Item8 + { + dataType="Logic"; + class PositionInfo + { + position[]={5450.1738,114.34286,539.46893}; + angles[]={6.2631865,4.4655561,0.019999012}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=2056; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Marker"; + position[]={5420.5391,1548.8838,580.06317}; + name="outp_7_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=90.837158; + id=2057; + atlOffset=1433.0333; + }; + class Item10 + { + dataType="Logic"; + class PositionInfo + { + position[]={5420.8354,115.8456,580.11523}; + angles[]={6.2631865,1.5831532,6.2631865}; + }; + areaSize[]={5,0,5}; + areaIsRectangle=1; + flags=1; + id=2058; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={5426.9517,115.82065,565.2981}; + angles[]={6.2581892,2.7998962,6.2631893}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2050; + type="Land_SPE_Sandbag_Nest"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={5497.0537,114.69653,531.67322}; + angles[]={6.268187,1.8180927,6.2681832}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2051; + type="Land_SPE_Sandbag_Nest"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={5415.8228,118.79611,675.24286}; + angles[]={6.2731905,0.1838094,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2049; + type="Land_SPE_Sandbag_Nest"; + atlOffset=7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=143; + atlOffset=61.324135; + }; + class Item6 + { + dataType="Layer"; + name="outpost_8"; + class Entities + { + items=57; + class Item0 + { + dataType="Marker"; + position[]={7519.853,271.57599,1361.793}; + name="outp_8_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=2; + b=2; + id=581; + atlOffset=0.00030517578; + }; + class Item1 + { + dataType="Marker"; + position[]={7562.0811,269.77573,1325.2168}; + name="outp_8_helipad"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBlue"; + a=15; + b=15; + id=582; + }; + class Item2 + { + dataType="Marker"; + position[]={7566.1772,266.34308,1366.1316}; + name="outp_8_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.510376; + b=5; + angle=228.53036; + id=583; + atlOffset=-0.25808716; + }; + class Item3 + { + dataType="Marker"; + position[]={7544.042,272.58087,1344.567}; + name="outpost_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=49.771206; + b=83.074356; + angle=317.96817; + id=584; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={7566.1802,266.3374,1366.1191}; + angles[]={0.064911485,3.9882097,6.268187}; + }; + areaSize[]={20.551483,0,5}; + areaIsRectangle=1; + flags=1; + id=1439; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.2645874; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={7533.1411,266.3732,1308.8564}; + angles[]={5.9420671,3.7208076,0.21655147}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2087; + type="Land_SPE_BarbedWire_02"; + atlOffset=0.018493652; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={7510.6318,265.46414,1324.9176}; + angles[]={5.9644365,4.1013193,0.28225124}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2088; + type="Land_SPE_BarbedWire_02"; + atlOffset=0.018493652; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={7496.7129,266.85352,1355.1156}; + angles[]={6.2332225,4.5994825,0.27300745}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2089; + type="Land_SPE_BarbedWire_02"; + atlOffset=0.018493652; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={7500.9863,267.52405,1391.9309}; + angles[]={0.0099949092,5.2292299,0.094717279}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2090; + type="Land_SPE_BarbedWire_02"; + atlOffset=3.0517578e-005; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={7508.5078,251.78224,1287.9479}; + angles[]={5.9420671,3.627964,0.32773516}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2091; + type="Land_SPE_BarbedWire_02"; + atlOffset=0.018493652; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={7487.1616,251.55348,1310.5592}; + angles[]={6.1099372,4.3069243,0.31422919}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2092; + type="Land_SPE_BarbedWire_02"; + atlOffset=0.018493652; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={7469.2026,255.88783,1357.4697}; + angles[]={6.139185,4.5374451,0.3976329}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2093; + type="Land_SPE_BarbedWire_02"; + atlOffset=1.5258789e-005; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={7600.0278,263.19659,1329.4741}; + angles[]={6.2432137,3.612407,6.1983824}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2077; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={7517.8867,264.09924,1418.7144}; + angles[]={0.064911485,2.0708411,6.2332392}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2078; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={7520.7275,264.9632,1398.7405}; + angles[]={0.09967456,1.7235858,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2079; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={7534.6968,264.53223,1403.3306}; + angles[]={0.079817459,1.9527588,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2080; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={7541.187,263.98199,1399.0964}; + angles[]={0.14398554,2.7273874,6.2083278}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2081; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={7556.3662,263.35153,1391.1113}; + angles[]={0.19739246,1.9058686,6.0009341}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2082; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={7607.6797,261.92072,1329.222}; + angles[]={0.059925474,5.8871617,6.085793}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2083; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={7609.2666,261.12955,1337.2494}; + angles[]={0.16352004,4.666985,5.9599433}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2084; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={7603.1235,261.7608,1309.939}; + angles[]={6.2432137,5.3788748,6.188468}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2085; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={7515.8921,271.6987,1362.6377}; + angles[]={0.08975438,6.1833568,0.14400092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2108; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={7520.0044,271.98199,1365.9625}; + angles[]={0.010006829,4.7055149,6.2531977}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2109; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={7523.7583,272.17688,1362.0958}; + angles[]={0.1046123,6.2595043,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2110; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={7518.8403,272.55215,1357.035}; + angles[]={0.18292925,4.7055149,0.1440005}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2111; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={7594.5308,264.08035,1341.3651}; + angles[]={0.11942402,1.2683771,6.1835108}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2061; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={7545.9331,267.35434,1305.0861}; + angles[]={6.09061,3.1537836,0.069877692}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2064; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={7504.7183,268.86688,1381.5339}; + angles[]={0.02999169,5.909236,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2067; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={7502.7725,267.30136,1345.1658}; + angles[]={0.020001993,4.0852947,0.16352041}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2070; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={7546.3516,266.10977,1385.2582}; + angles[]={0.054952115,5.5568886,0.0049795164}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2073; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={7593.6221,264.47983,1336.6062}; + angles[]={6.2432137,2.5083525,6.2083287}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2076; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={7592.8511,263.82349,1343.1532}; + angles[]={0.074871972,2.5169177,6.0523729}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2062; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={7594.2554,263.96509,1338.9829}; + angles[]={0.1046123,0.059662066,6.1983981}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2063; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={7548.1504,267.31354,1306.1366}; + angles[]={6.0055428,4.4370937,0.22607899}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2065; + type="Land_SPE_Sandbag_Short"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={7543.75,266.98303,1306.0787}; + angles[]={6.0429225,1.9611034,0.064911485}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2066; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={7503.0859,268.5098,1379.7024}; + angles[]={6.1490021,0.85376787,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2068; + type="Land_SPE_Sandbag_Short"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={7507.1152,268.33603,1381.4706}; + angles[]={0.24497873,4.6784425,6.1002564}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2069; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={7504.9243,267.47302,1343.9877}; + angles[]={0.19739246,5.3523889,0.37186882}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2071; + type="Land_SPE_Sandbag_Short"; + atlOffset=6.1035156e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={7502.2944,267.09589,1347.5156}; + angles[]={6.0905952,2.8729444,0.20220031}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2072; + type="Land_SPE_Sandbag_Short"; + atlOffset=-3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={7547.3462,265.86572,1382.238}; + angles[]={0.059925474,2.3813248,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2074; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={7548.6045,265.57779,1386.0793}; + angles[]={0.15865895,4.3262248,6.1686831}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2075; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={7569.2695,265.57336,1372.3208}; + angles[]={0.14889871,5.5982108,6.1050849}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2094; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={7564.9971,265.61493,1377.1754}; + angles[]={0.28225124,5.4894428,6.0148249}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2095; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={7560.6113,264.53033,1381.3459}; + angles[]={0.18776426,5.5732346,6.1147823}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2096; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={7556.6504,264.38458,1384.8595}; + angles[]={0.14398554,4.4808269,6.1294103}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2097; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={7552.3965,264.91818,1385.3513}; + angles[]={0.33666661,4.9508729,5.9689565}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2098; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={7573.5195,265.49286,1367.4399}; + angles[]={0.16352004,2.3956425,6.1785731}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2099; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={7577.3818,265.58987,1363.269}; + angles[]={0.069878548,5.5982108,6.1884689}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2100; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={7582.959,264.83386,1356.5164}; + angles[]={0.17810075,2.2954988,5.8940849}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2101; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={7586.6416,264.35181,1352.6492}; + angles[]={0.054936919,5.8274441,5.9917402}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2102; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={7589.501,264.25705,1349.2926}; + angles[]={0.21177252,5.7038956,6.2133079}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2103; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={7591.5225,264.05099,1346.094}; + angles[]={0.039971694,5.7045898,5.9509845}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2104; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={7587.7329,264.15744,1326.7421}; + angles[]={6.2382174,0.64420021,6.1934309}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2105; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={7586.311,264.44479,1322.6948}; + angles[]={0.020001993,0.32560894,6.1196504}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=2106; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item54 + { + dataType="Logic"; + class PositionInfo + { + position[]={7519.3955,271.48724,1361.4458}; + angles[]={0.034989785,0,0.059925474}; + }; + areaSize[]={5.6960449,0,5.6893311}; + flags=1; + id=2107; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.085296631; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item55 + { + dataType="Logic"; + class PositionInfo + { + position[]={7544.0234,272.58746,1344.5054}; + angles[]={0.07983166,0,6.1934309}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=2112; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={7563.1719,266.77261,1293.9532}; + angles[]={6.1637464,0,0.044968102}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=2086; + type="Land_SPE_BarbedWire_02"; + atlOffset=0.018493652; + }; + }; + id=148; + atlOffset=-2.6060181; + }; + class Item7 + { + dataType="Layer"; + name="outpost_9"; + class Entities + { + items=68; + class Item0 + { + dataType="Marker"; + position[]={5892.8472,252.10965,4751.6118}; + name="outp_9_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=213.75287; + id=587; + atlOffset=0.00039672852; + }; + class Item1 + { + dataType="Marker"; + position[]={5907.6055,252.35857,4715.5029}; + name="outpost_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=120.27996; + b=124.14651; + angle=17.007051; + id=588; + }; + class Item2 + { + dataType="Logic"; + class PositionInfo + { + position[]={5892.8481,252.11049,4751.6572}; + angles[]={6.2581868,3.7306914,0.10461972}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1440; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Marker"; + position[]={5886.2148,251.08508,4732.54}; + name="outp_9_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=28.96121; + id=1566; + atlOffset=0.00039672852; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={5886.2178,251.08345,4732.4946}; + angles[]={6.2481956,0.50505549,0.11943152}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1567; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Marker"; + position[]={5899.2168,251.90738,4723.0562}; + name="outp_9_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=27.89378; + id=1568; + atlOffset=0.00039672852; + }; + class Item6 + { + dataType="Logic"; + class PositionInfo + { + position[]={5899.2207,251.90399,4723.0107}; + angles[]={6.2083287,0.48633963,0.1046123}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1569; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Marker"; + position[]={5940.9287,253.38399,4686.9429}; + name="outp_9_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=40.830044; + id=1570; + atlOffset=0.00039672852; + }; + class Item8 + { + dataType="Logic"; + class PositionInfo + { + position[]={5940.9224,253.38301,4686.8979}; + angles[]={0,0.71329266,0.08975371}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1571; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={5981.7529,257.63947,4683.7212}; + angles[]={6.1835108,0.44569591,0.1537751}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1549; + type="Land_SPE_BarbedWire_04"; + atlOffset=0.00012207031; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={5988.4868,258.20953,4679.5728}; + angles[]={6.1686831,0.89842421,0.14889871}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1550; + type="Land_SPE_BarbedWire_04"; + atlOffset=0.00012207031; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={5956.8848,262.53134,4784.2046}; + angles[]={0,5.8597221,0.2069986}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1558; + type="Land_SPE_BarbedWire_04"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={5960.9653,263.28937,4788.9399}; + angles[]={6.2731729,5.3372898,0.15865856}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1559; + type="Land_SPE_BarbedWire_04"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={5962.9805,263.521,4793.7661}; + angles[]={0.0099949092,4.5331736,0.094717279}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1560; + type="Land_SPE_BarbedWire_04"; + atlOffset=-3.0517578e-005; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={5843.5479,245.58853,4701.9849}; + angles[]={0.074856833,0,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1516; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={5851.4233,246.73737,4705.96}; + angles[]={6.2681832,0,0.12435465}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1517; + type="Land_SPE_HedgeHog"; + atlOffset=4.5776367e-005; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={5877.8398,250.29953,4761.0049}; + angles[]={0.044968102,0,0.094716646}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1518; + type="Land_SPE_HedgeHog"; + atlOffset=-4.5776367e-005; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={5878.5884,251.92543,4795.9766}; + angles[]={6.2631927,6.2004943,0.094716646}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1519; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={5864.0259,249.76355,4767.6978}; + angles[]={6.2531977,0,0.099666774}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1520; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={5869.8521,251.1732,4799.0659}; + angles[]={6.19839,5.6786485,6.19839}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1521; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={5862.4609,251.29871,4801.0923}; + angles[]={0.029989703,0,0.27764258}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1522; + type="Land_SPE_HedgeHog"; + atlOffset=0.00010681152; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={5855.583,250.48662,4785.4106}; + angles[]={6.2033615,0,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1523; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={5804.5,241.16583,4652.771}; + angles[]={6.2432065,4.1351099,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1524; + type="Land_SPE_HedgeHog"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={5809.8286,241.86588,4661.3081}; + angles[]={6.2631927,5.3922639,0.059925474}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1525; + type="Land_SPE_HedgeHog"; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={5813.3486,242.47438,4668.1563}; + angles[]={6.2432051,1.3133211,0.094717279}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1526; + type="Land_SPE_HedgeHog"; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={5811.2915,242.38527,4670.6455}; + angles[]={6.2382174,4.6787448,0.08975438}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1527; + type="Land_SPE_HedgeHog"; + atlOffset=-1.5258789e-005; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={5814.0352,242.81053,4675.8584}; + angles[]={6.2531958,6.1748805,0.13419099}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1528; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={5817.3413,243.38805,4680.0322}; + angles[]={6.2731905,2.1216111,0.12435465}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1529; + type="Land_SPE_HedgeHog"; + atlOffset=6.1035156e-005; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={5817.3848,240.96411,4642.314}; + angles[]={6.2432065,3.870791,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1530; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={5821.1021,241.60983,4651.6206}; + angles[]={6.2182751,4.3710279,6.278194}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1531; + type="Land_SPE_HedgeHog"; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={5824.5537,242.39621,4660.4751}; + angles[]={6.2232518,2.5905523,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1532; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={5893.4121,252.60605,4790.6167}; + angles[]={0.13910256,3.2596445,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1533; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={5901.2788,254.14659,4795.7056}; + angles[]={0,3.2712557,0.18292925}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1534; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={5906.4707,254.99518,4806.9526}; + angles[]={0.064910568,0,0.18292925}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1535; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={5911.3491,255.87575,4810.1108}; + angles[]={0.034989785,3.1032453,0.18292958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1536; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={5915.4336,255.56053,4826.98}; + angles[]={0.15865856,4.9732499,0.32773516}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1537; + type="Land_SPE_HedgeHog"; + atlOffset=-9.1552734e-005; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={5923.3857,256.35431,4835.1929}; + angles[]={0.08975438,0.8137573,0.15865856}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1538; + type="Land_SPE_HedgeHog"; + atlOffset=-3.0517578e-005; + }; + class Item37 + { + dataType="Object"; + class PositionInfo + { + position[]={5926.3525,255.72575,4851.9878}; + angles[]={0.049960449,0.53713727,0.18292925}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1539; + type="Land_SPE_HedgeHog"; + atlOffset=-7.6293945e-005; + }; + class Item38 + { + dataType="Object"; + class PositionInfo + { + position[]={5936.6318,257.93729,4857.8916}; + angles[]={6.0571213,3.4541404,0.30969584}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1540; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item39 + { + dataType="Object"; + class PositionInfo + { + position[]={5996.8276,258.37424,4668.6699}; + angles[]={6.1835108,1.3944138,0.18776426}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1546; + type="Land_SPE_HedgeHog"; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={5974.1646,256.14157,4684.5928}; + angles[]={6.2182751,1.3931828,0.13909525}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1547; + type="Land_SPE_HedgeHog"; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={5954.4067,260.97687,4768.688}; + angles[]={6.2033539,6.5613516e-005,0.26836061}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1556; + type="Land_SPE_HedgeHog"; + atlOffset=-3.0517578e-005; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={5960.4727,262.93005,4801.6392}; + angles[]={6.268187,0.00056383578,0.074856035}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1557; + type="Land_SPE_HedgeHog"; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={5967.0381,263.43085,4796.6699}; + angles[]={0.0050033992,2.1053452,0.10955995}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1561; + type="Land_SPE_HedgeHog"; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={5966.7622,263.52612,4789.8306}; + angles[]={0.0050152978,3.7765689,0.12435512}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1562; + type="Land_SPE_HedgeHog"; + }; + class Item45 + { + dataType="Object"; + class PositionInfo + { + position[]={5945.5176,261.96295,4807.6787}; + angles[]={6.2632012,4.8841009,0.1046123}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1563; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item46 + { + dataType="Object"; + class PositionInfo + { + position[]={5934.7056,260.57553,4806.6465}; + angles[]={0.014998405,0.41431853,0.13419813}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1564; + type="Land_SPE_HedgeHog"; + }; + class Item47 + { + dataType="Object"; + class PositionInfo + { + position[]={5928.2236,259.02097,4807.2842}; + angles[]={0.07983166,5.7858148,0.23553574}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1565; + type="Land_SPE_HedgeHog"; + }; + class Item48 + { + dataType="Object"; + class PositionInfo + { + position[]={5869.8076,249.59712,4743.1128}; + angles[]={6.2731848,0.40383676,0.15378249}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1513; + type="Land_SPE_Sandbag_Curve"; + }; + class Item49 + { + dataType="Object"; + class PositionInfo + { + position[]={5958.2368,262.97427,4795.7495}; + angles[]={6.2481956,5.2931814,0.11450227}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1552; + type="Land_SPE_Sandbag_Curve"; + }; + class Item50 + { + dataType="Object"; + class PositionInfo + { + position[]={5867.0464,249.23654,4744.7158}; + angles[]={6.2432137,3.6582484,0.10955232}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1507; + type="Land_SPE_Sandbag_Long"; + }; + class Item51 + { + dataType="Object"; + class PositionInfo + { + position[]={5861.2822,248.3488,4734.1841}; + angles[]={6.2382107,3.6582484,0.044974733}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1512; + type="Land_SPE_Sandbag_Long"; + }; + class Item52 + { + dataType="Object"; + class PositionInfo + { + position[]={5985.6206,257.70496,4678.4297}; + angles[]={6.2033539,5.3329806,0.13419858}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1543; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=6.1035156e-005; + }; + class Item53 + { + dataType="Object"; + class PositionInfo + { + position[]={5982.5864,257.46893,4680.6406}; + angles[]={6.2083287,5.3282876,0.13418342}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1544; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item54 + { + dataType="Object"; + class PositionInfo + { + position[]={5979.0049,256.93307,4679.7114}; + angles[]={6.2332249,0.71898645,0.15378989}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1545; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + }; + class Item55 + { + dataType="Object"; + class PositionInfo + { + position[]={5959.2939,263.0499,4791.3472}; + angles[]={6.2731905,3.8423529,0.13418297}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1553; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item56 + { + dataType="Object"; + class PositionInfo + { + position[]={5956.8579,262.57782,4788.4907}; + angles[]={6.2332392,3.8399596,0.16352041}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1554; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item57 + { + dataType="Object"; + class PositionInfo + { + position[]={5952.5659,261.88385,4787.8877}; + angles[]={6.2332249,5.5170527,0.1537751}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1555; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + }; + class Item58 + { + dataType="Object"; + class PositionInfo + { + position[]={5869.5249,249.62651,4747.043}; + angles[]={0.024986627,0.47273502,0.11450227}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1505; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item59 + { + dataType="Object"; + class PositionInfo + { + position[]={5860.5239,248.36433,4731.209}; + angles[]={0.07983166,3.6408908,0.1586514}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1506; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item60 + { + dataType="Object"; + class PositionInfo + { + position[]={5984.0894,257.33426,4674.1138}; + angles[]={0.0050033992,2.193753,0.084787562}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1541; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item61 + { + dataType="Object"; + class PositionInfo + { + position[]={5958.5225,262.98215,4794.4233}; + angles[]={6.2481956,0.71838379,0.11450227}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1551; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item62 + { + dataType="Object"; + class PositionInfo + { + position[]={5865.2324,248.55965,4741.9585}; + angles[]={0.044968102,3.6421533,0.054945603}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1509; + type="Land_SPE_Sandbag_Short"; + }; + class Item63 + { + dataType="Object"; + class PositionInfo + { + position[]={5864.2109,248.43031,4739.9438}; + angles[]={6.278182,3.6421533,0.1440005}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1510; + type="Land_SPE_Sandbag_Short"; + }; + class Item64 + { + dataType="Object"; + class PositionInfo + { + position[]={5862.8896,248.41043,4731.2617}; + angles[]={0.034989785,5.2021108,0.18292958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1514; + type="Land_SPE_Sandbag_Short"; + }; + class Item65 + { + dataType="Object"; + class PositionInfo + { + position[]={5864.269,248.62645,4732.0513}; + angles[]={0.049953286,3.6421533,0.1440005}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1515; + type="Land_SPE_Sandbag_Short"; + }; + class Item66 + { + dataType="Logic"; + class PositionInfo + { + position[]={5868.689,249.38744,4733.5229}; + angles[]={0,0.5234766,0}; + }; + areaSize[]={9.8590002,0,17.16}; + areaIsRectangle=1; + flags=1; + id=1504; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.26199341; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item67 + { + dataType="Object"; + class PositionInfo + { + position[]={5974.9063,256.53162,4680.7622}; + angles[]={0,5.2172866,0.09471602}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1548; + type="Land_SPE_BarbedWire_04"; + }; + }; + id=153; + atlOffset=-0.43171692; + }; + class Item8 + { + dataType="Layer"; + name="outpost_10"; + class Entities + { + items=24; + class Item0 + { + dataType="Marker"; + position[]={1192.5986,247.2171,6450.5811}; + name="outpost_10"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorGUER"; + a=61.298615; + b=88.995224; + angle=30.45138; + id=591; + }; + class Item1 + { + dataType="Marker"; + position[]={1221.1487,249.36574,6422.0928}; + name="outp_10_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=306.73511; + id=1441; + atlOffset=0.15614319; + }; + class Item2 + { + dataType="Marker"; + position[]={1213.1036,249.28545,6411.0566}; + name="outp_10_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=301.56216; + id=1443; + atlOffset=0.15614319; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={1217.496,249.10759,6416.2671}; + angles[]={0.094709717,5.2615833,0.18776426}; + }; + areaSize[]={15.677088,0,6.142066}; + areaIsRectangle=1; + flags=1; + id=1444; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.15113831; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Marker"; + position[]={1204.522,247.38007,6445.2173}; + name="outp_10_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=119.80922; + id=1445; + atlOffset=0.15615845; + }; + class Item5 + { + dataType="Logic"; + class PositionInfo + { + position[]={1204.5486,247.22485,6445.0308}; + angles[]={0.0049795164,2.0893664,0}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1446; + type="ModuleHideTerrainObjects_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={1233.24,246.55138,6487.645}; + angles[]={0.06988623,3.3708849,0.024996169}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1457; + type="Land_SPE_BarbedWire_04"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={1182.6952,248.79231,6357.04}; + angles[]={0.074856833,0,0.24026991}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1452; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={1185.1176,249.32233,6357.6343}; + angles[]={0.044966776,0,0.21655147}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1453; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={1275.1555,241.05154,6522.5962}; + angles[]={0.024996169,3.4329674,6.22824}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1458; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={1256.0216,242.41577,6519.9961}; + angles[]={0.074856035,3.433502,6.0761943}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1459; + type="Land_SPE_HedgeHog"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={1192.6906,249.24701,6377.3535}; + angles[]={0.1537751,0.64679915,0.30970266}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1450; + type="Land_SPE_Sandbag_Curve"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={1231.4646,246.74617,6483.2651}; + angles[]={0.084795304,4.0812426,0.059933435}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1456; + type="Land_SPE_Sandbag_Curve"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={1193.951,243.39824,6515.8442}; + angles[]={0.074857175,4.1418409,0.069882989}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1812; + type="Land_SPE_Sandbag_Short"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={1171.2681,245.68712,6447.1572}; + angles[]={0.059925474,2.7052453,0.1537751}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1814; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={1171.1208,245.62357,6451.7344}; + angles[]={6.2432051,0.12184308,0.19739246}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1815; + type="Land_SPE_Sandbag_Short"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={1195.126,247.23,6447.4678}; + }; + areaSize[]={2,0,2}; + flags=1; + id=1447; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item17 + { + dataType="Logic"; + class PositionInfo + { + position[]={1194.0044,249.47864,6376.0146}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1449; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item18 + { + dataType="Logic"; + class PositionInfo + { + position[]={1230.5917,246.17999,6484.9253}; + angles[]={0.059925474,3.4335451,0.059933435}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1455; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={1189.9724,248.84534,6375.2842}; + angles[]={0.12435465,3.5886469,0.049953286}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1448; + type="Land_SPE_Sandbag_Nest"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={1234.6633,246.73558,6484.4644}; + angles[]={0.08975438,0.73856395,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1454; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={1196.1033,243.84621,6516.8306}; + angles[]={0.10461287,6.1047807,0.059933435}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1811; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={1170.2617,245.82927,6449.5229}; + angles[]={0.044968102,4.6770029,0.15377471}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1813; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={1191.1932,249.60229,6372.665}; + angles[]={0.12435512,3.0303125,0.30061045}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1451; + type="Land_SPE_BarbedWire_04"; + }; + }; + id=158; + atlOffset=1.4200134; + }; + class Item9 + { + dataType="Layer"; + name="outpost_11"; + class Entities + { + items=31; + class Item0 + { + dataType="Marker"; + position[]={4082.7876,276.28021,5352.5825}; + name="outp_11_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=235.02596; + id=594; + }; + class Item1 + { + dataType="Marker"; + position[]={4012.5144,276.82199,5330.3423}; + name="outpost_11"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=68.45311; + b=80.014; + angle=22.984995; + id=595; + atlOffset=-0.25946045; + }; + class Item2 + { + dataType="Marker"; + position[]={4019.8962,274.72,5295.7178}; + name="outp_11_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=2; + b=2; + id=596; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={3953.5376,277.36002,5295.1182}; + angles[]={0,2.4288127,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=913; + type="Land_Radar_01_airshaft_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={3952.3596,295.21744,5297.1729}; + angles[]={0,0.85801637,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + }; + id=914; + type="Land_TTowerBig_1_F"; + }; + class Item5 + { + dataType="Logic"; + class PositionInfo + { + position[]={4082.854,276.26242,5352.6826}; + angles[]={0.084803045,4.1019773,6.1440902}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1430; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Marker"; + position[]={4004.5952,276.60074,5346.4341}; + name="outp_11_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=235.02596; + id=1902; + }; + class Item7 + { + dataType="Logic"; + class PositionInfo + { + position[]={4004.6616,276.59793,5346.5342}; + angles[]={0.084803045,4.1019773,6.1440902}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1903; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Marker"; + position[]={4031.3655,276.5603,5397.7124}; + name="outp_11_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=350.18002; + id=1904; + }; + class Item9 + { + dataType="Logic"; + class PositionInfo + { + position[]={4031.428,276.56125,5397.6099}; + angles[]={6.2681832,6.1190853,0.039973188}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1905; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item10 + { + dataType="Marker"; + position[]={3936.302,275.58234,5301.6294}; + name="outp_11_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=313.30252; + id=1906; + }; + class Item11 + { + dataType="Logic"; + class PositionInfo + { + position[]={3936.2368,275.58411,5301.7554}; + angles[]={6.2731905,5.4807034,0.019999012}; + }; + areaSize[]={5,0,5.2457552}; + areaIsRectangle=1; + flags=1; + id=1907; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.0018310547; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={3961.2356,277.79068,5330.6777}; + angles[]={0.24026266,5.6035399,0.08975438}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1897; + type="Land_SPE_BarbedWire_04"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={3941.2195,276.60544,5308.8867}; + angles[]={6.2083278,2.3286519,0.17324875}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1899; + type="Land_SPE_BarbedWire_04"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={3944.8569,276.89514,5313.1885}; + angles[]={6.2282333,5.6035399,0.1440005}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1900; + type="Land_SPE_BarbedWire_04"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={3952.5872,277.3692,5321.3247}; + angles[]={0.14888424,5.6035399,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1901; + type="Land_SPE_BarbedWire_04"; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={3939.0938,276.16003,5312.5356}; + angles[]={6.2731905,0.72260123,0.084787562}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1892; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={3943.3857,276.32504,5317.3501}; + angles[]={0.13909525,0.74583471,0.044966776}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1893; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={3949.2556,276.53888,5323.3203}; + angles[]={0.1683882,0.8356548,0.064911485}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1894; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={3954.9697,276.83133,5329.0752}; + angles[]={0.22132032,0.78319126,0.1145028}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1895; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={3963.5059,277.03958,5335.9146}; + angles[]={0.25437713,0.97627074,0.10954469}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1896; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={4018.9514,276.40384,5394.7622}; + angles[]={6.2631836,4.0415192,0.074856833}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1880; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={4034.2744,277.04276,5389.8765}; + angles[]={0,0.34018406,0.019999012}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1883; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={4056.9131,277.61679,5335.1167}; + angles[]={0.014998405,1.1542311,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1885; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={4055.7813,277.6796,5332.6001}; + angles[]={0.019987086,2.8219073,6.2631984}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1886; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={3967.3125,276.47263,5267.7803}; + angles[]={0.039986607,3.5934479,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1887; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={4019.8308,276.00385,5396.7241}; + angles[]={6.2581797,0.7676959,0.025005706}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1882; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={4036.405,276.66608,5387.5034}; + angles[]={0,2.0450263,0.01499443}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1884; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={3969.7322,276.10086,5267.1611}; + angles[]={0.039971694,5.2160244,0.010012784}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1888; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={3965.5527,275.99243,5269.4365}; + angles[]={0.029987715,5.2160244,0.010006829}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1889; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Logic"; + class PositionInfo + { + position[]={4018.0459,276.21082,5392.813}; + angles[]={6.2320037,0,0.48785135}; + }; + areaSize[]={1,0,1}; + flags=1; + id=1881; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.26080322; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=163; + atlOffset=-0.50686646; + }; + class Item10 + { + dataType="Layer"; + name="outpost_12"; + class Entities + { + items=35; + class Item0 + { + dataType="Marker"; + position[]={4987.8594,274.97009,6672.4419}; + name="outp_12_helipad"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBlue"; + a=15; + b=15; + id=597; + atlOffset=2.322998; + }; + class Item1 + { + dataType="Marker"; + position[]={4964.8906,278.95999,6711.9761}; + name="outp_12_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=315.69312; + id=598; + atlOffset=5.9997864; + }; + class Item2 + { + dataType="Marker"; + position[]={4972.7148,273.16199,6698.042}; + name="outpost_12"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorGUER"; + a=56.868; + b=82.074997; + angle=45.033978; + id=599; + atlOffset=-0.00012207031; + }; + class Item3 + { + dataType="Marker"; + position[]={4948.5957,271.54633,6672.4419}; + name="outp_12_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=600; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={4964.5464,272.94669,6712.209}; + angles[]={6.2731905,5.5085511,0.044968102}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1431; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Marker"; + position[]={4932.9731,278.13971,6707.3657}; + name="outp_12_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=136.24132; + id=1874; + atlOffset=5.9997253; + }; + class Item6 + { + dataType="Logic"; + class PositionInfo + { + position[]={4933.3149,272.12869,6707.1294}; + angles[]={6.2282486,2.3765342,0.0049795164}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1875; + type="ModuleHideTerrainObjects_F"; + + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Marker"; + position[]={4964.2207,279.59018,6745.1294}; + name="outp_12_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=315.69312; + id=1876; + atlOffset=5.9997559; + }; + class Item8 + { + dataType="Logic"; + class PositionInfo + { + position[]={4963.8765,273.59348,6745.3623}; + angles[]={6.2581964,5.5085511,0.0049914722}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1877; + type="ModuleHideTerrainObjects_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item9 + { + dataType="Marker"; + position[]={4941.186,278.51767,6715.7314}; + name="outp_12_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=133.82985; + id=1878; + atlOffset=5.9997864; + }; + class Item10 + { + dataType="Logic"; + class PositionInfo + { + position[]={4941.5376,272.51297,6715.5098}; + angles[]={6.2531958,2.3351631,0.0050033992}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1879; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={4951.1846,273.37527,6724.9287}; + angles[]={6.2531977,0.86110985,0.009988944}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1491; + type="Land_SPE_BarbedWire_04"; + atlOffset=3.0517578e-005; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={4952.6621,273.73572,6733.623}; + angles[]={6.2481956,5.339787,6.2731905}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1492; + type="Land_SPE_BarbedWire_04"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={4956.8398,273.85889,6737.771}; + angles[]={6.2531819,5.7866273,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1493; + type="Land_SPE_BarbedWire_04"; + atlOffset=0.00021362305; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={4979.1221,273.92551,6748.9224}; + angles[]={6.2581964,0,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1483; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={4974.0381,273.82211,6749.0444}; + angles[]={6.2531939,3.612407,0.019987086}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1484; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={4970.2397,273.92203,6753.4604}; + angles[]={6.2431974,2.2030437,0.015014294}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1485; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={4948.6582,272.71829,6719.0093}; + angles[]={6.268187,0,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1489; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={4946.875,272.85086,6724.2173}; + angles[]={6.2332249,0,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1490; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={5015.7583,274.88879,6763.8848}; + angles[]={0,3.7255809,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1870; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={5005.4268,274.87387,6773.3491}; + angles[]={6.278182,3.791877,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1871; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={4961.8257,273.72324,6734.7314}; + angles[]={6.2581964,5.3807244,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1482; + type="Land_SPE_Sandbag_Curve"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={4957.4531,273.76038,6734.7466}; + angles[]={6.2581964,3.9390426,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1486; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={4954.7358,273.66089,6732.1563}; + angles[]={6.2481956,3.9390426,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1487; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={4952.9565,273.44507,6726.5381}; + angles[]={6.2382174,5.6130772,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1488; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={4961.9736,273.71472,6733.3823}; + angles[]={6.2631865,0.80616254,0.0099949092}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1481; + type="Land_SPE_Sandbag_Nest"; + atlOffset=0.00012207031; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={4926.9644,270.42935,6666.4321}; + angles[]={6.2731786,4.1337714,6.2083297}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1861; + type="Land_SPE_Sandbag_Nest"; + atlOffset=0.00012207031; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={4964.2998,271.00952,6641.769}; + angles[]={6.2235241,2.8134763,0.010758872}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1862; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={5006.5293,274.07031,6692.8691}; + angles[]={6.2481956,1.5935097,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1863; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={4994.0591,274.66885,6742.6567}; + angles[]={6.268187,0.48587346,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1867; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={4952.1064,273.5101,6729.5454}; + angles[]={6.2432137,5.0695972,0.0099949092}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1872; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={5005.6665,273.56564,6690.7241}; + angles[]={6.2432137,3.2520528,0.0099949092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1864; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={5005.9819,273.74405,6695.356}; + angles[]={6.2432137,6.1318364,0.0099949092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1865; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={4994.8525,274.24704,6740.4805}; + angles[]={6.268187,2.8425527,0.034989785}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1868; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={4991.644,274.1459,6741.8364}; + angles[]={6.2731905,4.0188527,0.034989785}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1869; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=168; + atlOffset=-0.27682495; + }; + class Item11 + { + dataType="Layer"; + name="outpost_13"; + class Entities + { + items=29; + class Item0 + { + dataType="Marker"; + position[]={2194.7737,270.97906,5479.5225}; + name="outp_13_helipad"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBlue"; + a=15; + b=15; + id=601; + }; + class Item1 + { + dataType="Marker"; + position[]={2162.439,272.14368,5517.7598}; + name="outp_13_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=12.66935; + b=6.129426; + angle=155.21878; + id=602; + atlOffset=-0.11953735; + }; + class Item2 + { + dataType="Marker"; + position[]={2172.8516,271.84,5501.8892}; + name="outpost_13"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorGUER"; + a=50.665947; + b=66.409203; + id=603; + atlOffset=-0.26077271; + }; + class Item3 + { + dataType="Marker"; + position[]={2185.241,272.99799,5511.4751}; + name="outp_13_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=2; + b=2; + id=604; + atlOffset=0.00012207031; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={2162.4702,272.12784,5517.5562}; + angles[]={6.2631865,2.7090802,0.34113201}; + }; + areaSize[]={12.672291,0,6.2945204}; + areaIsRectangle=1; + flags=1; + id=1432; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.13140869; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={2188.2041,273.44379,5514.8721}; + angles[]={6.2531939,5.0512729,6.2631984}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1858; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={2189.5625,273.17493,5509.8555}; + angles[]={6.2531958,3.2865713,6.2432137}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1859; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={2182.5171,273.08975,5507.6802}; + angles[]={6.2033539,2.0393069,0.064911485}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1860; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={2172.0542,271.33463,5482.165}; + angles[]={6.2531958,3.1709869,0.044968102}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1837; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={2148.8518,272.61578,5515.4282}; + angles[]={6.2731905,4.7482014,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1838; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={2144.5212,272.47995,5525.9902}; + angles[]={0.0099949092,5.4817719,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1839; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={2194.3037,274.93649,5544.0068}; + angles[]={0.020001993,0.60199654,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1845; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={2144.5271,272.0799,5523.4585}; + angles[]={6.278194,6.0756035,0.0049914722}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1841; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={2148.6985,272.21326,5517.708}; + angles[]={6.2431989,2.6636267,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1842; + type="Land_SPE_Sandbag_Short"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={2147.157,272.14734,5519.2891}; + angles[]={0.020001993,2.2468498,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1843; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={2149.7595,272.13226,5512.8242}; + angles[]={6.2382174,3.0628474,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1844; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={2193.4543,274.48679,5546.3257}; + angles[]={0.034974448,2.6636267,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1846; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={2184.3669,274.50378,5547.1973}; + angles[]={0.034974448,4.6969767,0.069893055}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1847; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={2186.6245,274.51865,5547.2202}; + angles[]={0.079832405,4.6969767,6.2132916}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1848; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={2190.1401,271.11295,5472.6895}; + angles[]={6.2781701,0.15521558,6.2083287}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1849; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={2190.6167,271.12427,5475.4258}; + angles[]={6.2731786,0.15521558,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1850; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={2191.1501,271.18594,5479.063}; + angles[]={6.2681909,0.15521558,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1851; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={2191.1816,271.28403,5482.7563}; + angles[]={6.2382188,3.0343328,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1852; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={2193.0012,272.21591,5501.1304}; + angles[]={6.2382188,0.15521558,0.024986627}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1853; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={2192.845,272.09232,5498.5054}; + angles[]={6.2382188,3.1920838,0.034972742}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1854; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={2174.2893,270.71451,5470.4053}; + angles[]={6.1294103,2.4172914,0.074856833}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1855; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={2172.292,270.63702,5472.8579}; + angles[]={6.2382174,5.5829773,0.19739276}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1856; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Logic"; + class PositionInfo + { + position[]={2145.7781,272.08301,5524.5918}; + angles[]={0.0099949092,0,0.0050033992}; + }; + areaSize[]={2,0,2}; + flags=1; + id=1840; + type="ModuleHideTerrainObjects_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={2183.0598,273.47348,5515.0522}; + angles[]={6.268187,4.120091,0.099659584}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1857; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=173; + atlOffset=0.15301514; + }; + class Item12 + { + dataType="Layer"; + name="outpost_14"; + class Entities + { + items=37; + class Item0 + { + dataType="Marker"; + position[]={2919.0444,257.00937,3162.5161}; + name="outp_14_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=20.139477; + b=5; + angle=1.8302864; + id=606; + atlOffset=-0.57119751; + }; + class Item1 + { + dataType="Marker"; + position[]={2939.4929,256.91901,3124.7981}; + name="outpost_14"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorGUER"; + a=80; + b=75; + id=607; + atlOffset=2.1377869; + }; + class Item2 + { + dataType="Marker"; + position[]={2931.4431,254.89937,3118.1797}; + name="outp_14_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=608; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={2918.7905,256.96613,3162.1221}; + angles[]={6.1588306,0.032007389,6.2531958}; + }; + areaSize[]={20.166267,0,5}; + areaIsRectangle=1; + flags=1; + id=1433; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.57208252; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={2928.6504,253.66747,3088.2407}; + angles[]={6.2232599,4.0109282,6.2332239}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1606; + type="Land_SPE_BarbedWire_04"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={2962.6836,250.91917,3066.6262}; + angles[]={6.2232533,1.4590331,6.2482042}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1607; + type="Land_SPE_BarbedWire_04"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={2963.4243,249.00606,3038.292}; + angles[]={6.2083297,5.7011371,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1608; + type="Land_SPE_BarbedWire_04"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={2967.0913,257.1243,3174.6511}; + angles[]={6.2431989,3.0805645,6.2581964}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1616; + type="Land_SPE_BarbedWire_04"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={2967.2546,258.51123,3182.0349}; + angles[]={6.1539059,6.1675353,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1617; + type="Land_SPE_BarbedWire_04"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={2980.8008,257.50061,3179.7551}; + angles[]={6.109952,4.2855606,6.2182741}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1618; + type="Land_SPE_BarbedWire_04"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={2961.0908,251.28285,3071.6829}; + angles[]={6.223259,0.82694441,6.2432051}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1620; + type="Land_SPE_BarbedWire_04"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={2957.822,251.62997,3075.5715}; + angles[]={6.22824,0.61153162,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1621; + type="Land_SPE_BarbedWire_04"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={2942.8411,252.33751,3085.3699}; + angles[]={6.22824,1.7452821,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1604; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={2970.697,248.97658,3046.9309}; + angles[]={6.2182741,1.7452821,6.2631927}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1605; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={2961.4744,256.78967,3176.0945}; + angles[]={6.1099372,0.82939821,6.2581987}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1614; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={2960.3242,257.51443,3179.1228}; + angles[]={5.9734898,0.82939821,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1615; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={2871.863,260.11447,3181.1968}; + angles[]={6.1983981,0.82939821,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1994; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={2873.855,260.31262,3184.9946}; + angles[]={6.2332392,1.8728393,6.2631865}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1995; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={2882.0054,260.17517,3185.5879}; + angles[]={6.2232451,5.0386963,6.2581987}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1996; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={2891.7051,259.03247,3166.0361}; + angles[]={6.2232599,1.5264235,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1997; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={2958.4031,250.93527,3065.7468}; + angles[]={6.2182741,0.84256256,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1600; + type="Land_SPE_Sandbag_Curve"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={2980.5085,256.92221,3176.2734}; + angles[]={6.1588306,6.1689496,6.2481976}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1610; + type="Land_SPE_Sandbag_Curve"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={2894.5811,260.03314,3182.3962}; + angles[]={6.2133079,1.4491061,6.2531819}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1992; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={2899.759,259.88168,3182.4219}; + angles[]={6.2083287,1.6478024,6.25318}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1993; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={2959.1794,251.24345,3070.0498}; + angles[]={6.2232599,5.6840663,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1601; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={2957.1021,251.50829,3073.1768}; + angles[]={6.223259,5.6840663,6.2432051}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1602; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={2953.4207,251.67787,3073.5488}; + angles[]={6.223259,1.075174,6.2432051}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1603; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={2977.5664,257.66052,3179.5081}; + angles[]={6.0905952,4.7055149,6.2033539}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1611; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={2973.8208,257.98575,3179.7622}; + angles[]={6.0523729,4.7656908,6.2282486}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1612; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={2971.2854,257.43942,3177.0671}; + angles[]={6.0857925,0.15824151,6.2631836}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1613; + type="Land_SPE_Sandbag_Long_Thick"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={2957.0488,251.01471,3065.8359}; + angles[]={6.2182741,2.5511858,6.2432137}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1599; + type="Land_SPE_Sandbag_Nest"; + atlOffset=0.00010681152; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={2979.6135,256.8605,3175.2529}; + angles[]={6.1785579,1.5935097,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1609; + type="Land_SPE_Sandbag_Nest"; + atlOffset=0.00012207031; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={2895.2732,259.52261,3177.6909}; + angles[]={6.2182741,4.8621006,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1991; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={2973.719,253.129,3117.2563}; + angles[]={6.22824,2.0682857,6.2382174}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1998; + type="Land_SPE_Sandbag_Nest"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Logic"; + class PositionInfo + { + position[]={2956.5647,250.97493,3069.5083}; + angles[]={0,5.6917362,0}; + }; + areaSize[]={5,0,8.9806509}; + flags=1; + id=1619; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.12702942; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item35 + { + dataType="Logic"; + class PositionInfo + { + position[]={2930.8289,254.84698,3117.0444}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1990; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item36 + { + dataType="Logic"; + class PositionInfo + { + position[]={2938.6528,254.81569,3126.4363}; + angles[]={6.2482023,0,6.2531877}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1999; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=178; + atlOffset=-0.16040039; + }; + class Item13 + { + dataType="Layer"; + name="outpost_15"; + class Entities + { + items=35; + class Item0 + { + dataType="Marker"; + position[]={6811.0195,291.93805,7623.3726}; + name="outp_15_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=278.33395; + id=610; + }; + class Item1 + { + dataType="Marker"; + position[]={6801.2642,290.29031,7653.9287}; + name="outpost_15"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=92.842216; + b=121.87746; + id=611; + atlOffset=-3.1369629; + }; + class Item2 + { + dataType="Marker"; + position[]={6843.1445,289.55984,7604.3892}; + name="outp_15_mortar"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=612; + }; + class Item3 + { + dataType="Marker"; + position[]={6782.9326,292.64731,7580.1206}; + name="outp_15_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=92.598396; + id=1573; + }; + class Item4 + { + dataType="Marker"; + position[]={6822.0166,290.81979,7595.9663}; + name="outp_15_vehicle_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=267.47665; + id=1575; + }; + class Item5 + { + dataType="Marker"; + position[]={6810.3228,293.16302,7659.0215}; + name="outp_15_vehicle_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=250.95584; + id=1577; + }; + class Item6 + { + dataType="Marker"; + position[]={6795.0977,294.03268,7659.9634}; + name="outp_15_vehicle_4"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=141.75601; + id=1579; + }; + class Item7 + { + dataType="Marker"; + position[]={6814.4761,293.94696,7682.9116}; + name="outp_15_mortar_1"; + markerType="ELLIPSE"; + type="ellipse"; + colorName="ColorYellow"; + a=3; + b=3; + id=1598; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6804.6499,292.59366,7571.2466}; + angles[]={0.009988944,1.7857472,6.2531977}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1502; + type="Land_SPE_BarbedWire_04"; + atlOffset=9.1552734e-005; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={6802.1675,292.71274,7563.7373}; + angles[]={0.0050033992,2.2325108,6.2581964}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1503; + type="Land_SPE_BarbedWire_04"; + atlOffset=9.1552734e-005; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={6801.0347,292.09436,7581.6152}; + angles[]={0.015002378,2.7292247,6.2431974}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1499; + type="Land_SPE_HedgeHog"; + atlOffset=-3.0517578e-005; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={6804.7554,292.02243,7577.5586}; + angles[]={0.020001993,2.7291973,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1500; + type="Land_SPE_HedgeHog"; + atlOffset=3.0517578e-005; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={6796.3813,292.74817,7564.5239}; + angles[]={0,1.8266594,6.2631984}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1495; + type="Land_SPE_Sandbag_Curve"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={6800.3936,292.73059,7566.2622}; + angles[]={0.0050033992,0.38497755,6.2581964}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1496; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={6801.8447,292.67694,7569.7246}; + angles[]={0.0050033992,0.38498631,6.258182}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1497; + type="Land_SPE_Sandbag_Long_Thick"; + atlOffset=-3.0517578e-005; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={6800.1138,292.70334,7572.9951}; + angles[]={0.0050033992,2.0590374,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1498; + type="Land_SPE_Sandbag_Long_Thick"; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={6795.7051,292.78165,7565.7007}; + angles[]={0,3.5352831,6.2681751}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1494; + type="Land_SPE_Sandbag_Nest"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={6739.9863,295.86874,7633.0874}; + angles[]={6.2182741,5.4796209,6.2232599}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1586; + type="Land_SPE_Sandbag_Nest"; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={6788.0303,298.06393,7711.0137}; + angles[]={6.1588306,5.7171111,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1589; + type="Land_SPE_Sandbag_Nest"; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={6881.7769,288.76648,7641.5479}; + angles[]={6.1785731,1.7173555,6.2083287}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1592; + type="Land_SPE_Sandbag_Nest"; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={6858.6201,292.07245,7567.4263}; + angles[]={0,2.2617214,6.2432137}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1595; + type="Land_SPE_Sandbag_Nest"; + atlOffset=3.0517578e-005; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={6741.9346,295.50723,7634.5283}; + angles[]={6.1983824,3.9620609,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1587; + type="Land_SPE_Sandbag_Short"; + atlOffset=3.0517578e-005; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={6738.4966,295.38306,7631.3057}; + angles[]={6.2731786,3.9663625,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1588; + type="Land_SPE_Sandbag_Short"; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={6790.2627,297.6947,7711.957}; + angles[]={6.2332392,4.2046714,6.2332239}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1590; + type="Land_SPE_Sandbag_Short"; + atlOffset=-3.0517578e-005; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={6786.1641,297.45724,7709.6313}; + angles[]={6.2033529,4.2061596,6.2631984}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1591; + type="Land_SPE_Sandbag_Short"; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={6881.0098,288.16925,7639.249}; + angles[]={6.1835103,0.20472078,6.2083287}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1593; + type="Land_SPE_Sandbag_Short"; + atlOffset=6.1035156e-005; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={6881.9727,288.56845,7643.8623}; + angles[]={6.1835251,0.20471929,6.2033539}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1594; + type="Land_SPE_Sandbag_Short"; + atlOffset=3.0517578e-005; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={6856.7856,291.8439,7565.8428}; + angles[]={6.0382071,0.74922413,6.1983824}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1596; + type="Land_SPE_Sandbag_Short"; + atlOffset=-3.0517578e-005; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={6859.9712,291.33459,7569.3154}; + angles[]={0.19739276,0.73391628,0.07983166}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1597; + type="Land_SPE_Sandbag_Short"; + }; + class Item29 + { + dataType="Logic"; + class PositionInfo + { + position[]={6811.1494,291.92773,7623.0117}; + angles[]={6.2581744,4.8578448,6.2182941}; + }; + areaSize[]={5.4474373,0,5}; + areaIsRectangle=1; + flags=1; + id=1572; + type="ModuleHideTerrainObjects_F"; + atlOffset=0.0071716309; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item30 + { + dataType="Logic"; + class PositionInfo + { + position[]={6782.7456,292.65149,7580.0215}; + angles[]={6.278194,1.6142815,6.258182}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1574; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item31 + { + dataType="Logic"; + class PositionInfo + { + position[]={6822.1938,290.81088,7596.0815}; + angles[]={0.0050033992,4.6662278,6.2382174}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1576; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item32 + { + dataType="Logic"; + class PositionInfo + { + position[]={6810.46,293.16763,7659.1826}; + angles[]={6.2332239,4.3773336,6.2581964}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1578; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item33 + { + dataType="Logic"; + class PositionInfo + { + position[]={6794.9004,294.04758,7660.04}; + angles[]={6.2432122,2.4747434,6.223259}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=1580; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={6801.2446,292.64679,7576.3516}; + angles[]={0.014998405,0.77842242,6.2481956}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1501; + type="Land_SPE_BarbedWire_04"; + atlOffset=0.00012207031; + }; + }; + id=183; + atlOffset=0.59182739; + }; + class Item14 + { + dataType="Layer"; + name="outpost_1"; + class Entities + { + items=45; + class Item0 + { + dataType="Marker"; + position[]={2916.4031,255.4541,7389.1074}; + name="outp_1_helipad"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorBlue"; + a=15; + b=15; + id=443; + }; + class Item1 + { + dataType="Marker"; + position[]={2836.2239,251.11591,7396.0854}; + name="outp_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=22.212721; + b=5; + angle=175.78676; + id=444; + atlOffset=-0.65989685; + }; + class Item2 + { + dataType="Marker"; + position[]={2865.801,255.41803,7361.2993}; + name="outpost_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGUER"; + a=113.53277; + b=87.95974; + id=445; + atlOffset=1.1533966; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={2836.3306,251.11789,7396.1045}; + angles[]={0.034988083,3.0645576,0.039971694}; + }; + areaSize[]={22.254951,0,5}; + areaIsRectangle=1; + flags=1; + id=1429; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.66177368; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={2812.0134,251.46817,7377.9595}; + angles[]={0.049953286,4.2424664,0.044966776}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1472; + type="Land_SPE_BarbedWire_04"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={2814.0918,251.88422,7372.8237}; + angles[]={0.07983166,3.5481758,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1476; + type="Land_SPE_BarbedWire_04"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={2824.2549,251.95079,7380.4053}; + angles[]={0.039980642,4.5793915,0.044976059}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1477; + type="Land_SPE_BarbedWire_04"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={2861.7825,258.53137,7277.1133}; + angles[]={0.049961641,0.3738974,0.084803045}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1817; + type="Land_SPE_BarbedWire_04"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={2857.9902,258.27621,7277.0703}; + angles[]={0.054938007,6.1525002,0.044968102}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1822; + type="Land_SPE_BarbedWire_04"; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={2849.5859,258.08746,7276.6025}; + angles[]={0.029989703,6.2594662,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1823; + type="Land_SPE_BarbedWire_04"; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={2844.9443,257.97964,7274.8623}; + angles[]={6.1983824,6.1423001,0.074871972}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1824; + type="Land_SPE_BarbedWire_04"; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={2914.2651,260.14072,7300.0796}; + angles[]={6.2182751,2.8890009,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1830; + type="Land_SPE_BarbedWire_04"; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={2919.6853,260.32559,7303.1206}; + angles[]={6.2282486,2.5373769,0.0049795164}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1831; + type="Land_SPE_BarbedWire_04"; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={2893.9456,260.05603,7291.1108}; + angles[]={6.1588306,2.2016854,6.2531958}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1832; + type="Land_SPE_BarbedWire_04"; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={2889.0396,259.62973,7286.415}; + angles[]={6.1637616,2.1189072,6.268187}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1833; + type="Land_SPE_BarbedWire_04"; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={2875.1472,259.68445,7279.2534}; + angles[]={6.278182,2.2753754,6.2332392}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1834; + type="Land_SPE_BarbedWire_04"; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={2881.4136,259.63623,7283.6753}; + angles[]={6.1736255,2.9066992,6.2382188}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1835; + type="Land_SPE_BarbedWire_04"; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={2821.9084,252.99275,7373.7104}; + angles[]={0.064911485,1.6508695,0.044968102}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1475; + type="Land_SPE_Guardbox"; + atlOffset=0.0056152344; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={2982.1755,257.33923,7404.6699}; + angles[]={0.020001993,4.5319986,0.014998405}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1464; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={2968.6333,257.11676,7403.8164}; + angles[]={0.0050033992,4.5326142,0.024989013}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1465; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={3015.0522,257.7291,7386.5093}; + angles[]={0.039986607,4.5319986,6.2731729}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1466; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={2604.2722,244.82159,7376.1104}; + angles[]={0.034989785,4.5319986,0.01999305}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1467; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={2627.0161,245.01886,7388.0732}; + angles[]={0.019996032,4.5319986,0.019996032}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1468; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={2833.449,251.87762,7380.3516}; + angles[]={0.049960449,0,0.044966776}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1478; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={2793.4331,250.08058,7378.6948}; + angles[]={0.01999305,0,0.044968102}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1479; + type="Land_SPE_HedgeHog"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={2950.8381,256.98563,7404.6128}; + angles[]={0.024989013,5.1792707,0.0300056}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1462; + type="Land_SPE_Sandbag_Curve"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={2817.9812,251.56665,7381.1372}; + angles[]={0.024996169,1.6104678,0.039971694}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1471; + type="Land_SPE_Sandbag_Curve"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={2815.0344,251.58934,7376.5039}; + angles[]={0.049954481,0,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1473; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={2858.332,258.02039,7280.3809}; + angles[]={0.049961641,4.6065683,0.049946126}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1818; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={2863.2139,258.49451,7280.042}; + angles[]={0.059940398,1.7855966,0.15864386}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1819; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={2850.1692,257.89514,7279.6958}; + angles[]={0.034989785,4.6285334,0.0099949092}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1820; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={2845.0625,258.02075,7278.9585}; + angles[]={0.0099949092,1.3022592,6.2431989}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1821; + type="Land_SPE_Sandbag_Long"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={2912.4858,260.2648,7304.5347}; + angles[]={0.015010322,4.1700258,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1826; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={2920.5154,260.38052,7306.9229}; + angles[]={0,4.6065683,0.01499443}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1827; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={2888.0576,260.12842,7291.3105}; + angles[]={6.1785583,4.0957518,6.2482109}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1828; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={2875.5034,259.71307,7283.3789}; + angles[]={6.2232599,4.0751438,0.0050033992}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1829; + type="Land_SPE_Sandbag_Long"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item36 + { + dataType="Object"; + class PositionInfo + { + position[]={2816.4211,251.43504,7374.0859}; + angles[]={0.06988623,1.5267813,0.049961641}; + }; + side="Empty"; + flags=4; + class Attributes + { + createAsSimpleObject=1; + disableSimulation=1; + }; + id=1474; + type="Land_SPE_Sandbag_Short"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item37 + { + dataType="Logic"; + class PositionInfo + { + position[]={2951.9204,256.58218,7406.145}; + angles[]={0.034988083,4.5325351,0.034972742}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1461; + type="ModuleHideTerrainObjects_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item38 + { + dataType="Logic"; + class PositionInfo + { + position[]={2816.1357,251.2618,7376.5005}; + angles[]={0.049961641,1.2126547,0.049961641}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1470; + type="ModuleHideTerrainObjects_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item39 + { + dataType="Logic"; + class PositionInfo + { + position[]={2867.325,254.24606,7365.2075}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=1836; + type="ModuleHideTerrainObjects_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item40 + { + dataType="Object"; + class PositionInfo + { + position[]={2953.3604,257.12177,7402.3086}; + angles[]={0.0099949092,1.8366097,0.034989785}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1460; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item41 + { + dataType="Object"; + class PositionInfo + { + position[]={2814.0383,251.3997,7380.021}; + angles[]={0,4.7998748,0.064910568}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1469; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item42 + { + dataType="Object"; + class PositionInfo + { + position[]={2854.4871,257.96274,7279.5337}; + angles[]={0.049961641,3.1233175,0.024989013}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1816; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item43 + { + dataType="Object"; + class PositionInfo + { + position[]={2915.5117,259.22552,7315.1494}; + angles[]={0.18292925,1.5912557,0.07983166}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1825; + type="Land_SPE_Sandbag_Nest"; + class CustomAttributes + { + class Attribute0 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item44 + { + dataType="Object"; + class PositionInfo + { + position[]={2955.7188,257.22742,7403.9785}; + angles[]={0.014998405,1.2792422,0.029989703}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=1463; + type="Land_SPE_BarbedWire_04"; + atlOffset=-3.0517578e-005; + }; + }; + id=201; + atlOffset=-0.029327393; + }; + }; + id=117; + atlOffset=-1.6273193; + }; + class Item5 + { + dataType="Layer"; + name="resources"; + state=2; + class Entities + { + items=10; + class Item0 + { + dataType="Layer"; + name="resource_1"; + class Entities + { + items=4; + class Item0 + { + dataType="Marker"; + position[]={2826.8025,154.95544,1703.105}; + name="reso_1_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=78.39299; + id=456; + atlOffset=0.6053772; + }; + class Item1 + { + dataType="Marker"; + position[]={2831.9319,154.466,1684.4611}; + name="resource_1"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorOrange"; + a=93.524002; + b=74.931999; + angle=350.578; + id=457; + atlOffset=-0.30537415; + }; + class Item2 + { + dataType="Marker"; + position[]={2829.6367,155.10652,1690.6616}; + name="reso_1_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=78.39299; + id=623; + atlOffset=0.6053772; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={2829.147,154.33769,1695.12}; + angles[]={0,6.085928,0}; + }; + areaSize[]={6.5349998,0,15.854}; + areaIsRectangle=1; + flags=1; + id=622; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.080978394; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=207; + atlOffset=0.19841003; + }; + class Item1 + { + dataType="Layer"; + name="resource_2"; + class Entities + { + items=3; + class Item0 + { + dataType="Marker"; + position[]={790.68384,226.00792,5638.125}; + name="reso_2_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=257.33194; + id=459; + atlOffset=1.6002655; + }; + class Item1 + { + dataType="Marker"; + position[]={765.96405,224.95274,5655.562}; + name="resource_2"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=95.150383; + b=53.763939; + id=460; + atlOffset=0.45678711; + }; + class Item2 + { + dataType="Marker"; + position[]={793.96545,225.24983,5623.5703}; + name="reso_2_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=257.33194; + id=624; + atlOffset=1.6002655; + }; + }; + id=211; + atlOffset=0.94389343; + }; + class Item2 + { + dataType="Layer"; + name="resource_3"; + class Entities + { + items=5; + class Item0 + { + dataType="Marker"; + position[]={925.44818,174.17131,7551.0518}; + name="reso_3_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=19.354977; + id=462; + atlOffset=0.59114075; + }; + class Item1 + { + dataType="Marker"; + position[]={942.76624,173.50999,7572.0742}; + name="resource_3"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=91.862267; + b=76.228539; + id=463; + }; + class Item2 + { + dataType="Marker"; + position[]={958.44238,174.10114,7585.6655}; + name="reso_3_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=214.72661; + id=626; + atlOffset=0.59114075; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={958.30872,173.50999,7585.8452}; + angles[]={0,3.7916574,0}; + }; + areaSize[]={5.7757373,0,5.0840139}; + areaIsRectangle=1; + flags=1; + id=627; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={925.62463,173.58618,7550.9141}; + angles[]={0.049961641,0.38207579,6.278194}; + }; + areaSize[]={5.7757373,0,5.0840139}; + areaIsRectangle=1; + flags=1; + id=625; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=215; + atlOffset=0.15852356; + }; + class Item3 + { + dataType="Layer"; + name="resource_4"; + class Entities + { + items=3; + class Item0 + { + dataType="Marker"; + position[]={2811.3381,275.2395,6737.4844}; + name="reso_4_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=327.34793; + id=465; + atlOffset=0.60540771; + }; + class Item1 + { + dataType="Marker"; + position[]={2785.9985,274.63,6721.2954}; + name="resource_4"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorOrange"; + a=61.557182; + b=64.913597; + id=466; + }; + class Item2 + { + dataType="Logic"; + class PositionInfo + { + position[]={2811.5771,274.63464,6737.3491}; + angles[]={6.278182,2.5490315,0.0050033992}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=628; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=219; + atlOffset=0.1546936; + }; + class Item4 + { + dataType="Layer"; + name="resource_5"; + class Entities + { + items=4; + class Item0 + { + dataType="Marker"; + position[]={7226.2607,280.98956,7181.7686}; + name="reso_5_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=79.274979; + id=468; + atlOffset=0.77261353; + }; + class Item1 + { + dataType="Marker"; + position[]={7215.5693,279.87192,7208.8066}; + name="resource_5"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorOrange"; + a=71.041; + b=70.627998; + id=469; + }; + class Item2 + { + dataType="Marker"; + position[]={7228.0435,281.00113,7170.9629}; + name="reso_5_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=89.140503; + id=630; + atlOffset=0.77261353; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={7231.8525,280.11197,7173.8579}; + angles[]={0,0,6.2531819}; + }; + areaSize[]={6.081543,0,15.653564}; + flags=1; + id=629; + type="ModuleHideTerrainObjects_F"; + atlOffset=-0.031036377; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=223; + atlOffset=0.20300293; + }; + class Item5 + { + dataType="Layer"; + name="resource_7"; + class Entities + { + items=5; + class Item0 + { + dataType="Marker"; + position[]={567.5531,203.80507,3107.2959}; + name="reso_7_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=149.70851; + id=614; + atlOffset=0.60507202; + }; + class Item1 + { + dataType="Marker"; + position[]={558.841,205.817,3093.073}; + name="resource_7"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorOrange"; + a=86.414001; + b=61.518002; + id=615; + atlOffset=1.0789337; + }; + class Item2 + { + dataType="Marker"; + position[]={563.15765,205.46034,3084.0352}; + name="reso_7_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=57.356335; + id=632; + atlOffset=0.60507202; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={563.30603,204.8382,3084.332}; + angles[]={0.029987715,5.7405615,6.228241}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=634; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={566.42133,203.30841,3103.3945}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=633; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=227; + atlOffset=-0.021316528; + }; + class Item6 + { + dataType="Layer"; + name="resource_8"; + class Entities + { + items=8; + class Item0 + { + dataType="Marker"; + position[]={2863.4883,128.21033,477.60352}; + name="reso_8_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=259.91412; + id=617; + atlOffset=0.50489044; + }; + class Item1 + { + dataType="Marker"; + position[]={2884.2961,126.81973,443.52127}; + name="resource_8"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=113.90878; + b=58.364674; + angle=352.3609; + id=618; + atlOffset=-0.013923645; + }; + class Item2 + { + dataType="Marker"; + position[]={2852.5591,128.18929,468.3208}; + name="reso_8_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=296.09634; + id=639; + atlOffset=0.50489044; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={2923.3496,127.85773,405.79739}; + angles[]={6.2731905,0,6.2681909}; + }; + side="Empty"; + class Attributes + { + }; + id=636; + type="Land_HelipadEmpty_F"; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={2864.4739,128.603,399.47998}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=637; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Logic"; + class PositionInfo + { + position[]={2923.5996,127.8548,405.88037}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=638; + type="ModuleHideTerrainObjects_F"; + atlOffset=-7.6293945e-006; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Logic"; + class PositionInfo + { + position[]={2847.1941,127.54,462.69812}; + }; + areaSize[]={5.2983398,0,5}; + flags=1; + id=640; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={2864.5068,128.59814,399.67413}; + angles[]={0.024996169,0,0}; + }; + side="Empty"; + class Attributes + { + }; + id=635; + type="Land_HelipadEmpty_F"; + }; + }; + id=231; + atlOffset=0.14682007; + }; + class Item7 + { + dataType="Layer"; + name="resource_9"; + class Entities + { + items=3; + class Item0 + { + dataType="Marker"; + position[]={4326.832,201.48,2191.6118}; + name="reso_9_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=269.7363; + id=620; + }; + class Item1 + { + dataType="Marker"; + position[]={4331.9092,201.42683,2176.9248}; + name="resource_9"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=41.747002; + b=41.750999; + id=621; + }; + class Item2 + { + dataType="Logic"; + class PositionInfo + { + position[]={4326.7163,201.48,2191.615}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=642; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=235; + atlOffset=-0.0032958984; + }; + class Item8 + { + dataType="Layer"; + name="resource_6"; + class Entities + { + items=3; + class Item0 + { + dataType="Marker"; + position[]={6811.8979,153.06342,714.12256}; + name="reso_6_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=270.08914; + id=579; + atlOffset=0.60462952; + }; + class Item1 + { + dataType="Marker"; + position[]={6860.3652,151.85785,727.08716}; + name="resource_6"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorOrange"; + a=68.264091; + b=53.552025; + id=580; + }; + class Item2 + { + dataType="Logic"; + class PositionInfo + { + position[]={6811.96,152.43385,713.84418}; + }; + areaSize[]={5,-1,5}; + flags=1; + id=631; + type="ModuleHideTerrainObjects_F"; + atlOffset=-1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=270; + atlOffset=1.2405701; + }; + class Item9 + { + dataType="Layer"; + name="resource_10"; + class Entities + { + items=5; + class Item0 + { + dataType="Marker"; + position[]={7832.1812,294.452,3578.5129}; + name="resource_10"; + markerType="ELLIPSE"; + type="rectangle"; + colorName="ColorOrange"; + a=100; + b=100; + id=2181; + atlOffset=1.0078735; + }; + class Item1 + { + dataType="Logic"; + class PositionInfo + { + position[]={7828.2773,293.91061,3566.6521}; + angles[]={0.079832405,0,0.010012784}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=2182; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Marker"; + position[]={7828.4136,293.91571,3566.6052}; + name="reso_10_vehicle"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=269.73599; + id=2180; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={7813.3052,294.37576,3561.0889}; + angles[]={0.064910568,1.2693213,0.0049914722}; + }; + areaSize[]={5,-1,5}; + areaIsRectangle=1; + flags=1; + id=2183; + type="ModuleHideTerrainObjects_F"; + class CustomAttributes + { + class Attribute0 + { + property="#filter"; + expression="_this setVariable [""#filter"",_value]"; + class Value + { + class data + { + singleType="SCALAR"; + value=15; + }; + }; + }; + class Attribute1 + { + property="#hideLocally"; + expression="_this setVariable [""#hideLocally"",_value]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Marker"; + position[]={7813.3271,294.3645,3561.2637}; + name="reso_10_vehicle_1"; + markerType="RECTANGLE"; + type="rectangle"; + colorName="ColorGreen"; + a=5; + b=5; + angle=342.58572; + id=2184; + }; + }; + id=2179; + atlOffset=0.095184326; + }; + }; + id=206; + atlOffset=-55.49704; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={4942.5884,273.52625,6740.6392}; + angles[]={0.024601143,3.9348843,6.2653179}; + }; + side="Empty"; + class Attributes + { + }; + id=2325; + type="Land_HelipadEmpty_F"; + }; + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + }; + class Connections + { + class LinkIDProvider + { + nextID=39; + }; + class Links + { + items=39; + class Item0 + { + linkID=0; + item0=534; + item1=535; + class CustomData + { + type="Sync"; + }; + }; + class Item1 + { + linkID=1; + item0=479; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item2 + { + linkID=2; + item0=480; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item3 + { + linkID=3; + item0=481; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item4 + { + linkID=4; + item0=482; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item5 + { + linkID=5; + item0=483; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item6 + { + linkID=6; + item0=484; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item7 + { + linkID=7; + item0=485; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item8 + { + linkID=8; + item0=486; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item9 + { + linkID=9; + item0=487; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item10 + { + linkID=10; + item0=488; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item11 + { + linkID=11; + item0=489; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item12 + { + linkID=12; + item0=490; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item13 + { + linkID=13; + item0=491; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item14 + { + linkID=14; + item0=492; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item15 + { + linkID=15; + item0=493; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item16 + { + linkID=16; + item0=494; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item17 + { + linkID=17; + item0=495; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item18 + { + linkID=18; + item0=496; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item19 + { + linkID=19; + item0=497; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item20 + { + linkID=20; + item0=498; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item21 + { + linkID=21; + item0=499; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item22 + { + linkID=22; + item0=500; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item23 + { + linkID=23; + item0=501; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item24 + { + linkID=24; + item0=502; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item25 + { + linkID=25; + item0=503; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item26 + { + linkID=26; + item0=504; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item27 + { + linkID=27; + item0=505; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item28 + { + linkID=28; + item0=506; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item29 + { + linkID=29; + item0=507; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item30 + { + linkID=30; + item0=508; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item31 + { + linkID=31; + item0=509; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item32 + { + linkID=32; + item0=510; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item33 + { + linkID=33; + item0=511; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item34 + { + linkID=34; + item0=512; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item35 + { + linkID=35; + item0=513; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item36 + { + linkID=36; + item0=514; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item37 + { + linkID=37; + item0=515; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + class Item38 + { + linkID=38; + item0=516; + item1=534; + class CustomData + { + type="Sync"; + }; + }; + }; + }; +}; diff --git a/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/navGrid.sqf b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/navGrid.sqf new file mode 100644 index 0000000000..c739c90fd2 --- /dev/null +++ b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/navGrid.sqf @@ -0,0 +1,787 @@ +/*{"systemTimeUCT_G":"2024-08-11 11:40:32","worldName":"SPE_Mortain","StreetArtist_Config":{"_flatMaxDrift":-1,"_juncMergeDistance":-1,"_humanEdited": true}}*/ +navGrid = [ +[[7228.65,685.34,0],0,true,[[2120,1,19.6594],[2396,1,206.901],[49,1,7.68353]]],[[1494.26,7618.17,0],0,false,[[2343,0,262.116],[1939,0,104.914]]],[[1197.5,3864.49,0],0,false,[[396,0,114.362],[3032,0,211.394]]],[[1819.21,722.402,0],0,false,[[3454,0,177.121],[819,0,41.3448]]],[[7598.1,3545.73,0],0,true,[[1090,0,299.52],[3786,0,11.5359],[3188,0,12.7607]]], +[[8079.13,6430.56,0],0,false,[[3517,1,181.405],[797,1,26.4079]]],[[6474.28,2065.17,0],0,false,[[322,0,16.9318],[3700,0,23.6219]]],[[6446.29,606.321,0],0,false,[[1902,0,17.4694],[343,0,298.409]]],[[5253.9,1810.2,0],0,true,[[1266,1,16.6281],[1694,1,16.4671],[871,1,10.2463]]],[[368.267,4412.01,0],0,false,[[1559,0,23.7047],[2703,0,126.756]]], +[[2827.58,1222.01,0],0,true,[[3357,2,17.0777],[3595,1,28.4684],[23,1,7.45969],[2929,2,15.0193]]],[[3976.3,4605.58,0],0,false,[[285,0,22.4805]]],[[6496.79,4117.69,0],0,false,[[2589,0,110.083],[555,0,205.659]]],[[2919.85,6970.19,0],0,false,[[984,0,62.7316],[2594,0,19.5951]]],[[257.916,1146.51,0],0,true,[[2528,0,23.6365],[507,0,7.19892],[1505,0,22.3362],[2694,0,20.6168]]], +[[6399.58,4299.09,0],0,false,[[487,0,74.4112],[3674,0,134.153]]],[[4327.59,8120.03,0],0,false,[[3269,0,15.6398],[615,0,37.2691]]],[[2368.63,7344.26,0],0,false,[[3189,1,80.9942],[2027,1,187.948]]],[[4863.14,4468.31,0],0,true,[[2946,0,9.4074],[3501,0,116.241],[736,0,5.64812]]],[[6124.23,891.441,0],0,true,[[760,0,5.74418],[1777,0,6.24476],[829,0,1.35216],[647,0,5.06464]]], +[[7656.31,6631.77,0],0,true,[[3713,1,100.184],[1677,1,15.1769],[2609,1,21.6046]]],[[440.688,2522.97,0],0,true,[[1046,0,28.7036],[3161,0,157.929],[1309,0,10.6839]]],[[5448.83,6233.47,0],0,true,[[2371,0,11.4803],[3850,0,48.6369],[2438,0,4.92065]]],[[2828.41,1214.6,0],0,true,[[160,1,26.364],[3357,2,14.4334],[2929,2,17.8304],[10,1,7.45969]]],[[4060.87,5349.35,0],0,false,[[201,2,25.0073],[3572,2,18.995]]], +[[7268.79,4188.4,0],0,false,[[3278,0,20.633]]],[[7850.1,6645.1,0],0,true,[[327,1,28.866],[3795,1,119.095],[1377,1,11.9302]]],[[4059.27,5329.72,0],0,false,[[1465,0,7.14471],[2502,0,12.0974]]],[[2408.56,7178.25,0],0,false,[[1167,0,26.0279],[2222,0,113.499]]],[[4946.98,7790.06,0],0,false,[[3393,0,284.445]]], +[[6946.06,839.681,0],0,true,[[3178,0,10.7855],[2417,0,143.85],[1906,1,5.00688]]],[[1753.93,7358.43,0],0,false,[[1088,0,78.3449]]],[[8041.55,5332.21,0],0,false,[[510,0,13.0216],[3534,0,38.467]]],[[7089.97,5532.93,0],0,false,[[388,1,22.4147],[2981,1,76.6382],[1520,0,7.02587]]],[[3045.06,2524.38,0],0,false,[[3747,0,21.5655],[1779,0,44.8489]]], +[[1227.57,7972.66,0],0,true,[[2662,0,31.1858],[2878,1,4.06542],[148,1,11.3471]]],[[5284.07,7468.38,0],0,true,[[3131,2,18.9715],[773,1,10.5275],[3437,2,16.726]]],[[7291.56,2592.14,0],0,true,[[1846,0,356.577],[2185,0,20.581],[3355,0,9.25083]]],[[7200.31,929.592,0],0,true,[[2238,0,272.297],[692,0,13.9454],[2129,0,10.8611]]],[[3122.54,1939.93,0],0,false,[[3211,0,124.66],[2992,0,185.838]]], +[[7990.52,4495.03,0],0,false,[[1816,0,31.4582],[324,0,230.507]]],[[1300.29,3079.29,0],0,true,[[3463,1,11.3837],[1702,0,70.5292],[3814,1,16.4101]]],[[2751.14,1176,0],0,false,[[3357,2,72.3708],[2361,2,256.693]]],[[346.53,4480.4,0],0,true,[[2096,0,13.8099],[1575,0,0.753956],[1562,0,9.39062],[1701,0,8.82812]]],[[6182.9,6062,0],0,true,[[1003,0,24.22],[2491,0,117.519],[985,0,114.012]]], +[[4988.62,4658.42,0],0,false,[[2117,1,44.5095],[3011,1,252.929]]],[[7635.17,6763.2,0],0,true,[[208,1,25.8343],[3469,1,244.684],[2332,1,12.908]]],[[5134.44,5300.3,0],0,false,[[892,0,309.972],[3381,0,78.4717]]],[[362.378,4734.93,0],0,true,[[1343,0,16.0301],[1183,0,16.0448],[334,0,0.749243],[2431,0,16.7149]]],[[7221.04,686.405,0],0,true,[[2120,1,12.8111],[2720,1,180.676],[0,1,7.68353]]], +[[2103.64,7457.8,0],0,false,[[3410,0,43.7215]]],[[2031.79,7291.12,0],0,true,[[3309,1,14.4649],[2443,0,179.177],[1800,1,6.24807]]],[[2825.92,1795.71,0],0,true,[[2638,1,94.5806],[2380,1,11.6453],[643,1,11.5374]]],[[7529.21,6486.15,0],0,true,[[1467,1,14.5202],[3442,1,30.4975],[921,1,6.31036]]],[[781.691,3061.63,0],0,false,[[211,0,86.1516],[3209,0,101.313]]], +[[2593.27,4050.91,0],0,false,[[3545,0,129.579],[1259,0,229.233]]],[[4576.65,2272,0],0,false,[[2274,2,21.4422],[1102,2,25.6217]]],[[4289.42,4132.51,0],0,false,[[751,0,106.985],[2660,0,23.4121]]],[[7618.49,951.379,0],0,false,[[2264,0,202.545],[129,0,234.21]]],[[5461.56,6229.11,0],0,false,[[2438,0,9.5471],[1312,0,104.002]]], +[[863.48,8169.37,0],0,true,[[3368,1,15.5213],[1323,0,70.3406],[2465,1,6.85465]]],[[4390.37,3045.21,0],0,true,[[1657,1,25.8413],[2480,1,15.3917],[3570,1,40.8796]]],[[8026,7664.54,0],0,false,[[1503,0,31.8642],[1365,0,26.4119]]],[[3410.21,4710.36,0],0,true,[[1387,0,18.0149],[627,0,225.167],[778,0,16.481]]],[[4168.73,5962.24,0],0,false,[[235,0,76.0775],[2234,2,12.211]]], +[[6026.45,6235.81,0],0,true,[[3758,0,252.12],[426,0,18.5576],[478,0,302.641]]],[[3842.11,5938.03,0],0,true,[[2529,1,29.7888],[3312,1,27.8377],[2436,1,10.8659],[713,1,6.35427]]],[[3588.5,1748.8,0],0,false,[[3261,0,159.773],[2063,0,119.696]]],[[1293.51,5580.64,0],0,true,[[576,0,83.9581],[3889,0,83.8951],[3873,0,59.6403]]],[[4883.87,793.329,0],0,true,[[1175,1,26.9993],[562,1,223.711],[2379,1,14.3276]]], +[[5579.51,2214.18,0],0,true,[[2515,1,60.3396],[273,1,22.7255],[1130,1,10.7347]]],[[2524.69,82.2092,0],0,true,[[3184,0,3.36856],[3083,0,11.2975],[1184,0,0.566938]]],[[2160,5307.06,0],0,false,[[719,1,24.0119],[3439,1,106.459]]],[[294.381,7335.27,0],0,true,[[2883,0,10.0856],[1871,0,21.8825],[743,0,8.19635]]],[[205.995,7525,0],0,false,[[659,0,84.4515],[2841,0,143.83]]], +[[5829.15,1474.26,0],0,true,[[940,1,287.298],[1966,1,19.9982],[2356,1,10.1485]]],[[7045.56,4195.41,0],0,false,[[2538,0,32.209],[1784,0,98.5033]]],[[842.202,3473.54,0],0,true,[[1509,1,27.2557],[2557,1,315.133],[2397,1,11.5324]]],[[3153.5,1520.26,0],0,false,[[319,0,234.044],[2800,0,106.777]]],[[450.565,2395.48,0],0,true,[[613,0,20.3555],[2059,0,14.5219],[635,0,12.1687]]], +[[7007.99,307.175,0],0,false,[[3343,0,83.3948]]],[[1453.71,3345.08,0],0,false,[[435,0,13.9784],[1462,0,20.0056]]],[[7750.64,5846.26,0],0,false,[[154,0,54.9387]]],[[960.482,6121.85,0],0,false,[[3802,1,80.9111],[3115,1,77.1292]]],[[3029.63,2528.69,0],0,false,[[3747,0,26.7047],[3003,0,28.9409]]], +[[3666.54,5125.46,0],0,true,[[106,1,121.65],[2739,1,12.9827],[520,1,10.716]]],[[7556.82,1142.27,0],0,true,[[1805,0,6.51776],[2496,0,5.83186],[2264,0,19.7446]]],[[3868.92,1114.61,0],0,true,[[1154,0,109.565],[2316,0,7.34597],[2714,0,5.65605]]],[[2583.8,6826.58,0],0,true,[[3763,1,26.9736],[2601,1,261.611],[2754,1,16.1577]]],[[3114.85,7937.73,0],0,false,[[2934,0,261.691],[1811,0,295.447]]], +[[5680.06,4424.44,0],0,true,[[2695,1,47.7081],[3342,1,21.4007],[602,1,9.93665],[726,1,9.70636]]],[[1690.19,3274.33,0],0,false,[[1247,0,77.5173],[968,1,6.01042]]],[[353.641,255.994,0],0,false,[[2476,0,7.59271],[1305,0,24.361]]],[[2575.73,3822.64,0],0,true,[[267,1,33.5518],[3016,1,156.502],[1831,1,16.1729]]],[[5528.5,1217.86,0],0,false,[[1234,1,143.193],[2301,1,35.1364]]], +[[5772.25,2072.65,0],0,false,[[185,0,90.3716]]],[[4174.61,4308.42,0],0,false,[[2473,1,10.1045],[1250,0,115.809]]],[[6969.69,831.31,0],0,true,[[1906,1,26.889],[2103,1,218.809],[3178,1,14.7719]]],[[7253.34,3562.42,0],0,true,[[1854,1,14.5676],[1178,1,94.367],[3762,1,7.80318]]],[[1142.44,4604.34,0],0,false,[[3047,0,73.3327]]], +[[7643.28,4444.35,0],0,true,[[449,1,211.416],[3770,1,28.9702],[3353,1,17.6051]]],[[3265.2,6067.34,0],0,true,[[2884,0,24.9599],[481,0,80.6204],[2702,0,10.5238]]],[[2440.36,380.206,0],0,true,[[860,0,9.90121],[3478,0,49.6217],[1856,1,8.99347]]],[[1524.13,519.592,0],0,true,[[3329,2,32.9882],[2547,2,34.5585],[955,2,17.2575]]],[[5803.65,6707.42,0],0,false,[[1626,0,212.597],[877,0,13.5391]]], +[[2823.76,3641.36,0],0,true,[[3430,1,18.5651],[542,1,64.6528],[3435,1,27.2789],[1360,1,16.3835]]],[[3787.31,5136.39,0],0,true,[[3590,1,15.0859],[85,1,121.65],[2239,1,10.0358]]],[[3504.72,2115.29,0],0,true,[[2563,0,13.2595],[2087,0,57.49],[1332,0,5.53376],[1551,0,20.1389]]],[[3240.4,1441.01,0],0,true,[[2800,0,10.9025],[1460,2,15.2052],[373,2,18.6064]]],[[2835.95,4463.04,0],0,true,[[3225,0,8.86387],[701,0,4.4484],[3535,1,18.957],[3816,1,8.64103]]], +[[2649.21,838.797,0],0,true,[[3610,1,28.0085],[3883,1,150.166],[1660,1,8.41092]]],[[7674.39,2379.25,0],0,true,[[3232,0,14.8682],[2437,0,375.724],[329,0,23.2135]]],[[6907.04,4364.22,0],0,false,[[965,1,26.2428],[3218,1,25.7867]]],[[3338.9,2737.6,0],0,false,[[839,0,67.0338],[3514,0,72.331]]],[[4737.9,6873.1,0],0,false,[[715,1,157.344],[342,1,399.072]]], +[[7590.52,6622.76,0],0,true,[[2628,1,12.546],[386,1,214.436],[412,1,24.8928]]],[[2754.32,3175.95,0],0,true,[[3522,1,24.2793],[389,1,159.349],[1426,1,17.536],[474,1,21.4556]]],[[4552.33,2593.49,0],0,false,[[2645,1,152.402],[1643,1,60.7096]]],[[4558.1,2278.19,0],0,false,[[2274,2,8.43489],[1205,0,4.75891]]],[[1.84561,1263.2,0],0,false,[[3852,0,244.045]]], +[[5500.23,1244.29,0],0,true,[[2245,0,47.7605],[3550,0,12.2582],[427,0,11.2079],[2301,1,8.96368]]],[[4224.66,2903.47,0],0,true,[[2335,1,14.632],[3133,1,77.1485],[3418,1,8.43048]]],[[7022.89,1552.92,0],0,true,[[1576,0,165.829],[979,0,12.0732],[2313,0,19.592]]],[[247.61,7859.39,0],0,false,[[3826,0,254.151],[3629,0,168.677]]],[[3142.21,7616.16,0],0,true,[[1556,1,25.6773],[1461,1,10.3128],[2607,1,15.0312]]], +[[4424.97,4782.96,0],0,true,[[2288,0,26.426],[1649,0,19.2025],[467,0,30.9561]]],[[4784.77,6554.27,0],0,false,[[2686,0,14.7308],[1992,2,8.36389]]],[[2855.86,4563.04,0],0,true,[[3207,1,24.8979],[3816,1,94.1801],[3495,1,8.15871]]],[[2938.25,810.743,0],0,true,[[3245,0,309.435],[310,0,23.3885],[2403,0,14.474]]],[[7713.28,756.782,0],0,false,[[58,0,234.21],[2244,0,81.6593]]], +[[4854.63,4074.99,0],0,false,[[2791,0,31.4126],[3316,0,64.3614]]],[[5996.03,5446.23,0],0,true,[[876,0,45.6053],[476,0,6.15422],[3449,0,12.6937]]],[[4316.02,2926.16,0],0,true,[[738,1,19.1012],[2492,1,18.6325],[221,1,7.62486]]],[[3561.51,1174.36,0],0,true,[[540,0,399.3],[2405,0,29.3218],[1943,0,38.9741]]],[[4861.01,893.769,0],0,false,[[1051,0,376.74],[1349,0,29.392]]], +[[6930.99,1068.2,0],0,true,[[3171,0,132.617],[3699,0,15.0957],[3894,0,15.1452],[1004,0,16.9565]]],[[2434.81,4145.07,0],0,false,[[3017,0,253.896],[1594,1,14.9112]]],[[4278.95,6211.75,0],0,true,[[2141,0,5.74374],[600,0,38.1994],[1809,0,4.361]]],[[7245.19,3180.8,0],0,false,[[963,0,320.991],[3136,0,123.545]]],[[5538.9,1647.19,0],0,true,[[2365,1,10.4513],[934,0,29.3079],[3853,1,22.6927]]], +[[3256.16,3235.83,0],0,false,[[3749,1,24.3509],[1523,1,64.0245]]],[[921.738,8143.77,0],0,false,[[2465,1,58.2515],[1737,1,125.817]]],[[4101.79,5771.86,0],0,false,[[631,0,20.822],[834,0,24.7815]]],[[6723.21,2141.18,0],0,false,[[3597,0,246.588],[1018,0,92.0227]]],[[6486.28,2656.29,0],0,true,[[2728,1,11.0204],[3861,0,232.229],[2839,1,16.4599]]], +[[629.311,37.339,0],0,true,[[3354,2,19.5067],[568,2,22.509],[3646,2,7.72425]]],[[4200.17,4035.32,0.000244141],0,false,[[3023,0,19.5568],[1082,0,16.0831]]],[[555.446,8054.23,0],0,false,[[3906,0,99.8781],[505,0,21.4555]]],[[1232.83,7982.7,0],0,true,[[1700,1,21.4677],[2878,1,14.9011],[35,1,11.3471]]],[[3230.31,7233.5,0],0,true,[[2977,0,27.176],[2168,0,24.5143],[163,0,50.7401]]], +[[5817.15,632.652,0],0,true,[[2066,1,23.2959],[3910,1,18.8769],[151,1,8.0757]]],[[5817.94,640.687,0],0,false,[[1112,0,8.87456],[150,1,8.0757]]],[[4141.63,1661.46,0],0,true,[[3788,0,260.259],[3038,0,11.6768],[3400,0,10.879]]],[[7426.38,1370.05,0],0,false,[[2122,0,241.962],[770,0,216.864]]],[[7781.71,5802.05,0],0,true,[[314,0,6.48068],[82,0,54.9387],[3004,0,3.34025]]], +[[8175.77,5386.54,0],0,true,[[3703,0,9.63846],[2830,0,5.05942],[874,0,7.03875]]],[[6516.37,1087.67,0],0,true,[[1346,1,107.031],[2721,1,33.8342],[2336,1,6.88382]]],[[2404.3,289.005,0],0,true,[[679,1,30.9512],[1856,1,90.7418],[3084,1,1.81188]]],[[5833.52,1615.74,0],0,false,[[580,0,56.5127]]],[[4261.27,6045.29,0],0,false,[[2499,0,6.80701],[2271,2,10.3955]]], +[[2822.13,1189.05,0],0,false,[[2879,1,67.8002],[23,1,26.364]]],[[454.279,7393.6,0],0,false,[[331,0,18.3048],[633,0,10.5852]]],[[6509.86,3953.32,0],0,true,[[3120,0,16.0906],[456,0,180.16],[802,0,10.7873]]],[[3271.23,7259.28,0],0,false,[[818,0,102.893],[149,0,50.7401]]],[[2549.98,79.0622,0],0,false,[[3083,0,14.4355],[2110,0,10.5313]]], +[[2220.34,6428.95,0],0,true,[[1454,1,257.051],[2366,1,30.8249],[1211,1,14.3484]]],[[6965.94,2932.12,0],0,true,[[1447,1,216.389],[3557,1,9.08884],[205,1,17.8299]]],[[6058.52,4311.79,-0.663528],0,false,[[2536,2,15.6004],[3490,2,4.349]]],[[3592.82,8028.29,0],0,true,[[1270,1,19.5082],[2043,1,109.381],[2321,1,7.31717]]],[[5868.63,267.841,0],0,true,[[2416,1,24.5911],[3618,1,41.2402],[3315,1,14.6785]]], +[[6347.65,5993.69,0],0,false,[[2491,0,103.869],[2378,0,132.704]]],[[6798.77,7594.17,0],0,false,[[3048,0,7.33626],[3228,0,60.6744]]],[[3355.02,6292.89,0],0,false,[[1867,0,17.8602],[1770,0,4.81311]]],[[7576.34,491.851,0],0,false,[[2585,1,6.81775],[2792,0,120.315]]],[[6465.77,2519.94,0],0,true,[[2506,0,81.8607],[251,1,7.69249],[3546,1,12.8203]]], +[[4532.57,3141.38,0],0,false,[[368,0,39.6638]]],[[946.41,4872.44,0],0,true,[[1196,0,334.878],[289,1,8.3112],[974,1,14.8753]]],[[7945.7,1531.12,0],0,true,[[1056,0,256.597],[3167,0,9.64848],[1227,0,13.0685]]],[[6324.45,5866.91,0],0,true,[[1207,0,49.3773],[359,0,22.0264],[3744,0,63.9759]]],[[4529.2,2315.53,0],0,false,[[3908,2,11.5387],[3653,0,33.9173]]], +[[7002.43,4351.84,0],0,false,[[691,0,25.4105],[993,0,20.8653]]],[[1147,4729.19,0],0,true,[[1768,0,21.0113],[992,0,101.837],[867,0,8.83183],[2364,0,16.8327]]],[[2589.05,4295.93,0],0,true,[[1259,0,16.8207],[526,0,121.799],[3482,0,11.1947]]],[[4792.52,70.2889,0],0,true,[[564,1,7.0236],[629,1,397.722],[3401,1,11.5318]]],[[1303.99,7875.76,0],0,false,[[1939,0,218.439],[3612,0,70.1407]]], +[[5783.26,2103.05,0],0,false,[[3097,0,85.4202],[95,0,90.3716]]],[[4519.84,7875.23,0],0,false,[[3010,0,120.849]]],[[3909.52,4266.18,0],0,false,[[2493,0,148.95],[700,0,250.03]]],[[6785.62,1082.92,0],0,true,[[3620,0,131.988],[3529,0,11.3137],[3171,0,13.7132]]],[[7491.94,2832.46,0],0,true,[[1903,0,25.0531],[2044,0,14.7601],[2049,0,7.69214]]], +[[1716.51,5502.32,0],0,false,[[360,0,46.3986],[468,0,221.918]]],[[7113.23,6790.04,0],0,false,[[1535,0,188.622]]],[[4772.92,5232.8,0],0,true,[[2278,1,21.2037],[608,1,6.83294],[408,1,9.21564]]],[[8086.97,5353.13,0],0,true,[[3534,0,12.102],[2542,0,12.9189],[3499,0,14.3256]]],[[3400.32,2228.06,0],0,false,[[1240,1,10.5529],[2249,0,11.115]]], +[[3129.55,7554.83,0],0,true,[[1979,0,24.9862],[2482,0,15.7844],[547,1,12.9099]]],[[6341.91,6214,0],0,false,[[1036,0,96.5588],[227,0,175.274]]],[[3470.11,1564.48,0],0,true,[[2630,2,30.273],[315,2,29.0993],[1370,2,17.1039]]],[[5111.65,8100.2,0],0,false,[[325,2,8.5666],[3249,0,68.2147]]],[[4864.37,5220.64,0],0,false,[[861,0,47.5758]]], +[[7044.55,4369.96,0],0,true,[[783,1,12.7188],[1008,1,9.2723],[3803,1,14.6271]]],[[4051.96,5372.71,0],0,true,[[3110,2,26.2358],[24,2,25.0073],[1042,2,17.4286],[445,2,12.2129]]],[[2868.99,3172.76,0],0,true,[[3702,1,24.9739],[632,1,24.3468],[1256,1,6.16811],[2490,1,16.2383]]],[[2774.76,3331.44,0],0,false,[[2020,1,107.353],[942,1,30.329]]],[[5259.19,1832.24,0],0,false,[[339,1,124.323],[871,1,23.7846]]], +[[6948.17,2930.84,0],0,true,[[166,1,17.8299],[1263,1,174.182],[3557,1,9.53348]]],[[513.193,7160.32,0],0,true,[[2468,0,10.9431],[666,0,11.0903],[2835,0,11.2039]]],[[1842.64,4904.71,0],0,true,[[3295,0,5.36506],[1132,0,12.4238],[2774,0,9.65222]]],[[7656.9,6749.25,0],0,true,[[859,1,76.5089],[46,1,25.8343],[2332,1,13.3413]]],[[1558.04,5952.13,0],0,true,[[858,1,64.4252],[2039,1,18.9442],[3008,1,8.39431]]], +[[2554.14,1645.91,0],0,false,[[3472,0,330.132],[3476,0,20.397]]],[[752.94,3124.65,0],0,false,[[896,0,193.998],[54,0,86.1516]]],[[7110.29,6093.43,0],0,true,[[2387,0,9.04305],[1075,0,112.43],[929,0,6.22901]]],[[348.419,4428.25,0],0,true,[[253,0,6.1877],[888,0,5.89037],[2469,0,0.751566],[998,0,6.50207]]],[[4299.45,6290.71,0],0,true,[[597,0,11.7333],[2615,0,133.093],[1023,0,7.36189]]], +[[7431.27,2963.7,0],0,true,[[1491,1,29.3078],[930,1,27.6254],[3197,1,17.3765]]],[[5241.52,7682.87,0],0,false,[[2999,2,19.8995],[2065,2,21.3514]]],[[4739.71,3496.69,0],0,false,[[1280,0,15.0479],[539,0,36.7138]]],[[3756.38,988.161,0],0,false,[[705,0,13.5161],[1154,0,60.5253]]],[[6295.61,3346.32,0],0,false,[[707,0,112.457]]], +[[6730.6,7651.34,0],0,false,[[2926,0,87.127],[3000,0,292.284]]],[[4314.48,2918.69,0],0,false,[[132,1,7.62486],[1209,1,33.0255]]],[[3751.87,1133.75,0],0,false,[[3872,1,78.2796],[3148,1,295.011]]],[[7367.88,3236.98,0],0,true,[[1499,1,20.9619],[2209,1,95.5675],[3136,1,16.1111],[1532,1,18.1713]]],[[4332.98,7059.33,0],0,false,[[3157,0,49.8379],[1314,0,46.2046]]], +[[1283.32,7992.33,0],0,false,[[3030,0,30.3059],[3683,0,66.1096]]],[[894.657,1756.21,0],0,false,[[3457,0,21.8847],[1860,0,14.6538]]],[[6208.16,6141.48,0],0,false,[[196,0,175.274],[1003,0,96.2092]]],[[3096.81,2863.98,0],0,true,[[503,0,112.149],[671,0,23.9018],[1540,0,5.40943],[1496,0,10.9946]]],[[4990.74,1660.09,0],0,true,[[2974,1,8.05778],[675,0,52.4354],[321,1,3.71951]]], +[[4668.88,5088.73,0],0,true,[[307,0,118.043],[2777,0,11.3189],[3112,0,14.8935]]],[[3596.07,6665.67,0],0,true,[[484,0,63.7833],[3685,0,13.1093],[3200,0,18.2163]]],[[6659.86,229.913,0],0,true,[[1949,1,20.5949],[1201,1,24.3051],[3870,1,9.9133]]],[[7223.53,895.521,0],0,true,[[3456,0,42.6052],[803,0,17.0399],[536,0,11.3181]]],[[8189.07,6787.31,0],0,false,[[2698,0,274.176]]], +[[4156.48,6036.23,0],0,false,[[64,0,76.0775],[2499,0,108.495]]],[[6049.85,6024.83,0],0,false,[[947,0,254.126],[985,0,45.8453]]],[[8004.25,5835.5,0],0,true,[[1395,1,58.8018],[3869,1,18.1455],[1534,1,8.85324]]],[[4192.71,7491.74,0.000244141],0,false,[[1938,0,12.0388]]],[[3336.39,6367.17,0],0,false,[[3645,0,82.2295],[1867,0,58.8702]]], +[[4571.3,4559.64,0],0,true,[[1233,1,9.00932],[2315,0,16.4504],[665,1,18.8189]]],[[3721.63,3154.62,0],0,true,[[2429,0,24.4454],[2665,0,20.8052],[3205,0,77.3719]]],[[850.703,6055.43,0],0,false,[[764,0,108.182],[3588,0,18.9589]]],[[2835.55,3177.01,0],0,false,[[1345,0,31.8721],[632,1,9.75185]]],[[7787.8,6436.5,0],0,true,[[2409,0,79.5142],[3453,0,73.0535],[3820,0,226.296]]], +[[364.333,4698.88,0],0,true,[[1420,0,24.1893],[2450,0,0.749391],[1705,0,24.856],[3339,0,19.4266]]],[[3687.97,8103.55,0],0,false,[[278,0,102.607],[2043,1,13.0123]]],[[5068.95,4127.33,0],0,false,[[3022,1,26.0398],[543,1,29.1897],[3801,0,5.44906]]],[[519.94,4413.39,0],0,true,[[2703,0,25.0745],[1327,0,53.7751],[2070,0,12.2041]]],[[3222.34,7146.77,0],0,true,[[1275,1,34.1931],[504,1,372.587],[2368,1,15.1648]]], +[[1737.27,6749.25,0],0,false,[[3056,0,140.893],[2733,0,182.831]]],[[6467.72,2512.51,0],0,true,[[3546,1,19.72],[1553,1,18.6112],[174,1,7.69249]]],[[4449.51,4792.13,0],0,false,[[3857,1,19.803],[3670,1,26.6571]]],[[351.257,4422.76,0],0,true,[[3314,0,6.58581],[2469,0,5.77615],[586,0,0.750784],[213,0,6.1877],[926,0,6.16016]]],[[3375.83,6698.45,0],0,false,[[3662,1,28.2764],[3318,1,13.781]]], +[[1785.76,4655.79,0],0,false,[[2074,0,30.8979],[1473,0,77.4912]]],[[4379.21,2324.61,0],0,true,[[1661,0,25.9673],[1131,0,140.897],[3382,0,9.5639]]],[[2778.19,1969.45,0],0,true,[[3829,1,27.6122],[3193,1,12.7652],[3438,1,27.522],[2237,1,10.0733]]],[[4460.29,4701.63,0],0,true,[[1423,1,18.4756],[2257,1,13.216],[2648,1,2.69367],[2795,1,4.25241]]],[[7148.39,4384.03,0],0,true,[[473,0,276.402],[2803,1,14.3374],[1239,1,11.2132]]], +[[5258.01,7361.81,0],0,true,[[3515,2,30.0399],[3153,2,101.117],[1242,2,14.4311]]],[[5078.04,8185.9,0],0,false,[[1457,2,80.5051]]],[[4484.71,3115.86,0],0,false,[[3119,1,16.8754],[1392,2,16.6824]]],[[240.547,4160.84,0],0,false,[[2326,0,220.31],[3025,0,140.289]]],[[7798.83,6965.04,0],0,false,[[2332,0,258.343],[1052,0,262.532]]], +[[3056.81,2917.82,0],0,false,[[671,0,43.5141],[2566,0,57.8783]]],[[4246.75,6938.58,0],0,true,[[1722,0,59.2319],[2081,0,7.10717],[1156,0,7.86288]]],[[2563.88,3854.02,0],0,true,[[2137,1,33.1052],[93,1,33.5518],[3765,1,7.56252],[1831,1,17.9011]]],[[255.701,4601.1,0],0,false,[[1720,0,114.626],[350,0,109.427]]],[[5574.97,6930.34,0],0,false,[[693,0,149.596],[3085,0,26.0116]]], +[[2252.74,4394.52,0],0,false,[[514,1,153.715],[2311,1,61.1402]]],[[2040.52,7300.7,0],0,true,[[2399,1,144.894],[1800,1,6.72169],[3666,1,14.1322]]],[[4585.19,2326.26,0],0,true,[[3375,1,7.89893],[3223,1,18.3688],[2014,1,10.6656]]],[[5557.06,2217.7,0],0,true,[[1130,1,12.8874],[1546,1,87.1067],[70,1,22.7255]]],[[4484.49,8006.5,0],0,true,[[3010,0,15.4706],[1419,0,13.0685],[1935,0,10.3096]]], +[[2866.97,4183.86,0],0,true,[[3237,1,10.6828],[1710,1,25.8113],[1452,1,24.4985]]],[[4364.7,6139.42,0],0,true,[[3664,2,181.068],[1542,2,21.4425],[1074,2,13.5726]]],[[1858.21,4844.65,0],0,false,[[1132,0,50.4212]]],[[3748.91,8022.6,0],0,false,[[246,0,102.607],[1274,0,221.498]]],[[78.4704,5092.22,0],0,true,[[2053,0,11.2261],[1605,1,11.7146],[3901,1,6.9214]]], +[[6787.87,616.873,0],0,false,[[2417,0,196.527],[791,0,105.75]]],[[5360.15,7673.37,0],0,false,[[3089,1,144.805],[827,1,12.8841]]],[[6260.41,5352.75,0],0,false,[[2169,0,148.686],[2233,1,4.63491]]],[[2842.09,3542.55,0],0,true,[[3907,0,17.3278],[2654,0,18.2919],[2213,1,10.5939],[2540,1,20.9716]]],[[3364.77,228.306,0],0,false,[[1103,0,114.906],[1968,1,2.2678]]], +[[3989.38,4587.4,0],0,false,[[2976,0,20.3693],[11,0,22.4805]]],[[4513.35,3190.73,0],0,true,[[3542,2,28.2748],[2484,2,31.4779],[3289,2,4.50362],[625,2,9.98458]]],[[4873.53,562.533,0],0,true,[[562,1,7.94494],[1526,0,106.692],[3109,1,5.9708]]],[[1184.3,6377.7,0],0,false,[[3096,1,175.37],[3802,1,275.664]]],[[954.08,4869.25,0],0,true,[[2773,1,174.646],[974,1,22.8019],[176,1,8.3112]]], +[[521.008,3476.33,0],0,true,[[357,1,12.2153],[1422,0,235.455],[1281,0,6.89429],[2557,1,7.43813]]],[[4201.52,3006.3,0],0,false,[[306,0,57.5325]]],[[2790.05,6129.7,0],0,true,[[2430,0,61.5085],[3288,0,14.0387],[1585,0,5.8529]]],[[442.232,7183.04,0],0,true,[[1512,0,13.3051],[753,0,12.2988],[2895,0,12.682]]],[[3561.1,5399.6,0],0,true,[[2783,0,158.76],[3095,0,26.225],[1188,0,14.3094]]], +[[2663.01,1960.1,0],0,false,[[1791,0,50.4757],[3094,1,8.17012]]],[[6463.06,3633.69,0],0,false,[[1164,0,117.917]]],[[5504.52,1251.7,0],0,true,[[427,0,8.06132],[1128,0,6.50441],[3550,0,6.21284],[2301,1,6.41889]]],[[505.743,5498.65,0],0,false,[[1797,0,49.4985]]],[[7459.9,555.242,0],0,false,[[2396,1,58.4939],[3718,1,117.121]]], +[[537.998,8167.65,0],0,true,[[3186,1,69.621],[3690,1,18.6553],[3766,1,22.7145],[3906,1,19.2739]]],[[1184.46,2138.89,0],0,false,[[1243,1,169.044],[1645,1,42.4227]]],[[5291.81,39.8324,0],0,false,[[629,1,109.58],[3466,1,19.646]]],[[3230.42,7164.15,0],0,true,[[2368,0,9.27839],[893,0,15.2478],[459,0,5.03126]]],[[3406.91,335.437,0],0,false,[[1290,1,87.4252],[3386,1,252.244]]], +[[1357.79,7603.81,0],0,false,[[2062,1,170.439],[3433,1,135.911]]],[[4249.66,2978.64,0],0,false,[[3133,1,5.5401],[291,0,57.5325]]],[[4607.71,5188.52,0],0,false,[[1157,1,2.64503],[230,0,118.043]]],[[2851.1,1235.24,0],0,true,[[2929,2,12.8776],[3069,1,25.5689],[3616,2,21.0674]]],[[2902.27,4236.48,0],0,false,[[1847,0,113.58],[3378,0,49.7467]]], +[[2944.92,833.123,0],0,true,[[128,0,23.3885],[3402,0,101.356],[2403,0,16.6234]]],[[838.037,5562.18,0],0,false,[[1145,0,230.929],[2140,0,227.129]]],[[1703.27,4466.47,0],0,false,[[1658,0,107.37],[519,0,145.055]]],[[2928.24,4394.12,0],0,true,[[2015,0,7.26494],[3141,0,18.8123],[1893,0,7.43479]]],[[7788.18,5801.64,0],0,true,[[3009,0,132.771],[154,0,6.48068],[3004,0,4.44249]]], +[[3444.31,1551.02,0],0,false,[[197,2,29.0993],[857,2,31.0997]]],[[5505.15,1272.03,0],0,true,[[699,0,6.16156],[2852,0,8.08009],[1717,0,13.7505]]],[[4744.83,2390.73,0],0,false,[[3156,1,198.581],[1718,1,137.53]]],[[2112.73,2511.05,0],0,false,[[1866,0,289.628],[758,0,263.079]]],[[2947.73,1619.4,0],0,true,[[1434,0,9.31901],[78,0,234.044],[1359,1,11.4536]]], +[[3007.03,1315.59,0],0,false,[[1021,2,24.2847],[3616,2,154.642]]],[[4994.45,1660.32,0],0,true,[[567,1,205.923],[2974,1,9.09653],[229,1,3.71951]]],[[6459.29,2057.38,0],0,true,[[3707,0,8.90612],[6,0,16.9318],[1501,1,9.26062]]],[[1488.75,822.295,0],0,false,[[1904,0,292.22],[1442,0,366.194]]],[[7852.25,4310.68,0],0,false,[[40,0,230.507],[2199,0,169.278]]], +[[5109.88,8091.82,0],0,true,[[1457,2,18.8751],[1845,2,147.126],[198,2,8.5666]]],[[2976.22,4337.75,0],0,true,[[3804,0,48.0578],[682,0,27.8826],[3365,0,17.1447]]],[[7872.65,6627.17,0],0,true,[[2408,1,115.384],[26,1,28.866],[1377,1,17.5873]]],[[4223.97,2880.86,0],0,true,[[2965,1,20.8884],[2335,1,7.98613],[1029,1,5.36129]]],[[7652.56,2387.13,0],0,true,[[1619,0,158.328],[3232,0,9.61832],[111,0,23.2135]]], +[[3771.41,5935.88,0],0,false,[[1865,0,39.0396],[2142,0,97.2133]]],[[447.229,7376.72,0],0,false,[[2855,0,79.7045],[161,0,18.3048]]],[[7333.48,800.473,0],0,true,[[2796,0,13.7734],[2571,0,230.233],[1337,0,16.9263]]],[[2574.03,3181.14,0],0,false,[[389,1,21.2581],[2131,1,20.0469]]],[[362.043,4734.26,0],0,true,[[1343,0,15.3922],[48,0,0.749243],[3339,0,16.0301],[1183,0,16.7144]]], +[[4040.08,4091.94,0],0,false,[[3337,1,8.85074],[714,1,36.236]]],[[6859.68,6511.52,0],0,true,[[2705,1,29.084],[3661,1,141.948],[1527,1,12.7592]]],[[4536.24,6525.6,0],0,true,[[733,0,194.232],[1933,0,8.5985],[2457,0,4.24893]]],[[6871,3780.96,0],0,true,[[1055,0,14.8485],[2844,0,70.1235],[2256,0,11.2723]]],[[5350.18,1912.33,0],0,false,[[2920,1,189.788],[204,1,124.323]]], +[[3381.06,2629.15,0],0,false,[[3695,0,302.398],[1249,0,27.8644]]],[[3532.24,6683.08,0],0,false,[[2580,1,55.7419],[922,1,11.9582]]],[[4360.79,6997.72,0],0,true,[[114,1,399.072],[466,1,16.5399],[2003,1,8.84496]]],[[6532.7,889.653,0],0,false,[[7,0,298.409],[3736,0,60.5586]]],[[580.993,12.5641,0],0,true,[[568,2,31.7966],[1384,2,21.2246],[1230,2,16.6555]]], +[[1781.4,7167.58,0],0,false,[[2215,1,4.30925],[761,0,38.0302]]],[[1514.67,2446.22,0],0,false,[[2649,0,324.292],[1388,0,182.506]]],[[2935.72,3320.71,0],0,true,[[347,0,0],[883,0,22.628],[883,0,22.628],[2440,0,11.5292],[2440,0,11.5292]]],[[2639.03,3571.15,0],0,false,[[2021,0,30.6158],[3722,0,398.881]]],[[6213.05,1257.5,0],0,true,[[3613,1,105.296],[1346,1,240.688],[2283,1,4.51213]]], +[[229.9,4506.28,0],0,false,[[268,0,109.427]]],[[3479.05,1582.47,0],0,true,[[2063,0,140.165],[1370,0,11.8977],[2630,2,18.343]]],[[1999.85,3618.66,0],0,true,[[1134,0,61.4924],[2633,0,4.35298],[1260,0,9.52516]]],[[887.953,6076.69,0],0,true,[[3115,1,8.61651],[2198,1,7.77893],[2743,1,1.82559],[3510,1,14.1273],[1985,1,14.8787]]],[[1264.12,3529.73,0],0,false,[[2444,0,132.875],[910,0,85.895]]], +[[2573.61,167.533,0],0,true,[[1084,0,25.1066],[1174,0,22.4208],[1962,0,46.7971]]],[[5012.53,4117.42,0],0,false,[[543,1,28.0975],[2669,1,27.8031]]],[[509.038,3473.9,0],0,true,[[290,1,12.2153],[2668,1,139.841],[2557,1,18.9918],[1281,1,10.8053]]],[[200.765,368.2,0],0,true,[[1105,0,182.161],[754,0,33.9001],[1065,0,51.5716]]],[[6335.67,5848,0],0,false,[[178,0,22.0264],[3696,0,247.124]]], +[[1725.35,5471.02,0],0,false,[[190,0,46.3986],[3548,0,327.133]]],[[2851.86,4285.41,0],0,false,[[2093,0,46.3933],[853,0,6.10053]]],[[2561.13,3178.38,0],0,false,[[2131,1,8.46909],[594,0,19.8656]]],[[4079.86,3474.04,0],0,true,[[2167,1,15.135],[1900,1,9.27499],[2402,1,17.0507]]],[[3489.59,3918.58,0],0,false,[[1390,0,124.604],[1085,0,170.982]]], +[[508.007,4679.67,0],0,false,[[2896,0,46.8522],[2367,0,169.018]]],[[4139.04,3978.76,0],0,false,[[2898,2,125.762],[663,0,23.3679]]],[[1993.94,5734.78,0],0,true,[[1861,1,192.77],[3493,1,27.0845],[2915,1,10.4783]]],[[4494.13,3142.85,0],0,true,[[175,0,39.6638],[2913,0,13.0564],[1392,2,12.7457]]],[[4187.04,3948.83,0],0,false,[[3528,0,27.643],[663,0,33.2567],[1790,0,16.3092]]], +[[7707.75,6409.21,-6.10352e-005],0,false,[[870,0,12.2618],[2640,0,16.015]]],[[3756.92,1726.33,0],0,false,[[2877,0,122.964],[3780,1,11.6496]]],[[6456.85,5200.86,0],0,true,[[2960,1,26.9356],[1925,1,392.184],[3247,1,8.74613]]],[[3256.51,1450.3,0],0,true,[[857,2,182.232],[1460,2,33.8055],[108,2,18.6064]]],[[2719.9,2536.29,0],0,true,[[3313,1,229.38],[1277,1,25.0484],[1100,1,1.69449],[3679,1,18.255]]], +[[4099.94,6786.85,0],0,false,[[2642,0,198.453],[1722,0,188.939]]],[[2663.06,3607.43,0],0,false,[[1254,1,48.8729],[2247,1,18.6803]]],[[3242,5590.86,0],0,false,[[578,0,48.9932]]],[[225.169,6437.74,0],0,true,[[2395,0,16.7195],[2005,0,322.493],[2191,0,25.2318]]],[[602.034,4425.04,0],0,false,[[2931,0,18.5065],[2174,0,84.6568]]], +[[1316.35,4291.36,0],0,true,[[2971,0,46.2649],[3580,0,16.4863],[2661,0,10.8347]]],[[1957.96,763.237,0],0,true,[[2710,0,93.5765],[2584,0,11.3101],[3111,2,17.3977]]],[[7647.86,464.545,0],0,true,[[1041,0,197.983],[2713,1,13.1092],[2250,1,1.17942],[511,1,7.7265],[2713,0,13.0428]]],[[5528.53,4340.87,0],0,true,[[1017,1,25.7515],[628,1,13.649],[2489,1,19.4899],[3568,1,12.8785]]],[[5442.86,7919.47,0],0,false,[[3210,1,11.554],[3190,0,49.372]]], +[[1662.56,5904.6,0],0,false,[[1124,1,62.9292],[1665,1,41.0851]]],[[7376.93,6607.23,0],0,false,[[115,1,214.436],[1027,1,330.939]]],[[3548.45,2317.13,0],0,true,[[1146,1,14.3331],[3719,1,77.0376],[2384,1,3.50225],[3731,1,8.02636]]],[[7067.93,5529.1,0],0,true,[[881,1,202.692],[33,1,22.4147],[1742,1,7.39676]]],[[2595.23,3179.72,0],0,false,[[116,1,159.349],[333,1,21.2581]]], +[[6665.51,477.894,0],0,false,[[791,0,113.642],[637,0,113.029]]],[[5011.61,7014.91,0],0,false,[[868,0,135.379]]],[[324.294,4828.46,0],0,true,[[3489,0,7.39679],[2704,0,47.7457],[3656,0,4.1319]]],[[2362.4,202.488,0],0,true,[[1814,1,265.633],[2982,1,10.6965],[1883,1,19.1561]]],[[2799.04,461.617,0],0,true,[[515,0,10.0487],[2211,0,14.8379],[3117,0,11.4251]]], +[[3281.44,2348.24,0],0,false,[[2545,0,148.598],[1013,0,23.9629]]],[[1260.09,3914.91,0],0,false,[[3105,0,59.5682],[2,0,114.362]]],[[7973.77,259.471,0],0,false,[[2486,1,376.227],[1455,1,45.4236]]],[[6700.07,3173.99,0],0,false,[[3481,0,264.338],[741,0,167.85]]],[[7483.16,3180.17,0],0,false,[[2355,0,57.7703]]], +[[4432.78,6305.85,0],0,true,[[2615,0,6.77024],[733,0,49.5118],[1248,0,3.73491]]],[[3191.92,7231.92,0],0,false,[[1574,1,44.6777],[1278,1,25.0097]]],[[4279.71,1952.68,0],0,false,[[1978,2,72.6819],[1361,2,29.8194]]],[[5292.87,5203.1,0],0,false,[[1394,1,174.494],[1634,1,20.0218]]],[[4409.79,6083.36,0],0,true,[[3150,0,94.8218],[2034,0,5.97539],[1098,0,7.35234]]], +[[2283.59,4329.29,0],0,true,[[1975,1,16.3001],[616,0,6.73882],[2311,1,11.543]]],[[1770.14,7313.59,0],0,true,[[1088,0,43.7998],[3154,0,88.2058],[416,0,26.4006]]],[[1563.71,1196.2,0],0,false,[[2854,1,19.1672],[849,1,111.761]]],[[4782.02,5234.16,0],0,true,[[192,1,9.21564],[3271,1,14.7726],[608,1,4.91972]]],[[2992.15,1099.55,0],0,false,[[1415,0,13.3959],[3081,0,19.4689]]], +[[4491.19,4655.91,0],0,false,[[1480,1,30.9835],[1959,2,8.1626]]],[[5812.57,4648.93,0],0,false,[[2521,1,28.4515],[2281,1,112.037]]],[[7615.38,6623.58,0],0,true,[[2609,1,20.5094],[2628,1,13.4905],[115,1,24.8928]]],[[2898.75,3494.26,0],0,false,[[2654,0,56.6898],[2987,0,121.877]]],[[3993.79,4442.53,0],0,true,[[3640,0,31.8039],[2155,0,41.3971],[1443,0,68.5479]]], +[[7667.06,7885.71,0],0,true,[[1946,0,95.2751],[1035,0,40.1772],[662,1,14.5642],[1608,1,9.65774]]],[[1749.41,7328.44,0],0,true,[[406,0,26.4006],[2343,0,228.255]]],[[5323.18,2232,0],0,false,[[1120,1,123.735],[2780,1,308.275]]],[[6743.79,1749.76,0],0,true,[[436,0,251.033],[891,0,27.501],[3191,0,15.5804]]],[[8002.95,4534.54,0],0,true,[[1299,1,11.3531],[1816,0,10.5965],[2826,1,14.2792]]], +[[1527.27,2132.99,0],0,true,[[1565,0,333.679],[3088,0,23.0328],[1941,0,12.7857]]],[[5498.54,1757.79,0],0,false,[[934,0,102.944]]],[[7842.58,753.226,0],0,true,[[1767,0,24.8557],[448,0,26.8916],[3877,0,10.9504],[601,0,4.32031]]],[[5519.82,4346.27,0],0,false,[[3568,1,9.34378],[1315,1,26.0996]]],[[8013.73,4866.3,0],0,false,[[3062,0,138.237],[2593,0,113.749]]], +[[8103.08,2193.61,0],0,true,[[2437,0,97.1507],[3168,0,15.6488],[1606,0,28.9777]]],[[6041.03,6224.35,0],0,false,[[65,0,18.5576],[651,0,51.0341]]],[[5497.18,1255.02,0],0,true,[[2696,0,45.5891],[297,0,8.06132],[120,0,11.2079],[3550,0,3.7046],[2301,1,14.1679]]],[[53.8276,5111.79,2.92323],0,true,[[1954,1,15.5836],[898,1,14.2385],[3901,1,24.6305]]],[[2495.35,7482.67,0],0,true,[[1014,0,3.50378],[2596,0,84.5855],[2156,0,2.83703],[1284,0,18.2595]]], +[[2058.87,5655.05,0],0,false,[[3913,1,43.5414],[1379,1,148.293]]],[[6000.31,7567.89,0],0,true,[[1593,0,25.3122],[2310,0,130.561],[1858,0,14.7863]]],[[6480.12,6026.27,0],0,true,[[2378,0,11.1047],[2340,0,99.5262],[2857,0,10.2828]]],[[2477.73,3119.05,0],0,false,[[3398,0,230.532],[2192,0,75.4572]]],[[384.397,7226.3,0],0,true,[[1898,0,13.5012],[2855,0,83.5149],[1456,0,13.9784]]], +[[1453.29,3358.71,0],0,true,[[2905,1,5.20211],[81,0,13.9784],[569,1,9.96256]]],[[6497.57,1712.32,0],0,false,[[690,0,285.311],[418,0,251.033]]],[[341.833,4497.71,0],0,true,[[1562,0,8.58942],[624,0,0.753382],[1701,0,9.15205],[1869,0,10.5842]]],[[4811.74,5863.62,0],0,false,[[1610,0,120.35],[2258,0,107.361]]],[[462.439,2008.64,0],0,false,[[3369,0,20.1577],[1771,0,21.7037]]], +[[7076.74,7010.28,0],0,true,[[1380,0,14.899],[525,1,13.1897],[3748,1,18.3753]]],[[2858.75,4293.14,0],0,true,[[2885,1,125.719],[2189,1,30.6337],[853,1,4.30077]]],[[5890.31,7283.5,0],0,false,[[2938,0,44.7375]]],[[3204.72,859.655,0],0,true,[[2560,0,4.39868],[2210,0,3.33654],[1485,0,5.8856],[745,0,4.36844]]],[[6439.4,5201.98,0],0,false,[[1410,1,243.331],[3247,1,8.74613],[912,0,7.43323]]], +[[4062.29,5366.2,0],0,true,[[1042,1,6.65909],[1721,0,23.1385],[201,2,12.2129]]],[[6166.1,2777.73,0],0,false,[[1617,1,340.683],[3843,1,374.643]]],[[6183.11,6583.16,0],0,true,[[2807,1,25.8052],[2353,1,394.961],[840,1,11.7081]]],[[7827.89,730.699,0],0,false,[[422,0,26.8916],[2995,0,30.8998]]],[[7847.85,4497.62,0],0,false,[[1998,1,122.003],[100,1,211.416]]], +[[6909.52,4346.97,0],0,false,[[3068,0,25.8717],[2046,0,26.4115]]],[[6881.77,1945.99,0],0,true,[[2426,0,92.5325],[1697,0,8.38682],[1235,0,13.3718]]],[[2520.84,169.649,0],0,true,[[2982,0,155.34],[1084,0,27.712],[3671,0,74.6519]]],[[205.977,6104.58,0],0,true,[[3565,1,28.2208],[3759,1,143.213],[3137,1,17.3108]]],[[3782.68,6543.89,0],0,true,[[2537,0,17.1509],[3364,0,172.66],[1125,0,8.92154]]], +[[3052.89,5579.56,0],0,true,[[2170,0,11.7425],[2985,0,10.9268],[1168,0,5.5768]]],[[6640.07,4077.37,0],0,false,[[162,0,180.16],[1197,0,229.477]]],[[3229.21,761.626,0],0,false,[[825,0,15.3282]]],[[7194.2,5927.92,0],0,false,[[2688,0,316.832],[2127,0,135.334]]],[[3232.75,7168.59,0],0,false,[[303,0,5.03126],[2977,0,37.8902]]], +[[1183.21,2091.18,0],0,true,[[461,0,108.909],[1645,1,9.79249],[3436,1,16.6428],[2632,0,22.1625]]],[[1289.43,2100.36,0],0,false,[[3633,0,78.0256],[460,0,108.909]]],[[731.797,5987.11,0],0,true,[[3366,0,143.111],[764,0,30.9803],[1145,0,246.066]]],[[6314.03,6607.94,0],0,true,[[2201,1,149.692],[2248,1,21.4547],[1506,1,6.29676]]],[[1257.21,4713,0],0,false,[[2364,0,97.8919],[3721,0,122.534]]], +[[6755.31,1091.1,0],0,false,[[2598,0,183.646],[3529,0,20.2584]]],[[4344.68,7001.39,0],0,true,[[342,1,16.5399],[2130,1,96.0909],[1314,1,15.0413],[2003,1,7.78925]]],[[4450.73,4775.37,0],0,true,[[1615,0,5.03811],[125,0,30.9561],[3670,1,11.4771]]],[[1734.55,5721.05,0],0,false,[[190,0,221.918],[3422,0,142.873]]],[[2761.36,5843.15,0],0,false,[[3905,0,236.678],[3427,0,141.682]]], +[[1955.73,3405.66,0],0,true,[[2317,0,207.416],[717,0,8.81858],[3217,0,11.6729]]],[[1861.86,7248.11,0],0,true,[[2604,1,36.8226],[3740,1,29.75],[3839,1,18.5214]]],[[8073.94,6449.03,0],0,true,[[1541,0,10.2339],[3593,0,73.377],[797,1,9.26194]]],[[7048.94,4637.8,0],0,false,[[259,0,276.402]]],[[2770.57,3189.91,0],0,true,[[1269,1,87.2653],[1426,1,29.9108],[116,1,21.4556]]], +[[5051.83,6839.25,0],0,false,[[997,1,7.09731],[1920,0,50.1751]]],[[5995.03,5440.17,0],0,true,[[1727,0,48.0122],[131,0,6.15422],[3449,0,10.3048]]],[[7796.66,717.382,0],0,false,[[1039,0,20.803],[3746,0,20.8899]]],[[5766.68,6088.77,0],0,false,[[1257,1,6.45355],[65,0,302.641]]],[[5991.88,978.33,0],0,false,[[3592,0,131.796],[3349,0,125.419]]], +[[4981.96,1985.87,0],0,false,[[634,1,24.9382],[3019,1,22.6203]]],[[3198.1,6022.87,0],0,false,[[101,0,80.6204],[1625,0,369.812]]],[[8082.09,6539.52,0],0,false,[[3593,0,28.9212]]],[[4633.72,8110.44,0],0,false,[[2568,0,157.882],[688,0,122.606]]],[[3575.34,6605.65,0],0,true,[[1141,0,11.0378],[231,0,63.7833],[3336,1,12.9355]]], +[[4420.46,3019.64,0],0,true,[[3257,2,13.4608],[850,2,31.9568],[3570,2,3.46017]]],[[1655.43,5969.31,0],0,true,[[2360,1,322.954],[858,1,34.5211],[1124,1,18.2711]]],[[6327.49,4281.06,0],0,false,[[1498,0,47.9477],[15,0,74.4112]]],[[4058.47,5294.77,0],0,false,[[2502,0,22.8789],[1687,0,59.2301]]],[[2000.52,6467.15,0],0,false,[[2636,0,92.8935],[2559,0,262.321]]], +[[5458.31,2239.96,0],0,true,[[1546,1,16.6857],[768,0,185.619],[1120,1,14.7933],[1921,0,25.4435]]],[[2770.85,5027.39,0],0,false,[[2385,0,145.922],[1493,0,163.9]]],[[4475.45,4725.05,0],0,true,[[3670,1,45.4106],[3783,1,20.4887],[2257,1,14.7884]]],[[3036.39,1286.48,0],0,false,[[3031,0,174.17],[550,0,37.0304]]],[[3327.15,2221,0],0,false,[[817,0,33.1116],[3800,0,125.26]]], +[[7328.68,6133.64,0],0,false,[[681,1,7.6419],[3856,0,236.017]]],[[365.248,3913.56,0],0,true,[[1942,0,189.606],[1320,0,8.07019],[2748,0,13.9353]]],[[5419.06,5416.91,0],0,false,[[1634,1,228.649],[1187,1,32.2235]]],[[4392.66,3063.85,0],0,false,[[2480,1,3.45716],[1355,0,132.056]]],[[4530.19,2508.64,0],0,false,[[1643,1,27.3409],[1414,1,32.4662]]], +[[2970.88,1909.47,0],0,true,[[3757,1,25.3384],[2508,1,73.6842],[3448,1,15.104]]],[[7561.14,1153.09,0],0,true,[[1428,0,45.4702],[1743,0,16.8971],[1805,0,6.79696]]],[[6539.3,5674.12,0],0,true,[[3696,0,21.9933],[2190,0,259.986],[2523,0,44.5642]]],[[3191.55,2804.92,0],0,false,[[3514,0,90.9835],[228,0,112.149]]],[[3382.59,6813.55,0],0,false,[[249,1,372.587],[2570,1,141.322]]], +[[556.464,8032.84,0],0,true,[[147,0,21.4555],[2208,0,59.1255],[1292,0,3.96304],[960,0,7.0122]]],[[3584.36,6558.17,0],0,true,[[805,1,288.187],[1054,1,13.0822],[2543,1,18.7587]]],[[257.159,1153.66,0],0,true,[[14,0,7.19892],[3836,0,20.8445],[2694,0,21.3793],[1505,0,19.661]]],[[5163.93,2884.75,0],0,true,[[2500,1,53.3555],[2644,1,29.6967],[3102,1,19.2033]]],[[1036.28,6037.91,0],0,false,[[966,0,7.90083],[2634,1,7.30629]]], +[[8028.73,5330.92,0],0,false,[[32,0,13.0216]]],[[7643.53,458.177,0],0,true,[[2713,1,5.38828],[2250,1,6.58068],[382,1,7.7265],[2713,1,5.32168]]],[[6351.42,4402.21,0],0,false,[[3792,0,349.755],[2494,0,74.1544]]],[[1298.09,3963.57,0],0,true,[[3105,0,4.88281],[2651,0,50.878],[2161,0,5.29716]]],[[2168.01,4522.09,0],0,false,[[1000,1,80.0582],[270,1,153.715]]], +[[2804.09,470.175,0],0,false,[[394,0,10.0487],[3245,0,59.2797]]],[[6801.93,7244.93,0],0,false,[[3074,1,11.166],[2148,0,253.945]]],[[654.326,7363.86,0],0,false,[[3566,0,188.592],[3222,0,231.418]]],[[269.396,739.131,0],0,false,[[1691,0,90.1054],[2009,0,205.438]]],[[1569.98,4501.11,0],0,false,[[312,0,145.055],[1611,0,34.7351]]], +[[3655.97,5127.17,0],0,true,[[3095,0,264.001],[1558,0,20.8827],[2739,1,7.79947],[85,1,10.716]]],[[840.57,3667.8,0],0,false,[[3058,0,47.9052]]],[[5480.69,4491.17,0],0,false,[[1849,0,337.774],[3549,1,10.8426]]],[[683.322,-0.0463385,0.00190735],0,false,[[3646,0,60.1699]]],[[640.094,963.686,0],0,true,[[689,1,22.4514],[2351,0,142.317],[2160,1,13.1202],[2052,0,19.9962]]], +[[7064.48,7015.15,0],0,true,[[3748,1,31.5555],[3074,1,341.023],[440,1,13.1897],[1380,1,25.5504]]],[[2621.32,4412.39,0],0,false,[[182,0,121.799],[1723,0,32.0589]]],[[5536.79,6805.62,0],0,false,[[693,0,67.8343]]],[[961.136,1080.18,0],0,false,[[1083,1,230.845],[622,1,22.0525]]],[[6989.35,388.772,0],0,false,[[1905,1,25.9456],[1949,1,345.68]]], +[[3915.85,3581.08,0],0,false,[[2716,0,130.65],[548,0,87.1531]]],[[1678.47,3285.84,0],0,false,[[968,1,19.7899],[2270,1,50.9537]]],[[6185.46,4314.25,0],0,true,[[1748,1,21.5343],[3684,1,105.705],[1834,1,11.2058]]],[[5842.72,7321.09,0],0,false,[[1858,0,293.082]]],[[3680.57,3149.21,0],0,false,[[2665,0,20.6959],[2902,0,39.1502]]], +[[4271.24,6051.47,0],0,false,[[837,2,13.8731],[2271,2,21.4497]]],[[7218.21,905.51,0],0,true,[[2129,0,19.4174],[233,0,11.3181],[803,0,27.2967]]],[[5109.11,4602.47,0],0,false,[[3549,1,377.622],[969,1,24.0616]]],[[4391.27,8149.83,0],0,false,[[1171,0,54.5371],[2568,0,96.9849]]],[[4745.52,3460.68,0],0,false,[[217,0,36.7138],[3126,0,33.6679]]], +[[3423.86,1536.41,0],0,false,[[857,2,7.14531],[133,0,399.3]]],[[2134.93,7325.31,0],0,true,[[3666,1,84.2501],[2727,1,27.1585],[1733,1,12.4879]]],[[2839.96,3578.79,0],0,false,[[105,1,64.6528],[2213,1,27.1301]]],[[5040.16,4122.48,0],0,false,[[247,1,29.1897],[356,1,28.0975]]],[[752.585,7590.71,0],0,true,[[2410,0,272.349],[1537,0,22.2852],[3745,0,11.3287]]], +[[7281.5,8007.21,0],0,false,[[614,0,89.0266],[1073,0,27.2332]]],[[4801.15,1090.04,0],0,false,[[1232,0,6.65187],[3594,0,17.2516]]],[[3126.05,7567.25,0],0,true,[[1918,1,19.6271],[1556,1,25.8416],[2482,1,4.95249],[195,1,12.9099]]],[[3848.32,3634.4,0],0,true,[[530,0,87.1531],[2697,0,21.2683],[3317,1,17.7571]]],[[5913.33,575.958,0],0,false,[[1808,0,105.695],[2503,0,92.2587]]], +[[3020.34,1319.74,0],0,false,[[493,0,37.0304],[1021,2,10.9073]]],[[4136.48,4185.96,0],0,true,[[1648,0,67.5562],[1571,0,10.6272],[1068,0,43.0716]]],[[4784.21,3740.89,0],0,false,[[1817,1,17.5222],[3492,1,7.6805]]],[[912.602,6205.25,0],0,false,[[1324,0,20.7852],[1569,0,110.171]]],[[7619.29,1297.13,0],0,true,[[3892,0,25.4587],[1437,0,63.399],[3583,0,9.94285]]], +[[6385.25,3971.29,0],0,false,[[12,0,205.659],[802,0,120.49]]],[[1561.96,3439.7,0],0,false,[[1144,0,121.082],[1950,0,97.418]]],[[7718.16,2993.91,0],0,true,[[2207,1,24.0425],[3179,0,304.104],[1910,0,27.1198],[2331,1,24.6748]]],[[3755.28,1433.37,0],0,true,[[3148,1,8.20695],[2530,0,190.487],[1433,1,14.0611]]],[[1576.33,1202.07,0],0,false,[[1960,0,16.0147],[2854,1,5.39884]]], +[[6350.11,4325.21,0],0,true,[[1976,1,23.1404],[712,1,64.2743],[2494,1,12.3023]]],[[341.766,4596.19,0],0,true,[[774,0,15.9925],[571,0,0.749219],[2178,0,16.5758],[2475,0,12.9145]]],[[4870.89,570.022,0],0,true,[[69,1,223.711],[287,1,7.94494],[3109,1,12.4551]]],[[4756.69,3623.47,0],0,false,[[3073,1,28.6851],[987,1,32.332]]],[[4787.78,65.1008,0],0,true,[[3401,1,16.1843],[2446,1,62.6156],[183,1,7.0236]]], +[[4269.3,4518.87,0],0,false,[[2308,1,157.338],[2663,1,149.791]]],[[4847.35,1971.6,0],0,false,[[3321,2,99.3412],[2970,2,122.557]]],[[5177.88,1727.16,0],0,false,[[772,1,13.5269],[321,1,205.923]]],[[609.278,27.0823,0],0,true,[[145,2,22.509],[344,2,31.7966],[1830,2,7.96324],[706,2,9.27997]]],[[1451.4,3368.49,0],0,true,[[2905,1,12.5124],[1334,1,8.67647],[435,1,9.96256],[2228,1,16.9279]]], +[[1506.92,3746.83,2.69464],0,false,[[3172,0,167.714],[2959,0,111.753]]],[[342.102,4596.86,0],0,true,[[774,0,16.5753],[2475,0,12.2197],[561,0,0.749219],[3815,0,12.914]]],[[3063.72,2416.74,0],0,false,[[1779,0,91.0068],[2164,0,183.731]]],[[5113.61,755.958,0],0,false,[[1301,0,374.735],[2731,0,150.492]]],[[6121.19,1114.77,0],0,false,[[3098,0,235.337],[2283,0,166.208]]], +[[5275.73,7930.2,0],0,false,[[1253,0,113.698],[3076,0,130.77]]],[[1250.26,5640.15,0],0,false,[[1028,0,141.074],[68,0,83.9581]]],[[7888.18,1910.15,0],0,true,[[810,0,14.3241],[3539,0,394.943],[2284,0,28.4439]]],[[3256.34,5544.18,0],0,true,[[3045,0,18.1235],[377,0,48.9932],[2550,0,16.7976]]],[[1412.25,4281.25,0],0,false,[[1199,0,39.2403],[2971,0,51.0741]]], +[[5880.07,1585.86,0],0,true,[[158,0,56.5127],[3579,0,11.4926],[1613,0,11.1334]]],[[4200.14,3196.53,0],0,false,[[1572,1,150.94],[1957,1,167.61]]],[[1151.55,3607.67,0],0,true,[[2060,0,27.0143],[1150,0,124.585],[609,0,15.1937]]],[[5233.79,2971.08,0],0,false,[[2874,0,68.3623]]],[[4502.54,2520.64,0],0,false,[[1909,2,68.7373],[1876,2,25.0856]]], +[[402.823,863.427,0],0,false,[[2908,0,44.3328],[2957,0,19.2851]]],[[350.922,4422.09,0],0,true,[[253,0,0.750784],[2469,0,6.18707],[926,0,5.80098],[3314,0,6.16037]]],[[6177.91,4387.57,0],0,false,[[3122,0,193.325],[1834,0,72.2078]]],[[2622.5,7664.79,0],0,false,[[2432,0,29.3119],[1310,0,79.2734]]],[[5607.81,7264.07,0],0,true,[[3834,0,18.9928],[3821,0,359.029],[1729,0,10.1123],[3226,0,20.1092]]], +[[4520,5557.24,0],0,false,[[2322,0,219.992],[1024,0,331.47]]],[[4922.76,4112.23,0],0,true,[[2922,0,131.171],[3316,0,13.5396],[3146,0,11.5631]]],[[4719.68,3366.47,0],0,false,[[3752,0,29.3023]]],[[2132,5519.58,0],0,false,[[3548,0,86.7988],[1379,1,7.78152]]],[[2575.42,3164.61,0],0,false,[[362,0,19.8656],[1469,0,84.8524]]], +[[356.885,4634.97,0],0,true,[[2098,0,12.3034],[1917,0,0.749844],[1177,0,13.0475],[3215,0,8.69717]]],[[52.538,4480.44,0],0,true,[[2616,0,92.1645],[2684,0,9.31554],[795,0,16.6933]]],[[4295.93,6279.52,0],0,true,[[1809,0,69.8515],[1023,0,7.08997],[214,0,11.7333]]],[[7682.3,5771.92,0],0,false,[[1795,0,99.7339],[3677,0,208.764]]],[[1819.06,4668.39,0],0,true,[[3297,1,11.1714],[2074,0,6.43274],[2501,1,13.2807]]], +[[4247.18,6232.95,0],0,true,[[137,0,38.1994],[2725,0,10.0535],[1202,0,16.7343]]],[[7839.62,756.369,0],0,true,[[2082,0,17.0487],[3877,0,10.392],[422,0,4.32031]]],[[5670.46,4426.99,0],0,true,[[3034,1,13.5622],[726,1,6.1733],[3342,1,11.4906],[90,1,9.93665]]],[[791.685,1795.93,0],0,false,[[2811,0,188.671],[3520,1,13.0181]]],[[2917.03,2456.54,0],0,false,[[3003,0,126.162],[3658,0,112.246]]], +[[4134.97,5146.88,0],0,false,[[1500,2,79.8341],[2092,2,141.638]]],[[2397.92,6630.64,0],0,true,[[1828,0,266.715],[2350,0,3.85639],[1454,1,11.8074],[2601,1,8.96434]]],[[6363.18,5446.85,0],0,false,[[2637,0,4.8531],[1303,0,12.9597]]],[[4779.2,5230.13,0],0,true,[[702,0,24.0895],[192,1,6.83294],[408,1,4.91972]]],[[1158.44,3621.2,0],0,true,[[2031,0,10.2775],[2444,0,8.18532],[582,0,15.1937],[2060,0,12.6859]]], +[[5477.09,6779.9,0],0,true,[[2815,0,95.7616],[1034,1,10.6429],[3299,1,8.17568]]],[[2536.07,6933.66,0],0,false,[[1321,0,93.9877],[1993,0,167.86]]],[[4065.05,6951.05,0],0,false,[[3390,1,100.926],[847,1,230.129]]],[[470.887,2396.64,0],0,false,[[759,0,202.446],[79,0,20.3555]]],[[7332.49,7936.01,0],0,false,[[545,0,89.0266],[2769,0,26.4088]]], +[[4362.97,8109.05,0],0,false,[[16,0,37.2691],[1333,0,24.2327]]],[[2276.9,4328.58,0],0,false,[[405,0,6.73882],[3163,0,171.655]]],[[5622.66,6297.95,0],0,true,[[1312,0,71.9191],[1892,1,7.90226],[2246,1,4.40226]]],[[1597.07,6915.17,0],0,false,[[1764,0,11.9545],[2254,1,9.14836]]],[[4620.75,3399.11,0],0,false,[[1880,1,53.5789],[3196,1,92.5841]]], +[[3979.2,6395.61,0],0,false,[[3043,0,256.581],[808,0,34.6137]]],[[4743.92,1123.04,0],0,false,[[2042,0,24.3178],[2329,0,12.5633]]],[[940.716,1071.85,0],0,true,[[528,1,22.0525],[2160,1,310.888],[1901,1,8.81528]]],[[7172.95,6239.5,0],0,false,[[1075,0,174.287],[1786,0,78.7525]]],[[342.168,4498.38,0],0,true,[[1562,0,9.15227],[1869,0,9.85956],[437,0,0.753382],[3425,0,10.5838]]], +[[4521.15,3196.95,0],0,true,[[1863,1,20.0014],[3289,1,5.78192],[286,2,9.98458]]],[[32.3907,4180.4,0],0,false,[[2326,0,10.3578]]],[[3585.19,4569.93,0],0,false,[[63,0,225.167],[2923,0,211.112]]],[[5517.19,4333.27,0],0,true,[[3061,0,10.2052],[383,1,13.649],[2489,1,6.02633],[3568,1,4.60891]]],[[5185.44,65.4374,0],0,false,[[183,1,397.722],[302,1,109.58]]], +[[8001.14,4566.28,0],0,false,[[1766,0,76.7152],[3227,0,44.349]]],[[4097.13,5751.6,0],0,false,[[2318,0,10.2842],[142,0,20.822]]],[[2844.66,3173.52,0],0,true,[[202,1,24.3468],[2422,1,23.4057],[243,1,9.75185]]],[[458.355,7403.36,0],0,true,[[161,0,10.5852],[3202,0,11.7134],[2424,0,12.7892]]],[[5005.58,1977.94,0],0,false,[[1189,1,84.0175],[480,1,24.9382]]], +[[448.426,2383.57,0],0,true,[[3837,0,221.14],[2059,0,25.8069],[79,0,12.1687]]],[[6680,7936.74,0],0,true,[[3000,0,10.726],[1740,0,33.9385],[1678,0,18.7708]]],[[6656.63,366.436,0],0,false,[[390,0,113.029],[2690,0,19.502]]],[[4772.51,3430.62,0],0,true,[[878,0,12.693],[1802,0,46.8753],[3126,0,7.19084]]],[[5.33434,449.499,0],0,false,[[754,0,181.041]]], +[[7482.34,2968.87,0],0,true,[[1581,1,6.12038],[1653,0,129.697],[3725,1,7.22008]]],[[4624.71,2981.78,0],0,true,[[1583,1,92.2605],[2428,1,11.0609],[2488,1,14.3329]]],[[1483.39,4077.69,0],0,false,[[2179,0,47.8667]]],[[2819,1786.49,0],0,true,[[2380,1,3.22513],[2789,0,96.3581],[52,1,11.5374]]],[[4780.98,4320.94,0],0,true,[[3407,0,2.9635],[2928,0,24.6249],[3244,0,6.42918]]], +[[4689.71,3355.61,0],0,false,[[3173,1,58.4259],[3077,1,20.2105]]],[[8050.8,4551.03,0],0,true,[[3240,0,7.67259],[2941,1,11.9158],[1215,1,18.3712]]],[[6122.24,886.818,0],0,true,[[829,0,4.69406],[2225,0,15.1763],[19,0,5.06464]]],[[4740.81,3638.1,0],0,false,[[3887,1,28.834],[2105,1,42.484]]],[[3392.5,4730.21,0],0,false,[[1387,0,8.6001]]], +[[7613.76,8075.94,0],0,false,[[3525,1,59.8793],[3246,1,99.4592]]],[[6076.8,6188.08,0],0,true,[[426,0,51.0341],[958,0,29.749],[3399,0,6.27033]]],[[4818.16,262.489,0],0,false,[[1668,1,5.58561],[3902,0,182.672]]],[[189.406,117.331,0],0,false,[[2370,0,181.259]]],[[4611.42,2859.29,0],0,false,[[2305,1,5.94105],[2119,0,115.721]]], +[[2701.43,2007.22,0],0,true,[[2320,1,17.0502],[3829,1,57.988],[3176,1,8.70227]]],[[1791.63,155.48,0],0,true,[[2602,0,58.2881],[3874,0,8.56871],[856,0,12.8091]]],[[2479.39,3197.61,0],0,false,[[2963,1,32.0967],[3497,1,94.1067]]],[[5559.54,2915.96,0],0,true,[[2635,1,8.10374],[2565,1,241.432],[2831,1,3.55889]]],[[166.455,7598.86,0],0,false,[[3419,0,17.7907],[74,0,84.4515]]], +[[1238.93,1689.38,0],0,false,[[1953,0,98.0464],[1673,0,130.258]]],[[4686.81,3221.14,0],0,true,[[3416,1,21.9997],[2488,1,233.597],[1400,1,10.1797]]],[[7658.62,7897.49,0],0,true,[[3246,1,86.8808],[1608,1,23.9345],[415,1,14.5642]]],[[4159.12,3966.88,0],0,false,[[369,0,33.2567],[366,0,23.3679],[1790,0,21.5641]]],[[1124.13,3472.37,0],0,true,[[3241,1,27.6581],[1659,1,147.009],[2820,1,18.6206],[1150,1,16.4088]]], +[[4589.33,4565.03,0],0,true,[[1940,1,184.272],[1233,1,27.3009],[240,1,18.8189]]],[[502.315,7162.02,0],0,true,[[2895,0,51.6803],[2835,0,21.8962],[206,0,11.0903]]],[[2094.75,4604.2,0],0,false,[[806,0,15.3546],[2956,1,7.38477]]],[[4371.58,2975.55,0],0,true,[[885,1,35.6744],[3615,1,16.599],[1655,1,16.7794]]],[[3995.58,5519.6,0],0,true,[[2983,1,66.971],[3070,1,108.995],[1351,1,59.8176]]], +[[1422.9,1184.24,0],0,true,[[849,1,30.0776],[2882,1,220.92],[1442,1,17.4012]]],[[3081.49,2882.2,0],0,true,[[228,0,23.9018],[265,0,43.5141],[1540,0,18.8989]]],[[7873.13,2998.64,0],0,false,[[3654,1,322.989],[2331,1,137.541]]],[[4233.36,4006.64,0],0,false,[[1560,1,42.5802],[1734,1,41.4887]]],[[6925.75,1872.41,0],0,false,[[1235,0,73.4017],[2462,0,149.971]]], +[[4953.29,1696.24,0],0,false,[[229,0,52.4354],[2078,0,58.1513]]],[[5647.99,6307.61,0],0,false,[[2990,0,112.69],[1389,0,11.757]]],[[4262.73,2877.48,0],0,false,[[2154,1,43.5939],[1029,1,36.1319]]],[[1146.96,4830.56,0],0,true,[[1633,1,119.092],[2773,1,22.4587],[992,1,10.3746]]],[[2393.64,259.948,0],0,false,[[1883,1,46.4351],[157,1,30.9512]]], +[[6821.48,2035.4,0],0,true,[[1018,0,53.0511],[2513,0,6.36367],[1789,0,6.40813]]],[[7331.2,6126.42,0],0,true,[[3028,1,96.5094],[2904,1,14.8138],[495,1,7.6419]]],[[2991.47,4314.4,0],0,true,[[326,0,27.8826],[2147,0,206.969],[3365,0,11.7992]]],[[2406.05,6616.9,0],0,true,[[1030,0,313.964],[2350,0,12.2959],[1454,1,15.2056]]],[[4328.12,2878.92,0],0,true,[[725,1,56.3052],[2154,1,22.9399],[2951,1,10.9635],[1209,1,12.9362]]], +[[4204.06,7527.3,0],0,true,[[779,0,55.404],[2847,0,120.677],[3916,0,19.2752]]],[[1211.41,4069.93,0],0,true,[[2212,0,42.1198],[3273,0,5.4642],[1451,0,10.2196]]],[[5104.87,390.433,0],0,false,[[3902,0,177.734],[1516,0,111.667]]],[[4698.89,8186.84,0],0,false,[[483,0,122.606]]],[[624.935,947.13,0],0,true,[[524,1,22.4514],[3614,1,221.603],[2052,1,17.9979],[2160,1,30.2008]]], +[[6253.75,1596.46,0],0,false,[[2414,0,114.138],[436,0,285.311]]],[[7027.72,4354.27,0],0,false,[[3606,0,18.2486],[180,0,25.4105]]],[[7188.17,936.457,0],0,true,[[1004,0,277.664],[38,0,13.9454],[2129,0,23.7248]]],[[5499.77,6845.97,0],0,true,[[527,0,67.8343],[269,0,149.596],[3187,0,81.7574]]],[[4858.85,5580.6,0],0,false,[[3669,0,135.139],[3018,0,398.684]]], +[[5970.55,1710.75,0],0,true,[[1613,0,144.873],[2452,0,7.68299],[1792,0,7.37399]]],[[6959.3,4367.95,0],0,false,[[2964,1,25.6207],[965,1,26.187]]],[[3353.52,6706.13,0],0,false,[[3318,1,35.3778],[1502,1,142.591]]],[[7746,6711.4,0],0,false,[[1806,0,4.33704],[2698,0,203.06]]],[[5503.09,1266.26,0],0,true,[[3550,0,10.0946],[316,0,6.16156],[3036,1,15.9075]]], +[[3708.28,4405.98,0],0,true,[[187,0,250.03],[2923,0,6.12117],[2554,0,6.88807]]],[[2839.57,4460.47,0],0,true,[[3535,1,16.3445],[1675,0,7.05948],[109,0,4.4484],[3816,1,11.4465]]],[[4791.5,5209.48,0],0,true,[[3112,0,185.015],[608,0,24.0895],[861,0,29.4318]]],[[5100.15,2856.47,0],0,false,[[821,0,8.36951],[1958,0,15.1156]]],[[4592.25,2789.6,0],0,true,[[2305,1,71.1903],[2349,1,12.0404],[3564,1,10.525]]], +[[3745.78,980.263,0],0,true,[[3626,0,5.15811],[218,0,13.5161],[3681,1,9.54022]]],[[609.746,36.3505,0],0,true,[[1830,0,8.5828],[1450,0,92.5617],[568,2,9.27997]]],[[6406.08,3366.53,0],0,true,[[219,0,112.457],[3104,0,15.8264],[3896,0,30.5993]]],[[4135.05,4442.03,0],0,false,[[1676,0,143.43],[2670,0,83.1437]]],[[1711,5874.74,0],0,false,[[3422,0,13.5119],[1696,1,6.72086]]], +[[6499.8,2796.16,0],0,false,[[2134,1,72.2966],[2839,1,124.429]]],[[5889.15,4360.23,0],0,true,[[1885,1,30.913],[2498,1,27.3212],[3230,1,6.68087]]],[[6286.03,4321.23,0],0,false,[[560,1,64.2743],[1748,1,79.4104]]],[[3840.4,5931.91,0],0,true,[[2436,1,7.92571],[2840,0,15.4668],[66,1,6.35427]]],[[4064.35,4118.8,0],0,false,[[335,1,36.236],[3235,1,28.232]]], +[[4891.7,6842.47,0],0,false,[[3155,1,132.082],[114,1,157.344]]],[[4498.56,1085.85,0],0,false,[[3753,0,160.244],[1051,0,143.753]]],[[1962.89,3400.53,0],0,true,[[2077,0,45.593],[3217,0,4.55647],[470,0,8.81858]]],[[5101.21,3915.62,0],0,true,[[2676,0,21.1334],[3523,0,273.536],[1772,0,17.779]]],[[2164.01,5330.73,0],0,true,[[2116,1,23.3288],[72,1,24.0119],[1289,1,9.93932]]], +[[3937.33,6428.21,0],0,true,[[808,0,18.4586],[1819,0,11.5197],[3052,0,10.919],[932,0,8.04411]]],[[7247.96,6286.05,0],0,true,[[2418,1,140.989],[1508,1,5.86684],[1061,1,12.0407]]],[[5245.36,5976.66,0],0,true,[[3018,0,172.795],[756,0,16.7922],[1671,0,12.778]]],[[4703.32,3307.71,0],0,false,[[2755,0,23.1744],[3752,0,32.8929]]],[[7472.8,2962.56,0],0,true,[[2049,0,124.524],[1581,1,5.33567],[1491,1,12.5196]]], +[[4383.96,2883.64,0],0,true,[[938,1,8.30528],[684,1,56.3052],[1756,2,16.1198],[2525,2,15.1318]]],[[5674.02,4432.03,0],0,true,[[602,1,6.1733],[2521,1,232.968],[90,1,9.70636]]],[[414.521,1851.59,0],0,true,[[3603,1,3.42587],[1573,0,161.357],[2302,1,9.36598]]],[[4017.07,4157.62,0],0,false,[[1732,1,20.4633],[1874,1,21.6013]]],[[5127.87,6946.83,0],0,false,[[2998,2,18.98],[2862,2,90.7641]]], +[[1767.51,6856.34,0],0,false,[[1598,0,82.6158],[1764,0,168.435]]],[[1223.97,1788.32,0],0,true,[[920,1,23.2287],[3331,1,133.173],[1953,1,8.15445]]],[[7185.52,709.5,0],0,true,[[2103,1,29.0725],[2120,1,29.7888],[3238,1,16.2567]]],[[4453.29,6350.77,0],0,false,[[400,0,49.5118],[337,0,194.232]]],[[5077.84,4133.62,0],0,false,[[2859,0,12.6401],[2770,1,8.4281],[3801,0,5.44906]]], +[[2534.05,1668.07,0],0,true,[[2398,1,17.0722],[3134,1,194.254],[3114,1,28.3386]]],[[4863.31,4462.71,0],0,true,[[1689,0,9.83037],[2946,0,5.87092],[18,0,5.64812]]],[[1812.12,2947.96,0],0,true,[[2474,0,327.584],[2193,0,152.198],[2677,0,96.9879]]],[[4300.81,2914.99,0],0,false,[[765,1,60.4873],[132,1,19.1012]]],[[5308.66,5204.48,0],0,false,[[3697,1,66.2928],[1634,1,18.2159]]], +[[3841.05,5437.83,0],0,false,[[1364,0,98.2335],[1188,0,283.51]]],[[6665.43,3338.23,0],0,false,[[398,0,167.85],[1708,0,212.073]]],[[1549.71,7211.81,0],0,false,[[1011,1,156.04],[3054,1,183.751]]],[[298.623,7328.4,0],0,true,[[2883,0,5.06043],[3198,0,17.3234],[73,0,8.19635]]],[[5641.88,1048.71,0],0,true,[[1882,1,26.4377],[1234,1,60.5946],[1631,1,15.1853]]], +[[3209.01,860.38,0],0,true,[[443,0,4.36844],[1485,0,1.54454],[2210,0,6.24403]]],[[4753.46,5244.02,0],0,false,[[1843,0,214.408],[2278,1,4.3598]]],[[666.161,56.8903,0],0,false,[[841,2,378.039],[3354,2,22.2092]]],[[7470.83,5847.14,0],0,true,[[1597,0,90.8924],[3686,0,123.847],[3677,0,25.711]]],[[3241.69,902.909,0],0,false,[[2090,0,39.8203]]], +[[7090.45,5622.33,0],0,true,[[3429,0,41.9477],[3086,0,4.02492],[2688,0,13.0937]]],[[4287.46,4236.77,0],0,false,[[57,0,106.985],[1250,0,18.2038]]],[[7281.03,3822.41,0],0,false,[[2445,1,222.972],[3067,1,51.0066]]],[[432.718,7190.67,0],0,true,[[1456,0,47.5052],[2895,0,24.237],[293,0,12.2988]]],[[172.802,387.343,0],0,false,[[358,0,33.9001],[639,0,181.041]]], +[[2813.59,1786.37,0],0,true,[[2380,1,3.83648],[2603,1,252.252],[2740,1,3.77037]]],[[5253.53,5961.99,0],0,true,[[722,0,16.7922],[1639,0,139.446],[1671,0,28.9502]]],[[8091.31,1250.23,0],0,true,[[1006,0,102.825],[1204,0,10.0082],[3405,0,18.7667]]],[[2333.92,2371.07,0],0,false,[[318,0,263.079],[3274,0,152.171]]],[[667.295,2422.14,0],0,false,[[3813,0,14.4183],[613,0,202.446]]], +[[6120.11,895.353,0],0,true,[[1282,0,18.0574],[829,0,4.86978],[19,0,5.74418]]],[[1746.51,7175.12,0],0,false,[[345,0,38.0302],[3676,0,12.6383]]],[[1.06217,5157.75,0],0,false,[[1954,1,54.4798]]],[[5352.05,7684.16,0],0,true,[[2427,0,104.654],[3862,0,11.7201],[827,1,12.0688]]],[[761.079,5996.28,0],0,false,[[462,0,30.9803],[242,0,108.182]]], +[[4244.12,2897.19,0],0,false,[[3418,1,19.8359],[738,1,60.4873]]],[[7799.37,1455.79,0],0,true,[[1295,0,19.4678],[2824,0,95.5983],[2458,0,24.2144],[843,0,15.3395]]],[[4029.49,4079.26,0],0,true,[[2268,2,18.1481],[1353,2,20.1756],[3337,2,7.97924]]],[[5460.54,2423.91,0],0,false,[[490,0,185.619],[2851,0,273.875]]],[[2782.46,4581.9,0],0,false,[[3495,0,78.9088]]], +[[7377.89,1167.76,0],0,true,[[153,0,216.864],[2238,0,27.2704],[1007,0,8.19915]]],[[6748.96,5488.94,0],0,false,[[2190,0,38.6833],[1864,0,197.624]]],[[5187.19,1736.82,0],0,false,[[871,1,96.2562],[567,1,13.5269]]],[[5291.93,7475.37,0],0,false,[[36,1,10.5275],[1851,1,16.2563]]],[[345.413,4580.62,0],0,true,[[3812,0,19.8962],[561,0,15.9925],[2178,0,0.749666],[571,0,16.5753]]], +[[2894.99,151.272,0],0,false,[[2712,0,207.105],[2195,0,359.044]]],[[3980.07,5910.47,0],0,true,[[3376,1,15.0877],[2814,1,131.008],[2345,1,9.64134]]],[[7681.13,6362.02,0],0,false,[[801,0,10.6599],[1396,0,7.42366],[870,0,61.2012]]],[[3409.64,4726.82,0],0,true,[[3728,0,105.763],[1387,0,11.6612],[63,0,16.481]]],[[4149.43,7531.99,0],0,false,[[685,0,55.404]]], +[[7009.33,4371.53,0],0,false,[[783,1,22.9636],[2964,1,24.5476]]],[[4914.06,1049.26,0],0,true,[[2958,1,14.6674],[2095,0,4.94847],[1603,1,10.7855]]],[[4493.36,4632.42,0.154922],0,false,[[1980,2,7.4527],[1959,2,15.575]]],[[7032.23,4373.15,0],0,true,[[200,1,12.7188],[780,1,22.9636],[3803,1,26.1203]]],[[1325.99,5971.23,0],0,false,[[2269,1,19.1997],[2634,1,290.051]]], +[[5802.75,5971.6,0],0,false,[[3327,1,22.3761],[1257,1,117.448]]],[[3514.64,3344.1,0],0,false,[[2415,1,273.586],[3749,1,256.904]]],[[958.43,3467.55,0.000244141],0,false,[[3692,0,9.88703],[1126,0,9.88703]]],[[3851.31,3542.35,0],0,true,[[2121,1,175.196],[1735,1,24.4469],[1489,1,49.6251]]],[[5641.81,1022.86,0],0,false,[[1375,0,135.702],[1631,0,13.4756]]], +[[4420.14,4100.19,0],0,false,[[2672,0,143.879],[2683,0,85.9655]]],[[6750.33,523.251,0],0,false,[[280,0,105.75],[390,0,113.642]]],[[5492.19,6571.1,0],0,true,[[2172,1,14.3339],[1397,1,115.719],[1704,1,3.36305]]],[[3253.64,7422.47,0],0,false,[[889,0,20.1421],[1009,0,186.722]]],[[3350.42,7582,0],0,false,[[1009,0,32.4495],[3308,0,146.567]]], +[[55.6919,4496.82,0],0,true,[[2684,0,25.2378],[3434,0,200.045],[596,0,16.6933]]],[[4689.55,5893.43,0],0,false,[[2265,0,165.902],[1322,0,32.0703]]],[[8065.72,6453.3,0],0,true,[[5,1,26.4079],[2837,1,74.9138],[1541,1,10.9346],[472,1,9.26194]]],[[7667.5,2431.64,0],0,false,[[1048,0,360.095],[3232,0,44.2741]]],[[7075.69,5548.96,0],0,true,[[3033,0,8.08267],[879,0,7.48407],[2861,0,4.66015]]], +[[7231.05,4179.01,0],0,true,[[1101,0,206.663],[3278,0,18.4014],[1524,0,16.3198]]],[[7670.62,6360.29,0],0,true,[[1686,0,157.391],[1396,0,16.7748],[777,0,10.6599]]],[[6500.3,3948.32,0],0,true,[[555,0,120.49],[3120,0,6.82779],[162,0,10.7873]]],[[7238.3,887.04,0],0,true,[[233,0,17.0399],[2796,0,115.247],[536,0,27.2967]]],[[3521.66,6674.78,0],0,true,[[1555,1,18.9396],[1381,1,81.7718],[2145,1,24.9542],[922,1,7.38704]]], +[[3707.64,6300.93,0],0,true,[[3585,1,20.2838],[506,1,288.187],[3575,1,12.9227]]],[[2109.97,4602.25,0],0,false,[[3413,0,40.7691],[667,0,15.3546]]],[[872.503,4190.92,0],0,true,[[1838,0,18.6586],[3359,0,8.71164],[1477,0,10.1763]]],[[3951.82,6416.77,0],0,false,[[620,0,34.6137],[720,0,18.4586]]],[[2981.96,6892.79,0],0,true,[[983,0,298.794],[884,0,15.2383],[1952,0,17.5303]]], +[[7901.3,1904.4,0],0,true,[[3168,0,351.538],[2284,0,16.5754],[577,0,14.3241]]],[[388.593,1264.14,0],0,false,[[3893,0,35.5429],[2988,0,22.0137]]],[[4642.18,2066.21,0],0,true,[[2970,2,104.481],[2764,2,13.3767],[2821,2,8.05153]]],[[4908,7191.59,0],0,false,[[2206,0,237.635]]],[[4727.49,2276.69,0],0,false,[[2780,1,311.095],[2014,1,140.224]]], +[[2937.33,1597.9,0],0,false,[[1081,1,237.711],[1359,1,27.5526]]],[[414.176,1285.02,0],0,false,[[1114,0,26.1357],[1064,0,46.5188]]],[[3359.99,2225.09,0],0,false,[[2249,0,29.4612],[494,0,33.1116]]],[[3360.34,7270.35,0],0,true,[[1841,0,20.7573],[163,0,102.893],[2535,0,83.6969]]],[[1818.71,681.122,0],0,true,[[3,0,41.3448],[1853,2,15.5494],[2182,2,9.00184]]], +[[7705.17,6353.92,0],0,false,[[1396,0,18.3815],[2909,0,18.9209],[2893,0,16.3067]]],[[5103.12,2864.28,0],0,false,[[2626,1,12.2186],[703,0,8.36951]]],[[1388.08,7293.72,0],0,true,[[3433,1,199.228],[1011,1,26.2738],[1618,1,14.1538]]],[[5874.27,4769.65,0],0,true,[[2281,1,24.0264],[3255,1,101.824],[1549,1,13.0663]]],[[4704.82,2742.25,0],0,true,[[3233,1,9.71808],[3203,0,4.79669],[2996,1,3.33532]]], +[[3231.01,776.773,0],0,false,[[3552,0,87.2301],[457,0,15.3282]]],[[4313.78,3010.42,0],0,true,[[1957,1,93.9235],[2984,1,21.5634],[1709,1,29.8268]]],[[5363.95,7685.68,0],0,true,[[281,1,12.8841],[3396,1,18.0382],[763,1,12.0688],[3862,1,0.927976],[3609,1,5.14428]]],[[3141.13,7466.72,0],0,false,[[2935,0,22.791],[1979,0,64.6414]]],[[6122.88,891.424,0],0,true,[[760,0,4.86978],[647,0,4.69406],[19,0,1.35216],[1777,0,6.84536]]], +[[4194.67,2829.63,0],0,false,[[2328,0,26.1134],[2420,0,27.3549]]],[[5525.22,5707.63,0],0,false,[[3898,0,26.6543],[3064,0,82.4162]]],[[3784.93,1732.56,0],0,false,[[1438,2,338.736],[2544,2,20.2752]]],[[5768.97,1843.81,0],0,true,[[1127,1,21.132],[1313,1,21.4844],[1206,1,18.0812],[3507,1,10.9939]]],[[4108.43,5795.69,0],0,false,[[142,0,24.7815],[2782,0,94.4184]]], +[[2750.26,5193.72,0],0,false,[[1493,0,38.0866],[2687,0,144.407]]],[[5828.86,6379.96,0],0,true,[[3758,0,9.87336],[2990,0,82.267],[1536,0,13.3889]]],[[4281.11,6061.22,0],0,true,[[3673,2,19.5006],[535,2,13.8731],[2230,2,8.22924]]],[[936.878,4018.14,0],0,true,[[3790,0,26.8313],[2516,0,127.278],[3123,0,13.8422]]],[[3375.11,2682.95,0],0,false,[[1249,0,26.3807],[113,0,67.0338]]], +[[6194.41,6586.2,0],0,true,[[447,1,11.7081],[2113,0,94.8996],[2807,1,14.4306]]],[[998.956,236.165,0],0,true,[[3145,2,30.03],[747,2,378.039],[3363,2,13.4901],[1118,2,22.4904]]],[[3267.85,2358.98,0],0,false,[[2164,0,54.6887],[1013,0,22.4119]]],[[7784.89,1460.61,0],0,true,[[766,0,15.3395],[3583,0,233.753],[2458,0,13.1567],[1295,0,21.5604]]],[[509.033,3143.02,0],0,false,[[1069,0,216.869],[2466,0,19.4825]]], +[[3.84396,7101.38,0],0,false,[[2242,0,74.3637],[3256,0,138.917]]],[[3643.75,7986.69,0],0,false,[[2321,0,61.4054],[3779,0,133.026]]],[[3878.95,6816.81,0],0,false,[[612,1,230.129],[2054,1,197.866]]],[[4006.56,4577.52,0],0,true,[[2504,0,19.0574],[3712,0,16.4153],[2976,0,4.71414]]],[[1452.89,1185.32,0],0,true,[[407,1,111.761],[670,1,30.0776],[1442,1,13.3334]]], +[[4408.32,2990.13,0],0,false,[[485,2,31.9568],[1481,2,53.0174]]],[[7055.01,6618.49,0],0,false,[[1535,0,15.724],[3183,0,7.27867]]],[[6381.28,5474.16,0],0,false,[[1303,0,19.8268],[2183,0,79.3033]]],[[2856.23,4289.66,0],0,false,[[361,0,6.10053],[441,1,4.30077]]],[[2999.73,1988.42,0],0,true,[[2508,1,11.1221],[949,1,11.8511],[2133,1,19.2353]]], +[[1330.69,1461.44,0],0,false,[[1673,0,153.749],[3035,0,243.24]]],[[1801.88,163.149,0],0,true,[[1557,0,169.25],[3874,0,21.2585],[656,0,12.8091]]],[[3416.73,1536.66,0],0,true,[[315,2,31.0997],[373,2,182.232],[540,2,7.14531]]],[[1621.46,5963.35,0],0,true,[[1124,1,17.1718],[209,1,64.4252],[486,1,34.5211]]],[[7722.11,6709.35,0],0,true,[[3713,1,8.40369],[208,1,76.5089],[1185,1,13.2512]]], +[[2430.47,380.753,0],0,true,[[1877,0,110.033],[102,0,9.90121],[1856,1,6.17675]]],[[4817.55,5215.14,0],0,false,[[702,0,29.4318],[199,0,47.5758]]],[[4508.09,2385.15,0],0,true,[[1965,2,12.2385],[2297,2,16.6663],[1131,2,3.48269]]],[[676.809,6604.52,0],0,false,[[3231,0,271.724],[3554,0,58.2607]]],[[8010.98,6548.64,0],0,false,[[1836,0,25.3159]]], +[[2119.01,2018.15,0],0,false,[[1095,1,163.665],[1318,1,368.643]]],[[7791.89,7822.54,0],0,false,[[3465,1,61.0283],[1997,1,52.9987]]],[[1140.69,4723.06,0],0,true,[[2383,0,113.032],[1768,0,16.7478],[181,0,8.83183],[2364,0,19.7612]]],[[5130.92,6963.29,0],0,false,[[2998,2,3.59857],[391,0,135.379]]],[[4334.72,2944.74,0],0,true,[[1713,1,23.2939],[3307,1,36.9612],[1529,1,6.14207]]], +[[7701.55,6419.61,0],0,false,[[777,0,61.2012],[1147,0,36.6484],[370,0,12.2618]]],[[5244.34,1813.81,0],0,true,[[204,1,23.7846],[772,1,96.2562],[1694,1,11.1237],[8,1,10.2463]]],[[900.077,6140.98,0],0,false,[[3510,0,51.3186],[1324,0,44.7641]]],[[6943.2,3058.53,0],0,true,[[963,0,11.5845],[3557,0,125.167],[2004,0,21.5447]]],[[8179.14,5392.71,0],0,true,[[3703,0,15.2677],[2766,0,9.87567],[155,0,7.03875]]], +[[7130.25,2165.25,0],0,false,[[3636,0,320.56],[2267,0,234.527]]],[[6025.52,5476.79,0],0,true,[[2868,1,8.7032],[131,0,45.6053],[1162,1,10.8702]]],[[5802.09,6720.86,0],0,false,[[104,0,13.5391]]],[[4774.57,3443.14,0],0,false,[[3503,0,20.8395],[638,0,12.693]]],[[7072.56,5555.68,0],0,false,[[799,0,7.48407],[3848,0,22.5753]]], +[[4029.39,4391,0],0,true,[[3152,2,74.8473],[1153,2,85.3884],[2836,2,9.08883]]],[[6910.13,5405.14,0],0,false,[[2612,1,99.2769],[388,1,202.692]]],[[6096.78,7794.77,0],0,false,[[1712,1,243.141],[1899,1,26.2655]]],[[2914.52,3312.8,0],0,true,[[347,0,22.628],[3726,0,22.7427],[3726,0,22.7427],[347,0,22.628],[883,0,0]]],[[2973.58,6905.49,0],0,true,[[2067,0,27.121],[1952,0,32.5291],[809,0,15.2383]]], +[[4338.7,2964.75,0],0,false,[[1213,1,8.14721],[668,1,35.6744]]],[[5399.46,6241.19,0],0,false,[[3551,0,221.875],[2371,0,39.0642]]],[[5943.77,4937.6,0],0,true,[[2605,1,18.6299],[1302,1,195.948],[1832,1,12.5863]]],[[347.283,4434.02,0],0,true,[[213,0,5.89037],[998,0,0.751806],[2469,0,6.50185],[3750,0,12.4545]]],[[3233.81,7425.44,0],0,false,[[1563,0,13.7596],[793,0,20.1421]]], +[[2863.23,3244.8,0],0,true,[[1385,0,21.5058],[2232,0,20.586],[3647,0,21.1988],[1895,0,0.124067],[1385,0,21.4419]]],[[6771.05,1746.36,0],0,true,[[418,0,27.501],[1576,0,165.19],[3191,0,13.2504]]],[[5398.7,5446.14,0],0,false,[[3099,0,35.6708],[47,0,309.972]]],[[3245.23,7167.33,0],0,false,[[303,0,15.2478],[2535,0,87.6884]]],[[5138.89,3005.93,0],0,false,[[3102,0,123.004],[2903,0,340.95]]], +[[7628.27,6581.73,0],0,true,[[3512,0,119.194],[2776,0,10.9727],[2579,0,10.6021]]],[[563.467,3125.57,0],0,false,[[2466,0,38.2969],[211,0,193.998]]],[[8097.2,1287.67,0],0,false,[[3208,0,203.716],[2176,0,19.1138]]],[[64.3493,5102.2,0],0,false,[[3901,1,10.5766],[428,1,14.2385]]],[[2391.9,4566.92,0],0,true,[[1822,0,254.281],[1059,0,279.624],[2581,0,113.231]]], +[[1421.08,3359.62,0],0,false,[[1334,1,28.0647],[1441,1,201.551]]],[[3178.9,2219.11,0],0,true,[[3800,0,23.253],[1859,0,307.713],[946,0,101.514]]],[[5854.22,7643.13,0],0,true,[[3324,0,18.9508],[3602,0,26.3584],[1272,0,21.7716]]],[[4970.54,5317.13,0],0,false,[[2236,1,153.275],[1801,1,124.907]]],[[7698.54,3904.25,0],0,true,[[1567,0,8.80036],[2664,0,91.6026],[3502,0,8.20686]]], +[[3421.01,4913.09,0],0,false,[[1002,0,38.2854]]],[[2070.79,7490.34,0],0,false,[[1932,0,106.356],[3410,0,25.7641]]],[[6679.37,894.955,0],0,false,[[3736,0,122.049],[2518,0,81.6758]]],[[873.419,1191.63,0],0,false,[[1901,0,149.852]]],[[4026.73,5438.59,0],0,false,[[3526,1,11.7528],[2983,1,19.8417]]], +[[1332.31,3478.25,0],0,false,[[354,0,85.895],[2080,0,27.5718]]],[[7486.29,6489.71,0],0,false,[[2991,1,133.796],[1467,1,28.7357]]],[[6436.13,5195.31,0.000305176],0,false,[[444,0,7.43323],[2960,0,7.43323]]],[[4875.37,4008.31,0],0,false,[[2286,1,94.8972],[1547,1,29.7542]]],[[7517,6404.36,0],0,true,[[3625,0,50.8256],[915,0,10.4825],[1686,0,3.61604]]], +[[7519.21,6414.6,0],0,true,[[1686,0,11.0138],[921,0,67.7305],[914,0,10.4825]]],[[5183.11,1739.15,0],0,false,[[2084,1,24.707],[1076,1,131.664]]],[[955.766,3885.46,0],0,false,[[1497,0,294.173],[1803,0,23.3521]]],[[181.374,5340.86,0],0,true,[[1261,0,19.6854],[3213,0,211.545],[1624,0,9.56393]]],[[1984.82,6699.81,0],0,false,[[2273,0,202.686],[3056,0,136.488]]], +[[1200.99,1785.01,0],0,false,[[1757,1,160.791],[731,1,23.2287]]],[[7524.43,6482.05,0],0,true,[[915,0,67.7305],[53,1,6.31036],[1467,1,10.5362]]],[[3520.33,6682.04,0],0,true,[[341,1,11.9582],[1555,1,15.599],[2145,1,18.2705],[804,1,7.38704]]],[[1125.74,5676.08,0],0,false,[[2140,0,100.698],[1028,0,11.7206]]],[[4545.58,3240.85,0],0,false,[[3424,1,33.8937],[1863,1,30.5216]]], +[[5173.16,6203.54,0],0,true,[[3825,0,9.61617],[2124,0,177.264],[3551,0,10.497]]],[[354.495,4417.52,0],0,true,[[3314,0,0.750435],[253,0,6.16016],[1559,0,11.0758],[586,0,5.80098]]],[[1281.51,7241.85,0],0,false,[[1421,0,105.199],[3909,0,122.339]]],[[1427.97,4310.96,0],0,false,[[1947,0,170.942],[1116,0,62.5928]]],[[7115.53,6096.8,0],0,true,[[2620,0,4.40898],[212,0,6.22901],[2387,0,2.81765]]], +[[7403.67,2962.53,0],0,true,[[215,1,27.6254],[1447,1,222.869],[3197,1,11.2958]]],[[5061.19,6824.78,0],0,true,[[2747,2,16.6705],[997,1,18.0963],[1991,2,9.63599],[2969,1,5.14191]]],[[3943.17,6433.54,0],0,true,[[1972,0,35.8925],[3052,0,13.7195],[720,0,8.04411]]],[[2198.84,5589.75,0],0,false,[[3868,0,85.6517],[1588,0,113.108]]],[[5532.71,1675.19,0],0,false,[[139,0,29.3079],[421,0,102.944]]], +[[1614.88,8023.14,0],0,false,[[3527,0,7.34492],[2152,1,2.82978]]],[[3698.92,588.245,0],0,false,[[1229,0,92.9454],[2298,0,192.379]]],[[4477.2,800.345,0],0,false,[[2858,0,129.457]]],[[4392.26,2883.94,0],0,true,[[1143,1,38.5947],[725,1,8.30528],[1756,2,15.0604]]],[[428.823,106.411,0],0,true,[[2745,0,97.3103],[2330,0,30.3761],[1868,0,16.9404]]], +[[5578.72,1615.06,0],0,false,[[3853,1,29.3524],[75,1,287.298]]],[[3762.02,1665.47,0],0,false,[[1433,1,221.71],[3780,1,49.5823]]],[[2785.51,3303.1,0],0,false,[[203,1,30.329],[1269,1,30.1475]]],[[2197.84,5257.5,0],0,false,[[1719,0,66.1302],[1252,0,281.733]]],[[950.961,7576.53,0],0,false,[[1807,0,21.6408]]], +[[3280.21,4252.04,0],0,true,[[1539,0,18.9197],[2950,0,14.9527],[1464,0,13.1541]]],[[3202.84,2315.82,0],0,false,[[1013,0,83.9929],[901,0,101.514]]],[[5812.86,5951.75,0],0,false,[[3327,1,3.59973],[236,0,254.126]]],[[1408.11,2736.53,0],0,false,[[3053,1,93.8501],[2558,1,191.89]]],[[2987.94,1989.51,0],0,true,[[3135,1,153.624],[2133,1,28.4294],[854,1,11.8511]]], +[[291.397,7316.31,0],0,false,[[2883,0,9.71894]]],[[2397.48,2784.05,0],0,false,[[1510,0,309.259],[3398,0,135.873]]],[[2947.98,1834.98,0],0,false,[[2646,0,38.5061],[2453,1,7.04612]]],[[493.027,3033.76,0],0,true,[[2404,0,36.509],[2002,0,11.7047],[2038,0,10.4258]]],[[5301.59,6806.66,0],0,false,[[2737,1,106.83],[1446,1,179.353]]], +[[1510.1,509.576,0],0,true,[[2547,2,17.6005],[1888,0,249.315],[103,2,17.2575]]],[[1768.87,7149.89,0],0,false,[[2215,1,24.3747],[1763,1,168.739]]],[[4295.71,4046.3,0],0,true,[[2660,0,69.9824],[2672,0,24.7023],[1504,1,4.78059]]],[[6096.21,6165.56,0],0,false,[[651,0,29.749],[1003,0,111.171]]],[[6913.14,1949.91,0],0,false,[[3849,0,101.471],[1697,0,24.4037]]], +[[551.163,8037.41,0],0,true,[[1292,0,7.06356],[3125,0,20.2056],[505,0,7.0122]]],[[3789.51,6249.89,0],0,false,[[2359,0,94.5638],[3149,0,83.2176]]],[[3459.36,2163.44,0],0,false,[[2678,0,126.322],[2563,0,53.5626]]],[[6944.59,3070.03,0],0,true,[[873,0,11.5845],[138,0,320.991],[2004,0,12.1121]]],[[3694.09,3792.54,0],0,false,[[2697,0,208.083],[1390,0,156.339]]], +[[6933.2,4366.08,0],0,false,[[696,1,26.187],[112,1,26.2428]]],[[1034.29,6030.27,0],0,true,[[2843,0,241.5],[509,0,7.90083],[2634,1,10.9185]]],[[3375.63,4978.84,0],0,true,[[1316,1,302.027],[1267,1,17.9031],[1844,1,10.3338]]],[[1695.85,3276.36,0],0,true,[[2809,1,198.964],[531,1,19.7899],[91,1,6.01042]]],[[5085.78,4608.3,0],0,false,[[537,1,24.0616],[1842,1,117.451]]], +[[2877.05,7038.99,0],0,false,[[3704,0,36.4361],[2574,0,161.111]]],[[4454.47,7983.8,0],0,false,[[1419,0,24.9522],[3652,0,94.662]]],[[5133.54,4301.74,0],0,true,[[3798,0,64.1787],[1222,0,153.977],[2599,0,3.60651]]],[[393.71,2072.09,0],0,false,[[3369,0,78.4784]]],[[931.545,4872.63,0],0,true,[[289,1,22.8019],[3303,1,355.099],[176,1,14.8753]]], +[[343.452,7991.71,0],0,false,[[3629,0,72.4414]]],[[4219.14,7003.4,0],0,true,[[2130,1,29.8378],[3390,1,62.6555],[3599,1,16.4629]]],[[3196.8,791.101,0],0,false,[[2403,0,266.827],[2560,0,67.6582]]],[[6119.02,4227.17,0],0,false,[[1169,0,90.3657]]],[[7029.45,1542.82,0],0,true,[[1731,0,12.6585],[2313,0,9.21152],[122,0,12.0732]]], +[[424.468,7730.62,0],0,true,[[1629,0,14.274],[2948,0,74.2062],[2522,0,11.2544]]],[[4291.34,5455.39,0],0,false,[[2472,0,115.294],[2322,0,32.1485]]],[[4221.71,2828.79,0],0,true,[[1873,1,30.5319],[2965,1,31.8805],[2420,1,18.21]]],[[2777.23,6693.81,0],0,false,[[2717,0,211.906],[809,0,298.794]]],[[2873.35,7011.45,0],0,false,[[3704,0,30.9451],[13,0,62.7316]]], +[[6089.09,6002.61,0],0,false,[[236,0,45.8453],[44,0,114.012]]],[[4698.64,1142.39,0],0,false,[[2793,0,16.2065]]],[[4749.3,3592.01,0],0,false,[[563,1,32.332],[3743,1,58.3609]]],[[260.7,6106.72,0],0,true,[[1440,1,347.831],[3565,1,26.5466],[2259,1,15.5836]]],[[2883.74,3924.86,0],0,false,[[3362,0,150.579],[2531,0,150.93]]], +[[2527.68,8188.27,0],0,false,[[1927,0,324.165]]],[[5835.51,5785.34,0],0,false,[[2810,1,74.5514],[2980,1,100.055]]],[[1136.62,4830.14,0],0,true,[[181,0,101.837],[678,1,10.3746],[2773,1,12.6013]]],[[6981.65,4349.97,0],0,false,[[180,0,20.8653],[3199,0,22.409]]],[[4817.8,2091.8,0],0,false,[[1548,2,216.235],[3321,2,118.104]]], +[[3913.97,1355.58,0],0,true,[[2530,0,18.285],[3516,0,5.53355],[1238,0,3.40425]]],[[7894.83,835.916,0],0,false,[[3487,0,349.807],[1767,0,72.9786]]],[[5046.24,6834.88,0],0,true,[[931,1,18.0963],[3155,1,23.1657],[475,1,7.09731]]],[[347.618,4434.69,0],0,true,[[213,0,6.50207],[3750,0,11.7765],[2937,0,12.4546],[888,0,0.751806]]],[[2847.17,4135.57,0],0,true,[[1494,1,13.383],[3824,1,92.8534],[1710,1,26.4267]]], +[[2113.22,4580.38,0],0,false,[[2956,1,23.5197],[514,1,80.0582]]],[[6514.84,513.097,0],0,false,[[1902,0,111.718],[1417,0,181.933]]],[[3396.14,4941.19,0],0,false,[[1844,0,44.6637],[905,0,38.2854]]],[[6167.76,6080.75,0],0,true,[[958,0,111.171],[44,0,24.22],[227,0,96.2092]]],[[6947.73,1065.52,0],0,true,[[3699,0,15.9334],[692,0,277.664],[3894,0,13.3069],[135,0,16.9565]]], +[[4031.98,7984.67,0],0,true,[[2847,0,382.209],[1330,0,30.294],[2656,0,26.5634]]],[[8022.4,1179.76,0],0,false,[[3248,0,9.56884],[757,0,102.825]]],[[7374.95,1160.14,0],0,true,[[3543,0,37.7032],[2238,0,19.5894],[770,0,8.19915]]],[[7047.41,4361.14,0],0,true,[[200,1,9.2723],[3461,1,14.3257],[3606,1,5.37275]]],[[3344.64,7551.98,0],0,false,[[793,0,186.722],[794,0,32.4495]]], +[[2901.89,1853.65,0],0,true,[[1271,0,135.381],[1373,1,4.59465],[2638,1,2.51198]]],[[1408.37,7277.13,0],0,true,[[822,1,26.2738],[742,1,156.04],[1618,1,13.0282]]],[[4761.3,1924.66,0],0,false,[[2802,0,147.092],[3831,0,57.7057]]],[[3257.56,2349.36,0],0,true,[[395,0,23.9629],[946,0,83.9929],[842,0,22.4119]]],[[2498.71,7481.7,0],0,true,[[1923,0,6.22731],[429,0,3.50378],[2156,0,5.63861],[1284,0,15.7241]]], +[[1210.73,3479.35,0],0,false,[[1840,1,109.583],[3241,1,59.3265]]],[[2378.18,3127.14,0],0,false,[[2204,0,90.7743],[3886,0,330.106]]],[[5552.54,4350.12,0],0,false,[[3300,1,25.1186],[383,1,25.7515]]],[[6785.43,2073.65,0],0,false,[[143,0,92.0227],[680,0,53.0511]]],[[418.865,1389.37,0],0,false,[[2709,0,79.7748],[1279,0,62.7661]]], +[[5813.47,6402.45,0],0,false,[[1226,1,11.4284],[1536,0,14.1012]]],[[3028.45,1327.04,0],0,true,[[1460,2,225.515],[320,2,24.2847],[550,2,10.9073]]],[[4477.03,1456.7,0],0,true,[[1296,0,23.9705],[1058,0,64.3904],[2240,0,11.3612]]],[[4293.62,6286.22,0],0,true,[[597,0,7.08997],[1890,0,6.71841],[214,0,7.36189]]],[[4688.62,5832.81,0],0,true,[[590,0,331.47],[1961,0,12.0527],[1610,0,15.9702]]], +[[4337.26,6114.34,0],0,false,[[1542,2,15.7779],[3673,2,57.8075]]],[[1810.04,1929.54,0],0,false,[[2455,1,172.426],[3864,1,25.0232]]],[[7076.1,6479.25,0],0,false,[[386,1,330.939],[1730,1,18.2469]]],[[1136.31,5680.79,0],0,true,[[3521,0,17.2638],[576,0,141.074],[923,0,11.7206]]],[[4226.72,2876.27,0],0,false,[[677,1,36.1319],[328,1,5.36129]]], +[[2593.98,6365.74,0],0,false,[[1620,0,204.91],[683,0,313.964]]],[[5241.12,7672.39,0],0,true,[[2427,0,8.25559],[3393,0,36.0252],[2065,2,12.0699]]],[[4782.21,3703.77,0],0,false,[[1725,1,5.91037],[3835,0,33.5912]]],[[2681.75,7486.5,0],0,false,[[2829,0,34.1036],[1914,0,201.788]]],[[5469.87,6787.71,0],0,true,[[610,1,10.6429],[2724,1,46.2591],[3299,1,18.0224]]], +[[7633.03,7864.83,0],0,false,[[415,0,40.1772],[1644,0,125.866]]],[[6419.32,6248.58,0],0,false,[[2411,0,76.4747],[196,0,96.5588]]],[[2882.17,4425.13,0],0,false,[[1675,0,48.7585],[2015,0,48.4638]]],[[1336.61,3449.58,0],0,true,[[2228,1,136.095],[1840,1,21.4814],[2080,1,4.90137]]],[[7780.32,704.594,0],0,true,[[2244,0,11.7315],[477,0,20.803],[2866,0,19.8744]]], +[[5694.96,5214.42,0],0,false,[[2732,0,204.387]]],[[7759.79,627.71,0],0,false,[[3639,0,57.2653],[382,0,197.983]]],[[4063.5,5359.65,0],0,true,[[445,1,6.65909],[3687,1,5.73412],[201,2,17.4286]]],[[2671.18,7738.05,0],0,true,[[2539,0,68.3343],[3584,0,75.1864],[1310,0,45.6847]]],[[4984.12,1491.48,0],0,false,[[2576,1,22.7623],[3404,1,308.451]]], +[[5690.17,6552.96,0],0,false,[[3885,1,24.5749],[2618,1,179.741]]],[[439.419,2494.37,0],0,true,[[2059,0,86.0876],[1309,0,18.7791],[21,0,28.7036]]],[[2727.93,3005.1,0],0,false,[[3775,1,22.9868],[3313,1,252.488]]],[[7715.05,2786.06,0],0,false,[[1910,0,186.082],[798,0,360.095]]],[[3524.9,2287.33,0],0,false,[[3731,0,30.0316],[2678,0,24.789]]], +[[2998.98,1107.96,0],0,true,[[1080,0,24.916],[3031,0,15.85],[1415,0,7.96121]]],[[4501.45,951.741,0],0,true,[[716,0,143.753],[2858,0,23.9159],[134,0,376.74]]],[[7789.57,7215.56,0],0,true,[[264,0,262.532],[3075,0,13.1433],[1285,0,15.13]]],[[7104.67,7988.02,-0.00012207],0,false,[[1753,0,81.6824],[1159,0,39.5962]]],[[3575.86,6568.1,0],0,true,[[2464,1,16.8067],[506,1,13.0822],[2543,1,6.5002]]], +[[6882.54,3790.29,0],0,true,[[1948,0,100.146],[338,0,14.8485],[2256,0,6.303]]],[[8048.85,1318.52,0],0,false,[[1762,0,42.2536],[177,0,256.597]]],[[7828.27,5632.02,0],0,false,[[2135,1,183.236],[1395,1,219.326]]],[[4513.15,1407.16,0],0,false,[[1022,0,64.3904],[3753,0,218.035]]],[[2630.11,4433.28,0],0,false,[[899,0,279.624],[3372,0,12.5497]]], +[[1867.72,908.213,0],0,true,[[2181,0,346.644],[3454,0,18.4429],[2407,0,9.50005]]],[[7254.31,6296.29,0],0,true,[[721,1,12.0407],[3118,1,98.9123],[1508,1,8.82464]]],[[4761.1,3785.56,0],0,false,[[3768,1,205.081],[1817,1,32.8051]]],[[2726.38,992.309,0],0,true,[[3883,1,21.9119],[2879,1,151.142],[2187,1,9.40372]]],[[441.686,1322.19,0],0,false,[[816,0,46.5188],[3281,0,47.6811]]], +[[203.185,416.837,0],0,false,[[2009,0,123.874],[358,0,51.5716]]],[[2719.53,7049.61,0],0,false,[[2287,0,218.671],[1778,0,28.9096]]],[[4534.18,3280.34,0],0,false,[[3578,2,42.5344],[2921,2,41.0168]]],[[4164.97,4216.01,0],0,false,[[551,0,43.0716]]],[[350.194,3261.17,0],0,false,[[3101,0,210.288],[844,0,216.869]]], +[[4112.23,309.25,0],0,false,[[3351,0,211.692],[1241,0,331.965]]],[[5378.75,7347.94,0],0,false,[[1242,0,116.003]]],[[1333.81,8186.63,0],0,false,[[2799,1,183.289]]],[[7259.62,8023.15,-0.000366211],0,false,[[545,0,27.2332],[1753,0,82.2534]]],[[4357,6128.25,0],0,true,[[1542,2,8.77892],[2034,0,63.9206],[276,2,13.5726]]], +[[7044.87,6153.26,0],0,false,[[212,0,112.43],[623,0,174.287]]],[[5107.37,1846.72,0],0,false,[[916,1,131.664],[1716,1,166.72]]],[[8123.25,4958.18,0],0,true,[[3634,0,70.2996],[2679,0,10.3451],[3062,0,22.7003]]],[[5641.66,7285.52,0],0,false,[[3129,0,192.345],[3834,0,22.0381]]],[[5416.97,3410,0],0,true,[[3558,0,20.9043],[3280,0,163.719],[2056,0,132.352]]], +[[3013.29,1087.57,0],0,false,[[1155,0,123.713],[1050,0,24.916]]],[[2885.89,1369.07,0],0,false,[[2392,1,117.217],[815,1,237.711]]],[[4187.94,4045.77,0.00012207],0,false,[[146,0,16.0831]]],[[1185.86,1127.49,0],0,false,[[2882,1,29.6091],[528,1,230.845]]],[[2548.54,168.723,0],0,false,[[452,0,27.712],[355,0,25.1066]]], +[[3348.3,3950.13,0],0,false,[[1431,0,142.435],[364,0,170.982]]],[[5431.87,7903.67,0],0,false,[[3396,1,210.736],[3210,1,28.5016]]],[[7743.03,4178.16,0],0,true,[[2779,0,8.23724],[3353,0,296.577],[2199,0,9.24235]]],[[1807.73,7334.03,0],0,true,[[3462,0,149.277],[406,0,43.7998],[31,0,78.3449]]],[[394.485,880.301,0],0,true,[[3614,1,19.1993],[1897,1,71.4632],[2957,1,10.0141]]], +[[7662.88,3821.04,0],0,false,[[1567,0,82.7137],[4,0,299.52]]],[[6719.88,7315.88,0],0,true,[[3292,1,93.0026],[2699,1,24.3933],[1265,1,10.9638]]],[[6146.68,1987.98,0],0,false,[[1967,1,118.218],[1127,1,384.383]]],[[4021.62,4017.47,0],0,false,[[2196,1,19.9758],[2263,1,228.824]]],[[6270.34,6608.78,0],0,true,[[2248,1,22.3594],[2807,1,65.8906],[2808,1,8.42393],[2871,1,11.7536]]], +[[1955.73,2007.85,0],0,true,[[3888,2,15.7225],[865,1,163.665],[2658,1,13.6829]]],[[6005.12,7777.48,0],0,true,[[3477,0,53.0212],[3265,0,18.5057],[3059,0,93.1331]]],[[1824.83,1941.85,0],0,false,[[3864,1,6.51117],[1565,0,40.466]]],[[4417.13,6083.03,0],0,true,[[2034,0,12.1065],[2265,0,177.106],[404,0,7.35234]]],[[1196.49,2526.09,0],0,true,[[3042,1,26.8093],[1758,1,209.963],[2649,1,9.2168]]], +[[2719.91,2534.59,0],0,false,[[3679,0,18.3034],[374,1,1.69449]]],[[7175.6,4361.95,0],0,true,[[2304,0,19.1997],[800,0,206.663],[2803,1,23.9542]]],[[4596.3,2255.63,0],0,false,[[56,2,25.6217],[1548,2,59.86]]],[[3280.46,170.012,0],0,false,[[2195,0,142.237],[284,0,114.906]]],[[7470.25,7885.13,0],0,false,[[1644,0,143.082],[3733,0,79.1716]]], +[[345.327,258.088,0],0,false,[[2476,0,7.28991],[358,0,182.161]]],[[5191.55,393.603,0],0,true,[[1516,0,3.51849],[3488,0,0.398322],[1741,0,8.29164]]],[[8186.69,1897.18,0],0,false,[[1533,0,88.9613]]],[[3853.4,3660.09,0],0,false,[[3317,1,35.582],[1550,1,163.757]]],[[3150.48,4493.9,0],0,false,[[3365,0,242.778],[1539,0,259.382]]], +[[6647.41,358.247,0],0,false,[[1417,0,23.3753],[3591,0,14.9996]]],[[2947,6949.89,0],0,false,[[2032,1,17.6036],[2735,1,11.6268]]],[[5826.2,637.457,0],0,false,[[2503,0,14.5492],[151,0,8.87456]]],[[347.569,4541.9,0],0,true,[[3242,0,17.8792],[2282,0,18.3415],[1595,0,0.749854],[3812,0,19.0181]]],[[398.089,1264.43,0],0,false,[[2988,0,27.9443],[816,0,26.1357]]], +[[8035.58,1708.98,0],0,true,[[1533,0,155.341],[2910,0,12.4902],[1987,0,12.2404]]],[[1365.99,4316.42,0],0,false,[[928,0,62.5928],[2661,0,55.8784]]],[[7455.7,3128.26,0],0,true,[[2355,0,7.63824],[1891,0,17.6127],[1881,0,11.9733]]],[[1005.86,257.563,0],0,true,[[2144,0,92.1938],[3363,0,15.1343],[841,2,22.4904]]],[[3701.26,2905.69,0],0,false,[[3205,0,205.364],[3310,0,303.061]]], +[[5446.3,2231.5,0],0,true,[[1546,1,24.5863],[417,1,123.735],[1921,1,20.5531],[490,1,14.7933]]],[[3441.5,2257.94,0],0,true,[[1240,1,41.9075],[1237,1,22.5793],[3774,1,14.2572]]],[[6952.75,6794.33,0],0,false,[[2582,0,199.281]]],[[805.533,619.323,0],0,false,[[3912,0,155.933],[3742,0,202.321]]],[[1638.59,5962.28,0],0,true,[[858,1,17.1718],[385,1,62.9292],[486,1,18.2711]]], +[[3791.26,6541.56,0],0,true,[[2537,0,9.23598],[2642,0,226.327],[454,0,8.92154]]],[[950.122,3472.91,0],0,false,[[1659,1,27.9126],[1509,1,81.0722],[787,0,9.88703]]],[[5789.58,1848.33,0],0,false,[[1092,1,384.383],[833,1,21.132]]],[[5509.57,1247.61,0],0,false,[[297,0,6.50441],[2301,1,1.04268]]],[[726.119,4312.33,0],0,false,[[2174,0,128.769],[1838,0,172.327]]], +[[5569.89,2218.94,0],0,true,[[273,1,12.8874],[2442,0,52.5371],[70,1,10.7347]]],[[4504.63,2385.51,0],0,true,[[256,0,140.897],[1965,2,11.565],[862,2,3.48269],[2297,2,18.2494]]],[[1843.25,4892.36,0],0,true,[[207,0,12.4238],[277,0,50.4212],[3651,0,5.26755]]],[[2276.55,924.232,0],0,false,[[3080,2,1.65769],[2076,0,7.55409]]],[[1938.61,3615.43,0],0,false,[[3504,0,342.134],[352,0,61.4924]]], +[[2279.88,404.788,0],0,false,[[1815,0,62.7198]]],[[6201.61,2170.83,0],0,true,[[3106,1,17.051],[1969,1,304.382],[2757,1,21.1769]]],[[5745.22,1162.75,0],0,false,[[2221,0,163.014],[3592,0,177.726]]],[[5767.85,5114.33,0],0,false,[[3467,0,304.231],[1191,0,254.009]]],[[8187.22,1637.98,0],0,false,[[3113,0,84.0657]]], +[[4049.58,4865.72,0],0,false,[[3326,0,172.585],[3644,0,185.583]]],[[3571.97,6595.16,0],0,false,[[3336,1,1.90404],[484,0,11.0378]]],[[3075.11,6791.23,0],0,false,[[1952,0,120.357],[1435,0,82.0962]]],[[4430.39,2883.63,0],0,false,[[2323,1,82.2416],[938,1,38.5947]]],[[1492.5,3341.02,0],0,false,[[3601,1,9.52435],[556,0,121.082]]], +[[753.366,5753.19,0],0,false,[[462,0,246.066],[311,0,230.929]]],[[3534.47,2313.98,0],0,false,[[2064,1,50.9402],[387,1,14.3331]]],[[7713.65,6453.74,0],0,true,[[3682,0,12.782],[2409,0,4.58847],[870,0,36.6484]]],[[4404.27,3205.64,0],0,true,[[2629,0,6.37406],[1355,0,10.521],[3182,0,17.5652]]],[[2381.13,6175.78,0],0,false,[[1338,0,136.994],[2300,0,218.654]]], +[[1135.36,3484.32,0],0,true,[[582,0,124.585],[2820,0,27.6644],[3241,1,18.6715],[664,1,16.4088]]],[[3636.12,1123.89,0],0,true,[[2405,0,61.2111],[3596,0,28.7987],[1630,0,6.75856]]],[[1024.22,3817,0],0,true,[[2389,0,22.3517],[2069,0,187.348],[1916,0,13.0369],[3617,0,22.9985]]],[[4047.58,4308.62,0],0,true,[[880,2,85.3884],[1670,2,8.10309],[3540,2,8.13828]]],[[3792.42,1036.66,0],0,false,[[218,0,60.5253],[87,0,109.565]]], +[[3104.79,1006.88,0],0,false,[[2210,0,193.865],[1080,0,123.713]]],[[4248.15,6946.31,0],0,true,[[2081,0,12.6474],[3599,0,57.7441],[266,0,7.86288]]],[[4605.5,5189.97,0],0,true,[[2551,1,282.796],[2035,1,20.1549],[307,1,2.64503]]],[[362.15,4759.12,0],0,true,[[2431,0,7.48662],[3142,0,6.55108],[1589,0,0.749169],[1183,0,8.14691]]],[[7066.49,7977.54,0],0,false,[[1740,0,356.879],[1053,0,39.5962]]], +[[2596.05,3663.07,0],0,false,[[3079,0,230.933],[2401,0,40.3218]]],[[5515.7,4163.36,0],0,false,[[1747,0,18.6306],[2760,0,141.167]]],[[6019.72,5485.95,0],0,true,[[2868,1,18.1384],[2158,1,138.601],[876,1,10.8702]]],[[5123.03,3575.28,0],0,false,[[2722,0,197.082],[2818,0,315.346]]],[[6578.29,3657.72,0],0,true,[[3431,0,16.772],[296,0,117.917],[2804,0,12.5801],[3165,0,12.5077]]], +[[330.955,8188.93,0],0,false,[[3629,0,180.601]]],[[2814.94,3361.18,0],0,false,[[2540,1,166.679],[3166,1,60.0714]]],[[2387.29,7192.76,0],0,true,[[3024,0,137.063],[28,0,26.0279],[1622,0,26.7319]]],[[3048.53,5583.04,0],0,true,[[1625,0,149.364],[455,0,5.5768],[2985,0,15.5328]]],[[6206.88,4247.57,0],0,false,[[978,0,90.3657],[1498,0,77.4155]]], +[[6265.9,779.757,0],0,false,[[2595,0,19.534],[2775,0,224.205]]],[[4339.57,8132.74,0],0,false,[[3269,0,29.2543],[538,0,54.5371]]],[[3545.14,4184.47,0],0,false,[[1924,0,145.598]]],[[1352.56,1836.63,-0.44416],0,false,[[1358,2,15.5925],[3331,2,5.01793]]],[[2595.77,164.131,0],0,false,[[355,0,22.4208],[2050,0,42.809]]], +[[4885.68,820.259,0],0,true,[[3406,1,68.138],[69,1,26.9993],[2379,1,12.7373],[3072,1,20.1116]]],[[5681.05,2191.18,0],0,false,[[3341,1,76.231],[3871,1,21.966]]],[[349.737,4624.06,0],0,true,[[3815,0,15.7355],[2098,0,0.749428],[2475,0,16.4838],[595,0,13.0475]]],[[7280.72,3472.68,0],0,false,[[98,1,94.367],[1499,1,230.905]]],[[4092.5,3393.79,0],0,false,[[2111,0,62.7656],[3311,1,11.1965]]], +[[364.429,4655.54,0],0,true,[[2555,0,12.8373],[2454,0,0.749197],[3215,0,13.562],[1705,0,18.4832]]],[[4545.18,2303.71,0],0,false,[[3908,2,27.5798],[2274,2,23.3606]]],[[5738.03,6125.55,0],0,false,[[1463,1,5.87109],[1288,0,151.096]]],[[362.203,4750.97,0],0,true,[[48,0,16.0448],[2431,0,0.749571],[334,0,16.7144],[1158,0,8.14691]]],[[2524.15,82.0392,0],0,true,[[2624,0,10.4944],[3184,0,2.94509],[71,0,0.566938],[3083,0,11.8278]]], +[[7734.86,6705.78,0],0,true,[[3795,1,14.14],[3713,1,8.90381],[1806,1,8.21143],[859,1,13.2512]]],[[1217.8,7959.33,0],0,true,[[2878,1,12.9836],[1926,1,61.3895],[3767,1,8.11839]]],[[5434.49,5445.17,0],0,true,[[497,1,32.2235],[3099,1,4.64322],[1486,1,10.2829]]],[[3573.85,5400.23,0],0,false,[[294,0,14.3094],[740,0,283.51]]],[[5089.17,1978.28,0],0,false,[[3443,1,90.1123],[634,1,84.0175]]], +[[873.466,6074.44,0],0,true,[[3588,0,10.7203],[2198,1,6.91229],[3663,1,9.28356]]],[[5891.08,5313.74,0],0,false,[[1138,0,254.009],[1727,0,164.233]]],[[4483.48,2667.68,0],0,false,[[3805,2,160.824],[1909,2,82.4651]]],[[3923.22,6021.56,0],0,false,[[2106,0,100.317],[2359,0,170.692]]],[[56.3013,7329.41,0],0,true,[[3020,0,78.9572],[1484,0,25.4562],[2186,0,12.4542]]], +[[1537.15,6858.83,0],0,true,[[2873,1,26.3319],[2587,1,152.354],[3631,1,4.65427]]],[[942.538,5202.7,0],0,false,[[3304,0,145.609],[176,0,334.878]]],[[6787.8,4251.58,0],0,false,[[456,0,229.477],[1200,0,110.916]]],[[2166.32,5464.68,0],0,false,[[3754,1,48.8069],[1761,1,23.7873]]],[[1451.48,4280.75,0],0,false,[[1995,0,287.392],[579,0,39.2403]]], +[[6843.73,4347.11,0],0,true,[[1197,0,110.916],[2924,0,4.62217],[2532,0,5.18467]]],[[6638.39,218.567,0],0,true,[[232,1,24.3051],[3251,1,381.822],[3870,1,15.1179]]],[[4233.05,6241.9,0],0,true,[[600,0,16.7343],[3043,0,46.3108],[2725,0,7.40225]]],[[2624.65,1912.38,0],0,false,[[1416,1,54.3616],[2276,1,201.733]]],[[8094.34,1259.75,0],0,true,[[2176,0,10.308],[3405,0,10.8411],[757,0,10.0082]]], +[[4557.86,2273.57,0],0,false,[[118,0,4.75891],[2693,0,39.2867]]],[[5757.28,1857.58,0],0,true,[[3507,0,28.8548],[3340,0,55.2973],[833,1,18.0812]]],[[6297.27,5907.92,0],0,false,[[2491,0,74.7881],[178,0,49.3773]]],[[5520.72,6684.3,0],0,true,[[2618,1,43.6144],[2617,1,9.71554],[1397,1,5.59032]]],[[4317.17,2885.79,0],0,true,[[221,1,33.0255],[2951,1,7.16947],[684,1,12.9362]]], +[[4007.93,8070.21,0],0,false,[[3459,0,17.6642]]],[[2215.14,6415.58,0],0,false,[[2300,0,96.3457],[165,1,14.3484]]],[[3325.48,2171.57,0],0,false,[[1449,1,194.756],[1614,1,58.9625]]],[[4332.61,2959.35,0],0,true,[[3408,1,14.6749],[1529,1,10.1738],[885,1,8.14721]]],[[4005.01,5389.84,0],0,true,[[3147,1,38.3975],[3573,1,24.7923],[2891,1,6.7226]]], +[[8069.08,4549.26,0],0,true,[[2150,1,117.158],[2941,1,29.3012],[646,1,18.3712]]],[[2886.56,3769.02,0],0,true,[[2216,0,7.97745],[3840,0,33.3009],[2531,0,10.4916]]],[[2768.98,7382.8,0],0,false,[[2798,1,195.762],[3789,1,25.5164]]],[[930.219,1762.5,0],0,false,[[3040,0,185.064],[2785,1,17.8697]]],[[3549.06,1025.43,0],0,false,[[1943,0,138.451]]], +[[4229.71,7500.83,0.000244141],0,false,[[3916,0,19.5572],[3452,0,14.6755],[1628,0,11.0745]]],[[6096.9,899.325,0],0,true,[[3349,0,8.61356],[2202,0,4.3569],[1282,0,5.72351]]],[[5009.28,4230.33,0],0,false,[[972,0,153.977],[2922,0,103.686]]],[[3803.7,3522.74,0],0,false,[[3706,1,11.8022],[1489,1,6.53025]]],[[4375.89,1990.77,0],0,true,[[3139,2,215.996],[1978,2,31.0698],[2872,2,10.6248]]], +[[7436.9,3116.64,0],0,true,[[3338,1,4.19725],[3197,1,151.896],[1891,1,4.51389]]],[[5806.62,6411.6,0],0,true,[[2591,1,14.9587],[3885,1,158.716],[1020,1,11.4284]]],[[7939.5,1542.62,0],0,true,[[177,0,13.0685],[1295,0,174.143],[3167,0,5.12029]]],[[6280.83,4856.92,0],0,true,[[3090,0,275.785],[3185,0,26.7711],[2723,0,14.1921]]],[[3784.66,619.57,0],0,false,[[2001,0,210.19],[936,0,92.9454]]], +[[565.003,7.91011,0],0,true,[[1384,2,5.88201],[2745,0,70.9707],[344,2,16.6555]]],[[4739.36,2864.19,0],0,true,[[2647,0,17.234],[3474,0,293.132],[2369,0,2.43542]]],[[4796.65,1094.94,0],0,false,[[1409,0,11.703],[546,0,6.65187]]],[[4562.36,4560.78,0],0,true,[[665,1,27.3009],[2930,1,65.3303],[240,1,9.00932]]],[[5608.35,1099.14,0],0,false,[[744,1,60.5946],[94,1,143.193]]], +[[6891.99,1937.43,0],0,true,[[1697,0,6.64294],[674,0,73.4017],[451,0,13.3718]]],[[1977.5,761.808,0],0,true,[[3494,2,283.142],[3111,2,30.5286],[2584,2,12.0731]]],[[3456.93,2274.42,0],0,true,[[1121,1,22.5793],[2064,1,40.149],[3774,1,9.27205]]],[[3913.08,1358.87,0],0,true,[[3516,0,8.92343],[995,0,3.40425],[2530,0,14.8817]]],[[7137.79,4380.37,0],0,true,[[2803,1,24.8573],[3803,1,79.6851],[259,1,11.2132]]], +[[3410.76,2229.55,0],0,true,[[2382,1,19.4389],[1121,1,41.9075],[194,1,10.5529]]],[[4221.28,1.36186,0],0,false,[[1070,0,331.965]]],[[5265.82,7373.94,0],0,false,[[1071,0,116.003],[260,2,14.4311]]],[[1147.2,2301.11,0],0,false,[[1758,1,21.6121],[301,1,169.044]]],[[4610.4,1998.84,0],0,true,[[3831,0,110.63],[2125,0,10.6722],[1424,0,9.93538]]], +[[6436.94,5479.05,0],0,false,[[1864,0,159.811],[3091,0,47.1624]]],[[4441.36,5394.97,0],0,false,[[2751,0,81.9893],[2524,0,208.331]]],[[1630.21,3226.74,0],0,true,[[1793,0,28.2863],[91,0,77.5173],[1769,0,10.5131],[2474,0,14.6569]]],[[4436.1,6304.18,0],0,true,[[2615,0,8.02302],[3537,0,73.2817],[400,0,3.73491]]],[[3378.54,2656.86,0],0,true,[[340,0,27.8644],[839,0,26.3807],[2126,0,43.5573]]], +[[4272.81,4247.55,3.233],0,false,[[751,0,18.2038],[96,0,115.809]]],[[636.93,1509.79,0],0,false,[[3281,0,223.811],[3377,0,286.83]]],[[2358.28,5027.17,0],0,false,[[943,0,281.733],[1298,0,305.966]]],[[5173.95,7938.78,0],0,true,[[1983,0,15.1791],[575,0,113.698],[1845,2,23.142]]],[[2644.13,3652.48,0],0,true,[[3016,1,26.9213],[376,1,48.8729],[2401,1,14.1311]]], +[[3887.68,5922.77,0],0,false,[[2436,1,40.5607],[3376,1,78.3431]]],[[2875.1,3173.56,0],0,false,[[2490,0,12.4413],[202,1,6.16811]]],[[5765.27,6082.49,0],0,true,[[785,1,117.448],[2143,1,29.1412],[478,1,6.45355]]],[[2823.37,7080.96,0],0,false,[[2165,0,64.991],[2706,0,126.051]]],[[2585.56,4279.48,0],0,false,[[55,0,229.233],[182,0,16.8207]]], +[[2009.15,3620.52,0],0,true,[[2633,0,7.63548],[2750,0,97.8191],[352,0,9.52516]]],[[200.831,5343.84,0],0,true,[[2511,0,272.045],[918,0,19.6854],[1624,0,10.9236]]],[[2696.67,4233.22,0],0,false,[[3482,0,114.951],[2093,0,148.233]]],[[6774.96,2914.32,0],0,true,[[205,1,174.182],[3481,1,17.371],[3621,1,20.746]]],[[5246.19,4167.8,0],0,false,[[2495,1,11.5853],[3798,0,160.617]]], +[[6713.05,7324.46,0],0,false,[[1091,1,10.9638],[3048,0,276.248]]],[[5263.94,1796.94,0],0,false,[[2412,1,253.348],[8,1,16.6281]]],[[3357.84,4977.39,0],0,true,[[1844,1,9.56753],[2887,1,201.417],[967,1,17.9031]]],[[5397.67,5848.35,0],0,false,[[1639,0,96.8861],[3898,0,171.203]]],[[2792.69,3274.3,0],0,true,[[3166,1,29.8588],[474,1,87.2653],[942,1,30.1475]]], +[[3584.12,8010.83,0],0,false,[[3532,1,263.557],[168,1,19.5082]]],[[2806.38,1945.21,0],0,false,[[3193,0,25.0883],[1010,0,135.381]]],[[5834.24,7651.32,0],0,false,[[902,0,21.7716],[3323,0,163.142]]],[[2742.97,979.649,0],0,false,[[2187,0,20.2863],[3276,0,158.951]]],[[3963.12,8060.91,0],0,false,[[278,0,221.498],[3459,0,28.1811]]], +[[3212.16,7179.41,0],0,false,[[1278,1,31.3059],[249,1,34.1931]]],[[4281.98,2141.06,0],0,false,[[3426,0,147.909],[1661,0,187.888]]],[[2725.4,2511.94,0],0,false,[[374,1,25.0484],[2102,1,23.1413]]],[[3201.7,7208.9,0],0,true,[[401,1,25.0097],[1275,1,31.3059],[2978,1,7.50987]]],[[402.384,1328.82,0],0,false,[[1019,0,62.7661],[3893,0,30.6642]]], +[[4733.43,3510.18,0],0,false,[[217,0,15.0479],[3793,1,10.2577]]],[[519.007,3469.74,0],0,true,[[1647,0,287.982],[290,0,6.89429],[357,1,10.8053]]],[[6102.61,899.06,0],0,true,[[3349,0,14.3358],[760,0,18.0574],[1221,0,5.72351],[2202,0,2.39525],[3098,0,4.07265]]],[[4617.38,4479.39,0],0,false,[[2315,0,97.6791],[2467,0,148.926]]],[[2505.65,7467.59,0],0,true,[[3301,0,64.8977],[429,0,18.2595],[2156,0,18.264],[1014,0,15.7241]]], +[[7787.04,7230.48,0],0,true,[[1052,0,15.13],[1368,0,174.698],[3075,0,3.71639]]],[[7664.12,3517.33,0],0,true,[[2223,0,12.1812],[3188,0,67.1587],[2243,0,7.94475]]],[[5787.46,4344.67,0],0,false,[[2091,1,75.1052],[2813,1,99.4382]]],[[5635.64,6040.37,0],0,false,[[1182,0,151.096],[2157,0,164.722]]],[[2169.29,5339.15,0],0,false,[[719,1,9.93932],[1719,0,22.2575]]], +[[3369.94,257.462,0],0,true,[[1378,1,18.7624],[304,1,87.4252],[2262,1,11.2748]]],[[2193.79,4003.96,0],0,true,[[1928,0,44.2997],[1656,0,16.5312],[3017,0,26.7075]]],[[558.154,8036.42,0],0,true,[[960,0,7.06356],[2730,0,21.8216],[505,0,3.96304]]],[[3482.83,3516.13,0],0,false,[[1907,0,386.38],[1342,0,157.793]]],[[882.731,1769.32,0],0,false,[[3041,1,77.2556],[1683,1,28.4403]]], +[[7800.53,1475.19,0],0,true,[[1227,0,174.143],[766,0,19.4678],[843,0,21.5604],[2458,0,17.7258]]],[[4458.76,1472.21,0],0,true,[[2346,0,138.59],[1022,0,23.9705],[2240,0,12.78]]],[[3619.06,1952.5,0],0,false,[[3371,0,18.0217],[2011,0,147.729]]],[[2533.55,4783.29,0],0,false,[[1252,0,305.966],[1822,0,17.8592]]],[[7991.6,4534.78,0],0,true,[[419,1,11.3531],[1998,1,26.4762],[2826,1,24.9191]]], +[[1404.3,6897.33,0],0,false,[[2510,0,16.8652],[3108,0,193.737]]],[[5270.53,420.699,0],0,true,[[2756,0,21.1825],[573,0,374.735],[1741,0,79.6605]]],[[6102.45,5046.25,0],0,false,[[887,1,195.948],[2960,1,363.083]]],[[6370.34,5457.63,0],0,false,[[607,0,12.9597],[852,0,19.8268]]],[[4030.04,3646.48,0],0,true,[[2716,1,9.72549],[3890,1,141.436],[2072,1,20.6824]]], +[[357.926,279.76,0],0,false,[[92,0,24.361],[1306,0,300.74]]],[[380.262,579.629,0],0,false,[[1305,0,300.74],[2908,0,240.466]]],[[4035.71,4141.08,0],0,true,[[2036,1,24.8623],[3302,2,9.26916],[3177,2,15.6812]]],[[7186.25,4383.72,0],0,true,[[2030,1,282.653],[2803,1,23.7139],[2304,1,9.60595]]],[[443.422,2512.67,0],0,true,[[1046,0,18.7791],[1654,0,85.1532],[21,0,10.6839]]], +[[2630.31,7738.44,0],0,false,[[588,0,79.2734],[1043,0,45.6847]]],[[149.792,5105.82,0],0,false,[[3093,1,230.967],[1605,1,62.2202]]],[[5556.02,6270.96,0],0,false,[[59,0,104.002],[617,0,71.9191]]],[[5747.57,1842.28,0],0,false,[[833,1,21.4844],[3352,1,40.7093]]],[[4348.62,7015.9,0],0,true,[[2003,0,15.8389],[466,1,15.0413],[224,0,46.2046]]], +[[5539.94,4362.04,0],0,false,[[423,1,26.0996],[3509,1,19.3189]]],[[3641.14,5108.24,0],0,false,[[2739,1,17.8661],[967,1,302.027]]],[[4022.88,863.111,0],0,false,[[2316,0,297.846],[2823,0,245.792]]],[[2485.3,2057.68,0],0,false,[[865,1,368.643],[1752,1,77.7992]]],[[6327.9,2127.33,0],0,false,[[2261,1,141.065],[2757,1,121.244]]], +[[368.415,3906.15,0],0,true,[[2592,0,67.7778],[496,0,8.07019],[2748,0,10.6526]]],[[2590.9,6857.34,0],0,true,[[1530,0,9.8428],[611,0,93.9877],[3720,0,7.40649]]],[[4696.88,5862.87,0],0,true,[[796,0,32.0703],[3162,0,3.98263],[3262,0,6.83225]]],[[865.974,8099.42,0],0,false,[[60,0,70.3406],[2410,0,260.668]]],[[907.798,6185.03,0],0,true,[[872,0,44.7641],[553,0,20.7852],[1912,0,46.4055]]], +[[199.243,6863.95,0],0,false,[[2005,0,155.437],[2619,0,78.5086]]],[[5687.34,2906.9,0],0,true,[[2162,1,4.93771],[3358,0,34.3004],[1692,1,8.68565]]],[[573.234,4416.93,0],0,true,[[248,0,53.7751],[2931,0,11.5428],[3284,0,11.1428],[3643,0,17.3533]]],[[2239.47,901.129,0],0,true,[[1875,0,15.2901],[3494,2,13.984],[2146,2,17.2287]]],[[5093.43,6817.73,0],0,true,[[2061,0,43.0144],[3388,1,10.6462],[2741,1,9.59629]]], +[[4019.69,8012.36,0],0,false,[[1005,0,30.294],[3459,0,62.0669]]],[[4813.29,233.596,0],0,false,[[1668,1,34.2897],[3401,1,154.482]]],[[3499.99,2118.1,0],0,true,[[1551,0,19.4177],[107,0,5.53376],[2563,0,8.03471]]],[[4387.14,8109.83,0],0,false,[[615,0,24.2327]]],[[1444.66,3373.94,0],0,true,[[2228,1,10.4441],[900,1,28.0647],[569,1,8.67647]]], +[[1601.55,8035.4,0],0,false,[[2641,1,189.653],[2152,1,18.6001]]],[[3590.72,2446.71,0],0,false,[[1788,0,77.6068],[3428,0,70.4592]]],[[7337.28,784,0],0,true,[[2796,0,28.2716],[3630,0,231.501],[332,0,16.9263]]],[[2325.42,6064.37,0],0,false,[[2940,0,183.43],[1149,0,136.994]]],[[4694.8,5849.21,0],0,true,[[3262,0,7.09697],[1961,0,5.69431],[1610,0,3.95347]]], +[[2848.66,3215.01,0],0,true,[[2232,0,12.7499],[1345,0,8.35791],[3647,0,12.1374]]],[[5485.7,3231.96,0],0,false,[[2831,0,322.525],[3558,0,188.381]]],[[3582.81,3588,0],0,false,[[1293,0,157.793],[1366,0,198.938]]],[[363.587,4718.94,0],0,true,[[2450,0,19.4266],[334,0,15.3922],[3339,0,0.749458],[48,0,16.0301]]],[[336.33,4778.75,0],0,true,[[2704,0,4.03465],[1720,0,97.9361],[3806,0,7.83964]]], +[[2846.01,3207.1,0],0,true,[[3647,0,20.4538],[243,0,31.8721],[1340,0,8.35791]]],[[6423.04,1139.99,0],0,false,[[349,1,240.688],[156,1,107.031]]],[[7058.99,1532.58,0],0,false,[[2313,0,22.1988],[2122,0,162.617]]],[[1875.61,7224.19,0],0,false,[[3839,1,28.7016],[1974,1,28.3645]]],[[4889.96,897.881,0],0,true,[[134,0,29.392],[3406,1,9.74789],[1773,1,18.3928]]], +[[7312.98,1567.48,0],0,false,[[2462,0,355.886],[3015,0,234.93]]],[[4048.08,5535.55,0],0,true,[[669,1,59.8176],[2577,2,15.6914],[3598,2,11.5288]]],[[5233.71,3502.55,0],0,false,[[2056,0,184.098],[3391,0,134.566]]],[[4032.2,4059.3,0],0,true,[[767,2,20.1756],[2898,2,18.1649],[3027,2,6.83753]]],[[2068.69,4936.74,0],0,false,[[3651,0,232.235],[1459,1,13.6131]]], +[[4403.7,3195.14,0],0,true,[[498,0,132.056],[3182,0,28.0822],[2629,0,11.3932],[1148,0,10.521]]],[[5438.08,6673.87,0],0,true,[[3797,0,66.0492],[2815,0,19.0165],[1483,0,112.08]]],[[6583.29,4342.16,0],0,true,[[3444,1,251.711],[2400,1,27.9399],[2388,1,16.7902]]],[[1367.23,1841.91,-1.09216],0,true,[[2048,2,10.1815],[1173,2,15.5925],[3268,2,3.54175]]],[[2938.01,1625.44,0],0,true,[[815,1,27.5526],[2453,1,207.728],[1434,1,4.78655],[319,1,11.4536]]], +[[2828.51,3657.03,0],0,true,[[2533,0,13.3913],[3430,0,15.322],[105,1,16.3835],[3435,1,15.9191]]],[[4252.03,1941.72,0],0,true,[[402,2,29.8194],[2079,2,48.5511],[2184,2,6.43232]]],[[2022.62,5708.2,0],0,false,[[3412,1,12.3188],[3493,1,12.3188]]],[[4357.17,3557.69,2.78467],0,false,[[3859,0,163.943],[1944,0,280.792]]],[[3935.06,5409.47,0],0,false,[[2891,0,66.7518],[740,0,98.2335]]], +[[8028.67,7690.78,0],0,false,[[62,0,26.4119]]],[[3750.59,3483.14,0],0,true,[[1342,0,198.938],[2692,1,10.3491],[2415,1,12.2146]]],[[3387.09,6071.99,0],0,true,[[3286,0,19.3725],[1934,0,74.8292],[2652,0,9.98598]]],[[7786.57,7384.17,0],0,false,[[1285,0,174.698]]],[[6410.96,8189.37,0],0,false,[[1970,0,185.012]]], +[[3485.29,1572.35,0],0,true,[[351,0,11.8977],[197,2,17.1039],[2630,2,13.1692]]],[[2956.42,7455.91,0],0,false,[[1914,0,80.1108],[2569,0,90.8347]]],[[2967.41,2900.63,0],0,false,[[2163,0,250.221],[3867,0,85.5609]]],[[2906.47,1853.4,0],0,true,[[3277,1,5.13066],[1010,1,4.59465],[2646,1,8.13918],[2638,1,4.60449]]],[[3762.1,8188.27,0],0,false,[[1813,1,91.8704]]], +[[5580.76,902.365,0],0,false,[[1578,0,281.819],[789,0,135.702]]],[[944.467,4236.47,0],0,false,[[3359,0,77.3324],[3283,0,140.38]]],[[7857.23,6635.56,0],0,true,[[2916,0,91.8647],[26,1,11.9302],[327,1,17.5873]]],[[3365.94,239.132,0],0,true,[[1968,1,10.2612],[1290,1,18.7624],[2262,1,7.8078]]],[[2131.72,5527.35,0],0,true,[[430,1,148.293],[3754,1,22.8764],[593,1,7.78152]]], +[[7089.95,7017.16,0],0,true,[[440,0,14.899],[3711,0,63.8762],[525,1,25.5504]]],[[3564.12,6604.92,0],0,false,[[804,1,81.7718],[3336,1,13.781]]],[[5999.41,7598.66,0],0,false,[[3059,0,119.984],[1858,0,29.6319]]],[[5800.53,2884.96,0],0,true,[[3895,1,14.2208],[3519,0,13.7194],[3843,1,12.2335]]],[[562.173,2.75326,0],0,false,[[344,2,21.2246],[1230,2,5.88201]]], +[[2872.87,3263.88,0],0,true,[[2325,0,20.9525],[890,0,21.5058],[1385,0,0.0640241],[1895,0,21.5086],[2325,0,21.0163]]],[[4941.31,4618.27,0],0,true,[[1842,1,28.1012],[3392,1,20.8003],[3389,1,8.95197],[1650,1,12.2102]]],[[3398.36,4723.93,0],0,true,[[649,0,8.6001],[778,0,11.6612],[63,0,18.0149]]],[[1690.31,2396.96,0],0,false,[[346,0,182.506],[3291,0,36.2137]]],[[5637.51,6302.31,0],0,true,[[676,0,11.757],[1892,1,7.58302],[2026,1,3.86053]]], +[[3574.66,3829.99,0],0,false,[[964,0,156.339],[364,0,124.604]]],[[6716.21,2491.06,0],0,false,[[2188,0,252.251]]],[[4486.84,3132.4,0],0,true,[[2484,2,32.725],[3298,2,34.5319],[262,2,16.6824],[368,2,12.7457],[2913,2,17.1271]]],[[1556.79,4527.98,0],0,false,[[1473,0,196.996],[1611,0,26.9611]]],[[5134.52,5244.46,0],0,false,[[1936,1,62.3092],[403,1,174.494]]], +[[7988.59,5779.23,0],0,false,[[1057,1,219.326],[237,1,58.8018]]],[[7687.19,6357.74,0],0,true,[[801,0,16.7748],[777,0,7.42366],[820,0,18.3815]]],[[5515.14,6684,0],0,true,[[792,1,115.719],[2617,1,7.19199],[1208,1,5.59032]]],[[880.286,3696.41,0],0,true,[[2797,0,7.30879],[2358,0,9.62651],[3058,0,3.3388]]],[[7998.74,6525.91,0],0,true,[[2837,1,24.4958],[2408,1,46.421],[1836,1,3.00041]]], +[[4694.04,3228.24,0],0,false,[[661,1,10.1797],[1404,0,24.1975]]],[[5294.11,351.906,0],0,true,[[2993,0,297.856],[2381,0,17.7175],[1945,0,8.89981]]],[[1092.83,3929.9,0],0,false,[[1451,0,174.224],[3617,0,112.415]]],[[1482.29,3342.31,0],0,false,[[3601,1,19.3709],[2905,1,28.7214]]],[[4702.16,3250.12,0],0,false,[[1400,0,24.1975],[2755,0,34.5012]]], +[[7997.09,5359.54,0],0,false,[[1637,0,365.541],[3638,0,47.1545]]],[[7387.73,6032.39,0],0,true,[[3782,1,186.579],[3028,1,13.5131],[2822,1,4.52011]]],[[1582.3,549.896,0],0,false,[[1853,2,255.105],[3329,2,32.6652]]],[[6195.28,1484.08,0],0,true,[[2553,0,187.583],[3506,0,11.3469],[2414,0,16.1389]]],[[4786.21,1100.22,0],0,false,[[3370,0,21.4278],[1232,0,11.703]]], +[[6261.9,5341.8,0],0,false,[[444,1,243.331],[2233,1,11.791]]],[[3545.69,2059.71,0],0,false,[[2087,0,28.2137],[2828,0,56.2241]]],[[1905.6,3927.33,0],0,false,[[2875,0,227.314]]],[[4919.59,1743.01,0],0,false,[[2078,0,8.93893],[2294,0,127.519]]],[[4509.68,2485.95,0],0,false,[[499,1,32.4662],[2028,1,6.25971]]], +[[2992.77,1112.93,0],0,true,[[409,0,13.3959],[1050,0,7.96121],[3031,0,9.26695]]],[[2654.02,1957.74,0],0,false,[[3094,1,14.9886],[1203,1,54.3616]]],[[6630.53,374.411,0],0,false,[[1001,0,181.933],[1110,0,23.3753]]],[[4328.43,3065.14,0],0,false,[[1999,1,24.1692]]],[[4473.89,7999.09,0],0,true,[[1935,0,22.691],[971,0,24.9522],[274,0,13.0685]]], +[[364.732,4674.69,0],0,true,[[2454,0,18.4832],[245,0,24.1893],[1705,0,0.749183],[2450,0,24.8561]]],[[1340.91,7160.35,0],0,false,[[3738,0,219.767],[927,0,105.199]]],[[510.3,3707.14,0],0,false,[[290,0,235.455],[3394,0,94.4492]]],[[4448,4687.83,0],0,false,[[2663,1,96.4191],[258,1,18.4756]]],[[4610.5,2008.71,0],0,true,[[2125,0,20.2805],[2821,0,62.5713],[1244,0,9.93538]]], +[[3745.75,1710.93,0],0,true,[[2544,2,24.5199],[1609,2,120.753],[3780,2,14.0998]]],[[2763.35,3160.93,0],0,true,[[474,1,29.9108],[3775,1,137.743],[3522,1,21.0619],[116,1,17.536]]],[[2801.93,7326.68,0],0,false,[[3778,0,57.3823],[2338,0,25.812]]],[[7604.89,1144.08,0],0,false,[[1437,0,133.12],[501,0,45.4702]]],[[3972.51,3794.87,0],0,true,[[1550,1,17.111],[2263,1,4.56813],[1726,1,12.0201]]], +[[4512.39,4402.45,0],0,false,[[2930,1,146.901],[2610,1,166.662]]],[[3251.87,3996.25,0],0,false,[[2950,0,254.425],[1085,0,142.435]]],[[4287.64,4023.55,0],0,false,[[1504,1,21.706],[2955,1,10.1381]]],[[3757.03,1447.32,0],0,true,[[3148,1,21.2779],[941,1,221.71],[558,1,14.0611]]],[[2938.51,1620.68,0],0,false,[[1359,1,4.78655],[319,0,9.31901]]], +[[3129.55,6729.79,0],0,false,[[1142,0,82.0962],[3645,0,337.306]]],[[968.345,7541.39,0],0,false,[[1636,0,31.3754]]],[[7638.6,1237.06,0],0,false,[[554,0,63.399],[1428,0,133.12]]],[[4090.03,1877.03,0],0,false,[[2079,2,126.412],[832,2,338.736]]],[[359.333,4108.38,0],0,true,[[1942,0,15.9762],[1963,0,133.303],[3025,0,9.83886]]], +[[607.792,6121.13,0],0,false,[[3417,1,201.277],[988,1,347.831]]],[[1316.56,3190.25,0],0,false,[[900,1,201.551],[3814,1,114.13]]],[[1440.08,1181.73,0],0,true,[[323,0,366.194],[670,1,17.4012],[849,1,13.3334]]],[[3939.5,4466.67,0],0,false,[[414,0,68.5479]]],[[4920.59,2607.99,0],0,true,[[3727,0,140.637],[1570,1,14.7031],[3582,1,17.4248]]], +[[7125.76,6102.33,0],0,true,[[2944,0,180.809],[2387,0,8.81033],[2620,0,7.22771]]],[[5123.15,6808.84,0],0,false,[[954,1,179.353],[2741,1,22.4147]]],[[7181.26,2952.05,0],0,false,[[930,1,222.869],[166,1,216.389]]],[[5000.84,2765.95,0],0,true,[[1640,1,104.64],[3474,1,5.24267],[2657,1,14.573]]],[[3156.75,2076.17,0],0,false,[[2133,1,165.021],[1212,1,194.756]]], +[[541.528,98.0846,0],0,false,[[706,0,92.5617],[1868,0,120.158]]],[[1202.46,4064.99,0],0,true,[[686,0,10.2196],[1402,0,174.224],[3273,0,6.30277]]],[[2870.61,4208.09,0],0,false,[[2189,1,55.3368],[275,1,24.4985]]],[[1023.13,6041.09,0],0,false,[[2634,1,20.841],[1985,1,125.254]]],[[2391.38,6620.81,0],0,true,[[2601,1,20.499],[165,1,257.051],[2350,1,9.7818],[606,1,11.8074],[683,1,15.2056]]], +[[8013.28,237.078,0],0,false,[[397,1,45.4236],[2180,1,24.4995]]],[[392.448,7215.02,0],0,true,[[1898,0,26.9612],[753,0,47.5052],[434,0,13.9784]]],[[5104.01,8109.75,0],0,false,[[261,2,80.5051],[325,2,18.8751]]],[[2800.29,3580.38,0],0,false,[[3907,0,39.4852]]],[[2074.68,4924.52,0],0,true,[[2285,1,27.8916],[2925,1,301.197],[1354,1,13.6131]]], +[[3226.96,1433.92,0],0,true,[[373,2,33.8055],[1021,2,225.515],[2800,2,15.4039],[108,2,15.2052]]],[[3143.33,7626.41,0],0,true,[[1811,0,18.553],[124,1,10.3128],[2607,1,6.59549]]],[[1465.51,3328.96,0],0,false,[[81,0,20.0056],[2051,0,27.4316]]],[[5737.48,6131.4,0],0,true,[[2143,1,27.1936],[2026,1,196.507],[1182,1,5.87109]]],[[3288.41,4262.3,0],0,true,[[1896,0,125.4],[2950,0,27.7646],[945,0,13.1541]]], +[[4061.05,5336.64,0],0,false,[[3572,2,8.2877],[27,0,7.14471]]],[[4417.08,3775.07,0],0,false,[[2614,0,74.9604],[2967,0,121.832]]],[[7514.71,6486.09,0],0,true,[[911,1,28.7357],[53,1,14.5202],[921,1,10.5362]]],[[8031.37,230.518,0],0,false,[[2180,1,6.37118],[1780,0,76.8917]]],[[2635.69,3104.93,0],0,false,[[594,0,84.8524],[1774,0,121.198]]], +[[3123.88,5560.02,0],0,false,[[3071,0,126.312],[2170,0,66.8508]]],[[4024.73,4183.92,0],0,true,[[3524,1,19.9155],[1732,1,12.4196],[2013,2,13.9184]]],[[4003.1,4528.63,0],0,true,[[3900,0,10.5347],[3640,0,55.7652],[3181,0,6.8084]]],[[1709.66,4645.96,0],0,false,[[255,0,77.4912],[1393,0,196.996]]],[[5163.38,7925.43,0],0,false,[[1845,2,27.754],[2999,2,235.099]]], +[[3462.04,5.0329,0],0,false,[[1968,1,252.338]]],[[1557.47,537.379,0],0,false,[[3329,2,4.84763],[1904,0,5.65467]]],[[880.193,4184.27,0],0,true,[[1838,0,28.7849],[2007,0,67.7038],[807,0,10.1763]]],[[5986.02,4865.37,0],0,true,[[3367,0,64.0313],[1857,0,6.67107],[3090,0,19.53]]],[[234.803,1177.83,0],0,true,[[3087,0,194.401],[2439,0,25.968],[3836,0,20.3955]]], +[[4486.57,4686.52,0],0,true,[[3783,1,19.6537],[410,1,30.9835],[2736,1,11.0284]]],[[4392.03,2939.76,0],0,true,[[850,2,53.0174],[2194,2,10.3387],[2666,2,18.6056]]],[[1711.9,2375.48,0],0,false,[[3046,0,216.856],[3291,0,21.837]]],[[5375.55,6615.86,0],0,false,[[1356,0,112.08]]],[[74.6351,7346.92,0],0,true,[[1194,0,25.4562],[3002,0,118.342],[2186,0,13.6033]]], +[[3210.42,860.952,0],0,true,[[1507,0,22.7794],[443,0,5.8856],[745,0,1.54454],[2210,0,7.4462]]],[[5435.45,5455.4,0],0,true,[[1187,1,10.2829],[2295,1,245.704],[3099,1,6.34371]]],[[1.28799,850.168,0],0,false,[[2528,0,374.686]]],[[4125.37,5279.04,0],0,true,[[3737,1,31.2483],[2372,1,74.4163],[2561,1,4.58654]]],[[3809.05,3526.15,0],0,true,[[788,1,49.6251],[3706,1,18.1751],[1223,1,6.53025]]], +[[2775.21,7030.44,0],0,true,[[1778,0,29.9967],[3704,0,70.0372],[3239,0,16.0348]]],[[7460.53,2964.96,0],0,true,[[1581,1,16.6282],[215,1,29.3078],[724,1,12.5196]]],[[922.463,4033.52,0],0,false,[[3458,0,47.5299],[3123,0,10.1127]]],[[2717.69,5174.17,0],0,false,[[491,0,163.9],[835,0,38.0866]]],[[2855,4146.42,0],0,true,[[999,1,13.383],[3486,0,30.95],[1710,1,13.6411]]], +[[4076.28,5158.33,0],0,false,[[1687,0,78.675],[3326,0,127.612]]],[[3086.35,2867.34,0],0,true,[[3880,0,13.7866],[1540,0,5.82923],[228,0,10.9946]]],[[668.668,3944.66,0],0,false,[[2394,0,136.324],[917,0,294.173]]],[[6281.08,4269.26,0],0,false,[[1169,0,77.4155],[487,0,47.9477]]],[[7358.21,3255.54,0],0,true,[[1178,1,230.905],[1532,1,10.6271],[223,1,20.9619],[3136,1,14.8318]]], +[[4107.99,5222,0],0,false,[[2763,2,52.8697],[605,2,79.8341]]],[[6450.38,2059.89,0],0,true,[[2456,1,13.8994],[3707,1,2.76548],[2261,1,7.70067],[322,1,9.26062]]],[[3233.15,6782.53,0],0,false,[[697,1,142.591],[3641,1,153.431]]],[[8018.57,7633.6,0],0,false,[[2675,1,7.33558],[62,0,31.8642]]],[[4298.23,4042.26,0],0,true,[[957,1,4.78059],[1432,1,21.706],[2672,1,21.4359]]], +[[275.798,1159.86,0],0,true,[[14,0,22.3362],[2988,0,133.735],[2694,0,10.121],[507,0,19.661]]],[[6309.61,6612.42,0],0,false,[[463,1,6.29676],[3279,0,254.791]]],[[3233.09,861.018,0],0,true,[[2090,0,8.06231],[1485,0,22.7794],[3552,0,5.06608]]],[[7246.73,6291.78,0],0,true,[[1786,0,13.1846],[721,1,5.86684],[1061,1,8.82464]]],[[869.405,3473.86,0],0,true,[[1126,1,81.0722],[77,1,27.2557],[2397,1,15.9999]]], +[[2447.95,2486.59,0],0,false,[[3274,0,177.11],[951,0,309.259]]],[[2412.71,7752.94,0],0,false,[[2765,0,13.0941]]],[[432.792,7173.92,0],0,false,[[1519,0,232.12],[293,0,13.3051]]],[[4512.96,6284.39,0],0,false,[[2057,2,153.59],[3664,2,26.3406]]],[[514.145,3108.6,0],0,false,[[2038,0,68.1617],[3294,0,32.8098]]], +[[346.377,4523.39,0],0,true,[[3425,0,14.8686],[3242,0,0.751409],[1869,0,15.5859],[1595,0,17.8806]]],[[5189.01,391.17,0],0,true,[[687,0,111.667],[1106,0,3.51849],[3488,0,3.90404]]],[[5613.54,3708.29,0],0,true,[[1794,0,129.445],[2889,0,14.4847],[2781,0,15.3498]]],[[454.964,5192.92,0],0,false,[[3536,0,119.268],[3304,0,381.545]]],[[277.934,7023.07,0],0,false,[[2136,0,55.3442],[1512,0,232.12]]], +[[7083.91,5536.48,0.000305176],0,false,[[2173,0,7.02587],[33,0,7.02587]]],[[3970.86,2200.73,0],0,false,[[2787,0,153.735]]],[[3050.17,7432.46,0],0,true,[[2478,1,30.2282],[3130,1,111.105],[2569,1,18.7674]]],[[3198.88,3207.4,0],0,true,[[140,1,64.0245],[3475,1,22.4979],[3714,1,9.72514]]],[[7216.52,4171.59,0],0,true,[[800,0,16.3198],[3007,0,130.766],[3278,0,34.3052]]], +[[2926.72,3374.6,0],0,true,[[1525,0,0],[3881,0,13.0896],[3881,0,13.0896]]],[[4979.68,558.714,0],0,false,[[287,0,106.692]]],[[6872.44,6511.68,0],0,false,[[336,1,12.7592],[2231,0,107.044]]],[[4361.9,2316.51,0],0,false,[[3777,0,20.6358],[3382,0,9.5639],[1829,0,5.01326]]],[[4330.69,2949.36,0],0,true,[[1213,1,10.1738],[2492,1,9.59025],[1713,1,17.9547],[869,1,6.14207]]], +[[2592.92,6847.71,0],0,true,[[2754,0,7.91121],[3720,0,14.2124],[1321,0,9.8428]]],[[1920.12,3254.93,0],0,true,[[2255,1,291.516],[2809,1,27.6054],[2327,1,9.33543]]],[[7368.81,3255.12,0],0,true,[[1499,1,10.6271],[3037,0,251.363],[3136,0,21.0025],[223,1,18.1713]]],[[8130.48,1829.46,0],0,false,[[1107,0,88.9613],[1115,0,155.341]]],[[8001.25,5843.83,0],0,true,[[237,1,8.85324],[3009,0,84.8888],[3869,1,13.2984]]], +[[7062.27,6632.42,0],0,false,[[851,0,15.724],[191,0,188.622]]],[[5822.8,6391.89,0],0,true,[[1020,0,14.1012],[3758,0,21.8433],[836,0,13.3889]]],[[751.305,7568.56,0],0,true,[[544,0,22.2852],[3566,0,68.2484],[3745,0,11.6032]]],[[3409.81,5560,0],0,false,[[2783,0,75.8341],[3045,0,157.528]]],[[3275.13,4270.26,0],0,false,[[1109,0,259.382],[945,0,18.9197]]], +[[3092.14,2866.69,0],0,true,[[1496,0,5.82923],[228,0,5.40943],[671,0,18.8989]]],[[8066.17,6442.38,0],0,true,[[472,0,10.2339],[2848,0,99.4195],[797,1,10.9346]]],[[4348.86,6124.99,0],0,true,[[1074,2,8.77892],[1025,2,15.7779],[276,2,21.4425],[1699,2,6.54471]]],[[881.006,1525.93,0],0,false,[[3040,0,99.4441]]],[[591.664,4529.06,0],0,false,[[2367,0,52.4102],[3284,0,107.487]]], +[[2921.26,1866.59,0],0,false,[[2006,1,43.4317],[3277,1,14.7032]]],[[5470.72,2228.83,0],0,true,[[273,1,87.1067],[490,1,16.6857],[1120,1,24.5863],[1921,1,19.1063]]],[[4859.31,3983.27,0],0,true,[[913,1,29.7542],[1662,1,223.737],[2853,1,10.42]]],[[4642.79,2218.24,0],0,false,[[1102,2,59.86],[994,2,216.235]]],[[5870.69,4757.11,0],0,true,[[2377,0,71.3384],[2281,1,11.6492],[823,1,13.0663]]], +[[3959.3,3784.15,0],0,false,[[1108,1,163.757],[1429,1,17.111]]],[[3490.18,2101.37,0],0,true,[[2992,0,306.275],[1332,0,19.4177],[107,0,20.1389]]],[[4063.93,4467.04,0],0,true,[[3640,0,66.8228],[3152,2,9.61774],[3470,2,11.7826]]],[[6467.28,2493.91,0],0,true,[[251,1,18.6112],[2188,1,11.7353],[3513,1,28.348]]],[[6924.26,857.487,0],0,false,[[2834,1,23.2803],[1906,1,25.5673]]], +[[3504.8,6683.39,0],0,true,[[922,1,15.599],[2390,1,80.1065],[804,1,18.9396],[2145,1,13.2009]]],[[3134.55,7591.65,0],0,false,[[547,1,25.8416],[124,1,25.6773]]],[[1953.83,200.705,0],0,true,[[2912,0,7.21884],[856,0,169.25],[2334,0,8.91954]]],[[3659.54,5106.6,0],0,true,[[520,0,20.8827],[1878,0,22.544],[2739,1,13.5915]]],[[344.593,4412.59,0],0,true,[[2425,0,97.3738],[9,0,23.7047],[926,0,11.0758],[3314,0,10.4857]]], +[[4264.95,4020.01,0],0,false,[[2955,1,13.3803],[673,1,42.5802]]],[[3781.09,3506.88,0],0,true,[[3706,1,15.8407],[2692,1,28.6095],[3734,1,4.88246]]],[[344.315,4489.5,0],0,true,[[1575,0,9.9789],[437,0,8.58942],[1701,0,0.753383],[624,0,9.15227],[43,0,9.39062]]],[[3227.49,7437.66,0],0,false,[[889,0,13.7596],[2935,0,105.811]]],[[6235.67,6494.34,0],0,true,[[2113,0,7.35863],[3140,0,48.6343],[3716,0,4.62295]]], +[[1809.31,1978.96,0],0,false,[[1097,0,40.466],[420,0,333.679]]],[[1870.59,2707.3,0],0,false,[[3291,0,355.912],[1616,0,109.095]]],[[7693.06,3897.39,0],0,true,[[3502,0,16.1622],[1090,0,82.7137],[904,0,8.80036]]],[[266.822,7366.46,0],0,true,[[2841,0,37.1516],[1871,0,20.3778],[3420,0,8.69702]]],[[906.616,6314.32,0],0,false,[[553,0,110.171],[1984,0,119.343]]], +[[4917.96,2593.53,0],0,true,[[3582,1,31.9673],[3156,1,204.513],[1444,1,14.7031]]],[[4125.87,4185.82,0],0,true,[[551,0,10.6272],[2227,0,11.0467],[3866,1,12.8732]]],[[4097.77,3282.7,0],0,true,[[2586,1,23.9344],[581,1,150.94],[3628,1,7.6271]]],[[459.505,2004.47,0],0,false,[[727,0,161.357],[2989,0,21.5379]]],[[3167.78,7269.37,0],0,false,[[3320,1,179.101],[401,1,44.6777]]], +[[346.195,4479.73,0],0,true,[[2096,0,13.164],[1701,0,9.39119],[1562,0,9.9789],[43,0,0.753956],[3846,0,13.8089]]],[[6919.46,1682.09,0],0,false,[[891,0,165.19],[122,0,165.829]]],[[3427.45,2718.08,0],0,false,[[3680,0,220.455],[2126,0,55.3575]]],[[5448.46,654.175,0],0,false,[[3356,0,255.889],[1375,0,281.819]]],[[1923.13,1997.37,0],0,false,[[3864,1,106.908],[2643,2,3.45592]]], +[[4074.98,5312.2,0],0,false,[[3572,2,20.7428],[2763,2,43.1899]]],[[7477.12,2965.68,0],0,true,[[3725,1,11.8928],[724,1,5.33567],[640,1,6.12038],[1491,1,16.6282]]],[[4434.95,4831.17,0],0,false,[[3039,1,95.3935],[3857,1,22.1297]]],[[4537.35,3007.67,0],0,false,[[3119,1,141.609],[641,1,92.2605]]],[[3744,1038.18,0],0,false,[[3596,0,113.682],[1798,1,3.65832]]], +[[2786.14,6125.35,0],0,true,[[3427,0,199.035],[292,0,5.8529],[3288,0,17.3603]]],[[4939.47,2003.64,0],0,true,[[3124,1,16.874],[3828,1,12.6988],[3544,1,6.59197]]],[[3731.62,1855.75,0],0,true,[[3100,0,87.9674],[3261,0,19.3652],[2011,0,4.87934]]],[[2196.48,5477.09,0],0,false,[[933,0,113.108],[3259,0,34.6141]]],[[362.485,4759.79,0],0,true,[[2431,0,8.14639],[3142,0,6.27552],[1158,0,0.749169]]], +[[4769.91,3677.65,0],0,true,[[1725,1,32.0711],[3073,1,27.1216],[3887,1,37.5191]]],[[7552.72,3523.97,0],0,true,[[3037,0,78.4174],[3159,0,14.0799],[3897,0,15.4392]]],[[3700.04,2487.98,0],0,false,[[1669,1,87.7038],[2461,1,271.974]]],[[5977.93,7579.66,0],0,true,[[3324,0,138.237],[431,0,25.3122],[1858,0,11.1539]]],[[2429.67,4159.06,0],0,true,[[1975,1,209.841],[2850,1,33.772],[136,1,14.9112]]], +[[347.234,4541.23,0],0,true,[[3242,0,17.1959],[1113,0,0.749854],[1515,0,17.8806],[2282,0,19.0184]]],[[6523.34,2877.48,0],0,true,[[3771,1,102.998],[1617,1,31.5318],[2134,1,19.855]]],[[7380.6,5836.66,0],0,false,[[3029,1,9.60374],[748,0,90.8924]]],[[1833.64,6810.01,0],0,false,[[730,0,82.6158]]],[[5566.2,2761.12,0],0,false,[[2851,0,131.735],[2682,0,151.655]]], +[[6525.55,6059.89,0],0,false,[[2857,0,55.1585],[2659,0,131.022]]],[[1083.76,5713.33,0],0,false,[[3530,0,33.6242]]],[[3258.62,299.614,0],0,false,[[2262,0,125.534]]],[[4917.07,1059.62,0],0,true,[[3404,1,132.309],[2958,1,25.41],[781,1,10.7855],[2095,1,7.91019]]],[[4095.07,2987.06,0],0,false,[[1738,0,76.3418],[2328,0,162.085]]], +[[90.138,5092.58,0],0,true,[[1311,1,62.2202],[279,1,11.7146],[3901,1,17.2097]]],[[8126.72,2176.87,0],0,true,[[425,0,28.9777],[3622,0,72.6535],[3168,0,14.2654]]],[[4038.56,5417.69,0],0,true,[[1848,2,21.7395],[3110,2,20.8468],[3147,2,6.43372],[3526,2,12.69]]],[[7669.99,7876.53,0],0,true,[[662,1,23.9345],[3465,1,75.9815],[415,1,9.65774]]],[[3639.41,1653.93,0],0,false,[[1425,2,120.753],[2630,2,161.274]]], +[[4697.27,5846.16,0],0,true,[[1961,0,4.33974],[438,0,120.35],[1339,0,3.95347],[1024,0,15.9702]]],[[1539.36,4507.53,0],0,true,[[519,0,34.7351],[1947,0,89.2884],[1393,0,26.9611]]],[[8188.76,138.068,0],0,false,[[2180,1,177.061]]],[[5888.33,1593.33,0],0,true,[[3579,0,21.4744],[695,0,144.873],[580,0,11.1334]]],[[3374.32,2204.16,0],0,false,[[1212,1,58.9625],[2382,1,25.0486]]], +[[4455.05,4772.8,0],0,false,[[3670,1,6.7162],[467,0,5.03811]]],[[1908.2,2809.57,0],0,true,[[1566,0,109.095],[3608,0,27.8813],[2193,0,20.1491],[2171,0,17.3727]]],[[6493.12,2868.46,0],0,true,[[1596,1,31.5318],[446,1,340.683],[2134,1,12.6821]]],[[1396.48,7282.36,0],0,true,[[3909,0,13.562],[822,1,14.1538],[1011,1,13.0282]]],[[7503.62,2439.77,0],0,false,[[2185,0,241.026],[329,0,158.328]]], +[[2728.32,6211.12,0],0,false,[[3288,0,96.021],[1030,0,204.91]]],[[1.05265,4323.18,0],0,false,[[2684,0,156.966]]],[[2377.22,7169.71,0],0,false,[[1167,0,26.7319]]],[[2852.2,5442.96,0],0,true,[[2375,0,102.006],[2572,0,210.408],[2386,0,22.1839]]],[[189.973,5345.04,0],0,true,[[3254,0,132.933],[918,0,9.56393],[1261,0,10.9236]]], +[[3003.1,5716.22,0],0,false,[[481,0,369.812],[1168,0,149.364]]],[[5704.32,6544.38,0],0,false,[[3885,1,10.9388],[104,0,212.597]]],[[4855.95,5953.97,0],0,false,[[2258,0,15.7052],[1711,0,96.2104]]],[[4240.76,7500.44,0],0,false,[[3916,0,26.697],[1775,0,88.3514],[1220,0,11.0745]]],[[411.402,7724.87,0],0,true,[[2449,0,77.1622],[980,0,14.274],[2522,0,24.9634]]], +[[3642.38,1121.35,0],0,false,[[1151,0,6.75856],[3409,0,39.3614]]],[[5647.83,1034.74,0],0,true,[[789,0,13.4756],[1882,1,11.8515],[744,1,15.1853]]],[[8045.56,4577.07,0],0,true,[[2593,0,199.926],[3227,0,13.6927],[3240,0,18.8893]]],[[1262.75,4804.79,0],0,false,[[3204,1,157.084],[678,1,119.092]]],[[5302.83,5220.43,0],0,true,[[403,1,20.0218],[497,1,228.649],[739,1,18.2159]]], +[[414.923,5817.21,0],0,false,[[3250,0,149.382]]],[[939.869,7554.56,0],0,true,[[1703,0,30.0677],[1436,0,31.3754],[1807,0,10.9311]]],[[7680.18,5183.81,0],0,false,[[1825,0,214.989],[1405,0,365.541]]],[[2472.43,3870.68,0],0,false,[[3715,0,87.6684]]],[[5302.14,5833.08,0],0,false,[[756,0,139.446],[1268,0,96.8861]]], +[[5071.57,2840.27,0],0,false,[[3769,1,28.2266],[1448,1,104.64]]],[[2125.61,3610.38,0],0,true,[[2750,0,20.3411],[3079,0,278.132],[2945,0,15.2209]]],[[1797.45,7231.24,0],0,true,[[3054,1,68.3804],[2604,1,29.7951],[3154,1,11.6511]]],[[4539.95,2534.09,0],0,false,[[117,1,60.7096],[499,1,27.3409]]],[[7534.4,7798.58,0],0,false,[[1035,0,125.866],[1104,0,143.082]]], +[[1175.89,2097.69,0],0,true,[[301,1,42.4227],[2632,1,13.2546],[460,1,9.79249],[3436,1,16.3336]]],[[4095.47,5787.02,0],0,false,[[3332,2,26.8131],[3192,2,19.1382]]],[[543.751,3198.44,0],0,false,[[3294,0,62.8145],[1281,0,287.982]]],[[4189.45,4145.64,0],0,false,[[2660,0,108.343],[551,0,67.5562]]],[[4411.59,4769.27,0],0,false,[[125,0,19.2025],[3819,0,153.829]]], +[[4952.67,4622.73,0],0,true,[[1386,1,12.2102],[2117,1,6.85955],[3389,0,13.5318]]],[[4547.99,4215.52,0],0,true,[[2610,1,25.4715],[2333,1,246.345],[2790,1,15.6384]]],[[3731.18,6238.33,0],0,false,[[3807,1,103.185],[3585,1,46.6398]]],[[7496.56,3097.52,0],0,false,[[640,0,129.697],[1881,0,47.9778]]],[[528.441,2516.36,0],0,false,[[1309,0,85.1532],[3813,0,183.562]]], +[[4378.1,2991,0],0,true,[[3615,1,32.8832],[1657,1,29.7812],[668,1,16.7794]]],[[2196.15,4020.27,0],0,true,[[3017,0,20.3455],[3143,0,74.5068],[3845,0,19.3792],[1291,0,16.5312]]],[[4385.31,3019.89,0],0,true,[[1655,1,29.7812],[61,1,25.8413],[1709,1,65.1583]]],[[1754.47,4559.45,0],0,false,[[312,0,107.37]]],[[977.734,3468.83,0],0,true,[[664,1,147.009],[1126,1,27.9126],[3471,1,6.42274]]], +[[2655.2,832.9,0],0,false,[[110,1,8.41092],[2073,0,81.3664]]],[[4360.55,2306.58,0],0,false,[[1276,0,187.888],[256,0,25.9673],[1829,0,5.01326]]],[[4795.01,3769.81,0],0,false,[[1547,1,223.737],[1887,1,20.0806]]],[[6704.98,2103.59,0],0,false,[[3700,0,221.186],[2277,0,46.9385]]],[[3397.35,4286.82,0],0,false,[[2226,0,188.764],[1896,0,17.6208]]], +[[1696.3,5881.96,0],0,false,[[385,1,41.0851],[1696,1,22.6785]]],[[4884.9,1579.61,0],0,false,[[3066,0,21.1359],[2583,0,117.459]]],[[3526.15,6597.7,0],0,false,[[3709,1,30.1678],[2788,1,104.424]]],[[4816.3,267.753,0],0,true,[[3109,1,295.458],[1331,1,34.2897],[652,1,5.58561]]],[[3632.31,2433.36,0],0,false,[[3719,1,68.2176],[1592,1,87.7038]]], +[[4048.3,4300.55,0],0,false,[[1153,2,8.10309],[3574,2,55.4577]]],[[5244.13,5989.37,0],0,true,[[2124,0,49],[722,0,12.778],[756,0,28.9502]]],[[1144.07,4673.18,0],0,true,[[2759,0,115.87],[3047,0,7.30526],[1765,0,8.89923]]],[[1311.9,1611.89,0],0,false,[[660,0,130.258],[855,0,153.749]]],[[4173.23,4322.96,0],0,false,[[2473,1,22.1014],[3611,1,35.7569]]], +[[2845.97,4457.5,0],0,false,[[701,0,7.05948],[1037,0,48.7585]]],[[4198.05,4563.66,0],0,false,[[3819,0,145.005],[708,0,143.43]]],[[7643.88,6623.07,0],0,true,[[20,1,15.1769],[2579,0,33.7855],[2609,1,8.22791]]],[[6669.65,7952.39,0],0,true,[[3000,0,29.4493],[2485,0,281.872],[636,0,18.7708]]],[[2562.99,7389.07,0],0,true,[[2027,1,12.6783],[3301,0,32.591],[2798,1,11.0602]]], +[[5222.21,7249.05,0],0,true,[[3153,2,17.2926],[3305,2,124.872],[2280,2,10.3782]]],[[3198.86,2708.48,0],0,false,[[3705,0,79.8141],[3747,0,237.178]]],[[1964.23,7471.31,0],0,false,[[2549,1,402.881],[3127,1,17.3771]]],[[910.979,1766.52,0],0,true,[[1294,1,28.4403],[2785,1,35.3616],[1860,1,4.84612]]],[[4438.15,4813.98,0],0,false,[[3857,1,5.66244],[2288,0,7.68736]]], +[[4010.55,4199.74,0],0,false,[[3518,1,73.8806],[1732,1,22.1619]]],[[7520.54,6403.67,0],0,true,[[801,0,157.391],[915,0,11.0138],[914,0,3.61604]]],[[4062.22,5235.68,0],0,false,[[488,0,59.2301],[1495,0,78.675]]],[[5661.34,1952.48,0],0,false,[[3340,0,80.0857],[3464,0,253.465]]],[[4872.4,4459.03,0],0,false,[[2512,0,241.142],[736,0,9.83037]]], +[[2.13631,3526.41,0],0,false,[[3860,1,349.95]]],[[276.804,828.91,0],0,false,[[3891,0,11.5147],[518,0,90.1054]]],[[5696.01,2907.56,0],0,true,[[3895,1,93.0659],[2162,1,12.3931],[1326,1,8.68565]]],[[6771.66,943.496,0],0,true,[[2947,1,30.6644],[2674,1,128.506],[3756,1,9.49947],[3620,1,17.4557]]],[[5246.18,1824.74,0],0,true,[[8,1,16.4671],[1736,1,67.2642],[871,1,11.1237]]], +[[2119.95,6360.98,0],0,false,[[2306,0,33.4259],[2636,0,132.828]]],[[1717.71,5874.5,0],0,true,[[1665,1,22.6785],[1861,1,119.47],[709,1,6.72086]]],[[6889.81,1943.69,0],0,true,[[959,0,24.4037],[1235,0,6.64294],[451,0,8.38682]]],[[468.618,7361.94,0],0,false,[[3202,0,31.3347],[3164,0,111.149]]],[[4342.32,6124.75,0],0,false,[[1542,2,6.54471],[2141,0,102.739]]], +[[1246.16,7999.5,0],0,true,[[3030,1,13.5691],[148,1,21.4677],[2799,1,30.0624]]],[[343.98,4488.83,0],0,true,[[1575,0,9.39119],[1562,0,0.753383],[43,0,8.82812],[437,0,9.15205]]],[[1353.23,3125.39,0],0,false,[[41,0,70.5292],[2719,0,164.757]]],[[911.078,7563.22,0],0,true,[[1807,0,22.5936],[3745,0,157.441],[1636,0,30.0677]]],[[5489.83,6568.7,0],0,false,[[792,1,3.36305],[3797,0,71.8812]]], +[[364.397,4674.02,0],0,true,[[2454,0,17.817],[1420,0,0.749183],[1180,0,18.4832],[245,0,24.856]]],[[351.854,1872.24,0],0,false,[[1915,1,378.156],[3603,1,64.2357]]],[[2959.79,1861.4,0],0,false,[[2453,1,29.6801],[3757,1,24.0075]]],[[6621.68,3545.73,0],0,true,[[741,0,212.073],[3541,0,18.2275],[2289,0,9.63658]]],[[4326.9,3029.41,0],0,true,[[826,1,29.8268],[1999,1,11.6227],[1657,1,65.1583]]], +[[2857.75,4159.77,0],0,true,[[275,1,25.8113],[999,1,26.4267],[1494,1,13.6411]]],[[4821.34,6042.67,0],0,false,[[1627,0,96.2104],[2918,0,102.229]]],[[6249.17,7607.71,0],0,false,[[2606,1,313.573],[882,1,243.141]]],[[4313.41,2953.9,0],0,true,[[3133,1,66.7592],[869,1,23.2939],[1529,1,17.9547]]],[[4253.08,1925.89,0],0,false,[[2184,0,16.632],[3788,0,28.4732]]], +[[1543.85,4744.98,0],0,false,[[2447,1,188.8],[3204,1,131.588]]],[[4991.11,1963.08,0],0,false,[[1076,1,166.72],[3483,1,23.5494]]],[[5518.72,1273.41,0],0,false,[[316,0,13.7505],[2221,0,130.805]]],[[4608.89,2378.13,0],0,false,[[317,1,137.53],[3375,1,50.4838]]],[[2181.41,5321.5,0],0,false,[[1289,0,22.2575],[943,0,66.1302]]], +[[276.057,4713.21,0],0,false,[[1344,0,97.9361],[268,0,114.626]]],[[4084.03,5373.99,0],0,false,[[445,0,23.1385],[2472,0,107.738]]],[[4187.78,6935.83,0],0,false,[[375,0,188.939],[266,0,59.2319]]],[[2643.07,4435.94,0],0,false,[[526,0,32.0589],[2519,0,197.583]]],[[4612.7,7203.83,0],0,false,[[3809,0,268.88]]], +[[4778.62,3708.47,0],0,true,[[3492,1,25.9424],[1590,1,32.0711],[1032,1,5.91037]]],[[3977.83,3784.09,0],0,true,[[2263,1,15.6794],[2072,1,126.573],[1429,1,12.0201]]],[[5999.73,5399.45,0],0,false,[[1191,0,164.233],[476,0,48.0122]]],[[6891.65,880.166,0],0,false,[[2674,1,8.08326],[3699,0,181.25]]],[[5617.91,7264.69,0],0,true,[[589,0,10.1123],[3226,0,10.2399],[3834,0,9.7167]]], +[[7058.12,6476.15,0],0,true,[[1027,1,18.2469],[2347,1,21.6125],[3794,1,10.1754]]],[[7031.79,1530.41,0],0,false,[[2907,0,372.522],[979,0,12.6585]]],[[4013.93,4177.84,0],0,true,[[1685,1,22.1619],[728,1,20.4633],[1471,1,12.4196]]],[[2147.32,7326.69,0],0,true,[[541,1,12.4879],[3264,0,32.0739],[2727,1,15.2475]]],[[4266.88,3995.87,0],0,false,[[673,1,41.4887],[2955,1,30.1568]]], +[[3837.59,3562.57,0],0,false,[[788,1,24.4469],[3317,1,79.5941]]],[[5225.59,1888.7,0],0,false,[[1694,1,67.2642],[3443,1,104.706]]],[[984.978,8037.92,0],0,false,[[141,1,125.817],[3044,1,128.301]]],[[4041.42,2963.74,0],0,false,[[1604,0,76.3418]]],[[1998.74,1528.65,0],0,false,[[2017,1,338.456],[3266,1,154.251]]], +[[6711.9,7948.24,0],0,false,[[636,0,33.9385],[1159,0,356.879]]],[[5198.17,398.599,0],0,true,[[3488,0,7.9239],[1301,0,79.6605],[1106,0,8.29164]]],[[7072.89,5534.56,0],0,false,[[2173,1,7.39676],[388,1,7.39676]]],[[7544.62,1149.79,0],0,true,[[501,0,16.8971],[3543,0,133.566],[1805,0,11.4192]]],[[4024.72,4123.82,0],0,false,[[1874,1,13.0978],[2794,1,4.72781]]], +[[7642.9,7187.52,0],0,false,[[3075,0,156.462],[3306,0,67.3294]]],[[8097.3,1609.65,0],0,true,[[1837,0,11.0513],[1987,0,105.487],[3113,0,12.3838]]],[[5515.89,4144.74,0],0,true,[[1937,0,320.446],[1161,0,18.6306],[3523,0,211.205]]],[[6206.92,4315.65,0],0,true,[[712,1,79.4104],[1834,1,11.0257],[532,1,21.5343]]],[[6844.55,4356.87,0],0,true,[[2532,0,4.62883],[3444,1,10.5854],[3385,1,12.6443]]], +[[2677.36,3620.16,0],0,false,[[3430,0,150.936],[2021,0,31.7181]]],[[7063.66,5622.83,0],0,false,[[3848,0,63.5319],[3086,0,24.9021]]],[[2562.61,2050.91,0],0,true,[[1318,1,77.7992],[2778,1,19.758],[3060,1,9.22875]]],[[7177.81,8023.59,-0.000610352],0,false,[[1073,0,82.2534],[1053,0,81.6824]]],[[4215,7507.65,0.000183105],0,false,[[3916,0,12.2355],[1938,0,16.5197]]], +[[7769.82,7895.91,0],0,false,[[3724,0,24.7066],[2968,0,25.7441]]],[[4390.65,2868.97,0],0,true,[[2525,2,29.4246],[1862,2,29.6596],[725,2,16.1198],[938,2,15.0604]]],[[1044.43,1811.59,0],0,true,[[2919,1,10.715],[920,1,160.791],[3447,1,7.07044]]],[[1149,2322.45,0],0,true,[[1099,1,209.963],[1243,1,21.6121],[3675,1,8.14453]]],[[7631.2,8133.86,0],0,false,[[2175,0,74.9057],[2354,0,88.0574]]], +[[4189.44,2624.25,0],0,false,[[2197,1,218.49],[1873,1,180.129]]],[[2171.76,5441.54,0],0,true,[[1198,1,23.7873],[2116,1,88.025],[3259,1,10.3182]]],[[8078.88,1290.12,0],0,false,[[3405,0,23.4304],[1056,0,42.2536]]],[[1720.02,6992.46,0],0,false,[[956,1,168.739],[3216,1,137.256]]],[[1608.25,6910.97,0],0,false,[[730,0,168.435],[618,0,11.9545]]], +[[1150.3,4679.48,0],0,true,[[1672,0,8.89923],[1768,0,28.8797],[3047,0,7.10872]]],[[7924.81,4573.82,0],0,false,[[1977,0,147.47],[630,0,76.7152]]],[[7855.98,774.159,0],0,true,[[996,0,72.9786],[422,0,24.8557],[3877,0,13.9736]]],[[1148.53,4708.26,0],0,true,[[1765,0,28.8797],[2364,0,15.1966],[181,0,21.0113],[867,0,16.7478]]],[[1619.79,3227.47,0],0,true,[[2680,0,17.3611],[2474,0,17.3609],[1247,0,10.5131]]], +[[3359.81,6293.29,0],0,true,[[1908,0,12.8054],[2652,0,217.487],[172,0,4.81311]]],[[483.914,2006.07,0],0,false,[[439,0,21.7037],[3414,0,180.494]]],[[5088.26,3903.45,0],0,true,[[2818,0,14.8372],[2676,0,4.45863],[718,0,17.779]]],[[4892.93,916.011,0],0,true,[[2958,1,120.452],[3406,1,27.9392],[1349,1,18.3928]]],[[2727.77,3026.22,0],0,false,[[1469,0,121.198],[2163,0,20.9675]]], +[[4309.58,7445.15,0],0,false,[[1628,0,88.3514],[3270,0,122.728]]],[[5510.8,4920.07,1.8754],0,false,[[1849,0,99.2925],[3467,0,22.7946]]],[[6126.5,885.675,0],0,true,[[19,0,6.24476],[2595,0,163.692],[829,0,6.84536]]],[[2746.6,7039.48,0],0,true,[[1066,0,28.9096],[1490,0,29.9967],[3239,0,14.8025]]],[[3039.03,2480.23,0],0,false,[[34,0,44.8489],[572,0,91.0068]]], +[[8040.28,303.189,0],0,false,[[1468,0,76.8917]]],[[4139.58,4227.15,0],0,false,[[1930,1,23.9055],[2473,1,79.5965]]],[[3298.92,6051.56,0],0,false,[[2884,0,29.7319]]],[[1785.16,5032.23,0],0,false,[[2774,0,131.222]]],[[7012.23,4105.38,0],0,true,[[76,0,98.5033],[2483,0,19.3069],[2419,0,7.82452]]], +[[8114.97,4971.3,0],0,false,[[2744,0,83.8344],[2679,0,14.9201]]],[[7234.05,6288.42,0],0,false,[[623,0,78.7525],[1508,0,13.1846]]],[[7087.56,4205.84,0],0,true,[[3461,1,146.462],[3600,1,20.4277],[3007,1,13.2096],[2538,1,13.3554]]],[[3637.03,2508.92,0],0,false,[[3310,0,117.291],[1336,0,77.6068]]],[[6827.47,2033.19,0],0,true,[[680,0,6.40813],[3636,0,13.2921],[2513,0,1.63338]]], +[[4180.45,3963.75,0],0,false,[[369,0,16.3092],[663,0,21.5641],[2094,0,20.4208]]],[[2672.25,1911.4,0],0,false,[[2138,0,101.631],[295,0,50.4757]]],[[5977.7,1708.96,0],0,true,[[3506,0,307.835],[695,0,7.37399],[2452,0,14.0581]]],[[1605.21,3213.8,0],0,false,[[2719,0,108.095],[1247,0,28.2863]]],[[5490.75,3674.68,0],0,false,[[2115,0,72.47],[1517,0,129.445]]], +[[7777.5,5797.01,0],0,false,[[3004,0,7.20313],[598,0,99.7339]]],[[2296.54,933.275,0],0,false,[[2361,2,259.366],[3080,2,22.3008]]],[[458.488,5483.92,0],0,false,[[298,0,49.4985],[2511,0,32.8188]]],[[3744.72,1034.6,0],0,true,[[3681,1,54.6942],[3872,1,22.8765],[1584,1,3.65832]]],[[5586.54,6472.57,0],0,false,[[2022,0,50.4099]]], +[[2036.1,7295.64,0],0,true,[[3309,1,19.4279],[3666,1,19.1613],[271,1,6.72169],[51,1,6.24807]]],[[5063.68,5260.69,0],0,false,[[903,1,124.907],[1936,1,11.5796]]],[[4749.91,3390.53,0],0,false,[[638,0,46.8753]]],[[978.796,3885.43,0],0,true,[[917,0,23.3521],[2516,0,14.8566],[1990,0,15.6719]]],[[5173.76,6896.92,0],0,false,[[3821,0,219.64],[2061,0,69.8531]]], +[[7555.96,1148.72,0],0,true,[[1743,0,11.4192],[86,0,6.51776],[501,0,6.79696]]],[[7742.45,6708.91,0],0,false,[[1185,1,8.21143],[698,0,4.33704]]],[[933.667,7563.56,0],0,true,[[1703,0,22.5936],[944,0,21.6408],[1636,0,10.9311]]],[[5966.68,636.066,0],0,false,[[2685,0,143.372],[549,0,105.695]]],[[4283.19,6212.75,0],0,true,[[2141,0,5.55329],[597,0,69.8515],[137,0,4.361]]], +[[7269.7,1871.42,0],0,false,[[2128,0,313.874],[3849,0,281.176]]],[[3136.35,7643.45,0],0,false,[[89,0,295.447],[1461,0,18.553]]],[[5587.53,2914.51,0],0,true,[[2162,1,96.713],[2635,1,20.0212],[2682,1,16.6677]]],[[3700.47,8120.85,0],0,false,[[2043,1,33.7895],[1374,1,91.8704]]],[[2187.71,4.20573,0],0,false,[[393,1,265.633]]], +[[2313.56,360.32,0],0,true,[[1135,0,62.7198],[1877,0,9.60526],[2932,0,11.4685]]],[[8002.15,4523.98,0],0,false,[[419,0,10.5965],[40,0,31.4582]]],[[4775.46,3756.07,0],0,false,[[1062,1,32.8051],[552,1,17.5222]]],[[4766.79,4339.71,0],0,false,[[2467,0,94.6409],[3407,0,23.4986]]],[[3928.31,6435.38,0],0,true,[[720,0,11.5197],[3052,0,1.60486],[2864,0,7.26455]]], +[[4062.79,6456.66,0],0,false,[[2897,0,74.4085],[2952,0,205.989]]],[[3020.89,7392.56,0],0,true,[[2224,1,52.7435],[3320,1,14.4281],[2911,1,7.65513],[2252,1,8.118]]],[[2520.63,4770.96,0],0,true,[[1298,0,17.8592],[899,0,254.281],[3799,0,321.894]]],[[518.402,4308.63,0],0,false,[[2070,0,102.512],[2219,0,127.8]]],[[5072.46,6817.99,0],0,true,[[3388,1,11.3844],[2969,1,8.04165],[2747,2,18.0614]]], +[[7495.44,5076.39,0],0,false,[[1637,0,214.989]]],[[4897.72,6953.05,0],0,true,[[1920,0,151.479],[2752,0,3.31759],[2206,0,4.05049]]],[[5835.53,328.985,0],0,false,[[3650,0,148.87],[1931,0,26.6625]]],[[2184.6,6789.62,0],0,false,[[3858,0,51.7787],[606,0,266.715]]],[[4361.22,2311.54,0.000183105],0,false,[[1528,0,5.01326],[1661,0,5.01326]]], +[[616.308,30.8195,0],0,false,[[568,2,7.96324],[706,0,8.5828]]],[[2567.34,3836.46,0],0,true,[[93,1,16.1729],[3715,0,18.9843],[267,1,17.9011]]],[[5938.8,4926.05,0],0,true,[[2605,1,6.72281],[3678,0,50.795],[887,1,12.5863]]],[[2570.94,3860.8,0],0,false,[[3765,0,11.3648],[3660,0,19.1073]]],[[6196.1,4317.71,0],0,true,[[587,0,72.2078],[1748,1,11.0257],[532,1,11.2058]]], +[[1857.59,1430.54,0],0,true,[[3266,1,17.9229],[2784,1,59.4389],[2166,1,10.6103]]],[[8001.69,6525.34,0],0,false,[[1399,1,3.00041],[864,0,25.3159]]],[[8088.71,1602.75,0],0,true,[[3167,0,157.969],[1746,0,11.0513],[3113,0,22.459]]],[[857.024,4201.3,0],0,true,[[1129,0,172.327],[1477,0,28.7849],[807,0,18.6586]]],[[8190.15,6212.13,0],0,false,[[2865,1,37.2942]]], +[[1316.4,3456.29,0],0,true,[[1038,1,21.4814],[1015,1,109.583],[2080,1,17.4442]]],[[3376.04,7256.88,0],0,false,[[3373,0,407.345],[818,0,20.7573]]],[[4969.37,4619.52,0],0,true,[[969,1,117.451],[1386,1,28.1012],[2117,1,12.1527],[3389,1,24.7054]]],[[4678.01,5443.07,0],0,true,[[2524,0,93.5362],[746,0,214.408],[3669,0,133.15]]],[[3366.67,4973.75,0],0,true,[[1267,1,9.56753],[1002,0,44.6637],[967,1,10.3338]]], +[[5154.84,7951.82,0],0,true,[[325,2,147.126],[1474,2,27.754],[1983,2,10.1323],[1253,2,23.142]]],[[6950.26,2635.07,0],0,false,[[3861,0,239.561],[37,0,356.577]]],[[2929.1,4346.67,0],0,false,[[3141,0,29.0302],[309,0,113.58]]],[[4038.75,5439.43,0],0,false,[[2047,2,20.9724],[1607,2,21.7395]]],[[5490.21,4828.15,0],0,false,[[522,0,337.774],[1776,0,99.2925]]], +[[3011.83,4873,0],0,true,[[2738,0,53.3057],[2251,0,5.96474],[2917,1,6.67841]]],[[5300.29,7489.31,0],0,false,[[773,1,16.2563],[3089,1,48.8377]]],[[4215.63,3495.91,0],0,true,[[3833,0,5.78902],[3859,0,12.0285],[2655,0,8.11812]]],[[1806.51,671.495,0],0,true,[[2182,2,23.8932],[1407,2,255.105],[819,2,15.5494]]],[[7254.49,3576.94,0],0,true,[[3067,1,202.035],[3762,1,7.5526],[98,1,14.5676]]], +[[6481.11,4218.08,0],0,true,[[1929,0,146.749],[2589,0,4.39211],[3674,0,9.53598]]],[[2432.96,375.099,0],0,true,[[157,1,90.7418],[3773,1,26.1425],[860,1,6.17675],[102,1,8.99347]]],[[5991.62,4861.82,0],0,true,[[3090,0,14.0705],[2016,0,146.293],[1478,0,6.67107]]],[[5986.17,7572.17,0],0,true,[[1382,0,29.6319],[533,0,293.082],[1593,0,11.1539],[431,0,14.7863]]],[[2892.85,2129.49,0],0,false,[[901,0,307.713],[3116,0,114.93]]], +[[907.527,1763.12,0],0,false,[[226,0,14.6538],[1683,1,4.84612]]],[[1830.78,5835.97,0],0,false,[[1696,1,119.47],[367,1,192.77]]],[[4396.36,2839.87,0],0,false,[[1756,2,29.6596],[3505,2,24.0614]]],[[4531.96,3213.66,0],0,false,[[924,1,30.5216],[625,1,20.0014]]],[[6562.65,5464.19,0],0,false,[[771,0,197.624],[1245,0,159.811]]], +[[3810.36,5937.25,0],0,false,[[2840,0,15.4285],[330,0,39.0396]]],[[1971.07,2758.95,0],0,false,[[2171,0,67.7329],[318,0,289.628]]],[[3350.97,6310.26,0],0,false,[[239,0,58.8702],[172,0,17.8602]]],[[437.099,118.423,0],0,false,[[1450,0,120.158],[939,0,16.9404]]],[[343.877,4508.05,0],0,true,[[624,0,9.85956],[3425,0,0.752986],[437,0,10.5842],[1515,0,15.5859]]], +[[5522.72,8186.69,0],0,false,[[3210,1,268.916]]],[[280.693,7351.85,0],0,true,[[73,0,21.8825],[1568,0,20.3778],[3420,0,20.0825]]],[[7553.55,6520.11,0],0,true,[[3442,1,13.2029],[2953,1,69.1345],[1879,1,7.13621]]],[[4220.04,2798.48,0],0,true,[[1760,1,180.129],[982,1,30.5319],[2420,1,15.9515]]],[[4021.25,4136.44,0],0,false,[[728,1,21.6013],[1744,1,13.0978]]], +[[2244.28,886.683,0],0,true,[[1328,0,15.2901],[3855,0,40.1043],[3494,2,19.5968]]],[[4501.16,2495.6,0],0,true,[[584,2,25.0856],[2028,2,10.8777],[3796,2,24.7868]]],[[2323.15,360.705,0],0,true,[[2932,0,20.6544],[860,0,110.033],[1815,0,9.60526]]],[[3663.09,5084.33,0],0,false,[[1558,0,22.544],[3350,0,368.557]]],[[7554.36,6513.02,0],0,true,[[3442,1,7.25634],[3001,0,29.8174],[1872,1,7.13621]]], +[[4644.2,3447.02,0],0,false,[[2817,1,96.1247],[619,1,53.5789]]],[[7467.33,3131.03,0],0,true,[[1653,0,47.9778],[1117,0,11.9733],[2355,0,6.77067]]],[[5656.55,1026.73,0],0,true,[[2768,1,115.046],[1631,1,11.8515],[744,1,26.4377]]],[[2373.15,218.344,0],0,true,[[393,1,19.1561],[679,1,46.4351],[2982,1,9.64133]]],[[4188.19,4716.43,0],0,false,[[2667,2,82.9822],[3776,2,158.731]]], +[[5918.7,4351.14,0],0,false,[[3490,1,141.207],[711,1,30.913]]],[[2817.99,7386.34,0],0,false,[[3789,1,23.6755],[2224,1,151.081]]],[[4790.07,3750.37,0],0,false,[[1662,1,20.0806],[3492,1,17.5558]]],[[1600.63,277.96,0],0,false,[[955,0,249.315],[2541,0,125.714]]],[[2650.78,6865.05,0],0,false,[[3468,1,133.079],[2023,1,25.0848]]], +[[4286.9,6286.13,0],0,false,[[1023,0,6.71841],[2725,0,79.3349]]],[[7440.58,3119.24,0],0,false,[[1117,0,17.6127],[1225,1,4.51389]]],[[5630.23,6300.19,0],0,true,[[1389,1,7.58302],[617,1,7.90226],[2026,1,9.16063],[2246,1,8.74493]]],[[2935.06,4391.17,0],0,true,[[2015,0,14.491],[3804,0,19.7398],[313,0,7.43479]]],[[1974.25,5680.3,0],0,false,[[2915,0,51.9059]]], +[[2863.34,3244.74,0],0,true,[[1385,0,21.5086],[2232,0,20.5822],[3647,0,21.1953],[1385,0,21.4447],[890,0,0.124067]]],[[3383.11,4297.2,4.65434],0,false,[[1464,0,125.4],[1664,0,17.6208]]],[[325.25,862.759,0],0,false,[[1089,1,71.4632],[2590,1,52.4092]]],[[373.073,7233.37,0],0,true,[[3198,0,104.814],[1456,0,26.9612],[434,0,13.5012]]],[[6074.65,7808.84,0],0,true,[[882,1,26.2655],[3477,1,25.0402],[2827,1,28.1394],[2033,1,17.1257]]], +[[4076.58,3465.38,0],0,true,[[2402,1,10.1504],[2121,1,99.5096],[363,1,9.27499]]],[[945.931,1078.96,0],0,false,[[622,1,8.81528],[908,0,149.852]]],[[6436.76,592.806,0],0,true,[[2775,0,33.7845],[1001,0,111.718],[7,0,17.4694]]],[[7469.36,2821.65,0],0,false,[[3355,0,293.712],[189,0,25.0531]]],[[1553.22,541.111,0],0,true,[[1476,0,5.65467],[323,0,292.22],[3329,2,6.26496]]], +[[7013.93,396.893,0],0,false,[[2012,1,10.2488],[529,1,25.9456]]],[[6946.37,844.677,0],0,true,[[1554,1,25.5673],[97,1,26.889],[3178,1,12.1209],[30,1,5.00688]]],[[3108.39,3564.83,0],0,false,[[2845,0,282.867],[1293,0,386.38]]],[[3360.8,6306.05,0],0,false,[[2986,0,44.9481],[1770,0,12.8054]]],[[4506.67,2589.25,0],0,false,[[1192,2,82.4651],[584,2,68.7373]]], +[[7721.36,2966.99,0],0,true,[[2207,1,19.486],[1048,0,186.082],[2331,1,19.5172],[557,0,27.1198]]],[[5591.51,5658.6,0],0,false,[[2295,1,25.2548],[2299,1,201.929]]],[[864.69,6201.4,0],0,false,[[1324,0,46.4055],[3231,0,190.189]]],[[5025.81,4134.15,0],0,false,[[2562,0,19.5416],[3473,0,20.0015]]],[[2881.72,7484.5,0],0,false,[[1033,0,201.788],[1371,0,80.1108]]], +[[3.73006,2017.19,0],0,false,[[1706,1,378.156]]],[[1011.48,3819.66,0],0,true,[[2389,0,17.8455],[2797,0,175.391],[1152,0,13.0369],[3617,0,24.7152]]],[[357.22,4635.64,0],0,true,[[2098,0,13.0479],[3215,0,7.95202],[2555,0,8.69713],[595,0,0.749844]]],[[3117.21,7549.73,0],0,false,[[3130,1,24.0331],[547,1,19.6271]]],[[3431.6,2336.88,0],0,true,[[3818,0,48.8478],[2545,0,6.6364],[3695,0,8.29842]]], +[[5029.85,6881.53,0],0,false,[[475,0,50.1751],[1826,0,151.479]]],[[5458.07,2214.7,0],0,true,[[3464,0,83.2656],[1546,1,19.1063],[1120,1,20.5531],[490,0,25.4435]]],[[4857.91,4016.71,0],0,false,[[2853,0,23.2684],[3496,0,58.6068]]],[[2504.63,7483.56,0],0,false,[[2734,0,138.361],[1014,0,6.22731]]],[[3618.88,4299.1,0],0,false,[[1172,0,145.598],[2772,0,50.4865]]], +[[6823.02,5330.97,0],0,true,[[372,1,392.184],[3272,1,9.50363],[2612,1,15.3029]]],[[1205.03,7899.78,0],0,false,[[1186,1,61.3895],[2062,1,168.778]]],[[2475.83,7882.07,0],0,false,[[2344,0,142.378],[990,0,324.165]]],[[2156.3,3980.73,0],0,true,[[2441,0,16.3458],[1291,0,44.2997],[2691,0,16.0821]]],[[6566.15,4316.06,0],0,false,[[2388,0,21.9989],[1855,0,146.749]]], +[[4128.76,4205.84,0],0,false,[[3866,1,28.2213],[1781,1,23.9055]]],[[5858.52,317.025,0],0,false,[[1827,0,26.6625],[3618,1,9.3868]]],[[1970.19,7459.25,0],0,false,[[3127,1,4.71032],[906,0,106.356]]],[[4542.47,6531.52,0],0,true,[[337,0,8.5985],[3013,0,7.71167],[2457,0,4.44189]]],[[3312.63,6077.53,0],0,false,[[1367,0,74.8292],[2884,0,23.7585]]], +[[4489.07,8015.59,0],0,true,[[2568,0,140.566],[1419,0,22.691],[274,0,10.3096]]],[[5073.44,5254.45,0],0,true,[[1801,1,11.5796],[1394,1,62.3092],[3381,1,5.45587]]],[[5584.71,3832.25,0],0,false,[[2781,0,111.982],[1747,0,320.446]]],[[4199.63,7501.59,0.000244141],0,false,[[1754,0,16.5197],[238,0,12.0388]]],[[1425.42,7695.8,0],0,false,[[1,0,104.914],[184,0,218.439]]], +[[4771.45,4592.57,0],0,false,[[3392,1,151.127],[665,1,184.272]]],[[1518.53,2142.32,0],0,false,[[420,0,12.7857],[3046,0,101.099]]],[[354.753,4093.11,0],0,true,[[1439,0,15.9762],[496,0,189.606],[3025,0,25.049]]],[[3538.45,1145.48,0],0,false,[[133,0,38.9741],[1219,0,138.451]]],[[4403.17,3284.2,0],0,false,[[3182,0,61.1937],[1363,0,280.792]]], +[[5297,360.3,0],0,true,[[1401,0,8.89981],[2756,0,45.4537],[2381,0,11.3958]]],[[7741.65,7937.24,0],0,true,[[2354,0,138.218],[3724,0,25.3603],[415,0,95.2751]]],[[1482.16,4444.63,0],0,false,[[1611,0,89.2884],[928,0,170.942]]],[[6914.84,3884.89,0],0,false,[[2483,0,226.39],[1055,0,100.146]]],[[6678.17,239.313,0],0,false,[[529,1,345.68],[232,1,20.5949]]], +[[1608.16,3524.66,0],0,true,[[556,0,97.418],[3504,0,6.09083],[2324,0,7.53955]]],[[2.59136,4236.73,0],0,false,[[2326,0,59.19]]],[[2994.84,6880.9,0],0,true,[[884,0,32.5291],[1142,0,120.357],[809,0,17.5303]]],[[1216.91,1784.25,0],0,false,[[731,1,8.15445],[660,0,98.0464]]],[[42.4253,5122.4,0],0,false,[[428,1,15.5836],[762,1,54.4798]]], +[[4002.99,4388.98,0],0,true,[[2493,0,14.6509],[2836,0,17.5736],[2155,0,18.2716]]],[[1790.06,8072.75,0],0,false,[[3527,0,179.343]]],[[4237.84,3062.19,0],0,false,[[581,1,167.61],[826,1,93.9235]]],[[5094.54,2842.43,0],0,false,[[703,0,15.1156],[3260,0,199.761]]],[[4491.56,4647.89,1.08871],0,false,[[782,2,15.575],[410,2,8.1626]]], +[[1575.64,1218.06,0],0,false,[[3035,0,252.584],[559,0,16.0147]]],[[4693.73,5843.66,0],0,true,[[1339,0,5.69431],[1610,0,4.33974],[1024,0,12.0527]]],[[2561.15,123.274,0],0,false,[[355,0,46.7971]]],[[483.619,4089.94,0],0,false,[[1439,0,133.303]]],[[2922.83,4123.95,0],0,false,[[2867,0,61.0956],[3362,0,53.3844]]], +[[4505.23,2397.05,0],0,true,[[3796,2,74.1326],[1131,2,11.565],[862,2,12.2385]]],[[5846.55,1464.43,0],0,true,[[2356,1,10.8765],[3219,1,302.34],[75,1,19.9982]]],[[6244.44,2047.49,0],0,false,[[3106,1,122.617],[1092,1,118.218]]],[[3366.95,228.92,0],0,true,[[1475,1,252.338],[1378,1,10.2612],[284,1,2.2678]]],[[5906.67,2209.16,0],0,false,[[1136,1,304.382],[3341,1,153.393]]], +[[6279.18,8059.75,0],0,false,[[1369,0,185.012],[2033,0,315.72]]],[[414.049,1843.02,0],0,true,[[3603,1,6.73831],[3445,0,265.485],[2302,1,7.45833]]],[[3977.55,6438.76,0],0,true,[[2801,0,14.6032],[932,0,35.8925],[3760,0,11.3855]]],[[3654.23,6659.59,0],0,false,[[2054,1,95.8058],[3440,1,27.4458]]],[[1848.22,7216.99,0],0,false,[[1348,1,28.3645],[2215,1,80.1365]]], +[[2296.92,4319.9,0],0,true,[[405,1,16.3001],[1594,1,209.841],[2311,1,26.9291]]],[[6373.17,4326.76,0],0,true,[[2746,1,48.9079],[560,1,23.1404],[2494,1,11.5347]]],[[7778.94,4595.37,0],0,false,[[2892,0,195.364],[1766,0,147.47]]],[[4347.08,1979.34,0],0,false,[[1224,2,31.0698],[402,2,72.6819]]],[[3129.59,7529.86,0],0,false,[[828,0,64.6414],[195,0,24.9862]]], +[[4494.07,4625.12,0],0,false,[[782,2,7.4527],[2930,1,76.9386]]],[[3.38283,733.017,0],0,false,[[2123,1,263.679]]],[[4958.63,4124.57,0],0,false,[[3146,0,26.5951],[2290,0,27.2097]]],[[5159.29,7942.73,0],0,false,[[1845,2,10.1323],[1253,0,15.1791]]],[[839.966,6408.63,0],0,false,[[1569,0,119.343]]], +[[901.293,6070.11,0],0,true,[[1453,1,125.254],[2198,1,21.517],[353,1,14.8787],[2743,1,15.3657]]],[[5860.78,333.124,0],0,false,[[3618,1,24.6073],[2085,1,221.851]]],[[8039.85,1697.59,0],0,true,[[1746,0,105.487],[2910,0,23.9962],[1115,0,12.2404]]],[[1415.01,6747.68,0],0,false,[[3555,1,8.66223],[3290,0,20.7741]]],[[364.363,1579.1,0],0,true,[[3445,0,16.0809],[3446,0,30.9348],[2376,0,16.5509]]], +[[990.112,3874.6,0],0,true,[[2516,0,29.9377],[2389,0,44.7942],[1803,0,15.6719]]],[[5057.2,6816.01,0],0,true,[[2747,2,25.8107],[2546,2,18.4633],[2969,2,9.97753],[931,2,9.63599]]],[[4781.75,6546.48,0],0,true,[[2833,2,21.6997],[2114,2,24.2291],[126,2,8.36389]]],[[2425.32,7052.76,0],0,false,[[611,0,167.86],[2943,0,83.9725]]],[[4048.23,3354.34,0],0,false,[[3577,0,61.4191],[2534,0,111.682]]], +[[1738.39,4273.63,0],0,false,[[3735,0,235.636],[1199,0,287.392]]],[[8188.33,5950.25,0],0,false,[[3869,1,209.207]]],[[7843.86,7812.34,0],0,false,[[866,1,52.9987],[3659,1,19.2319]]],[[7965.91,4528.37,0],0,false,[[1299,1,26.4762],[449,1,122.003]]],[[4328.07,3040.97,0],0,false,[[1709,1,11.6227],[1418,1,24.1692]]], +[[2642.08,108.26,0],0,false,[[2471,0,112.436],[2050,0,51.2064]]],[[3945.44,514.737,0],0,false,[[3351,0,110.616],[1229,0,210.19]]],[[488.061,3023.16,0],0,true,[[3161,0,349.26],[2038,0,21.5734],[953,0,11.7047]]],[[4352.41,7000.53,0],0,true,[[342,1,8.84496],[1314,0,15.8389],[466,1,7.78925]]],[[6936.42,3078.98,0],0,true,[[2481,0,96.5636],[873,0,21.5447],[963,0,12.1121]]], +[[164.963,6747.31,0],0,false,[[378,0,322.493],[1325,0,155.437]]],[[2955.36,1893.36,0],0,false,[[3448,1,8.65578],[1545,1,43.4317]]],[[918.428,4130.34,0],0,false,[[1477,0,67.7038],[3790,0,89.2241]]],[[2120.31,6317.43,0],0,true,[[2942,1,29.3404],[2293,1,30.1333],[2306,1,13.6387]]],[[231.175,537.392,0],0,false,[[518,0,205.438],[1065,0,123.874]]], +[[4370.6,4933.15,0],0,false,[[2214,1,128.308],[3039,1,26.1293]]],[[3726.77,1855.41,0],0,true,[[1297,0,147.729],[2877,0,10.5988],[1587,0,4.87934],[3261,0,15.3491]]],[[7023.81,399.466,0],0,true,[[3791,1,20.5032],[1905,1,10.2488],[2479,1,5.05726]]],[[4037.52,4189.38,0],0,true,[[3574,2,56.3212],[3177,2,33.0039],[1471,2,13.9184],[3524,2,10.0857]]],[[4594.61,2321.27,0],0,true,[[814,1,140.224],[3223,1,28.7329],[3375,1,13.7469],[272,1,10.6656]]], +[[2922.88,4399.03,0],0,true,[[1037,0,48.4638],[313,0,7.26494],[1893,0,14.491]]],[[5935.54,4730.98,0],0,true,[[1857,0,146.293],[2377,0,5.71213],[2159,0,15.0837]]],[[2314.25,1645.89,0],0,false,[[3134,1,29.6643],[1739,1,338.456]]],[[5604.09,4358.23,0],0,false,[[2037,1,29.1127],[3300,1,27.2283]]],[[3803.26,5138.59,0],0,true,[[2239,0,6.28857],[2509,0,5.98331],[3590,1,7.37921]]], +[[2734.05,3430.77,0],0,false,[[2247,1,171.71],[203,1,107.353]]],[[2657.63,3595.42,0],0,false,[[1750,0,31.7181],[348,0,30.6158]]],[[5537.84,6459.9,0],0,false,[[1799,0,50.4099],[3132,1,10.1768]]],[[2628.46,6853.63,0],0,true,[[1889,1,25.0848],[3763,1,25.3001],[2717,1,13.2191]]],[[4118.61,2300.15,0],0,false,[[3777,0,232.886],[2787,0,96.6662]]], +[[4081.41,5706.47,0],0,false,[[3144,2,35.3766],[3598,2,163.529]]],[[5639.29,6298.89,0],0,true,[[1463,1,196.507],[1892,1,9.16063],[1389,1,3.86053]]],[[2550.88,7385.33,0],0,true,[[17,1,187.948],[1679,1,12.6783],[2798,1,22.8671]]],[[4503.49,2484.98,0],0,true,[[1414,1,6.25971],[1876,2,10.8777],[3796,2,14.5135]]],[[5720.34,904.583,0],0,true,[[3910,1,269.954],[2639,1,10.0979],[2768,1,23.5518]]], +[[7467.79,4407.17,0],0,false,[[3770,1,150.67],[1308,1,282.653]]],[[1153.06,3629.94,0],0,true,[[2069,0,40.2506],[609,0,10.2775],[2060,0,6.37396]]],[[2963.91,6945.02,0],0,false,[[2933,1,52.2204],[1111,1,17.6036]]],[[6068.88,7824.96,0],0,true,[[1970,0,315.72],[3477,0,26.9278],[1899,1,17.1257],[2827,1,20.2647]]],[[4406.13,6088.08,0],0,true,[[1074,0,63.9206],[1098,0,12.1065],[404,0,5.97539]]], +[[4624.53,5196.6,0],0,false,[[1157,1,20.1549],[2278,1,135.581]]],[[4058.16,4130.99,0],0,false,[[1307,1,24.8623],[3235,1,26.8366]]],[[5633.13,4356.91,0],0,false,[[2813,1,56.2835],[2018,1,29.1127]]],[[492.909,3044.18,0],0,true,[[2002,0,21.5734],[1514,0,68.1617],[953,0,10.4258]]],[[1539.32,5949.22,0],0,true,[[209,1,18.9442],[3619,1,139.704],[3008,1,10.886]]], +[[2618.54,6899.99,0],0,false,[[3720,0,44.2415],[2622,0,174.483]]],[[6946.28,5230.83,0],0,false,[[3272,0,164.708],[2812,0,394.122]]],[[4724.73,1137.6,0],0,false,[[621,0,24.3178]]],[[3677.02,8096.52,0],0,true,[[168,1,109.381],[1813,1,33.7895],[246,1,13.0123]]],[[7501.65,2821.35,0],0,true,[[2888,0,100.044],[189,0,14.7601],[2049,0,20.1176]]], +[[5310.76,1537.67,0],0,false,[[3397,1,249.156],[2084,1,214.045]]],[[6883.13,4346.74,0],0,false,[[450,0,26.4115],[2700,0,22.9311]]],[[4040.63,5460.32,0],0,false,[[2577,2,60.4345],[1848,2,20.9724]]],[[1376.91,1844.67,0],0,true,[[3268,1,6.86647],[2455,1,283.011],[1358,2,10.1815]]],[[7493.87,2839.9,0],0,true,[[2044,0,20.1176],[724,0,124.524],[189,0,7.69214]]], +[[2637.94,156.907,0],0,true,[[1174,0,42.809],[2712,0,74.5034],[2000,0,51.2064]]],[[1484.48,3309.28,0],0,false,[[1462,0,27.4316],[2260,0,51.0556]]],[[642.632,943.855,0],0,true,[[3912,0,317.66],[689,1,17.9979],[2160,1,18.4598],[524,0,19.9962]]],[[68.5198,5087.11,0],0,false,[[3563,0,73.9019],[279,0,11.2261]]],[[3743.51,6675.01,0],0,false,[[847,1,197.866],[1973,1,95.8058]]], +[[3553.59,2077.87,0],0,false,[[2994,0,50.2113],[2087,0,14.1546]]],[[5407.48,3537.58,0],0,false,[[1079,0,132.352],[1352,0,184.098]]],[[4623,6391.5,0],0,false,[[2114,2,197.785],[1513,2,153.59]]],[[7811.73,6509.04,0],0,true,[[3453,0,5.5411],[2597,0,8.58094],[3693,0,2.82381]]],[[445.704,2409.08,0],0,true,[[79,0,14.5219],[1046,0,86.0876],[635,0,25.8069]]], +[[1158.06,3633.88,0],0,true,[[3032,0,24.8222],[582,0,27.0143],[2031,0,6.37396],[609,0,12.6859]]],[[5123.27,6848.69,0],0,false,[[1804,0,69.8531],[1329,0,43.0144]]],[[1261.27,7742.43,0],0,false,[[1926,1,168.778],[305,1,170.439]]],[[3489.63,1685.63,0],0,false,[[67,0,119.696],[351,0,140.165]]],[[3486.49,2301.52,0],0,false,[[1237,1,40.149],[1146,1,50.9402]]], +[[5248.18,7662.62,0],0,true,[[216,2,21.3514],[2433,2,114.073],[1031,2,12.0699],[2427,2,7.70297]]],[[5824.82,610.656,0],0,false,[[2085,1,59.5936],[150,1,23.2959]]],[[2956.15,6926.26,0],0,false,[[2870,0,18.4917],[884,0,27.121]]],[[6478.18,2142.91,0],0,false,[[3065,1,86.6783],[2456,1,74.1662]]],[[1132.45,3664.29,0],0,false,[[1152,0,187.348],[2031,0,40.2506]]], +[[508.103,4410.42,0],0,true,[[1823,0,102.512],[2703,0,13.5076],[248,0,12.2041]]],[[6408.83,954.939,0],0,false,[[2393,0,88.1921],[2336,0,192.466]]],[[4021.93,3665.5,0],0,true,[[1726,1,126.573],[1304,1,20.6824],[2716,1,11.8585]]],[[2735.85,823.384,0],0,false,[[1660,0,81.3664],[2339,0,188.097]]],[[1814.8,4663.62,0],0,false,[[599,0,6.43274],[255,0,30.8979]]], +[[2188.61,5692.07,0],0,true,[[2940,0,348.755],[3868,0,17.2824],[3243,0,11.3226]]],[[2277.71,931.696,0],0,true,[[1133,0,7.55409],[2856,0,21.0683],[3080,2,9.10541]]],[[2007.6,3403.91,0],0,false,[[717,0,45.593]]],[[4926.96,1747.65,0],0,true,[[675,0,58.1513],[2802,0,119.997],[1413,0,8.93893]]],[[4206.98,1923.93,0],0,false,[[1361,2,48.5511],[1438,2,126.412]]], +[[1333.44,3453.26,0],0,true,[[910,0,27.5718],[1038,1,4.90137],[1840,1,17.4442]]],[[4252.53,6934.44,0],0,true,[[3236,0,114.007],[1156,0,12.6474],[266,0,7.10717]]],[[7826.94,744.975,0],0,false,[[3746,0,20.1123],[601,0,17.0487]]],[[2927.53,3344.08,0],0,true,[[2083,0,0],[2440,0,16.3363],[2440,0,16.3363],[3881,0,17.9228],[3881,0,17.9228]]],[[5196.81,1718.63,0],0,false,[[2045,1,214.045],[916,1,24.707]]], +[[5843.2,553.986,0],0,false,[[1986,1,221.851],[2066,1,59.5936]]],[[4925.51,2659.76,0],0,true,[[2657,1,117.419],[3655,1,12.4076],[3334,1,6.99658]]],[[3545.97,2087.87,0],0,true,[[107,0,57.49],[1411,0,28.2137],[2055,0,14.1546]]],[[7912.79,8033.14,0],0,false,[[2108,0,211.67]]],[[3978.23,2575.09,-0.136597],0,false,[[3604,2,15.6],[2197,2,7.4494]]], +[[3240.34,864.51,0],0,true,[[749,0,39.8203],[1507,0,8.06231],[3552,0,5.20289]]],[[5862.46,4346,0],0,false,[[3230,1,29.7593],[1287,1,75.1052]]],[[4182.65,5013.59,0],0,false,[[605,2,141.638],[2667,2,225.393]]],[[2822.31,4249.77,0],0,false,[[1262,0,148.233],[361,0,46.3933]]],[[4190.31,3981.49,0.000244141],0,false,[[1790,0,20.4208],[3023,0,35.3895]]], +[[4911.84,1053.68,0],0,true,[[781,0,4.94847],[3594,0,100.647],[1603,1,7.91019]]],[[347.433,4466.66,0],0,true,[[2937,0,19.6062],[43,0,13.8099],[3846,0,0.752656],[1575,0,13.164]]],[[5441.97,2.08013,0],0,false,[[3466,1,135.276]]],[[350.072,4624.73,0],0,true,[[3815,0,16.4843],[595,0,12.3034],[1917,0,13.0479],[1177,0,0.749428]]],[[7356.16,6345.49,0],0,true,[[3118,1,15.8672],[3319,0,35.08],[2762,1,9.93422]]], +[[3820.39,5941.76,0],0,false,[[2470,0,15.3188],[2840,0,10.036]]],[[4443.64,2985.8,0],0,false,[[2806,1,7.72388]]],[[2730.76,2489.55,0],0,true,[[1277,1,23.1413],[3485,1,400.654],[3158,1,4.58835]]],[[7160.18,723.724,0],0,true,[[97,1,218.809],[732,1,29.0725],[3238,1,13.2159]]],[[2019.75,7053.41,0],0,false,[[2443,0,68.9798],[3858,0,273.564]]], +[[4722.26,3600.03,0],0,false,[[648,1,42.484],[2817,1,76.4164]]],[[3966.24,5931.3,0],0,false,[[2345,0,16.3126],[1193,0,100.317]]],[[3779.66,7241.8,0],0,false,[[3373,0,238.18]]],[[7765.21,7909.94,0],0,false,[[2088,0,211.67],[3724,0,11.6525]]],[[3256.63,6013.33,0],0,false,[[2217,0,23.0369]]], +[[2546.26,72.3677,0],0,false,[[164,0,10.5313],[2624,0,13.8006]]],[[4155.15,3391.2,0],0,false,[[2303,0,95.9245],[1179,0,62.7656]]],[[4452.89,3075.91,0],0,false,[[3298,2,31.3943],[3257,2,51.5206]]],[[6229.94,6498.95,0],0,true,[[840,0,94.8996],[1564,0,7.35863],[3716,0,5.97744]]],[[4764.43,6529.54,0],0,false,[[1992,2,24.2291],[2057,2,197.785]]], +[[5492,3603.47,0],0,false,[[3128,0,174.295],[1794,0,72.47]]],[[2167.35,5353.81,0],0,false,[[1761,1,88.025],[719,1,23.3288]]],[[4958.88,4625.65,0],0,true,[[1650,1,6.85955],[45,1,44.5095],[1842,1,12.1527]]],[[5309.99,2916.96,0],0,false,[[2565,1,9.84429],[2711,0,114.257]]],[[4726.17,2862.35,0],0,true,[[654,0,115.721],[2369,0,10.9241],[2647,0,11.9073]]], +[[7211.5,694.952,0],0,true,[[732,1,29.7888],[49,1,12.8111],[0,1,19.6594]]],[[3978.63,3450.84,0],0,false,[[1900,1,99.5096],[788,1,175.196]]],[[7200.37,1452.45,0],0,false,[[1347,0,162.617],[153,0,241.962]]],[[248.268,829.948,0],0,false,[[2590,1,31.293],[1981,1,263.679]]],[[5223.85,6033.94,0],0,true,[[925,0,177.264],[1671,0,49],[3267,0,197.285]]], +[[4606.6,1989.01,0],0,true,[[3817,0,306.095],[1424,0,20.2805],[1244,0,10.6722]]],[[3395.48,2673.53,0],0,false,[[1577,0,55.3575],[1249,0,43.5573]]],[[7282.21,6011.64,0],0,false,[[458,0,135.334],[2822,0,104.169]]],[[7516.05,1684.39,0],0,false,[[2458,0,341.883],[1810,0,313.874]]],[[7205.12,919.855,0],0,true,[[692,0,23.7248],[536,0,19.4174],[38,0,10.8611]]], +[[4248.8,7006.21,0],0,false,[[466,1,96.0909],[976,1,29.8378]]],[[2554.09,3183.09,0],0,true,[[333,1,20.0469],[2963,1,44.0647],[362,1,8.46909]]],[[4924.94,3767.38,0],0,false,[[3835,0,159.802],[3665,0,205.668]]],[[3013.57,2001.78,0],0,true,[[949,1,28.4294],[1449,1,165.021],[3211,1,7.23514],[854,1,19.2353]]],[[6505.8,2868.17,0],0,true,[[1617,1,12.6821],[710,1,72.2966],[1596,1,19.855]]], +[[7646.32,5628.67,0],0,false,[[2548,1,254.743],[1057,1,183.236]]],[[241.982,6993.91,0],0,false,[[2619,0,134.785],[1519,0,55.3442]]],[[2552.57,3885.13,0],0,false,[[3206,1,67.2388],[267,1,33.1052]]],[[2761.26,1910.96,0],0,true,[[2237,0,59.5221],[2740,0,135.351],[1791,0,101.631]]],[[5702.26,511.054,0],0,false,[[3562,0,79.5464]]], +[[1060.39,5600.98,0],0,false,[[311,0,227.129],[923,0,100.698]]],[[4282.49,6207.25,0],0,true,[[1699,0,102.739],[137,0,5.74374],[1809,0,5.55329]]],[[3674.55,5931.56,0],0,false,[[330,0,97.2133],[2600,0,251.807]]],[[5751.36,6108.03,0],0,false,[[1257,1,29.1412],[1463,1,27.1936]]],[[981.44,346.048,0],0,false,[[3742,0,179.047],[1118,0,92.1938]]], +[[3508.58,6696.03,0],0,true,[[2570,1,33.9828],[1555,1,13.2009],[804,1,24.9542],[922,1,18.2705]]],[[2254.09,910.216,0],0,true,[[3080,2,26.0275],[3494,2,31.1449],[1328,2,17.2287]]],[[3105.3,4144.22,0],0,false,[[682,0,206.969]]],[[6955.02,7442.69,0],0,false,[[516,0,253.945]]],[[4635.27,5857.67,0],0,false,[[3092,0,292.283],[3162,0,58.5993]]], +[[8186.21,4549.48,0],0,false,[[1215,1,117.158]]],[[4102.34,4172.78,0],0,true,[[3524,1,59.0985],[3866,1,14.5704],[3667,1,11.9237]]],[[1613.13,8020.93,0],0,true,[[1335,1,18.6001],[2549,1,262.419],[935,1,2.82978]]],[[53.1336,5616.87,0],0,false,[[3847,0,71.9718],[3254,0,187.786]]],[[4305.33,2878.48,0],0,true,[[684,1,22.9399],[677,1,43.5939],[2951,1,12.0133]]], +[[3989.79,4401.51,0],0,true,[[414,0,41.3971],[2493,0,21.0556],[1955,0,18.2716]]],[[2493.14,7480.89,0],0,true,[[3741,0,207.148],[429,0,2.83703],[1284,0,18.264],[1014,0,5.63861]]],[[5672.06,5883.09,0],0,false,[[1288,0,164.722],[3898,0,246.781]]],[[5997.3,5611.65,0],0,false,[[1162,1,138.601],[2810,1,212.355]]],[[5936.81,4715.95,0],0,true,[[2377,0,11.0892],[3122,0,230.864],[2016,0,15.0837]]], +[[652.504,959.439,0],0,true,[[622,1,310.888],[689,1,30.2008],[2052,1,18.4598],[524,1,13.1202]]],[[1294.79,3967.71,0],0,true,[[2673,0,77.1682],[513,0,5.29716],[3105,0,6.54327]]],[[5683.97,2910.51,0],0,true,[[1692,1,12.3931],[1812,1,96.713],[1326,1,4.93771]]],[[2744.5,3013.61,0],0,false,[[1774,0,20.9675],[1372,0,250.221]]],[[3231.69,2399.65,0],0,false,[[572,0,183.731],[842,0,54.6887]]], +[[2771.38,7042.35,0],0,false,[[3239,0,16.1263],[1258,0,64.991]]],[[1867.33,1434.74,0],0,true,[[1835,1,10.6103],[3553,0,9.92437],[3266,1,8.1073]]],[[4076.31,3488.7,0],0,true,[[3890,1,23.8325],[363,1,15.135],[3708,1,8.37276]]],[[3226.82,7257.76,0],0,false,[[149,0,24.5143],[3560,0,82.7247]]],[[6340.21,5453.49,0],0,false,[[2637,0,22.7087],[282,0,148.686]]], +[[3063.84,5583.8,0],0,false,[[1470,0,66.8508],[455,0,11.7425]]],[[1925.53,2809.08,0],0,true,[[1616,0,17.3727],[1866,0,67.7329],[2193,0,27.3685],[3608,0,24.4417]]],[[5493.87,6556.86,0],0,false,[[3379,1,93.8997],[792,1,14.3339]]],[[7077.85,5540.03,0],0,false,[[2861,0,4.56405],[1742,1,7.39676],[1520,0,7.02587]]],[[677.984,4398.08,0],0,false,[[379,0,84.6568],[1129,0,128.769]]], +[[7581.89,8189.62,0],0,false,[[1759,0,74.9057]]],[[8098.38,1268.62,0],0,false,[[897,0,19.1138],[1204,0,10.308]]],[[5411.88,6295.41,0],0,false,[[3850,0,59.5396]]],[[345.078,4579.94,0],0,true,[[3812,0,19.2815],[774,0,0.749666],[2282,0,19.8958],[561,0,16.5758]]],[[1436.16,4085.24,0],0,false,[[2832,0,158.565],[642,0,47.8667]]], +[[8034.61,225.033,0],0,true,[[1455,1,24.4995],[1612,1,177.061],[1468,1,6.37118]]],[[1819.59,1237.02,0],0,false,[[2374,0,150.286],[1060,0,346.644]]],[[1827.56,682.787,0],0,true,[[3111,2,138.977],[1853,2,23.8932],[819,2,9.00184]]],[[6422.53,5541.73,0],0,false,[[852,0,79.3033],[2523,0,134.879]]],[[4258.45,1941.54,0],0,false,[[1361,2,6.43232],[1714,0,16.632]]], +[[7308.77,2580.86,0],0,true,[[37,0,20.581],[1619,0,241.026],[3355,0,12.4055]]],[[66.9716,7335.77,0],0,true,[[2842,0,49.8892],[1194,0,12.4542],[1484,0,13.6033]]],[[2723.12,983.502,0],0,true,[[1273,0,20.2863],[3883,1,12.6028],[1063,1,9.40372]]],[[6470.34,2482.59,0],0,true,[[1391,0,252.251],[1553,1,11.7353],[3513,1,16.8239]]],[[2863.96,4262.97,0],0,false,[[441,1,30.6337],[1452,1,55.3368]]], +[[6748.7,5525.6,0],0,false,[[502,0,259.986],[771,0,38.6833]]],[[232.894,6413.8,0],0,true,[[3137,0,307.731],[2395,0,10.1277],[378,0,25.2318]]],[[2500.59,3190.67,0],0,false,[[433,0,75.4572],[2963,1,10.0607]]],[[1907.64,2829.69,0],0,true,[[737,0,152.198],[1616,0,20.1491],[2171,0,27.3685]]],[[4386.23,2931.2,0],0,true,[[3307,1,16.666],[1481,2,10.3387],[2666,2,9.95677]]], +[[3227.7,44.1071,0],0,false,[[775,0,359.044],[1103,0,142.237]]],[[4021.95,4037.43,0],0,false,[[3027,1,18.8245],[1093,1,19.9758]]],[[3985.47,2575.38,0],0,false,[[2089,2,7.4494],[1760,1,218.49]]],[[880.351,6075.04,0],0,true,[[1985,1,21.517],[1190,1,6.91229],[3663,1,15.6236],[353,1,7.77893],[2743,1,6.47321]]],[[7751.65,4181.47,0],0,true,[[324,0,169.278],[1087,0,9.24235],[2779,0,13.507]]], +[[523.745,4729.31,0],0,true,[[2527,0,4.68924],[3538,0,234.502],[2896,0,6.41139]]],[[6462.86,6594.55,0],0,false,[[3661,1,267.367],[463,1,149.692]]],[[6100.99,900.814,0],0,true,[[1221,0,4.3569],[3098,0,2.80223],[1282,0,2.39525]]],[[6448.9,4332.22,0],0,false,[[2400,1,106.939],[2746,1,27.1278]]],[[2374.49,3217.51,0],0,true,[[3511,1,15.4401],[1016,0,90.7743],[3497,1,15.8125],[2357,0,22.5001]]], +[[8158.69,6249.17,0],0,false,[[3282,0,108.521],[3103,0,14.0336]]],[[4894.28,6955.18,0],0,true,[[2752,0,1.614],[813,0,237.635],[3423,0,6.26325],[1826,0,4.05049]]],[[7703.53,2974.83,0],0,true,[[557,1,24.0425],[3725,1,214.755],[1910,1,19.486],[2331,1,33.9128]]],[[554.864,7974.01,0],0,false,[[505,0,59.1255],[2522,0,274.582]]],[[7422.55,3161.09,0],0,false,[[223,1,95.5675],[3338,1,42.7402]]], +[[3203.17,862.599,0],0,true,[[443,0,3.33654],[1155,0,193.865],[2560,0,5.58916],[745,0,6.24403],[1485,0,7.4462]]],[[2785.19,456.292,0],0,true,[[3478,0,303.997],[3117,0,25.8761],[394,0,14.8379]]],[[1234.92,4104.49,0],0,true,[[2362,0,32.7873],[686,0,42.1198],[3253,0,19.2482]]],[[2846.07,3552.36,0],0,true,[[542,1,27.1301],[283,1,10.5939],[2540,1,29.4525],[2654,1,24.1193]]],[[4298.13,5038.45,0],0,true,[[3571,1,123.351],[2010,1,128.308],[2551,1,60.1565]]], +[[1785.71,7167.5,0],0,true,[[1974,1,80.1365],[956,1,24.3747],[345,1,4.30925]]],[[2893.84,3765.78,0],0,true,[[2531,0,17.2518],[2845,0,23.3866],[1216,0,7.97745]]],[[3274.76,6024.16,0],0,false,[[2702,0,44.7003],[2109,0,23.0369]]],[[2888.3,4176.46,0],0,true,[[3378,0,11.996],[3823,0,9.49052],[2867,0,6.85806]]],[[608.115,4335.91,0],0,false,[[1823,0,127.8],[3643,0,72.93]]], +[[4506.26,3520.94,0],0,false,[[2614,2,202.952],[3578,2,204.163]]],[[5629.26,1276.56,0],0,false,[[1717,0,130.805],[1137,0,163.014]]],[[2499.46,7111.7,0],0,false,[[28,0,113.499],[2287,0,15.1364]]],[[7676.28,3516.56,0],0,true,[[3772,0,192.492],[2243,0,7.08615],[1286,0,12.1812]]],[[2968.6,7396.68,0],0,false,[[1886,1,151.081],[1821,1,52.7435]]], +[[6115.38,873.317,0],0,false,[[647,0,15.1763],[2685,0,172.872]]],[[3565.76,4332.19,0],0,true,[[2715,0,24.0388],[1664,0,188.764],[2772,0,15.437]]],[[4114.84,4186.03,0],0,false,[[1571,0,11.0467],[3866,1,4.16849]]],[[1445.53,3384.32,0],0,true,[[1334,1,10.4441],[1038,1,136.095],[569,1,16.9279]]],[[4514.2,1574.24,0],0,false,[[2890,0,115.057],[3817,0,140.86]]], +[[4288.88,6063.94,0],0,true,[[837,2,8.22924],[3150,0,59.8261],[3673,2,12.4432]]],[[6922.73,6598.51,0],0,false,[[1527,0,107.044]]],[[2854.26,3226.42,0],0,true,[[890,0,20.586],[1340,0,12.7499],[1895,0,20.5822],[3647,0,0.615165]]],[[6255.85,5351.92,0],0,true,[[1410,1,11.791],[2868,1,256.571],[282,1,4.63491]]],[[4180.32,5966.07,0],0,true,[[2271,2,103.342],[2337,2,28.3055],[64,2,12.211]]], +[[7304.19,3561.17,0],0,false,[[3762,0,48.7325],[3159,0,237.702]]],[[4839.83,5249.1,0],0,false,[[3271,1,45.2857],[903,1,153.275]]],[[2768.13,1969.95,0],0,true,[[3829,1,18.7341],[2138,0,59.5221],[257,1,10.0733]]],[[7361.03,1146.48,0],0,true,[[770,0,27.2704],[38,0,272.297],[1007,0,19.5894]]],[[3796.99,5139.02,0],0,true,[[3590,1,6.5815],[2019,0,6.28857],[106,1,10.0358]]], +[[4469.34,1465.06,0],0,true,[[2890,0,3.88384],[1022,0,11.3612],[1296,0,12.78]]],[[4349.12,7181.85,0],0,false,[[3270,0,148.461],[3157,0,75.0747]]],[[35.3885,7036.22,0],0,false,[[845,0,74.3637]]],[[7670.45,3512.53,0],0,true,[[3179,0,218.607],[2223,0,7.08615],[1286,0,7.94475]]],[[7769.63,699.788,0],0,true,[[129,0,81.6593],[1039,0,11.7315],[2866,0,8.9676]]], +[[5508.51,1197.92,0],0,false,[[120,0,47.7605]]],[[5621.74,6302.26,0],0,true,[[1892,1,8.74493],[3132,1,169.723],[617,1,4.40226]]],[[2670.07,3590.11,0],0,false,[[376,1,18.6803],[2020,1,171.71]]],[[6292.66,6609.01,0],0,true,[[463,1,21.4547],[1094,1,22.3594],[2808,1,13.9357]]],[[3389.25,2228.22,0],0,false,[[194,0,11.115],[817,0,29.4612]]], +[[7647.43,463.451,0],0,false,[[511,1,6.58068],[382,1,1.17942]]],[[3016.12,4868.85,0],0,false,[[1850,0,5.96474],[2917,1,4.92326]]],[[3029,7392.93,0],0,true,[[3320,1,7.75693],[2478,1,14.6263],[2911,1,3.68611],[1821,1,8.118]]],[[1986.5,6165.64,0],0,false,[[2293,1,172.254],[2360,1,75.6533]]],[[1588.14,6913.17,0],0,true,[[3216,1,31.1926],[2873,1,48.2209],[618,1,9.14836]]], +[[2210.51,3251.91,0],0,false,[[3511,1,155.416],[1531,1,291.516]]],[[6881.84,3784.03,0],0,true,[[338,0,11.2723],[3672,0,121.119],[1055,0,6.303]]],[[4468.35,4712.1,0],0,false,[[258,1,13.216],[492,1,14.7884]]],[[4862.19,5939.58,0],0,true,[[438,0,107.361],[1627,0,15.7052],[3267,0,209.037]]],[[245.638,6102.72,0],0,true,[[3565,1,11.8764],[3383,0,41.7963],[988,1,15.5836]]], +[[1525.94,3280.36,0],0,false,[[2051,0,51.0556],[2680,0,91.8827]]],[[6443.51,2056.39,0],0,true,[[1501,1,7.70067],[1319,1,141.065],[3707,1,6.9157]]],[[3365.89,246.939,0],0,true,[[1378,1,7.8078],[1602,0,125.534],[1290,1,11.2748]]],[[3973.81,3799.25,0],0,true,[[1093,1,228.824],[1726,1,15.6794],[1429,1,4.56813]]],[[7562.48,1123.41,0],0,true,[[2496,0,14.7352],[58,0,202.545],[86,0,19.7446]]], +[[4576.88,6009.56,0],0,false,[[1098,0,177.106],[796,0,165.902]]],[[2018.62,0.809813,0],0,false,[[2758,0,222.632]]],[[7342.82,2145.41,0],0,false,[[875,0,234.527],[3539,0,208.253]]],[[4028.99,4097.39,0],0,false,[[2477,2,17.2513],[767,2,18.1481]]],[[1344.75,5967.17,0],0,true,[[3619,1,57.0762],[784,1,19.1997],[2613,1,6.83834]]], +[[1632.11,3306.75,0],0,false,[[531,1,50.9537],[3854,1,81.7565]]],[[4256.11,6036.27,0],0,true,[[535,2,21.4497],[2234,2,103.342],[159,2,10.3955]]],[[2052.26,4620.06,0],0,false,[[2925,1,16.9621],[3297,1,229.228]]],[[2138.36,6801.49,0],0,false,[[3858,0,25.189],[919,0,202.686]]],[[4560.62,2286.22,0],0,true,[[1181,2,23.3606],[56,2,21.4422],[118,2,8.43489]]], +[[1304.57,3901.04,0],0,false,[[2651,0,56.4233]]],[[2562.89,1722.07,0],0,false,[[1203,1,201.733],[2398,1,48.9971]]],[[6702.85,2058.61,0],0,false,[[1663,0,46.9385]]],[[4752.93,5239.7,0],0,true,[[2035,1,135.581],[192,1,21.2037],[746,1,4.3598]]],[[3785.03,5069.22,0],0,false,[[2509,0,70.8629]]], +[[5222.6,7259.41,0],0,true,[[3153,2,7.76414],[3455,0,299.939],[1680,2,10.3782]]],[[5862.74,4748.63,0],0,true,[[411,1,112.037],[823,1,24.0264],[1549,1,11.6492]]],[[347.76,4560.23,0],0,true,[[1113,0,18.3415],[3812,0,0.749458],[1595,0,19.0184],[2178,0,19.8958]]],[[6210.93,1253.52,0],0,false,[[574,0,166.208],[349,1,4.51213]]],[[7907.03,1888.9,0],0,true,[[2910,0,209.926],[810,0,16.5754],[577,0,28.4439]]], +[[2075.87,4952.38,0],0,false,[[3439,1,259.672],[1459,1,27.8916]]],[[4939.35,4078.3,0],0,false,[[2669,1,56.3876],[913,1,94.8972]]],[[2511.59,7102.77,0],0,true,[[2222,0,15.1364],[1066,0,218.671],[2943,0,18.0002]]],[[4436.61,4806.47,0],0,false,[[1684,0,7.68736],[125,0,26.426]]],[[6616.82,3554.06,0],0,true,[[2319,0,149.179],[1708,0,9.63658],[3541,0,9.50827]]], +[[4984.93,4131.53,0],0,false,[[1982,0,27.2097],[2562,0,21.4533]]],[[5305.49,38.4533,0],0,false,[[3466,1,6.22156],[2993,0,22.3139]]],[[362.538,5042.87,0],0,true,[[3863,0,7.33024],[3536,0,106.03],[2708,1,11.9273]]],[[2099.87,6295.29,0],0,true,[[2008,1,30.1333],[2253,1,172.254],[3451,1,12.3364]]],[[4853.86,1641.1,0],0,false,[[1413,0,127.519]]], +[[5573.23,5641.23,0],0,true,[[1486,1,245.704],[1911,1,25.2548],[3064,1,7.60038]]],[[7230.44,7193.85,0],0,false,[[3711,0,186.615]]],[[4512.71,2369.15,0],0,true,[[862,2,16.6663],[2881,2,30.2341],[1131,2,18.2494]]],[[3570.26,706.877,0],0,true,[[936,0,192.379],[2906,0,12.6328],[2914,1,15.4085]]],[[5722.17,5810.98,0],0,false,[[1911,1,201.929],[2997,1,103.439]]], +[[2292.07,6358.1,0],0,false,[[1211,0,96.3457],[1149,0,218.654]]],[[5508.79,1246.92,0],0,true,[[94,1,35.1364],[3036,1,33.8593],[1128,1,1.04268],[120,1,8.96368],[427,1,14.1679],[3550,1,12.6293],[297,1,6.41889]]],[[421.226,1845.05,0],0,true,[[3603,1,10.3051],[3520,1,363.132],[727,1,9.36598],[1971,1,7.45833]]],[[4204.62,3463.36,0],0,false,[[2655,0,26.3155],[2111,0,95.9245]]],[[7177.01,4381.09,0],0,true,[[2803,1,14.4471],[1101,0,19.1997],[1308,1,9.60595]]], +[[4605.48,2859.49,0],0,true,[[2621,1,27.847],[704,1,71.1903],[654,1,5.94105]]],[[2128.02,6328.68,0],0,false,[[1695,0,33.4259],[2008,1,13.6387]]],[[5119.76,2503.96,0],0,false,[[3260,0,140.824],[3727,0,159.696]]],[[4195.61,4380.5,0],0,true,[[3611,1,26.0163],[565,1,157.338],[2670,1,3.77926]]],[[5494.58,4483.44,0],0,false,[[3342,1,173.248],[3549,1,25.9005]]], +[[6122.75,7526.55,0],0,false,[[431,0,130.561]]],[[2278.72,4339.74,0],0,true,[[270,1,61.1402],[1975,1,26.9291],[405,1,11.543]]],[[1.40918,6417.78,0],0,false,[[3170,0,327.393]]],[[7038.51,1541.13,0],0,true,[[979,0,9.21152],[1347,0,22.1988],[122,0,19.592]]],[[5680.98,390.451,0],0,true,[[3356,0,201.296],[3650,0,18.5814],[3562,0,44.2209]]], +[[4577.22,4544.38,0],0,false,[[240,0,16.4504],[1283,0,97.6791]]],[[3876.24,1114.08,0],0,true,[[87,0,7.34597],[1317,0,297.846],[2714,0,3.56]]],[[1993.54,3588.04,0],0,false,[[2633,0,30.0171],[470,0,207.416]]],[[4093.75,5741.89,0],0,true,[[2650,0,5.56118],[631,0,10.2842],[3144,2,5.49067]]],[[6483.48,3506.69,0],0,false,[[3701,0,117.835],[2289,0,149.179]]], +[[2684.53,2009.29,0],0,true,[[2939,1,20.8907],[3176,1,11.0863],[655,1,17.0502]]],[[3592.97,8020.98,0],0,false,[[168,1,7.31717],[846,0,61.4054]]],[[4321.4,5466.8,0],0,false,[[981,0,32.1485],[590,0,219.992]]],[[4438.4,2964.81,0],0,false,[[1143,1,82.2416],[2806,1,13.9116]]],[[1605.29,3531.63,0],0,true,[[3504,0,5.43503],[2959,0,160.461],[1950,0,7.53955]]], +[[2882.52,3282.39,0],0,true,[[2325,0,0.0638955],[1385,0,20.9525],[1385,0,21.0164],[3726,0,22.7382],[3726,0,22.7382]]],[[36.2699,4189.97,0],0,true,[[263,0,220.31],[626,0,10.3578],[1951,0,59.19]]],[[1911.25,3257.76,0],0,true,[[3217,0,155.835],[2809,1,18.9666],[1531,1,9.33543]]],[[4183.06,2852.95,0],0,false,[[1604,0,162.085],[830,0,26.1134]]],[[4749.42,1111.75,0],0,false,[[621,0,12.5633],[2949,0,3.67498]]], +[[403.722,123.476,0],0,false,[[939,0,30.3761],[2370,0,49.8634]]],[[7737.25,2978.31,0],0,true,[[672,1,137.541],[2207,1,33.9128],[1910,1,19.5172],[557,1,24.6748]]],[[7647.1,6758.3,0],0,true,[[46,1,12.908],[264,0,258.343],[208,1,13.3413]]],[[4657.93,3995.73,0],0,true,[[1651,1,246.345],[3768,1,29.0719],[3293,1,14.7183]]],[[1962.27,197.877,0],0,true,[[2912,0,2.3022],[2975,0,189.346],[2758,0,4.97252],[1557,0,8.91954]]], +[[4224.16,2888.85,0],0,true,[[328,1,7.98613],[121,1,14.632],[3418,1,6.20392]]],[[6516.42,1080.79,0],0,false,[[2071,0,192.466],[156,1,6.88382]]],[[4158.73,5947.77,0],0,false,[[2234,2,28.3055],[2901,2,90.6619]]],[[2779.93,7314.43,0],0,false,[[1427,0,25.812]]],[[2923.17,818.182,0],0,false,[[2073,0,188.097],[2403,0,27.7002]]], +[[6506.22,5936.39,0],0,false,[[432,0,99.5262],[3744,0,133.434]]],[[5758.7,2744.86,0],0,false,[[3358,0,145.337]]],[[478.201,6539.16,0],0,false,[[3554,0,218.79],[2395,0,285.949]]],[[1534.78,7362.16,0],0,false,[[416,0,228.255],[1,0,262.116]]],[[2396.81,7765.92,0],0,false,[[2623,0,29.3162],[1927,0,142.378]]], +[[3972.28,5916.16,0],0,true,[[3376,1,7.11738],[2106,0,16.3126],[776,1,9.64134]]],[[4364.29,1572.78,0],0,false,[[3400,0,247.457],[1296,0,138.59]]],[[7036.51,6476.32,0],0,true,[[1730,1,21.6125],[2705,1,151.578],[3794,1,11.4631],[2838,1,17.756]]],[[537.569,1139,0],0,false,[[2351,0,144.724],[2749,0,191.52]]],[[4589.61,2777.88,0],0,true,[[704,1,12.0404],[2645,1,35.9465],[3233,1,112.025],[3564,1,3.97535]]], +[[2399,6626.94,0],0,true,[[683,0,12.2959],[1454,1,9.7818],[606,0,3.85639],[2601,1,10.9695]]],[[649.405,1101.81,0],0,false,[[524,0,142.317],[2348,0,144.724]]],[[3659.24,3086.64,0],0,false,[[3865,0,60.9973],[3680,0,216.024]]],[[5839.93,6407.92,0],0,false,[[447,1,394.961],[2591,1,19.416]]],[[7676.54,8058.72,0],0,false,[[1759,0,88.0574],[1946,0,138.218]]], +[[7461.1,3133.66,0],0,true,[[399,0,57.7703],[1117,0,7.63824],[1881,0,6.77067]]],[[5839.11,1472.36,0],0,true,[[1966,1,10.8765],[3579,0,109.885],[75,1,10.1485]]],[[2381.38,3238.93,0],0,true,[[3722,0,23.9593],[3511,1,20.2999],[3497,1,17.0166],[2204,0,22.5001]]],[[883.109,3687.21,0],0,false,[[1398,0,9.62651],[3723,0,92.0047]]],[[3841.35,6171.14,0],0,false,[[1193,0,170.692],[961,0,94.5638]]], +[[1937.43,6108.07,0],0,false,[[2253,1,75.6533],[486,1,322.954]]],[[2525.4,1054.58,0],0,false,[[42,2,256.693],[1796,2,259.366]]],[[1244.29,4135.87,0],0,true,[[3580,0,160.981],[2212,0,32.7873],[3253,0,15.5865]]],[[3502.3,3105.33,0],0,false,[[2902,0,168.069],[3586,0,241.789]]],[[1159.83,4718.31,0],0,true,[[1768,0,15.1966],[464,0,97.8919],[181,0,16.8327],[867,0,19.7612]]], +[[5529.25,1643.2,0],0,true,[[139,1,10.4513],[2412,1,53.7637],[3853,1,27.5702]]],[[2199.85,6405.93,0],0,false,[[165,1,30.8249],[2942,1,89.6666]]],[[539.784,4535.79,0],0,false,[[365,0,169.018],[1544,0,52.4102]]],[[3221.47,7161.91,0],0,false,[[303,0,9.27839],[249,1,15.1648]]],[[4736.96,2863.81,0],0,true,[[2119,0,10.9241],[1231,0,2.43542],[2647,0,15.532]]], +[[366.163,155.778,0],0,true,[[2330,0,49.8634],[2476,0,97.8305],[653,0,181.259]]],[[5437.41,6232.83,0],0,true,[[886,0,39.0642],[22,0,11.4803],[2438,0,14.9728]]],[[4169.65,5219.28,0],0,false,[[1488,1,74.4163],[3571,1,98.8389]]],[[41.4284,6096.11,0],0,true,[[3759,1,21.577],[3055,1,37.7182],[3170,1,13.5444]]],[[1858.54,1381.43,0],0,false,[[3553,0,44.6038],[2181,0,150.286]]], +[[2949.03,5474.24,0],0,false,[[2985,0,169.779],[1623,0,102.006]]],[[380.291,1575.1,0],0,false,[[1989,0,16.5509],[2709,0,137.704]]],[[5932.48,4726.16,0],0,true,[[2159,0,11.0892],[1549,0,71.3384],[2016,0,5.71213]]],[[6472.88,6034.69,0],0,true,[[170,0,132.704],[432,0,11.1047],[2857,0,3.98559]]],[[4885.77,807.528,0],0,true,[[3072,0,15.751],[69,1,14.3276],[1175,1,12.7373]]], +[[2816.64,1788.68,0],0,true,[[52,1,11.6453],[755,1,3.83648],[643,1,3.22513],[2740,1,3.31468]]],[[5308.14,362.716,0],0,true,[[1401,0,17.7175],[2611,0,172.276],[1945,0,11.3958]]],[[3394.93,2218.3,0],0,false,[[1614,1,25.0486],[1240,1,19.4389]]],[[1045.81,4758.96,0],0,false,[[867,0,113.032]]],[[3546.21,2314.44,0],0,false,[[387,1,3.50225],[3731,0,4.5423]]], +[[2870.42,4953.2,0],0,false,[[491,0,145.922],[3234,0,100.789]]],[[2854.21,5427.65,0],0,false,[[2687,0,156.404],[1623,0,22.1839]]],[[7117.99,6098.18,0],0,true,[[1445,0,8.81033],[212,0,9.04305],[2620,0,1.59638],[929,0,2.81765]]],[[6567.04,4337.96,0],0,true,[[2400,1,11.8048],[1929,0,21.9989],[1357,1,16.7902]]],[[1014.64,3837.2,0],0,true,[[1990,0,44.7942],[3617,0,11.2311],[1152,0,22.3517],[1916,0,17.8455]]], +[[3426.28,6698.84,0],0,false,[[1555,1,80.1065],[3662,1,22.6042]]],[[4407.18,2818.27,0],0,false,[[2936,1,91.9657],[3505,2,4.58555]]],[[2837.11,1262.54,0],0,true,[[3595,1,13.6583],[1081,1,117.217],[3069,1,8.45541]]],[[6346.2,933.273,0],0,false,[[3361,0,139.418],[2071,0,88.1921]]],[[561.042,3911.23,0],0,false,[[2748,0,184.304],[1497,0,136.324]]], +[[234.307,6423.81,0],0,true,[[2342,0,285.949],[378,0,16.7195],[2191,0,10.1277]]],[[7408.91,583.84,0],0,false,[[0,1,206.901],[299,1,58.4939]]],[[853.532,3475.59,0],0,true,[[3723,0,125.721],[77,1,11.5324],[1509,1,15.9999]]],[[2549.65,1674.96,0],0,true,[[2276,1,48.9971],[3114,1,12.057],[3476,1,9.11653],[735,1,17.0722]]],[[1977.75,7430.35,0],0,true,[[3127,1,25.7939],[271,1,144.894],[3498,1,11.5752]]], +[[6555.44,4340.11,0],0,true,[[2388,1,11.8048],[2203,1,106.939],[1357,1,27.9399]]],[[2636.31,3664.25,0],0,true,[[1160,0,40.3218],[3016,1,13.3938],[1254,1,14.1311]]],[[4082.64,3457.26,0],0,true,[[1900,1,10.1504],[3732,1,48.8111],[363,1,17.0507]]],[[2950.82,817.795,0],0,true,[[2339,0,27.7002],[977,0,266.827],[128,0,14.474],[310,0,16.6234]]],[[528.675,3041.09,0],0,false,[[3209,0,189.292],[953,0,36.509]]], +[[3583.84,1155.46,0],0,false,[[133,0,29.3218],[1151,0,61.2111]]],[[4074.81,1673.35,0],0,false,[[3038,0,80.9148]]],[[1862.69,900.161,0],0,true,[[3454,0,9.3587],[2710,0,102.802],[1060,0,9.50005]]],[[7962.58,6555,0],0,false,[[1399,1,46.421],[327,1,115.384]]],[[7717.51,6456.22,0],0,true,[[3682,0,15.2566],[244,0,79.5142],[1147,0,4.58847]]], +[[847.037,7840.77,0],0,false,[[1323,0,260.668],[544,0,272.349]]],[[6380.31,6310.5,0],0,false,[[3761,0,152.562],[1036,0,76.4747]]],[[5482.44,1669.64,0],0,false,[[2365,1,53.7637],[1266,1,253.348]]],[[5652.35,2189.87,0],0,true,[[3871,1,8.94369],[2816,0,17.7758],[2515,1,17.5987],[3531,0,20.923]]],[[6201.49,1498.95,0],0,true,[[1408,0,16.1389],[690,0,114.138],[3506,0,6.64453]]], +[[3744.14,3472.82,0],0,true,[[2692,1,21.7094],[786,1,273.586],[1366,1,12.2146]]],[[5875.46,244.234,0],0,false,[[2894,1,312.658],[169,1,24.5911]]],[[6866.17,766.66,0],0,false,[[30,0,143.85],[280,0,196.527]]],[[7296.28,6157.94,0],0,true,[[2625,1,17.6663],[721,1,140.989],[2944,1,5.70332]]],[[7008.63,4098.44,0],0,true,[[3764,0,111.109],[2483,0,12.5037],[1784,0,7.82452]]], +[[4213.24,2812.89,0],0,true,[[830,0,27.3549],[1873,1,15.9515],[982,1,18.21]]],[[1525.84,5597.38,0],0,false,[[3194,0,140.261],[3569,0,163.556]]],[[2821.26,3174.23,0],0,false,[[632,1,23.4057],[3522,1,42.7069]]],[[1391.27,6003.29,0],0,false,[[2613,0,84.5559]]],[[457.641,7416.03,0],0,true,[[2948,0,260.675],[633,0,12.7892],[3202,0,24.2444]]], +[[249.967,4406.16,0],0,false,[[2616,0,122.203],[1559,0,97.3738]]],[[6832.87,2021.5,0],0,false,[[451,0,92.5325],[2513,0,11.9874]]],[[5249.09,7670.26,0],0,true,[[1031,0,8.25559],[763,0,104.654],[2065,2,7.70297]]],[[4625.7,2970.76,0],0,true,[[641,1,11.0609],[3296,1,14.5205],[2488,1,24.6713]]],[[3745.93,3157.3,0],0,false,[[2767,0,148.602],[241,0,24.4454]]], +[[2836.4,6154.48,0],0,false,[[2689,0,126.793],[292,0,61.5085]]],[[362.538,4751.64,0],0,true,[[48,0,16.7149],[1158,0,7.48662],[1589,0,8.14639],[1183,0,0.749571]]],[[2645.21,7646.51,0],0,true,[[3584,0,20.2257],[2726,0,155.506],[588,0,29.3119]]],[[5277.08,7552.68,0],0,false,[[2065,2,114.073],[3437,2,67.9798]]],[[4685.93,3277.92,0],0,false,[[3014,1,32.5428],[3416,1,34.8239]]], +[[6240.81,6444.75,0],0,false,[[3716,0,59.1526]]],[[3847.62,5928.66,0],0,true,[[713,1,7.92571],[1255,1,40.5607],[2529,1,19.2066],[66,1,10.8659]]],[[8021,2245.36,0],0,false,[[111,0,375.724],[425,0,97.1507]]],[[5452.04,6229.75,0],0,true,[[2371,0,14.9728],[59,0,9.5471],[22,0,4.92065]]],[[230.026,1152.32,0],0,true,[[1479,0,25.968],[2528,0,31.9693],[3836,0,8.47028]]], +[[2938.42,3331.91,0],0,true,[[2083,0,16.3363],[347,0,11.5292],[347,0,11.5292],[2083,0,16.3363],[2440,0,0]]],[[2142.46,3972.24,0],0,true,[[2875,0,26.6529],[2691,0,2.43398],[1928,0,16.3458]]],[[5573.62,2270.85,0],0,false,[[1130,0,52.5371]]],[[2047.21,7115.78,0],0,false,[[51,0,179.177],[2104,0,68.9798]]],[[1165.88,3617.8,0],0,false,[[609,0,8.18532],[354,0,132.875]]], +[[7063.25,3784.28,0],0,true,[[3559,1,5.1416],[752,1,222.972],[2961,1,4.82005]]],[[4786.46,2.54179,0],0,false,[[564,1,62.6156]]],[[1725,4692.21,0],0,false,[[2819,1,56.3957],[1715,1,188.8]]],[[4980.05,1510.05,0],0,false,[[2583,0,11.7499],[2576,1,4.49987]]],[[353.714,7674.08,0],0,false,[[3220,0,74.806],[1629,0,77.1622]]], +[[364.668,4699.55,0],0,true,[[1420,0,24.8561],[3339,0,18.7798],[245,0,0.749391],[1343,0,19.4266]]],[[2713.59,777.019,0],0,false,[[2966,0,83.9766]]],[[5966.25,1717.12,0],0,true,[[695,0,7.68299],[3844,0,196.659],[1792,0,14.0581]]],[[2954.45,1832.21,0],0,true,[[1359,1,207.728],[1707,1,29.6801],[952,1,7.04612]]],[[364.764,4656.21,0],0,true,[[2555,0,13.5614],[1705,0,17.817],[1180,0,0.749197],[1420,0,18.4832]]], +[[1653.27,1860.97,0],0,false,[[2048,1,283.011],[1026,1,172.426]]],[[6457.41,2071.87,0],0,false,[[2068,1,74.1662],[1501,1,13.8994]]],[[4538.85,6528.95,0],0,true,[[337,0,4.24893],[3013,0,12.1367],[1933,0,4.44189]]],[[7783.02,1473.62,0],0,true,[[766,0,24.2144],[2128,0,341.883],[843,0,13.1567],[1295,0,17.7258]]],[[5125.94,4885.06,-0.102341],0,false,[[3011,1,12.9029],[3751,0,19.9355]]], +[[7080.04,4010.53,0],0,false,[[3287,1,133.362],[3559,1,223.172]]],[[3954.21,2573.9,0],0,false,[[1592,1,271.974],[3604,2,8.68949]]],[[7028.94,1763.75,0],0,false,[[674,0,149.971],[1350,0,355.886]]],[[3396.98,6059.29,0],0,true,[[2652,0,19.7293],[3479,0,189.958],[3286,0,13.7316]]],[[3576.54,6584.69,0],0,false,[[3336,1,9.96707],[1054,1,16.8067]]], +[[870.248,8170.46,0],0,true,[[3368,1,21.6395],[141,1,58.2515],[60,1,6.85465]]],[[526.322,3134.05,0],0,false,[[844,0,19.4825],[896,0,38.2969]]],[[4741.21,4428.99,0],0,false,[[1283,0,148.926],[1818,0,94.6409]]],[[510.774,7170.96,0],0,false,[[3164,0,84.8121],[206,0,10.9431]]],[[348.084,4427.58,0],0,true,[[253,0,5.77615],[213,0,0.751566],[586,0,6.18707],[888,0,6.50185]]], +[[3806.85,5948.93,0],0,false,[[3605,0,22.3668],[2100,0,15.3188]]],[[2648.06,1.92425,0],0,false,[[2000,0,112.436]]],[[4183.26,5415.67,0],0,false,[[1721,0,107.738],[981,0,115.294]]],[[4167.03,4301.76,0],0,true,[[1781,1,79.5965],[1674,1,22.1014],[96,1,10.1045]]],[[1628.15,3212.26,0],0,true,[[1769,0,17.3609],[737,0,327.584],[1247,0,14.6569]]], +[[342.945,4609.05,0],0,true,[[571,0,12.2197],[3815,0,0.748841],[561,0,12.9145],[1177,0,16.4838]]],[[348.351,251.455,0],0,true,[[2370,0,97.8305],[1105,0,7.28991],[92,0,7.59271]]],[[4029.91,4114.61,0],0,true,[[3302,2,18.3585],[2268,2,17.2513],[2794,2,5.85392]]],[[3035.64,7405.96,0],0,true,[[2252,1,14.6263],[1522,1,30.2282],[2569,1,12.0451]]],[[7028.86,399.688,0],0,true,[[2012,1,5.05726],[3343,0,13.3965],[3791,1,15.4883]]], +[[4392.3,3060.42,0],0,false,[[61,1,15.3917],[498,1,3.45716]]],[[6913.37,3158.25,0],0,false,[[2004,0,96.5636]]],[[3129.7,7570.6,0],0,false,[[195,0,15.7844],[547,1,4.95249]]],[[7010.83,4086.14,0],0,true,[[1784,0,19.3069],[1948,0,226.39],[2419,0,12.5037]]],[[4502.08,3161.35,0],0,false,[[286,2,31.4779],[1392,2,32.725]]], +[[6519.87,8190.75,0],0,false,[[1678,0,281.872]]],[[7647.84,446.403,0],0,true,[[2713,1,10.4897],[397,1,376.227],[3785,1,19.1841],[3915,1,10.7546],[2713,1,10.4862]]],[[4229.57,5359.8,0],0,false,[[2561,0,128.414],[2751,0,134.48]]],[[4630.19,2995.02,0],0,true,[[661,1,233.597],[2428,1,24.6713],[641,1,14.3329]]],[[5511.42,4331.54,0],0,true,[[383,1,19.4899],[3556,1,56.4272],[3568,1,7.72982],[628,1,6.02633]]], +[[2882.22,3163.38,0],0,true,[[2566,0,244.107],[1256,0,12.4413],[202,1,16.2383]]],[[6251.47,5966.88,0],0,true,[[44,0,117.519],[1207,0,74.7881],[170,0,103.869]]],[[4328.14,2940.13,0],0,false,[[132,1,18.6325],[1529,1,9.59025]]],[[3991.08,4380.5,0],0,true,[[1955,0,14.6509],[187,0,148.95],[2155,0,21.0556]]],[[6361.84,4328.86,0],0,true,[[512,0,74.1544],[560,1,12.3023],[1976,1,11.5347]]], +[[5238.54,4159.12,0],0,true,[[2514,1,24.7156],[3022,1,146.541],[1264,1,11.5853]]],[[7555.86,1136.54,0],0,true,[[3649,0,11.9788],[2264,0,14.7352],[86,0,5.83186]]],[[566.582,5838.47,0],0,true,[[3250,0,13.0296],[3366,0,149.809],[3484,0,14.08]]],[[5863.1,4368.44,0],0,false,[[711,1,27.3212],[3827,1,46.03]]],[[4254.94,6047.79,0],0,false,[[235,0,108.495],[159,0,6.80701]]], +[[5215.44,2898.21,0],0,false,[[3335,1,25.0916],[508,1,53.3555]]],[[1807.05,4674.06,0],0,true,[[599,1,13.2807],[2819,1,27.6853],[3297,1,23.8972]]],[[4058.47,5317.65,0],0,false,[[27,0,12.0974],[488,0,22.8789]]],[[5838.5,629.723,0],0,false,[[549,0,92.2587],[1112,0,14.5492]]],[[4007.43,4596.55,0],0,false,[[3644,0,89.6141],[848,0,19.0574]]], +[[1641.65,61.2759,0],0,false,[[3874,0,178.54]]],[[6384.2,2525.77,0],0,false,[[174,0,81.8607]]],[[5669.07,7257.11,0],0,false,[[3226,0,41.7083],[2938,0,181.127]]],[[2993.77,1979.04,0],0,false,[[500,1,73.6842],[854,1,11.1221]]],[[3808.33,5135.44,0],0,false,[[2019,0,5.98331],[2279,0,70.8629]]], +[[1418.25,6903.71,0],0,true,[[3822,0,19.8993],[3738,0,75.5429],[1300,0,16.8652]]],[[426.897,5475.03,0],0,true,[[1797,0,32.8188],[1261,0,272.045],[3808,0,16.6344]]],[[5106.98,4419.96,0],0,false,[[2599,0,120.976],[1689,0,241.142]]],[[6826.68,2031.77,0],0,true,[[2426,0,11.9874],[680,0,6.36367],[1789,0,1.63338],[3636,0,14.286]]],[[5262.75,4164.03,0],0,false,[[3556,1,249.828],[2495,1,24.7156]]], +[[5638.19,2200.31,0],0,true,[[3871,1,21.8934],[70,1,60.3396],[2413,1,17.5987],[3531,1,16.2975]]],[[972.81,3899.02,0],0,true,[[838,0,127.278],[1803,0,14.8566],[1990,0,29.9377]]],[[7991.44,6343.37,0],0,true,[[2848,0,24.8469],[3635,0,271.988],[3820,0,12.857]]],[[6752.1,903.686,0],0,false,[[907,0,81.6758],[3756,0,44.0717]]],[[2833.27,4420.76,0],0,true,[[1723,0,197.583],[3691,0,10.299],[2885,1,7.89852]]], +[[5921.69,4878.3,0],0,true,[[3255,1,17.508],[2605,1,45.5792],[3367,1,10.0675]]],[[5803.11,4622.11,0],0,false,[[726,1,232.968],[411,1,28.4515]]],[[432.022,7738.92,0],0,true,[[1629,0,24.9634],[2208,0,274.582],[980,0,11.2544]]],[[6514.4,5638.86,0],0,false,[[2183,0,134.879],[502,0,44.5642]]],[[4624.5,5489.37,0],0,false,[[1246,0,208.331],[1843,0,93.5362]]], +[[4387.84,2898.26,0],0,true,[[2666,2,23.245],[1756,2,29.4246],[725,2,15.1318]]],[[5879.78,7674.12,0],0,false,[[3265,0,144.892],[3324,0,21.2357]]],[[520.571,4732.76,0],0,true,[[2608,0,159.69],[2200,0,4.68924],[2896,0,7.85086]]],[[237.589,1134.45,0],0,true,[[1487,0,374.686],[14,0,23.6365],[2439,0,31.9693]]],[[3852.34,5910.05,0],0,true,[[3070,1,306.986],[66,1,29.7888],[2436,1,19.2066]]], +[[3908.85,1373.13,0],0,true,[[558,0,190.487],[995,0,18.285],[1238,0,14.8817]]],[[2882.32,3778.62,0],0,true,[[989,0,150.93],[2216,0,17.2518],[1216,0,10.4916]]],[[6844.5,4352.24,0],0,true,[[2924,0,3.49194],[1749,0,4.62883],[1200,0,5.18467]]],[[2841.75,3658.83,0],0,false,[[3840,0,86.4868],[1360,0,13.3913]]],[[3998.32,3306.27,7.19218],0,false,[[2767,0,193.315],[1994,0,111.682]]], +[[3323.06,7202.85,0],0,false,[[893,0,87.6884],[818,0,83.6969]]],[[6073.98,4309.65,-1.42537],0,false,[[3684,2,6.279],[167,2,15.6004]]],[[3796.73,6534.14,0],0,true,[[2864,0,157.534],[1125,0,9.23598],[454,0,17.1509]]],[[7077.66,4196.88,0],0,true,[[3600,1,14.3429],[76,0,32.209],[1787,1,13.3554],[3007,0,15.5599]]],[[2684.55,7803.88,0],0,false,[[1043,0,68.3343]]], +[[2850.19,3523.2,0],0,true,[[283,1,20.9716],[1166,1,166.679],[2213,1,29.4525],[2654,1,8.84569]]],[[1716.27,289.45,0],0,false,[[1888,0,125.714],[2602,0,100.207]]],[[8074.54,5356.66,0],0,true,[[3638,0,30.5959],[3499,0,26.1],[193,0,12.9189]]],[[3569.56,6569.67,0],0,true,[[1054,1,6.5002],[3709,1,21.512],[2805,1,10.2941],[506,1,18.7587]]],[[3767.24,1722.69,0],0,true,[[832,2,20.2752],[1425,2,24.5199],[3780,2,11.1475]]], +[[3427.31,2341.89,0],0,true,[[1919,0,6.6364],[395,0,148.598],[3695,0,7.56609]]],[[5044.66,6802.48,0],0,false,[[1991,2,18.4633],[3637,2,246.777]]],[[1493.63,503.427,0],0,true,[[103,2,34.5585],[3876,2,398.23],[955,2,17.6005]]],[[7392.85,5651.62,0],0,true,[[2880,1,10.3878],[2135,1,254.743],[3107,1,20.2185]]],[[1770.02,7813.84,0],0,false,[[2152,1,262.419],[1682,1,402.881]]], +[[3255.95,5527.43,0],0,true,[[3045,0,6.04038],[3071,0,10.8678],[578,0,16.7976]]],[[4351.33,5066.27,0],0,false,[[2214,1,60.1565],[1157,1,282.796]]],[[4245.59,3876.23,0],0,false,[[2967,0,84.9401],[3528,0,66.6435]]],[[6114.41,1316.15,0],0,true,[[3219,1,5.00866],[1408,0,187.583],[3613,1,9.9611]]],[[3701.54,4404.6,0],0,true,[[700,0,6.88807],[2715,0,131.361],[2923,0,4.38132]]], +[[361.916,4642.96,0],0,true,[[1917,0,8.69713],[1180,0,12.8373],[2454,0,13.5614],[3215,0,0.749812]]],[[314.116,7421.52,0],0,false,[[3420,0,65.2534],[3220,0,185.864]]],[[528.03,3473.88,0],0,true,[[77,1,315.133],[357,1,18.9918],[290,1,7.43813]]],[[1233.37,2686.69,0],0,false,[[948,1,191.89],[3042,1,138.219]]],[[1761.11,6509.31,0],0,false,[[489,0,262.321]]], +[[3200.88,857.522,0],0,true,[[977,0,67.6582],[443,0,4.39868],[2210,0,5.58916]]],[[4126.78,5283.41,0],0,false,[[1488,1,4.58654],[2487,0,128.414]]],[[5006.28,4133.6,0],0,false,[[2290,0,21.4533],[1913,0,19.5416]]],[[3495.5,2124.69,0],0,true,[[962,0,53.5626],[107,0,13.2595],[1332,0,8.03471]]],[[5806.92,5899.16,0],0,true,[[2997,1,19.1199],[3884,1,5.47577],[2588,1,11.7387]]], +[[5318.42,2922.05,0],0,true,[[658,1,241.432],[3581,1,28.0614],[2118,1,9.84429]]],[[3023.5,2964.93,0],0,false,[[265,0,57.8783],[2490,0,244.107]]],[[8189.75,7331.84,0],0,false,[[2675,1,340.506]]],[[4485.1,8143.43,0],0,true,[[538,0,96.9849],[1935,0,140.566],[483,0,157.882]]],[[3038.71,7417.6,0],0,true,[[1371,0,90.8347],[2478,1,12.0451],[1522,1,18.7674]]], +[[3490.25,6724.58,0],0,false,[[504,1,141.322],[2145,1,33.9828]]],[[7455.82,994.308,0],0,false,[[332,0,230.233],[3649,0,163.26]]],[[2650.81,5414.33,0],0,false,[[1623,0,210.408],[3905,0,223.789]]],[[5746.9,8188.71,0],0,false,[[2876,1,252.648]]],[[3018.71,7115.66,0],0,false,[[970,0,161.111],[2978,0,203.677]]], +[[2574.06,2111.32,0],0,false,[[3274,0,235.343],[3060,0,65.6756]]],[[4981.99,1514.11,0],0,true,[[2974,1,140.351],[1044,1,22.7623],[2448,1,4.49987]]],[[4049.89,5520,0],0,true,[[3598,2,25.7572],[2047,2,60.4345],[1351,2,15.6914]]],[[1118.68,5698.33,0],0,false,[[3521,0,13.2844],[2843,0,154.919]]],[[7630.39,6592.11,0],0,true,[[1677,0,33.7855],[2776,0,20.9335],[895,0,10.6021]]], +[[3587.68,6682.5,0],0,false,[[3648,1,17.9054],[341,1,55.7419]]],[[2281.32,4590.58,0],0,false,[[899,0,113.231],[3413,0,144.227]]],[[7044.49,6631.21,0],0,false,[[3183,0,19.4724],[1122,0,199.281]]],[[4968.68,1512.98,0],0,false,[[1666,0,117.459],[2448,0,11.7499]]],[[1966.8,756.199,0],0,true,[[381,0,11.3101],[3111,2,18.4557],[1236,2,12.0731]]], +[[7579.85,486.021,0],0,true,[[3718,1,21.5492],[3785,1,59.6408],[173,1,6.81775]]],[[4096.08,3306.42,0],0,false,[[3311,1,77.2987],[1572,1,23.9344]]],[[1426.12,6755.1,0],0,false,[[1195,1,152.354],[3555,1,21.7034]]],[[5814.6,5908.04,0],0,true,[[2564,1,11.7387],[3327,1,43.8635],[3884,1,9.20675]]],[[6482.45,4213.9,0],0,true,[[1855,0,4.39211],[12,0,110.083],[3674,0,11.8073]]], +[[276.808,842.783,0],0,true,[[1897,1,52.4092],[2123,1,31.293],[3891,1,2.57011]]],[[5820.59,6406.25,0],0,false,[[2353,1,19.416],[1226,1,14.9587]]],[[347.6,3846.47,0],0,false,[[3394,0,180.366],[1320,0,67.7778]]],[[7996.06,4770.34,0],0,false,[[424,0,113.749],[1632,0,199.926]]],[[2932.11,6954.93,0],0,true,[[13,0,19.5951],[2870,0,18.9333],[2735,1,4.14457],[2742,1,18.0124]]], +[[6258.4,797.795,0],0,true,[[1777,0,163.692],[1170,0,19.534],[3567,0,45.6786]]],[[2463.15,7560.6,0],0,false,[[429,0,84.5855],[2623,0,192.616]]],[[7806.37,6515.74,0],0,false,[[2058,0,8.58094],[3512,0,75.3935]]],[[6766.84,1263.35,0],0,false,[[2627,0,309.527],[465,0,183.646]]],[[5132.13,4305.06,0],0,false,[[972,0,3.60651],[2512,0,120.976]]], +[[3456.66,6048.68,0],0,false,[[2142,0,251.807],[3286,0,54.7248]]],[[2405.02,6636.12,0],0,true,[[88,1,261.611],[1454,1,20.499],[606,1,8.96434],[2350,1,10.9695]]],[[1760.43,201.009,0],0,false,[[2541,0,100.207],[656,0,58.2881]]],[[2586.81,1680.53,0],0,false,[[755,1,252.252],[3114,1,26.0103]]],[[1826.29,7238.66,0],0,true,[[1642,1,29.7951],[471,1,36.8226],[3154,1,18.7715]]], +[[5933.28,4922.23,0],0,true,[[2520,1,45.5792],[887,1,18.6299],[1832,1,6.72281]]],[[6480.88,7400.94,0],0,false,[[2699,1,230.012],[1712,1,313.573]]],[[3149.17,7629.48,0],0,true,[[124,1,15.0312],[3411,1,190.26],[1461,1,6.59549]]],[[370.887,4762.97,0],0,false,[[3142,0,12.9127],[2527,0,159.69]]],[[7635.85,6624.85,0],0,true,[[1677,1,8.22791],[412,1,20.5094],[20,1,21.6046]]], +[[4537.8,4238.77,0],0,true,[[1430,1,166.662],[1651,1,25.4715],[2790,1,10.5567]]],[[5474.13,407.277,0],0,false,[[2381,0,172.276],[3356,0,20.485]]],[[6835.91,5339.22,0],0,true,[[1925,1,15.3029],[881,1,99.2769],[3272,1,7.56785]]],[[1342.11,5973.48,0],0,false,[[2269,1,6.83834],[2423,0,84.5559]]],[[4466.87,3719.05,0],0,false,[[2220,2,202.952],[1466,0,74.9604]]], +[[4429.23,6300.1,0],0,true,[[214,0,133.093],[400,0,6.77024],[1248,0,8.02302]]],[[137.015,4450.32,0],0,false,[[596,0,92.1645],[2425,0,122.203]]],[[5513.74,6691.06,0],0,true,[[1208,1,9.71554],[3587,1,68.5208],[1397,1,7.19199]]],[[5563.44,6675.93,0],0,false,[[1045,1,179.741],[1208,1,43.6144]]],[[271.988,6893.19,0],0,false,[[1325,0,78.5086],[2136,0,134.785]]], +[[7119.3,6099.09,0],0,true,[[1445,0,7.22771],[929,0,4.40898],[2387,0,1.59638]]],[[4610.45,2886.87,0],0,false,[[3296,1,70.7618],[2305,1,27.847]]],[[2741.59,7020.98,0],0,false,[[2040,0,174.483],[3239,0,20.6553]]],[[2394.17,7736.73,0],0,true,[[2596,0,192.616],[2344,0,29.3162],[2765,0,20.7495]]],[[2533.42,77.1185,0],0,true,[[2110,0,13.8006],[1184,0,10.4944],[3083,0,5.03845]]], +[[7309.46,6146.17,0],0,true,[[2904,1,14.6922],[2944,1,13.7821],[2418,1,17.6663]]],[[5112.29,2872.33,0],0,true,[[2644,1,23.4641],[3769,1,24.1986],[821,1,12.2186]]],[[6761.63,1571.72,0],0,false,[[3191,0,172.447],[2598,0,309.527]]],[[7602.58,6619.34,0],0,true,[[2953,1,42.7362],[115,1,12.546],[412,1,13.4905]]],[[4410.46,3204.31,0],0,true,[[2913,0,102.262],[1148,0,6.37406],[1355,0,11.3932]]], +[[3496.95,1578.47,0],0,true,[[1609,2,161.274],[197,2,30.273],[351,2,18.343],[1370,2,13.1692]]],[[1281.78,4049.31,0],0,true,[[2718,0,10.2974],[3026,0,65.3321],[2673,0,6.38064]]],[[1162.82,2099.86,0],0,true,[[1645,1,13.2546],[3325,0,159.119],[3436,1,17.8479],[460,0,22.1625]]],[[2003.16,3615.84,0],0,true,[[1260,0,7.63548],[2317,0,30.0171],[352,0,4.35298]]],[[1043.41,6036.29,0],0,true,[[784,1,290.051],[1453,1,20.841],[509,1,7.30629],[966,1,10.9185]]], +[[5567.62,2915.42,0],0,true,[[1812,1,20.0212],[2831,1,6.6218],[2682,1,4.50038],[658,1,8.10374]]],[[2083.71,6488.48,0],0,false,[[1695,0,132.828],[489,0,92.8935]]],[[6359.91,5443.26,0],0,true,[[3360,0,10.1373],[2169,0,22.7087],[607,0,4.8531]]],[[2902.43,1851.2,0],0,true,[[1373,1,4.60449],[52,1,94.5806],[1010,1,2.51198]]],[[5719.59,914.64,0],0,true,[[3051,0,237.515],[2029,1,10.0979],[2768,1,14.1008]]], +[[7721.28,6400.7,0.00012207],0,false,[[370,0,16.015]]],[[1491.36,8188.02,0],0,false,[[1335,1,189.653]]],[[3934.68,6714.85,0],0,false,[[1125,0,226.327],[375,0,198.453]]],[[1925.98,1998.85,-1.01509],0,false,[[3888,2,15.5972],[1579,2,3.45592]]],[[5135,2878.21,0],0,true,[[508,1,29.6967],[2626,1,23.4641],[3102,1,11.289]]], +[[4582.56,2742.68,0],0,false,[[2349,1,35.9465],[117,1,152.402]]],[[2914.29,1851.14,0],0,false,[[1373,1,8.13918],[952,0,38.5061]]],[[4728.68,2850.71,0],0,true,[[3203,0,108.141],[1231,0,17.234],[2119,0,11.9073],[2369,0,15.532]]],[[4460.63,4698.95,0],0,false,[[258,1,2.69367],[2795,0,4.38491]]],[[1202.35,2533.17,0],0,false,[[1099,1,9.2168],[346,0,324.292]]], +[[4090.79,5737.18,0],0,true,[[3252,0,4.5007],[2318,0,5.56118],[3144,2,4.67586]]],[[1339.22,3945.32,0],0,false,[[513,0,50.878],[2275,0,56.4233]]],[[3394.38,6078.81,0],0,true,[[1770,0,217.487],[2463,0,19.7293],[1367,0,9.98598],[3286,0,15.2049]]],[[7723.5,6375.5,0.000244141],0,false,[[2893,0,12.564]]],[[2855.59,3530.2,0],0,true,[[283,0,18.2919],[413,0,56.6898],[2213,1,24.1193],[2540,1,8.84569]]], +[[4213.72,3488.03,0],0,true,[[3859,0,19.8887],[2303,0,26.3155],[3833,0,4.07147],[1852,0,8.11812]]],[[4042.92,8003.84,0],0,false,[[1005,0,26.5634],[3269,0,306.492]]],[[4993.47,2753.42,0],0,true,[[1448,1,14.573],[2086,1,117.419],[3474,1,11.8787]]],[[1942.24,2005.61,0],0,false,[[3888,2,2.43611],[1095,1,13.6829]]],[[6609.63,5980.23,0],0,false,[[1600,0,131.022]]], +[[4286.04,4109.34,0],0,true,[[57,0,23.4121],[957,0,69.9824],[1648,0,108.343]]],[[1317.47,4302.13,0],0,true,[[1116,0,55.8784],[3580,0,25.5876],[380,0,10.8347]]],[[1246.85,7948.39,0],0,true,[[3612,0,22.9927],[35,0,31.1858]]],[[4379.78,4619.7,0],0,false,[[565,1,149.791],[1423,1,96.4191]]],[[7789.21,3901.55,0],0,false,[[904,0,91.6026],[3050,0,72.838]]], +[[3701.14,3151.02,0],0,true,[[241,0,20.8052],[534,0,20.6959],[3865,0,16.1906]]],[[4388.47,2921.5,0],0,true,[[1481,2,18.6056],[2525,2,23.245],[2194,2,9.95677]]],[[4214.01,4795.19,0],0,false,[[2092,2,225.393],[1884,2,82.9822]]],[[369.334,3476.08,0],0,true,[[357,1,139.841],[3860,1,21.2273],[3101,1,7.69348]]],[[4985.8,4109.78,0],0,false,[[356,1,27.8031],[2286,1,56.3876]]], +[[4191.97,4381.51,0],0,false,[[708,0,83.1437],[2308,1,3.77926]]],[[2336.9,302.989,0],0,false,[[3084,0,71.077]]],[[4319.36,4039.88,0],0,true,[[957,0,24.7023],[790,0,143.879],[1504,1,21.4359]]],[[1285.43,4044.08,0],0,true,[[2718,0,5.94081],[2161,0,77.1682],[2631,0,6.38064]]],[[6883.62,881.06,0],0,true,[[1693,1,128.506],[2834,1,23.7309],[1728,1,8.08326]]], +[[8019.14,7626.3,0],0,true,[[3441,1,31.3473],[2567,1,340.506],[1503,1,7.33558]]],[[5083.81,3903.65,0],0,true,[[3665,0,15.359],[718,0,21.1334],[1772,0,4.45863]]],[[1725.14,2907.82,0],0,false,[[737,0,96.9879]]],[[3507.41,2269.8,0],0,false,[[1049,0,24.789],[962,0,126.322]]],[[8113.04,4956.52,0],0,true,[[1785,0,14.9201],[1077,0,10.3451],[3062,0,12.9927]]], +[[1607.84,3240.07,0],0,false,[[2260,0,91.8827],[1769,0,17.3611]]],[[3279.74,3236.86,0],0,false,[[3586,0,149.712],[3749,1,9.65062]]],[[5571.04,2912.54,0],0,true,[[1599,0,151.655],[2635,1,4.50038],[1812,1,16.6677]]],[[4457.61,4177.07,0],0,false,[[790,0,85.9655],[2790,0,97.5232]]],[[46.5407,4473.31,0],0,true,[[1621,0,156.966],[795,0,25.2378],[596,0,9.31554]]], +[[6005.15,773.242,0],0,false,[[2225,0,172.872],[1808,0,143.372]]],[[4770.78,6558.83,0],0,false,[[3911,0,69.9663],[126,0,14.7308]]],[[2778.38,5303.37,1.39253],0,false,[[835,0,144.407],[2386,0,156.404]]],[[7093.32,5635.1,0],0,true,[[3086,0,10.621],[458,0,316.832],[750,0,13.0937]]],[[2817.7,6263.37,0],0,false,[[2927,0,96.6466],[2430,0,126.793]]], +[[6660.81,347.414,0],0,true,[[637,0,19.502],[3914,0,97.8999],[3591,0,2.7938]]],[[2144.09,3970.43,0],0,true,[[2441,0,2.43398],[3432,0,125.166],[1928,0,16.0821]]],[[3759.86,3487.71,0],0,true,[[1561,1,28.6095],[1366,1,10.3491],[2415,1,21.7094]]],[[4573.56,2241.03,0],0,false,[[1205,0,39.2867]]],[[278.2,1150.03,0],0,true,[[2749,0,69.8277],[14,0,20.6168],[1505,0,10.121],[507,0,21.3793]]], +[[5725.82,4410.95,0],0,false,[[3827,1,97.7017],[90,1,47.7081]]],[[5452.83,1246.87,0],0,false,[[2886,0,136.662],[427,0,45.5891]]],[[3834.14,3650.24,0],0,true,[[548,0,21.2683],[964,0,208.083],[3317,1,17.758]]],[[7915.35,6799.2,0],0,false,[[698,0,203.06],[234,0,274.176]]],[[6699.05,7328.56,0],0,false,[[1091,1,24.3933],[2606,1,230.012]]], +[[6860.26,4348.23,0],0,false,[[2046,0,22.9311],[2924,0,13.146]]],[[1772.57,4909.83,0],0,false,[[3295,0,66.3486]]],[[3275.59,6068.83,0],0,true,[[2217,0,44.7003],[2884,0,14.5559],[101,0,10.5238]]],[[494.867,4413.11,0],0,true,[[9,0,126.756],[248,0,25.0745],[2070,0,13.5076]]],[[336.297,4782.78,0],0,true,[[392,0,47.7457],[1344,0,4.03465],[3806,0,10.4993]]], +[[6887.64,6503.51,0],0,false,[[2347,1,151.578],[336,1,29.084]]],[[2915.31,7166,0],0,false,[[1258,0,126.051],[3688,0,246.893]]],[[2842.23,468.685,0],0,false,[[3117,0,32.5115]]],[[373.79,5038.94,0],0,true,[[3303,1,232.474],[3093,1,26.3908],[3863,1,12.1771],[2292,1,11.9273]]],[[438.479,1466.52,0],0,false,[[2376,0,137.704],[1019,0,79.7748]]], +[[1926.93,835.936,0],0,false,[[2407,0,102.802],[381,0,93.5765]]],[[5322.77,2814.96,0],0,false,[[2118,0,114.257]]],[[2702.29,183.85,0],0,false,[[2050,0,74.5034],[775,0,207.105]]],[[7640.42,453.781,0],0,true,[[2713,1,0.0671229],[2486,1,10.4897],[3785,1,9.46269],[3915,1,5.11272],[511,1,5.32168],[382,0,13.0428]]],[[3874.08,1116.91,0],0,true,[[2316,0,3.56],[3169,0,155.849],[87,0,5.65605]]], +[[3588.62,4339.57,0],0,true,[[2554,0,131.361],[2226,0,24.0388],[2772,0,10.4843]]],[[4023.6,3653.76,0],0,true,[[1304,1,9.72549],[530,0,130.65],[2072,1,11.8585]]],[[2641.67,6853.25,0],0,false,[[983,0,211.906],[2023,1,13.2191]]],[[1291.25,4045.27,0],0,true,[[3642,0,107.178],[2673,0,5.94081],[2631,0,10.2974]]],[[1501.83,3182.27,0],0,false,[[1702,0,164.757],[1793,0,108.095]]], +[[7157.08,518.066,0],0,false,[[49,1,180.676],[3791,1,179.325]]],[[6545.87,1071.12,0],0,false,[[156,1,33.8342],[2947,1,228.782]]],[[5148.43,3379.9,0],0,false,[[3589,0,18.9858],[1163,0,197.082]]],[[6294.62,4853.62,0],0,true,[[1228,0,14.1921],[3792,0,105.551],[3185,0,13.2826]]],[[5429.75,6810.55,0],0,true,[[1034,1,46.2591],[2737,1,27.2682],[3187,1,8.1292]]], +[[4240.26,6240.24,0],0,true,[[1890,0,79.3349],[600,0,10.0535],[1202,0,7.40225]]],[[2646.88,7492.75,0],0,true,[[2432,0,155.506],[2829,0,2.7231],[2734,0,5.68429]]],[[2160.54,7334.27,0],0,true,[[541,1,27.1585],[3189,1,128.553],[1733,1,15.2475]]],[[6482.1,2646.1,0],0,true,[[144,1,11.0204],[3546,1,114.802],[2839,1,26.8032]]],[[7859.38,7815.29,0],0,true,[[3689,0,21.8804],[3263,0,12.3434],[3659,1,7.18058]]], +[[578.984,8041.7,0],0,false,[[1292,0,21.8216]]],[[4988.19,729.145,0],0,false,[[573,0,150.492],[3072,0,131.551]]],[[5765.76,5397.32,0],0,false,[[2753,0,134.833],[1040,0,204.387]]],[[1577.53,6837.06,0],0,false,[[250,0,182.831],[3631,0,42.3795]]],[[2641.6,7490.65,0],0,true,[[2829,0,6.29655],[1923,0,138.361],[2726,0,5.68429]]], +[[2935.83,6953.09,0],0,true,[[1111,1,11.6268],[2742,1,21.8699],[2594,1,4.14457]]],[[4481.88,4696.5,0],0,true,[[2795,0,18.6635],[1480,1,11.0284],[3783,1,9.09465]]],[[5405.11,6822.08,0],0,false,[[2724,1,27.2682],[954,1,106.83]]],[[2972.03,4888.16,0],0,false,[[3234,0,87.6135],[1850,0,53.3057]]],[[3655.05,5119.42,0],0,true,[[85,1,12.9827],[1316,1,17.8661],[1558,1,13.5915],[520,1,7.79947]]], +[[2813.66,1790.14,0],0,true,[[2138,0,135.351],[755,1,3.77037],[2380,1,3.31468]]],[[5100.92,6811.73,0],0,true,[[1446,1,22.4147],[3388,1,17.8531],[1329,1,9.59629]]],[[2914.13,6955.76,0],0,true,[[2735,1,21.8699],[3468,1,148.542],[2594,1,18.0124]]],[[886.82,6075.26,0],0,true,[[353,1,1.82559],[3510,0,15.7468],[2198,1,6.47321],[1985,1,15.3657]]],[[8130.43,5053.37,0],0,false,[[3879,0,281.847],[1785,0,83.8344]]], +[[508.646,50.8679,0],0,false,[[1230,0,70.9707],[939,0,97.3103]]],[[6421.88,4330.24,0],0,false,[[2203,1,27.1278],[1976,1,48.9079]]],[[5073.5,6836.02,0],0,true,[[2862,2,33.2176],[931,2,16.6705],[2969,2,16.4238],[1991,2,25.8107],[1824,2,18.0614]]],[[378.551,3909.41,0],0,true,[[496,0,13.9353],[2394,0,184.304],[1320,0,10.6526]]],[[347.068,1139.1,0],0,false,[[2348,0,191.52],[2694,0,69.8277]]], +[[2105.4,3608.67,0],0,true,[[1260,0,97.8191],[1641,0,20.3411],[2945,0,5.76673]]],[[4359.51,5391.79,0],0,false,[[2487,0,134.48],[1246,0,81.9893]]],[[4894.45,6953.57,0],0,true,[[1826,0,3.31759],[3423,0,5.49051],[2206,0,1.614]]],[[5887.19,5415.69,0],0,false,[[3449,0,105.438],[2732,0,134.833]]],[[2593.08,6839.8,0],0,false,[[1530,0,7.91121],[88,1,16.1577]]], +[[4702.59,3284.59,0],0,false,[[1404,0,34.5012],[723,0,23.1744]]],[[5280,401.755,0],0,false,[[1945,0,45.4537],[1301,0,21.1825]]],[[6222.75,2169.7,0],0,true,[[1319,1,121.244],[1136,1,21.1769],[3106,1,6.29295]]],[[1962.89,192.945,0],0,true,[[2266,0,222.632],[2912,0,5.05208],[2334,0,4.97252]]],[[1034.53,4655.48,0],0,false,[[3904,0,262.326],[1672,0,115.87]]], +[[5518.03,4304.28,0],0,false,[[1161,0,141.167],[3061,0,18.8774]]],[[557.514,8188.59,0],0,false,[[3690,0,13.2083]]],[[7363.12,6352.58,0],0,true,[[3118,1,25.0485],[2991,1,79.7463],[2099,1,9.93422]]],[[4090.04,5271.72,0],0,false,[[1580,2,43.1899],[1500,2,52.8697]]],[[4629.22,2069.36,0],0,true,[[812,2,13.3767],[3139,2,52.5786],[2821,2,6.15262]]], +[[2406.54,7741.5,0],0,false,[[2623,0,20.7495],[1511,0,13.0941]]],[[8187.66,5397.55,0],0,false,[[874,0,9.87567]]],[[3891.98,3171.16,0],0,false,[[2534,0,193.315],[2429,0,148.602]]],[[5712.29,926.683,0],0,true,[[2029,1,23.5518],[1882,1,115.046],[2639,1,14.1008]]],[[7346.87,7913.89,0.000244141],0,false,[[614,0,26.4088],[3733,0,54.3803]]], +[[5086.22,4132.71,0],0,false,[[734,1,8.4281],[3022,1,8.4281]]],[[4784.85,4295.91,0],0,false,[[3842,0,186.91],[3244,0,19.3294]]],[[3581.19,4332.19,0],0,true,[[1924,0,50.4865],[2226,0,15.437],[2715,0,10.4843]]],[[1124.99,4834.9,0],0,true,[[678,1,22.4587],[289,1,174.646],[992,1,12.6013]]],[[1840.8,4914.1,0],0,true,[[1783,0,131.222],[3295,0,6.12853],[207,0,9.65222]]], +[[6410.62,614.199,0],0,false,[[1170,0,224.205],[1902,0,33.7845]]],[[7621.28,6573.28,0],0,true,[[2579,0,20.9335],[3344,0,80.109],[895,0,10.9727]]],[[4661.35,5080.29,0],0,true,[[3415,0,321.202],[3112,0,25.4066],[230,0,11.3189]]],[[2579.09,2040.02,0],0,true,[[3060,1,12.8765],[2939,1,93.3193],[1752,1,19.758]]],[[7744.44,4170.06,0],0,true,[[1087,0,8.23724],[3502,0,263.658],[2199,0,13.507]]], +[[5028.02,2197.55,0],0,false,[[417,1,308.275],[814,1,311.095]]],[[5610.64,3723.35,0],0,true,[[2889,0,29.789],[1937,0,111.982],[1517,0,15.3498]]],[[4185.19,5833.63,0],0,false,[[834,0,94.4184],[3092,0,199.674]]],[[3477.47,5534.39,0],0,true,[[3607,0,57.924],[294,0,158.76],[1538,0,75.8341]]],[[1812.69,1391.6,0],0,false,[[1835,1,59.4389],[3739,1,230.258]]], +[[946.067,1770.75,0],0,true,[[1683,1,35.3616],[3195,1,61.3048],[1218,1,17.8697]]],[[3728.92,5982.93,0],0,false,[[3605,0,63.0146]]],[[4108.04,2206.95,0],0,false,[[2024,0,96.6662],[1521,0,153.735]]],[[3437.15,6652.24,0],0,false,[[1667,1,104.424],[3318,1,64.1374]]],[[2838.72,1692.2,0],0,false,[[643,0,96.3581]]], +[[4539.11,4228.33,0],0,true,[[2683,0,97.5232],[2610,1,10.5567],[1651,1,15.6384]]],[[4826.22,4061.59,0],0,false,[[3293,0,178.025],[130,0,31.4126]]],[[7610.19,604.303,0],0,true,[[3630,0,129.406],[3623,0,117.776],[173,0,120.315]]],[[4709.4,1130.48,0],0,false,[[3841,0,17.8782],[986,0,16.2065]]],[[4026.92,4119.64,0],0,false,[[1744,1,4.72781],[2477,2,5.85392]]], +[[4464.5,4701.01,0],0,true,[[2648,0,4.38491],[2736,0,18.6635],[258,1,4.25241]]],[[7321.66,807.55,0],0,true,[[803,0,115.247],[332,0,13.7734],[1337,0,28.2716]]],[[881.887,3703.54,0],0,true,[[1916,0,175.391],[3058,0,7.09869],[1398,0,7.30879]]],[[2573.71,7386.39,0],0,true,[[2027,1,22.8671],[1217,1,195.762],[1679,1,11.0602]]],[[1265.69,8022.34,0],0,true,[[1072,1,183.289],[1700,1,30.0624],[3030,1,17.2618]]], +[[3232.34,1448.35,0],0,true,[[78,0,106.777],[108,0,10.9025],[1460,2,15.4039]]],[[3986.76,6449.96,0],0,true,[[3760,0,3.21803],[1972,0,14.6032],[2897,0,10.8573]]],[[4887.08,1858.78,0],0,false,[[2078,0,119.997],[1012,0,147.092]]],[[7162.59,4382.06,0],0,true,[[2304,1,14.4471],[259,1,14.3374],[1308,1,23.7139],[1239,1,24.8573],[1101,1,23.9542]]],[[6582.28,3669.64,0],0,true,[[3431,0,24.9208],[3120,0,288.156],[3165,0,13.3916],[1164,0,12.5801]]], +[[3559.35,6570.96,0],0,true,[[2543,1,10.2941],[2986,0,290.659],[3709,1,13.0178]]],[[4441.53,2978.37,0],0,true,[[2323,1,13.9116],[2101,1,7.72388],[3395,1,42.1644]]],[[6206.45,6594.16,0],0,true,[[1094,1,65.8906],[447,1,25.8052],[840,1,14.4306]]],[[6278.75,6608.88,0],0,true,[[2871,0,8.45051],[1094,1,8.42393],[2248,1,13.9357]]],[[1892.58,3254.64,0],0,true,[[1531,1,27.6054],[968,1,198.964],[2327,1,18.9666]]], +[[5908.97,5792.11,0],0,false,[[2158,1,212.355],[991,1,74.5514]]],[[764.153,1982.29,0],0,false,[[3414,0,123.807],[603,0,188.671]]],[[7098.47,4876.72,0],0,false,[[2041,0,394.122],[3838,0,223.724]]],[[5688.34,4346.26,0],0,false,[[1287,1,99.4382],[2037,1,56.2835]]],[[4104.96,5872.25,0],0,false,[[776,1,131.008],[2901,2,4.53323]]], +[[5438.33,6692.49,0],0,false,[[1356,0,19.0165],[610,0,95.7616]]],[[5664.17,2176.64,0],0,false,[[2413,0,17.7758],[3097,0,56.4326]]],[[4688.17,3531.97,0],0,false,[[2105,1,76.4164],[1880,1,96.1247]]],[[5089.31,3888.66,0],0,false,[[1163,0,315.346],[1772,0,14.8372]]],[[1780.05,4680.13,0],0,false,[[2501,1,27.6853],[2447,1,56.3957]]], +[[1134.18,3456.69,0],0,true,[[3755,0,220.093],[1150,0,27.6644],[664,1,18.6206]]],[[4634.17,2065.73,0],0,true,[[1424,0,62.5713],[2764,2,6.15262],[812,2,8.05153]]],[[7383.34,6033.42,0],0,false,[[2127,0,104.169],[1406,1,4.52011]]],[[4057.75,629.264,0],0,false,[[1317,0,245.792],[3351,0,142.839]]],[[7844.53,1371.67,0],0,false,[[766,0,95.5983],[3624,0,266.185]]], +[[627.099,7116.52,0],0,true,[[3830,0,14.9831],[3710,0,363.078],[3222,0,22.7895]]],[[8015.77,4540.81,0],0,true,[[2941,1,24.7515],[1299,1,24.9191],[419,1,14.2792]]],[[6049.09,7820.6,0],0,true,[[3477,1,14.6382],[3698,1,173.13],[1899,1,28.1394],[2033,1,20.2647]]],[[3552.34,2004.17,0],0,false,[[1411,0,56.2241],[2900,0,57.4184]]],[[2647.88,7490.22,0],0,true,[[2734,0,6.29655],[1033,0,34.1036],[2726,0,2.7231]]], +[[8177.42,5381.78,0],0,false,[[155,0,5.05942],[3879,0,51.6298]]],[[5561.85,2918.67,0],0,true,[[2635,1,6.6218],[1341,0,322.525],[658,1,3.55889]]],[[1281.15,4117.49,0],0,false,[[3253,0,36.1053],[2179,0,158.565]]],[[4797.27,6561.64,0],0,false,[[3637,2,98.6175],[1992,2,21.6997]]],[[6904.16,869.199,0],0,false,[[2674,1,23.7309],[1554,1,23.2803]]], +[[522.761,7154.63,0],0,true,[[666,0,21.8962],[3830,0,103.343],[206,0,11.2039]]],[[4020.46,4389.49,0],0,false,[[1955,0,17.5736],[880,2,9.08883]]],[[8017.58,6510.26,0],0,false,[[797,1,74.9138],[1399,1,24.4958]]],[[7049.54,6488.39,0],0,true,[[3794,0,12.7847],[3183,0,125.146],[2347,1,17.756]]],[[6485.21,2672.7,0],0,true,[[710,1,124.429],[2728,1,26.8032],[144,1,16.4599]]], +[[3825.68,5935.93,0],0,true,[[713,0,15.4668],[1865,0,15.4285],[2100,0,10.036]]],[[236.178,7385.69,0],0,false,[[74,0,143.83],[1568,0,37.1516]]],[[98.5749,7297.56,0],0,false,[[3256,0,89.3401],[2186,0,49.8892]]],[[1138.02,5836.01,0],0,false,[[2578,0,154.919],[966,0,241.5]]],[[6803.51,3762.64,0],0,false,[[3165,0,237.552],[338,0,70.1235]]], +[[2909.09,3748.05,0],0,false,[[2216,0,23.3866],[1907,0,282.867]]],[[7514.1,8188.66,0],0,false,[[3525,1,91.1604]]],[[4193.56,7645.83,0],0,false,[[685,0,120.677],[1005,0,382.209]]],[[8007.13,6362.61,0],0,true,[[1541,0,99.4195],[2517,0,24.8469],[3820,0,12.7454]]],[[7735.13,6247.04,0],0,false,[[3856,0,199.017],[3078,0,34.1071]]], +[[2447.98,4130.7,0],0,false,[[1594,1,33.772],[3206,1,200.562]]],[[5471.17,2694.19,0],0,false,[[768,0,273.875],[1599,0,131.735]]],[[5508.14,1279.47,0],0,false,[[316,0,8.08009],[3229,0,73.3706]]],[[4860.62,3993.61,0],0,false,[[1547,1,10.42],[1922,0,23.2684]]],[[1581.68,1202.83,0],0,true,[[3739,1,70.2787],[407,1,19.1672],[559,1,5.39884]]], +[[416.527,7303.22,0],0,false,[[434,0,83.5149],[331,0,79.7045]]],[[2280.85,952.521,0],0,false,[[2076,0,21.0683],[3346,0,179.905]]],[[6476.66,6035.95,0],0,true,[[2378,0,3.98559],[1600,0,55.1585],[432,0,10.2828]]],[[4497.37,928.184,0],0,false,[[1051,0,23.9159],[937,0,129.457]]],[[5065.2,4133.89,0],0,false,[[3473,0,19.4134],[734,0,12.6401]]], +[[3604.47,1959.32,0],0,false,[[3371,0,3.68932],[2994,0,96.9278]]],[[7077.11,5544.53,0],0,true,[[2173,0,4.56405],[799,0,4.66015],[3033,0,11.995]]],[[5092.08,6863.56,0],0,false,[[729,2,90.7641],[2747,2,33.2176]]],[[6389.3,4856.18,0],0,false,[[3185,0,81.7916]]],[[3922.13,6439.19,0],0,true,[[3052,0,8.24237],[2537,0,157.534],[1819,0,7.26455]]], +[[8177.08,6247.04,0],0,false,[[1839,1,37.2942],[3517,1,27.3773]]],[[7764.74,692.274,0],0,true,[[3623,0,62.3416],[2244,0,8.9676],[1039,0,19.8744]]],[[2893.63,4172.2,0],0,true,[[3823,0,16.3448],[1964,0,61.0956],[2218,0,6.85806]]],[[6033.99,5474.81,0],0,true,[[2233,1,256.571],[876,1,8.7032],[1162,1,18.1384]]],[[4351.84,1994.01,0],0,false,[[2872,0,13.6582],[3160,0,56.3884]]], +[[2944.24,6940.39,0],0,false,[[2594,0,18.9333],[2067,0,18.4917]]],[[6278.65,6600.49,0],0,true,[[3140,0,96.1146],[2808,0,8.45051],[1094,1,11.7536]]],[[4365.32,1991.91,0],0,false,[[1224,2,10.6248],[2869,0,13.6582]]],[[1555.63,6877.59,0],0,false,[[2254,1,48.2209],[1195,1,26.3319]]],[[5230.19,2907.05,0],0,false,[[3335,1,9.80316],[583,0,68.3623]]], +[[2116.47,3966.57,0],0,false,[[1412,0,227.314],[2441,0,26.6529]]],[[5798.92,7948.01,0],0,false,[[3698,1,108.098],[2573,1,252.648]]],[[3731.63,1845.99,0],0,true,[[2011,0,10.5988],[371,0,122.964],[3261,0,16.0439]]],[[1224.01,7970.71,0],0,true,[[148,1,14.9011],[1186,1,12.9836],[35,1,4.06542],[3767,1,6.67397]]],[[2793.01,1127.83,0],0,false,[[1063,1,151.142],[160,1,67.8002]]], +[[7383.54,5656.21,0],0,true,[[2548,1,10.3878],[3029,1,172.532],[3107,1,12.3032]]],[[4523.17,2340.84,0],0,true,[[2297,2,30.2341],[3908,2,15.6895],[2954,2,2.55274]]],[[1211.31,1142.6,0],0,false,[[670,1,220.92],[1083,1,29.6091]]],[[294.618,7325.31,0],0,true,[[950,0,9.71894],[743,0,5.06043],[73,0,10.0856]]],[[3289.26,6073.67,0],0,true,[[1934,0,23.7585],[101,0,24.9599],[1782,0,29.7319],[2702,0,14.5559]]], +[[2840.35,4417.28,0],0,true,[[3535,1,27.2838],[441,1,125.719],[3691,1,2.86725],[2519,1,7.89852]]],[[5330.54,1228.1,0],0,false,[[2696,0,136.662]]],[[3165.33,4957.02,0],0,false,[[1267,1,201.417],[3784,1,93.6215]]],[[7577.24,2772.97,0],0,false,[[2044,0,100.044]]],[[5617.83,3694.46,0],0,true,[[3138,0,155.856],[2781,0,29.789],[1517,0,14.4847]]], +[[4471.91,1467.97,0],0,false,[[2240,0,3.88384],[2229,0,115.057]]],[[3998.41,5388.55,0],0,false,[[1214,1,6.7226],[1364,0,66.7518]]],[[7587.85,4635.28,0],0,false,[[3838,0,330.368],[1977,0,195.364]]],[[7717.71,6364.35,0.000244141],0,false,[[820,0,16.3067],[2909,0,16.5549],[2653,0,12.564]]],[[6074.55,4.4787,0],0,false,[[2416,1,312.658]]], +[[454.62,7180.75,0],0,true,[[753,0,24.237],[666,0,51.6803],[293,0,12.682]]],[[518.927,4725.09,0],0,true,[[2527,0,7.85086],[365,0,46.8522],[2200,0,6.41139]]],[[3993.29,6458.54,0],0,true,[[3760,0,14.074],[1820,0,74.4085],[2801,0,10.8573]]],[[4036.97,4041.77,0],0,false,[[1353,2,18.1649],[366,2,125.762]]],[[2778.26,3896.33,0],0,false,[[3824,1,156.959],[3627,1,144.624]]], +[[3582.5,1958.6,0],0,false,[[2828,0,57.4184],[3371,0,19.2507]]],[[4109.25,5873.73,0],0,true,[[2337,2,90.6619],[3878,2,27.6262],[2814,2,4.53323]]],[[3641.96,3143.17,0],0,false,[[534,0,39.1502],[2363,0,168.069]]],[[5152.87,3340.96,0],0,true,[[894,0,340.95],[3589,0,20.2351],[3082,0,11.8945]]],[[7321.22,6137.37,0],0,false,[[681,1,14.8138],[2625,1,14.6922]]], +[[1458.46,3358.17,0],0,true,[[1403,1,28.7214],[569,1,12.5124],[435,1,5.20211]]],[[3564.83,718.28,0],0,false,[[2298,0,12.6328],[2914,1,2.85241]]],[[6971.18,1166,0],0,false,[[3894,0,93.1769],[1731,0,372.522]]],[[399.481,819.243,0],0,false,[[1306,0,240.466],[585,0,44.3328]]],[[7723.39,6348.8,0],0,false,[[820,0,18.9209],[3212,0,74.7058],[2893,0,16.5549]]], +[[8026.23,1717.18,0],0,true,[[1987,0,23.9962],[2284,0,209.926],[1115,0,12.4902]]],[[3027.87,7389.42,0],0,true,[[3688,0,10.2973],[2252,1,3.68611],[3320,1,6.79277],[1821,1,7.65513]]],[[1960.09,197.145,0],0,true,[[2758,0,5.05208],[1557,0,7.21884],[2334,0,2.3022]]],[[4482.65,3148.99,0],0,true,[[368,0,13.0564],[2629,0,102.262],[1392,2,17.1271]]],[[3564.3,721.081,0],0,true,[[3333,1,25.9269],[3063,1,314.916],[2906,1,2.85241],[2298,1,15.4085]]], +[[1999.1,5725.66,0],0,true,[[3493,1,17.0302],[1894,0,51.9059],[367,1,10.4783]]],[[7823.88,6550.71,0],0,false,[[2973,0,34.46],[1377,0,91.8647]]],[[3018.51,4873.15,0],0,true,[[3784,1,78.7382],[3851,1,11.7801],[2251,1,4.92326],[1850,1,6.67841]]],[[4903.56,6094.19,0],0,false,[[1711,0,102.229],[3825,0,283.055]]],[[1033.78,1812.71,0],0,true,[[3348,1,8.80061],[3447,1,6.6957],[1757,1,10.715]]], +[[5526.3,1847.63,0],0,false,[[3352,1,181.092],[339,1,189.788]]],[[4526.33,3240.1,0],0,false,[[1067,2,41.0168],[3542,2,22.7895]]],[[4906.68,4237.14,0],0,false,[[1222,0,103.686],[591,0,131.171]]],[[3702.83,4408.78,0],0,true,[[627,0,211.112],[700,0,6.12117],[2554,0,4.38132]]],[[6847.26,4350.1,0],0,true,[[2700,0,13.146],[2532,0,3.49194],[1200,0,4.62217]]], +[[2067.89,4626.51,0],0,true,[[1459,1,301.197],[3832,1,17.3686],[2272,1,16.9621]]],[[6792.43,7590.2,0],0,false,[[3048,0,5.42657],[220,0,87.127]]],[[2764.94,6338.69,0],0,false,[[2689,0,96.6466]]],[[4791.61,4343.11,0],0,false,[[644,0,24.6249],[2946,0,136.865]]],[[2842.03,1226.1,0],0,true,[[308,2,12.8776],[3357,2,31.4199],[3616,2,33.0745],[23,2,17.8304],[10,2,15.0193]]], +[[4500.4,4548.57,0],0,true,[[1980,1,76.9386],[1430,1,146.901],[1233,1,65.3303]]],[[584.04,4420.91,0],0,true,[[1327,0,11.5428],[379,0,18.5065],[3643,0,15.768],[3284,0,8.68432]]],[[2303.19,355.433,0],0,true,[[2975,0,202.061],[1877,0,20.6544],[1815,0,11.4685]]],[[3010.89,6922.45,0],0,false,[[3641,1,109.313],[2032,1,52.2204]]],[[3058.16,8188.59,0],0,false,[[89,0,261.691]]], +[[3148.79,7445.27,0],0,true,[[3560,0,122.957],[828,0,22.791],[1563,0,105.811]]],[[4497.22,2804.12,0],0,false,[[3564,1,93.674],[2391,1,91.9657]]],[[347.977,4447.11,0],0,true,[[998,0,12.4546],[3846,0,18.9455],[3750,0,0.751952],[2096,0,19.6062]]],[[5847.84,7269.94,0],0,false,[[2507,0,181.127],[442,0,44.7375]]],[[2663.64,2009.64,0],0,true,[[2778,1,93.3193],[2320,1,20.8907],[3094,1,44.8005]]], +[[2172.99,6038.73,0],0,true,[[3201,0,213.002],[2075,0,348.755],[1338,0,183.43]]],[[8039.96,4546.09,0],0,true,[[1215,1,29.3012],[2826,1,24.7515],[646,1,11.9158]]],[[2140.23,6338.98,0],0,false,[[2366,1,89.6666],[2008,1,29.3404]]],[[2495.33,7095.78,0],0,false,[[1993,0,83.9725],[2287,0,18.0002]]],[[7297.12,6152.3,0],0,true,[[2625,1,13.7821],[1445,0,180.809],[2418,1,5.70332]]], +[[2110.45,3611.39,0],0,true,[[3729,0,80.3051],[2750,0,5.76673],[1641,0,15.2209]]],[[4857.84,4460.58,0],0,true,[[2928,0,136.865],[18,0,9.4074],[736,0,5.87092]]],[[6744.96,958.497,0],0,true,[[2721,1,228.782],[3620,1,13.8766],[1693,1,30.6644]]],[[442.378,7672.62,0],0,false,[[980,0,74.2062],[2424,0,260.675]]],[[4747.3,1108.76,0],0,true,[[3370,0,25.0463],[3841,0,25.8132],[2329,0,3.67498]]], +[[3274.91,4238.07,0],0,true,[[1464,0,27.7646],[1431,0,254.425],[945,0,14.9527]]],[[4317.17,2878.62,0],0,true,[[1209,1,7.16947],[2154,1,12.0133],[684,1,10.9635]]],[[4160.19,6615.11,0],0,false,[[1820,0,205.989],[3236,0,251.974]]],[[7589.17,6579.07,0],0,false,[[1872,1,69.1345],[2628,1,42.7362]]],[[4525.6,2340.07,0],0,true,[[3903,1,13.3442],[3908,2,13.9827],[2881,2,2.55274]]], +[[4278.32,4019.56,0],0,true,[[1432,1,10.1381],[1560,1,13.3803],[1734,1,30.1568]]],[[2096.69,4597.08,0],0,true,[[3832,1,23.8661],[1000,1,23.5197],[667,1,7.38477]]],[[404.226,882.618,0],0,true,[[585,0,19.2851],[3614,1,9.39782],[1089,1,10.0141]]],[[4911.66,1034.79,0],0,true,[[1603,1,25.41],[1773,1,120.452],[781,1,14.6674]]],[[1515.2,3655.21,0],0,false,[[2324,0,160.461],[570,0,111.753]]], +[[6432.85,5188.64,0],0,false,[[1302,1,363.083],[372,1,26.9356],[912,0,7.43323]]],[[7060.46,3780.36,0],0,false,[[3672,0,59.166],[2445,1,4.82005]]],[[3561.9,6743.89,0],0,false,[[3373,0,325.889]]],[[2510.64,3190.29,0],0,true,[[2131,1,44.0647],[657,1,32.0967],[2192,1,10.0607]]],[[6984.85,4369.79,0],0,false,[[780,1,24.5476],[696,1,25.6207]]], +[[4223.18,2860.13,0],0,false,[[982,1,31.8805],[328,1,20.8884]]],[[2633.14,799.899,0],0,true,[[2451,0,83.9766],[3500,1,11.0335],[3610,1,14.3358]]],[[4300.96,3811.89,0],0,false,[[1466,0,121.832],[2552,0,84.9401]]],[[7786.89,7876.64,0],0,false,[[1755,0,25.7441],[3689,0,73.1722]]],[[5065.36,6821.77,0],0,true,[[1824,1,8.04165],[2747,2,16.4238],[1991,2,9.97753],[931,1,5.14191]]], +[[4735.22,2019.25,0],0,false,[[566,2,122.557],[812,2,104.481]]],[[1361.19,4282.41,0],0,false,[[579,0,51.0741],[380,0,46.2649]]],[[3445.9,4874.96,0],0,false,[[3728,0,116.084]]],[[7815.77,6517.22,0],0,false,[[3693,0,7.33737],[2916,0,34.46]]],[[4990.72,1652.04,0],0,true,[[321,1,9.09653],[2576,1,140.351],[229,1,8.05778]]], +[[2111.2,303.864,0],0,false,[[2334,0,189.346],[2932,0,202.061]]],[[4004.09,4573.53,0],0,true,[[3712,0,12.8937],[285,0,20.3693],[848,0,4.71414]]],[[3232.67,7206.43,0],0,false,[[459,0,37.8902],[149,0,27.176]]],[[3195.4,7213,0],0,false,[[2574,0,203.677],[1278,1,7.50987]]],[[6593.1,3087,0],0,false,[[3421,0,187.477],[3875,0,298.434]]], +[[5813.78,5881.64,0],0,false,[[991,1,100.055],[3884,1,17.5371]]],[[7165.97,5542.41,0],0,false,[[33,1,76.6382],[3107,1,242.01]]],[[2370.91,208.966,0],0,true,[[393,1,10.6965],[452,0,155.34],[1883,1,9.64133]]],[[4019.85,5457.19,0],0,false,[[909,1,19.8417],[669,1,66.971]]],[[4326.12,2992.91,0],0,false,[[826,1,21.5634],[3408,1,20.1426]]], +[[3054.73,5568.81,0],0,true,[[455,0,10.9268],[2375,0,169.779],[1168,0,15.5328]]],[[3380.08,6346.6,0],0,false,[[2805,0,290.659],[1908,0,44.9481]]],[[3002.77,3431.15,0],0,false,[[413,0,121.877],[3714,0,302.233]]],[[375.544,1247.95,0],0,true,[[1505,0,133.735],[811,0,22.0137],[1114,0,27.9443]]],[[466.796,2024.7,0],0,false,[[1573,0,21.5379],[3837,0,154.003]]], +[[5752.43,6349.74,0],0,false,[[836,0,82.267],[676,0,112.69]]],[[7437.17,6378.99,0],0,false,[[2762,1,79.7463],[911,1,133.796]]],[[3293.06,1885.23,0],0,false,[[39,0,185.838],[1551,0,306.275]]],[[5297.97,59.2458,0],0,false,[[2291,0,22.3139],[1401,0,297.856]]],[[3592.51,2047.58,0],0,false,[[2860,0,96.9278],[2055,0,50.2113]]], +[[7810.9,704.919,0],0,false,[[448,0,30.8998],[3639,0,35.3884]]],[[4706.35,2739.3,0],0,true,[[3334,1,230.564],[3233,1,12.2195],[824,1,3.33532],[3203,1,7.31444]]],[[5792.53,5886.61,0],0,false,[[2299,1,103.439],[2564,1,19.1199]]],[[5134.22,6964.72,0],0,true,[[3305,2,173.006],[729,2,18.98],[868,2,3.59857]]],[[5235.46,7701.8,0],0,false,[[1474,2,235.099],[216,2,19.8995]]], +[[6684.82,7927.16,0],0,true,[[220,0,292.284],[636,0,10.726],[1678,0,29.4493]]],[[7580.98,6499.81,0],0,true,[[1879,0,29.8174],[3344,0,8.27026],[3005,0,24.7269]]],[[123.801,7450.83,0],0,false,[[1484,0,118.342],[3533,0,125.94]]],[[3006.07,2511.96,0],0,false,[[84,0,28.9409],[604,0,126.162]]],[[7784.15,5799.77,0],0,true,[[314,0,4.44249],[1795,0,7.20313],[154,0,3.34025]]], +[[7604.23,6491.41,0],0,true,[[3001,0,24.7269],[3682,0,103.452],[3344,0,17.2627]]],[[4917.31,2016.43,0],0,false,[[3828,1,13.1682],[3321,2,8.93951]]],[[7092.91,4193.75,0],0,true,[[1524,0,130.766],[3600,1,10.6014],[1787,1,13.2096],[2538,0,15.5599]]],[[1550.21,5949.12,0],0,true,[[3569,0,230.139],[209,1,8.39431],[2039,1,10.886]]],[[7918.17,5826.83,0],0,false,[[1534,0,84.8888],[314,0,132.771]]], +[[4488.67,7991.73,0],0,false,[[274,0,15.4706],[186,0,120.849]]],[[5119.99,4873.7,0],0,false,[[45,1,252.929],[2459,1,12.9029]]],[[5958.99,3319.64,0],0,false,[[3547,0,242.371]]],[[4548.25,6536.63,0],0,true,[[2457,0,12.1367],[3911,0,168.553],[1933,0,7.71167]]],[[4685.99,3310.44,0],0,false,[[3077,1,25.1536],[2434,1,32.5428]]], +[[7495.15,1435.01,0],0,false,[[1350,0,234.93],[3892,0,160.448]]],[[2634.08,3677.46,0],0,true,[[93,1,156.502],[2401,1,13.3938],[1254,1,26.9213]]],[[2216.34,4018.05,0],0,true,[[1656,0,20.3455],[136,0,253.896],[3845,0,19.3242],[1291,0,26.7075]]],[[5095.04,5893.72,0],0,true,[[694,0,398.684],[722,0,172.795],[3267,0,117.07]]],[[4961.63,1995.65,0],0,false,[[480,1,22.6203],[3544,1,17.6664]]], +[[0.417723,7274.02,0],0,false,[[1194,0,78.9572]]],[[2909.64,4663.96,0],0,false,[[3851,1,229.201],[3207,1,90.1282]]],[[5094.6,4131.8,0],0,true,[[2495,1,146.541],[247,1,26.0398],[2770,1,8.4281]]],[[4198.98,4015.8,0.000183105],0,false,[[2094,0,35.3895],[146,0,19.5568]]],[[2261.1,7241.49,0],0,false,[[3264,0,112.483],[1167,0,137.063]]], +[[357.263,4117.99,0],0,true,[[263,0,140.289],[1942,0,25.049],[1439,0,9.83886]]],[[1217.6,4060,0],0,false,[[2631,0,65.3321],[3273,0,10.3177]]],[[4026.43,4055.61,0],0,false,[[1353,2,6.83753],[2196,1,18.8245]]],[[7381.43,6044.34,0],0,false,[[1406,1,13.5131],[681,1,96.5094]]],[[7376.02,5828.23,0],0,true,[[2880,1,172.532],[3782,1,20.8255],[1597,1,9.60374]]], +[[1257.27,8007.27,0],0,true,[[1700,1,13.5691],[225,0,30.3059],[2799,1,17.2618]]],[[2991.95,1122.15,0],0,true,[[1050,0,15.85],[493,0,174.17],[1415,0,9.26695]]],[[1164.62,3657.82,0],0,false,[[2,0,211.394],[2060,0,24.8222]]],[[7078.88,5556.37,0],0,true,[[799,0,8.08267],[3429,0,25.0679],[2861,0,11.995]]],[[5661.91,4416.48,0],0,true,[[3151,1,72.4288],[602,1,13.5622],[3342,1,14.7348]]], +[[1553.48,1453.11,0],0,false,[[855,0,243.24],[1960,0,252.584]]],[[5489.71,1274.85,0],0,true,[[2301,1,33.8593],[3397,1,69.1084],[699,1,15.9075]]],[[7522.43,3453.4,0],0,false,[[1532,0,251.363],[1591,0,78.4174]]],[[4137.61,1650.52,0],0,true,[[152,0,11.6768],[2406,0,80.9148],[3400,0,2.87272]]],[[4385.5,4911.8,0],0,true,[[2010,1,26.1293],[1582,1,95.3935],[3415,1,3.89815]]], +[[938.09,1578.56,0],0,false,[[1218,0,185.064],[1543,0,99.4441]]],[[808.174,1788.98,0],0,false,[[3520,1,30.0327],[1294,1,77.2556]]],[[1203.03,2552.02,0],0,false,[[2558,1,138.219],[1099,1,26.8093]]],[[4188.85,6251.43,0],0,false,[[1202,0,46.3108],[620,0,256.581]]],[[1072.63,7972.12,0],0,false,[[1737,1,128.301],[3767,1,146.772]]], +[[3261.97,5527.01,0],0,true,[[1538,0,157.528],[578,0,18.1235],[2550,0,6.04038]]],[[1548.7,2237.15,0],0,true,[[1941,0,101.099],[1482,0,216.856],[3345,0,195.882]]],[[1151.32,4672.45,0],0,true,[[1672,0,7.30526],[99,0,73.3327],[1765,0,7.10872]]],[[6796.87,7587.09,0],0,true,[[1265,0,276.248],[171,0,7.33626],[2926,0,5.42657]]],[[2458.51,441.458,0],0,false,[[3773,1,44.9854],[3500,1,388.335]]], +[[7857.94,3924.6,0],0,false,[[2664,0,72.838]]],[[5940.55,945.443,0],0,false,[[2639,0,237.515]]],[[3929.74,6436.06,0],0,true,[[932,0,13.7195],[1819,0,1.60486],[2864,0,8.24237],[720,0,10.919]]],[[1439.61,2817.92,0],0,false,[[3463,1,286.962],[948,1,93.8501]]],[[1731.1,7215.06,0],0,false,[[742,1,183.751],[1642,1,68.3804]]], +[[3.74777,6094.51,0],0,false,[[2373,1,37.7182]]],[[1852.68,6670.1,0],0,false,[[919,0,136.488],[250,0,140.893]]],[[7881.59,7799.65,0],0,true,[[3659,1,21.0089],[3258,1,97.7804],[3263,1,14.8677]]],[[877.383,3698.05,0],0,true,[[521,0,47.9052],[2797,0,7.09869],[1398,0,3.3388]]],[[6046.29,7709.04,0],0,false,[[1096,0,93.1331],[1382,0,119.984]]], +[[2571.83,2050.65,0],0,true,[[2575,0,65.6756],[2778,1,12.8765],[1752,1,9.22875]]],[[5518.26,4323.13,0],0,false,[[2760,0,18.8774],[628,0,10.2052]]],[[8102.58,4948.83,0],0,true,[[1077,0,22.7003],[424,0,138.237],[2679,0,12.9927]]],[[3739.52,974.503,0],0,true,[[2914,1,314.916],[3681,1,10.1008],[3626,1,6.00043]]],[[5576.92,5647.86,0],0,false,[[831,0,82.4162],[2295,1,7.60038]]], +[[6503.75,2225.51,0],0,true,[[3480,1,20.9239],[2068,1,86.6783],[3597,1,11.3813]]],[[4874.78,1598.12,0],0,false,[[1666,0,21.1359]]],[[7284.49,3776.13,0],0,false,[[752,1,51.0066],[1854,1,202.035]]],[[6935.37,4347.67,0],0,false,[[3199,0,23.9633],[450,0,25.8717]]],[[2835.96,1254.16,0],0,true,[[308,1,25.5689],[3595,1,5.8939],[2392,1,8.45541]]], +[[3958.24,5621.95,0],0,false,[[669,1,108.995],[2529,1,306.986]]],[[3245.15,5528.62,0],0,false,[[2550,0,10.8678],[1470,0,126.312]]],[[4901.51,807.881,0],0,true,[[2731,0,131.551],[2379,0,15.751],[1175,1,20.1116]]],[[4763.33,3651.36,0],0,false,[[1590,1,27.1216],[563,1,28.6851]]],[[6805.96,7234.52,0],0,true,[[525,1,341.023],[3292,1,25.5067],[516,1,11.166]]], +[[7784.56,7227.71,0],0,true,[[1052,0,13.1433],[1745,0,156.462],[1285,0,3.71639]]],[[5250.28,8057.59,0],0,false,[[575,0,130.77]]],[[4687.56,3335.53,0],0,false,[[645,1,20.2105],[3014,1,25.1536]]],[[7767.66,6257.28,0],0,false,[[3212,0,61.2544],[2849,0,34.1071]]],[[2388.02,3641.98,0],0,false,[[1641,0,278.132],[1160,0,230.933]]], +[[2276.95,922.623,0],0,true,[[1796,2,22.3008],[2146,2,26.0275],[1133,2,1.65769],[2076,2,9.10541]]],[[2989.1,1080.32,0],0,false,[[409,0,19.4689],[3402,0,150.341]]],[[5154.65,3352.72,0],0,true,[[3391,0,83.9539],[3589,0,9.27537],[2903,0,11.8945]]],[[2535.96,81.4653,0],0,true,[[71,0,11.2975],[164,0,14.4355],[1184,0,11.8278],[2624,0,5.03845]]],[[2402.49,288.914,0],0,false,[[157,1,1.81188],[2671,0,71.077]]], +[[5578.49,6956.08,0],0,false,[[269,0,26.0116]]],[[7088.31,5625.74,0],0,true,[[1751,0,24.9021],[2688,0,10.621],[750,0,4.02492]]],[[289.537,1364.25,0],0,false,[[3446,0,208.527],[1479,0,194.401]]],[[1508.4,2146.2,0],0,false,[[420,0,23.0328],[3633,0,169.327]]],[[5317.01,7535.17,0],0,false,[[1851,1,48.8377],[281,1,144.805]]], +[[6005.45,4864.23,0],0,true,[[1857,0,14.0705],[1228,0,275.785],[1478,0,19.53]]],[[6395.96,5456.04,0],0,false,[[1245,0,47.1624],[3360,0,28.3098]]],[[4358.45,5861.96,0],0,false,[[2782,0,199.674],[2149,0,292.283]]],[[347.454,5037.71,0],0,true,[[3863,1,14.8234],[1311,1,230.967],[2708,1,26.3908]]],[[2664.83,1968.05,0],0,true,[[2939,1,44.8005],[1416,1,14.9886],[295,1,8.17012]]], +[[3575.13,5377.46,0],0,false,[[294,0,26.225],[520,0,264.001]]],[[1270.42,6529.92,0],0,false,[[3555,1,261.139],[288,1,175.37]]],[[5708.92,2142.51,0],0,false,[[2816,0,56.4326],[185,0,85.4202]]],[[6102.58,903.113,0],0,true,[[2202,0,2.80223],[574,0,235.337],[1282,0,4.07265]]],[[5432.99,5449.56,0],0,true,[[1187,1,4.64322],[892,0,35.6708],[1486,1,6.34371]]], +[[3796.41,1909.44,0],0,false,[[1587,0,87.9674]]],[[363.899,3470.64,0],0,false,[[2668,1,7.69348],[1069,0,210.288]]],[[5144.8,2883.8,0],0,true,[[2644,1,11.289],[894,0,123.004],[508,1,19.2033]]],[[8167.52,6260.05,0],0,false,[[2205,0,14.0336],[3517,1,12.3731]]],[[6421.89,3366.83,0],0,true,[[3875,0,48.2334],[3896,0,15.2506],[707,0,15.8264]]], +[[1293.8,3961.25,0],0,true,[[513,0,4.88281],[396,0,59.5682],[2161,0,6.54327]]],[[6217.88,2165.73,0],0,true,[[1136,1,17.051],[1967,1,122.617],[2757,1,6.29295]]],[[7372.68,5650.44,0],0,true,[[2981,1,242.01],[2880,1,12.3032],[2548,1,20.2185]]],[[1250,6824.49,0],0,false,[[1300,0,193.737]]],[[4870.17,557.596,0],0,true,[[562,1,12.4551],[1668,1,295.458],[287,1,5.9708]]], +[[4042.73,5397.27,0],0,false,[[1607,2,20.8468],[201,2,26.2358]]],[[1950.53,747.507,0],0,true,[[1236,2,30.5286],[2182,2,138.977],[381,2,17.3977],[2584,2,18.4557]]],[[4682.91,5093.72,0],0,true,[[2777,0,25.4066],[702,0,185.015],[230,0,14.8935]]],[[8109.58,1610.82,0],0,true,[[1837,0,22.459],[1139,0,84.0657],[1746,0,12.3838]]],[[2561.65,1674.26,0],0,true,[[2603,1,26.0103],[2398,1,12.057],[735,1,28.3386],[3476,1,13.7873]]], +[[894.303,6082.51,0],0,true,[[83,1,77.1292],[353,1,8.61651],[3510,1,9.09051]]],[[2781.45,2101.59,0],0,false,[[1859,0,114.93],[3485,1,4.31734]]],[[2810.44,461.885,0],0,true,[[2211,0,25.8761],[2707,0,32.5115],[394,0,11.4251]]],[[7341.01,6340.82,0],0,true,[[1061,1,98.9123],[2762,1,25.0485],[2099,1,15.8672]]],[[4480.1,3099.79,0],0,false,[[262,1,16.8754],[1583,1,141.609]]], +[[6498.76,3941.67,0],0,true,[[2804,0,288.156],[802,0,6.82779],[162,0,16.0906]]],[[7446.4,4.04309,0],0,false,[[3811,1,173.485]]],[[6099.53,4563.57,0],0,false,[[2159,0,230.864],[587,0,193.325]]],[[932.304,4031.19,0],0,true,[[1492,0,10.1127],[838,0,13.8422],[3790,0,13.0174]]],[[4952.52,1993.01,0],0,false,[[3483,1,25.5714],[1586,1,16.874]]], +[[531.151,8038.01,0],0,false,[[960,0,20.2056]]],[[4767.6,3435.85,0],0,false,[[539,0,33.6679],[638,0,7.19084]]],[[1969.18,7454.66,0],0,true,[[1682,1,17.3771],[2399,1,25.7939],[1932,1,4.71032]]],[[5506.23,3430.73,0],0,false,[[3668,0,66.4846],[2115,0,174.295]]],[[5750.08,7442.01,0],0,false,[[3602,0,200.328],[1078,0,192.345]]], +[[3105.7,7528.65,0],0,false,[[1522,1,111.105],[1918,1,24.0331]]],[[5279.58,7449.95,0],0,true,[[36,2,18.9715],[3515,2,60.8814],[3437,2,35.0286]]],[[5538.58,6449.75,0],0,true,[[2246,1,169.723],[3379,1,22.2171],[2022,1,10.1768]]],[[4251.21,2973.32,0],0,true,[[121,1,77.1485],[1713,1,66.7592],[306,1,5.5401]]],[[2343.5,1640.97,0],0,false,[[735,1,194.254],[2017,1,29.6643]]], +[[2835.85,1969.39,0],0,false,[[3438,1,30.3731],[949,1,153.624]]],[[7352.54,3241.84,0],0,true,[[138,0,123.545],[1499,1,14.8318],[223,1,16.1111],[1532,0,21.0025]]],[[222.772,6108.77,0],0,true,[[453,1,17.3108],[2191,0,307.731],[3565,1,11.778]]],[[5656.02,3543.41,0],0,false,[[3322,0,306.256],[2889,0,155.856]]],[[4577.27,2067.54,0],0,false,[[2764,2,52.5786],[1224,2,215.996]]], +[[6278.51,6506.68,0],0,false,[[1564,0,48.6343],[2871,0,96.1146]]],[[2929.99,4375.56,0],0,false,[[313,0,18.8123],[1847,0,29.0302]]],[[358.057,4764.23,0],0,true,[[3806,0,18.6005],[1158,0,6.55108],[2608,0,12.9127],[1589,0,6.27552]]],[[2142.3,4071.01,0],0,false,[[1656,0,74.5068],[3380,0,111.84]]],[[4088.31,5741.14,0],0,true,[[3192,2,27.355],[2025,2,35.3766],[3252,2,7.09503],[2650,2,4.67586],[2318,2,5.49067]]], +[[1025.45,250.297,0],0,true,[[3876,2,134.46],[841,2,30.03],[3363,2,16.5776]]],[[4934.08,4114.43,0],0,true,[[3316,0,24.3602],[1982,0,26.5951],[591,0,11.5631]]],[[4035.25,5412.17,0],0,false,[[1607,2,6.43372],[1214,1,38.3975]]],[[3749.71,1427.34,0],0,true,[[222,1,295.011],[1433,1,21.2779],[558,1,8.20695]]],[[3732.46,6299.22,0],0,false,[[961,0,83.2176],[3575,0,21.5471]]], +[[4335.78,6029.27,0],0,false,[[2230,0,59.8261],[404,0,94.8218]]],[[5604.73,4375.34,0],0,false,[[3180,1,21.8642],[3034,1,72.4288]]],[[4061.63,4457.71,0],0,true,[[3470,2,20.8324],[880,2,74.8473],[1552,2,9.61774]]],[[5227.35,7265.54,0],0,true,[[260,2,101.117],[1680,2,17.2926],[2280,2,7.76414]]],[[1807.61,7236.94,0],0,true,[[406,0,88.2058],[1642,1,11.6511],[2604,1,18.7715]]], +[[5023.55,6839.44,0],0,false,[[997,1,23.1657],[715,1,132.082]]],[[4940.57,2402.54,0],0,false,[[1570,1,204.513],[317,1,198.581]]],[[4331.13,7109.14,0],0,false,[[2241,0,75.0747],[224,0,49.8379]]],[[2726.31,2490.64,0],0,false,[[2102,1,4.58835],[3450,0,46.8034]]],[[7539.12,3527.63,0],0,true,[[2235,0,237.702],[1591,0,14.0799],[3897,0,28.2717]]], +[[4296.57,2004.95,0],0,false,[[2869,0,56.3884],[3426,0,124.206]]],[[448.005,2680.51,0],0,false,[[21,0,157.929],[2002,0,349.26]]],[[4693.79,5860.37,0],0,true,[[2149,0,58.5993],[1322,0,3.98263],[3262,0,4.80425]]],[[2110.83,4322.91,0],0,false,[[616,0,171.655],[3735,0,165.341]]],[[492.191,7253.69,0],0,false,[[1698,0,111.149],[2468,0,84.8121]]], +[[6590.7,3659.25,0],0,true,[[2844,0,237.552],[3431,0,13.169],[2804,0,13.3916],[1164,0,12.5077]]],[[2800.16,3303.13,0],0,false,[[1166,1,60.0714],[1269,1,29.8588]]],[[7944.21,1540.64,0],0,true,[[177,0,9.64848],[1837,0,157.969],[1227,0,5.12029]]],[[8113.34,2181.81,0],0,true,[[425,0,15.6488],[810,0,351.538],[1606,0,14.2654]]],[[3943.83,1242.57,0],0,false,[[2714,0,155.849],[3516,0,111.435]]], +[[54.3995,6100.01,0],0,true,[[3759,1,9.05925],[2312,0,327.393],[2373,1,13.5444]]],[[6799.33,1083.24,0],0,true,[[3529,0,24.4684],[135,0,132.617],[188,0,13.7132]]],[[1504.11,3881.92,0],0,false,[[570,0,167.714],[3285,0,121.091]]],[[4702.33,3412.55,0],0,false,[[3384,1,58.7624],[645,1,58.4259]]],[[4695.64,2953.69,0],0,false,[[3296,1,73.6558]]], +[[7434.86,6343.23,0],0,false,[[3319,0,58.4672],[3625,0,53.1724]]],[[2694.95,2013.02,0],0,true,[[3485,1,127.629],[2320,1,11.0863],[655,1,8.70227]]],[[4033.77,4156.63,0],0,true,[[2013,2,33.0039],[3302,2,23.8721],[1307,2,15.6812]]],[[6956.78,838.471,0],0,true,[[30,0,10.7855],[97,1,14.7719],[1906,1,12.1209]]],[[7674.28,3294.1,0],0,false,[[557,0,304.104],[2243,0,218.607]]], +[[5583.37,4370.9,0],0,false,[[3509,1,25.1151],[3151,1,21.8642]]],[[4003.41,4535.43,0],0,true,[[3712,0,27.5494],[3900,0,6.41276],[1472,0,6.8084]]],[[4404.66,3223.16,0],0,true,[[1355,0,28.0822],[1944,0,61.1937],[1148,0,17.5652]]],[[7050.55,6612.75,0],0,true,[[2838,0,125.146],[2582,0,19.4724],[851,0,7.27867]]],[[2521.54,83.4107,0],0,true,[[3671,0,17.4487],[71,0,3.36856],[1184,0,2.94509]]], +[[6307.58,4856.51,0],0,true,[[1228,0,26.7711],[2863,0,81.7916],[2723,0,13.2826]]],[[473.989,8188.49,0],0,false,[[300,1,69.621]]],[[5426.62,6818.03,0],0,false,[[2724,1,8.1292],[693,0,81.7574]]],[[7600.01,3533.17,0],0,true,[[3786,0,5.54083],[1286,0,67.1587],[4,0,12.7607]]],[[2287.74,7343.85,0],0,false,[[2727,1,128.553],[17,1,80.9942]]], +[[5480.25,7891.16,0],0,false,[[384,0,49.372]]],[[6758.11,1743.64,0],0,true,[[418,0,15.5804],[2627,0,172.447],[891,0,13.2504]]],[[4092.98,5768.07,0],0,false,[[1646,2,19.1382],[3144,2,27.355]]],[[2789.22,1963.03,0],0,true,[[257,1,12.7652],[1271,0,25.0883],[3438,1,16.7969]]],[[1422.72,5583.41,0],0,false,[[3873,0,121.813],[2421,0,140.261]]], +[[1000.95,1797,0],0,false,[[2785,1,61.3048],[3491,2,4.45055]]],[[4580.57,3316.23,0],0,false,[[619,1,92.5841],[3424,1,49.5004]]],[[7414.15,2966.72,0],0,true,[[1225,1,151.896],[930,1,11.2958],[215,1,17.3765]]],[[308.777,7314.56,0],0,false,[[743,0,17.3234],[1898,0,104.814]]],[[6959.3,4348.55,0],0,false,[[993,0,22.409],[3068,0,23.9633]]], +[[3613.28,6659.75,0],0,false,[[3364,0,32.7906],[231,0,18.2163]]],[[2128.08,6246.1,0],0,false,[[3451,0,55.8334],[2940,0,213.002]]],[[462.328,7392.39,0],0,true,[[633,0,11.7134],[1698,0,31.3347],[2424,0,24.2444]]],[[4706.83,2746.59,0],0,true,[[824,0,4.79669],[2647,0,108.141],[2996,1,7.31444]]],[[1415.6,4772.28,0],0,false,[[1715,1,131.588],[1633,1,157.084]]], +[[3732.43,3085.51,0],0,false,[[241,0,77.3719],[1119,0,205.364]]],[[2529.1,3948.14,0],0,false,[[2850,1,200.562],[2137,1,67.2388]]],[[2864.41,4586.35,0],0,false,[[3021,1,90.1282],[127,1,24.8979]]],[[8186.76,1448.32,0],0,false,[[897,0,203.716]]],[[712.21,3044.38,0],0,false,[[54,0,101.313],[2404,0,189.292]]], +[[5440.52,7930.76,0],0,true,[[1086,1,28.5016],[1870,1,268.916],[384,1,11.554]]],[[3015.41,1994.78,0],0,false,[[2133,1,7.23514],[39,0,124.66]]],[[7789.72,6314.42,0],0,false,[[2909,0,74.7058],[3078,0,61.2544]]],[[2.26116,5246.27,0],0,false,[[918,0,211.545]]],[[556.022,5797.51,0],0,false,[[3694,0,301.141],[3484,0,28.3778]]], +[[361.581,4642.28,0],0,true,[[1917,0,7.95202],[2555,0,0.749812],[595,0,8.69717],[1180,0,13.562]]],[[1611.97,6933.25,0],0,false,[[1763,1,137.256],[2254,1,31.1926]]],[[1962.28,3396.02,0],0,true,[[717,0,4.55647],[2327,0,155.835],[470,0,11.6729]]],[[6881.33,4362.41,0],0,false,[[112,1,25.7867],[3385,1,24.8228]]],[[6109.48,1315.26,0],0,true,[[1966,1,302.34],[2553,1,5.00866],[3613,1,13.3154]]], +[[330.653,7603.88,0],0,false,[[2556,0,185.864],[2449,0,74.806]]],[[7202.61,6956.34,0],0,false,[[3469,1,231.453],[3748,1,118.582]]],[[624.038,7139.09,0],0,true,[[517,0,231.418],[3830,0,8.5126],[2825,0,22.7895]]],[[4567.17,2329.68,0],0,true,[[272,1,18.3688],[3903,1,29.602],[2014,1,28.7329]]],[[1012.02,3283.11,0],0,false,[[3692,0,187.442],[3755,0,71.9185]]], +[[2828.74,4468.19,0],0,true,[[3403,0,94.4366],[109,0,8.86387],[3816,1,8.95696]]],[[5627.83,7262.21,0],0,true,[[1729,0,10.2399],[2507,0,41.7083],[589,0,20.1092]]],[[8045.39,4563.38,0],0,true,[[630,0,44.349],[1632,0,13.6927],[3240,0,6.19763]]],[[6808.72,7653.99,0],0,false,[[171,0,60.6744]]],[[5490.5,1347.56,0],0,false,[[2852,0,73.3706]]], +[[5890.2,4353.63,0],0,false,[[2091,1,29.7593],[711,1,6.68087]]],[[741.889,6344.83,0],0,false,[[1912,0,190.189],[863,0,271.724]]],[[7662.16,2387.7,0],0,true,[[798,0,44.2741],[111,0,14.8682],[329,0,9.61832]]],[[4695.48,2744.72,0],0,true,[[824,1,9.71808],[2349,1,112.025],[2996,1,12.2195]]],[[2888.83,4861.19,0],0,false,[[2385,0,100.789],[2738,0,87.6135]]], +[[4082.05,4140.8,0],0,true,[[714,1,28.232],[3667,1,26.4036],[2036,1,26.8366]]],[[4276.73,6836.21,0],0,false,[[2952,0,251.974],[2081,0,114.007]]],[[2872.31,4193.12,0],0,false,[[275,1,10.6828],[3823,0,13.9338]]],[[7172.68,719.465,0],0,true,[[3456,0,143.276],[2103,1,13.2159],[732,1,16.2567]]],[[2759.23,7031.74,0],0,true,[[2622,0,20.6553],[2165,0,16.1263],[1778,0,14.8025],[1490,0,16.0348]]], +[[8049.27,4558.55,0],0,true,[[3227,0,6.19763],[646,0,7.67259],[1632,0,18.8893]]],[[1151.63,3475.17,0],0,true,[[1015,1,59.3265],[664,1,27.6581],[1150,1,18.6715]]],[[346.712,4524.06,0],0,true,[[3425,0,15.5845],[1595,0,17.1959],[1515,0,0.751409],[1113,0,17.8792]]],[[2188.9,5680.76,0],0,true,[[3561,0,126.357],[3868,0,6.21604],[2075,0,11.3226]]],[[4780.51,4314.55,0],0,true,[[2771,0,19.3294],[3407,0,5.45867],[644,0,6.42918]]], +[[2827.12,524.678,0],0,false,[[515,0,59.2797],[128,0,309.435]]],[[7641.72,7982.18,0],0,false,[[650,1,99.4592],[662,1,86.8808]]],[[6448.13,5201.42,0],0,false,[[444,1,8.74613],[372,1,8.74613]]],[[8015.24,1173.42,0],0,true,[[3487,0,16.5825],[1006,0,9.56884],[3624,0,11.302]]],[[5179.64,8103.26,0],0,false,[[198,0,68.2147]]], +[[558.209,5828.48,0],0,true,[[2497,0,13.0296],[1635,0,149.382],[3484,0,6.76427]]],[[6325.69,2.3186,0],0,false,[[1201,1,381.822]]],[[4087.52,5734.1,0],0,false,[[3144,2,7.09503],[2650,0,4.5007]]],[[1245.76,4120.37,0],0,true,[[2212,0,19.2482],[2832,0,36.1053],[2362,0,15.5865]]],[[149.979,5471.6,0],0,false,[[2153,0,187.786],[1624,0,132.933]]], +[[5917.99,4861.19,0],0,true,[[823,1,101.824],[3367,1,8.57497],[2520,1,17.508]]],[[81.2877,7214.17,0],0,false,[[845,0,138.917],[2842,0,89.3401]]],[[4426.62,3031.61,0],0,false,[[2112,2,51.5206],[485,2,13.4608]]],[[7951.21,7731.27,0],0,false,[[3057,1,97.7804],[3441,1,94.075]]],[[2178.61,5449.25,0],0,false,[[1588,0,34.6141],[1761,1,10.3182]]], +[[5102.62,2643.66,0],0,false,[[1958,0,199.761],[2307,0,140.824]]],[[3715.71,1844.85,0],0,true,[[1587,0,19.3652],[67,0,159.773],[2011,0,15.3491],[2877,0,16.0439]]],[[4695.99,5856.15,0],0,true,[[1322,0,6.83225],[1339,0,7.09697],[3162,0,4.80425]]],[[7869.16,7807.76,0],0,true,[[2729,0,12.3434],[3659,1,6.48056],[3057,1,14.8677]]],[[2168.75,7303.46,0],0,false,[[1733,0,32.0739],[3024,0,112.483]]], +[[5989.54,7767.52,0],0,false,[[1096,0,18.5057],[2526,0,144.892]]],[[1871.73,1441.55,0],0,true,[[1739,1,154.251],[1835,1,17.9229],[2166,1,8.1073]]],[[5041.88,5983.9,0],0,true,[[2258,0,209.037],[2124,0,197.285],[3018,0,117.07]]],[[1370.24,1843.01,0],0,false,[[2048,1,6.86647],[1358,2,3.54175]]],[[4312.34,8122.05,0],0,true,[[2656,0,306.492],[1171,0,29.2543],[16,0,15.6398]]], +[[4350.83,7329.74,0],0,false,[[1775,0,122.728],[2241,0,148.461]]],[[4795.61,5239.9,0],0,false,[[408,1,14.7726],[2236,1,45.2857]]],[[6832.4,5332.52,0],0,true,[[1925,1,9.50363],[2041,0,164.708],[2612,1,7.56785]]],[[1208.76,4065.15,0],0,true,[[3026,0,10.3177],[686,0,5.4642],[1451,0,6.30277]]],[[2475.02,2317.11,0],0,true,[[758,0,152.171],[2575,0,235.343],[1510,0,177.11]]], +[[5148.98,4958.18,0],0,false,[[3810,1,46.4302],[3697,1,258.882]]],[[2875.27,930.003,0],0,false,[[1273,0,158.951]]],[[2910.48,1856.6,0],0,false,[[1545,1,14.7032],[1373,1,5.13066]]],[[7249.2,4181.97,0],0,true,[[25,0,20.633],[800,0,18.4014],[1524,0,34.3052]]],[[6300.35,6859.77,0],0,false,[[1506,0,254.791]]], +[[5257.7,3372.2,0],0,false,[[1079,0,163.719],[3391,0,20.9297]]],[[476.428,1354.8,0],0,false,[[1064,0,47.6811],[1251,0,223.811]]],[[8113.58,6151.85,0],0,false,[[3635,0,160.584],[2205,0,108.521]]],[[1046.82,4296.19,0],0,false,[[1376,0,140.38],[3904,0,100.777]]],[[577.909,4427.04,0],0,true,[[1544,0,107.487],[1327,0,11.1428],[2931,0,8.68432]]], +[[1547.05,3988.86,0],0,false,[[3172,0,121.091],[3642,0,169.994]]],[[3406.29,6069.36,0],0,true,[[2600,0,54.7248],[1367,0,19.3725],[2652,0,15.2049],[2463,0,13.7316]]],[[7082.4,4143.48,0],0,false,[[3600,1,42.1952],[2460,1,133.362]]],[[2784.61,6142.63,0],0,true,[[292,0,14.0387],[1620,0,96.021],[1585,0,17.3603]]],[[4517.5,3192.47,0],0,false,[[625,1,5.78192],[286,2,4.50362]]], +[[1414.03,6768.42,0],0,false,[[1988,0,20.7741],[3822,0,115.603]]],[[1725.66,2392.37,0],0,true,[[1482,0,21.837],[1566,0,355.912],[1388,0,36.2137]]],[[6787.42,7252.04,0],0,false,[[3074,1,25.5067],[1091,1,93.0026]]],[[4666.79,3983.98,0],0,true,[[2791,0,178.025],[2333,1,14.7183],[3768,1,14.8665]]],[[527.443,3138.36,0],0,false,[[1514,0,32.8098],[1647,0,62.8145]]], +[[1838.75,4908.36,0],0,true,[[207,0,5.36506],[2701,0,66.3486],[2774,0,6.12853]]],[[4623.4,2956.43,0],0,true,[[2428,1,14.5205],[2621,1,70.7618],[3174,1,73.6558]]],[[1830.23,4668.25,0],0,true,[[2272,1,229.228],[599,1,11.1714],[2501,1,23.8972]]],[[4469.3,3102.66,0],0,false,[[1392,2,34.5319],[2112,2,31.3943]]],[[5485.04,6778,0],0,true,[[3587,1,25.6378],[1034,1,18.0224],[610,1,8.17568]]], +[[5577,4355.62,0],0,false,[[2018,1,27.2283],[1017,1,25.1186]]],[[2545.57,7416.43,0],0,false,[[1679,0,32.591],[1284,0,64.8977]]],[[4031.37,4132.9,0],0,true,[[3177,2,23.8721],[2477,2,18.3585],[1307,2,9.26916]]],[[588.576,4958.69,0],0,false,[[974,1,355.099],[2708,1,232.474]]],[[830.119,5231.28,0],0,false,[[1518,0,381.545],[1196,0,145.609]]], +[[5185.63,7129.84,0],0,false,[[1680,2,124.872],[2998,2,173.006]]],[[7656.38,7121.58,0],0,false,[[1745,0,67.3294]]],[[4369.89,2934.09,0],0,true,[[869,1,36.9612],[2194,1,16.666],[3615,1,26.6799]]],[[3483.37,7574.37,0],0,false,[[794,0,146.567]]],[[2017.34,7290.6,0],0,true,[[3740,1,131.669],[51,1,14.4649],[1800,1,19.4279]]], +[[3692.86,2609.65,0],0,false,[[1119,0,303.061],[1788,0,117.291]]],[[4089.66,3382.99,0],0,true,[[3732,1,25.9215],[2586,1,77.2987],[1179,1,11.1965]]],[[3832.57,5964.17,0],0,false,[[66,1,27.8377],[3807,1,189.641]]],[[2684.42,2757.67,0],0,false,[[1047,1,252.488],[374,1,229.38]]],[[354.16,4416.85,0],0,true,[[926,0,0.750435],[253,0,6.58581],[1559,0,10.4857],[586,0,6.16037]]], +[[5865.74,253.458,0],0,false,[[3387,0,105.65],[169,1,14.6785]]],[[4912.18,4103.79,0],0,true,[[130,0,64.3614],[3146,0,24.3602],[591,0,13.5396]]],[[3830.73,3632.89,0],0,true,[[1735,1,79.5941],[1108,1,35.582],[2697,1,17.758],[548,1,17.7571]]],[[3383.12,6686.77,0],0,true,[[2788,1,64.1374],[697,1,35.3778],[254,1,13.781]]],[[7378.84,6326.69,0],0,false,[[2099,0,35.08],[3175,0,58.4672]]], +[[3034.32,7387.29,0],0,true,[[2252,1,7.75693],[1574,1,179.101],[1821,1,14.4281],[3688,1,12.4873],[2911,1,6.79277]]],[[4908.43,2017.49,0],0,true,[[994,2,118.104],[566,2,99.3412],[3006,2,8.93951]]],[[5726.61,3245.47,0],0,true,[[3547,0,9.77143],[3138,0,306.256],[3330,0,21.086]]],[[5682.21,7703.27,0],0,false,[[1272,0,163.142]]],[[5865.92,7658.04,0],0,true,[[2526,0,21.2357],[902,0,18.9508],[1593,0,138.237]]], +[[1030.94,2187.08,0],0,false,[[2632,0,159.119]]],[[4090.66,5031.65,0],0,false,[[1495,0,127.612],[1140,0,172.585]]],[[5809.56,5950.33,0],0,true,[[2588,1,43.8635],[785,1,22.3761],[947,1,3.59973]]],[[4082.6,5339.32,0],0,false,[[3687,1,22.6621],[3737,1,42.6667]]],[[1553.34,534.848,0],0,true,[[1407,2,32.6652],[103,2,32.9882],[1476,2,4.84763],[1904,2,6.26496]]], +[[5731.87,3225.07,0],0,true,[[3519,0,335.431],[3322,0,21.086],[3547,0,12.3566]]],[[1348.15,1834.81,0],0,false,[[731,1,133.173],[1173,2,5.01793]]],[[4099.49,5813.53,0],0,false,[[3878,2,33.3931],[1646,2,26.8131]]],[[3560.25,695.484,0],0,false,[[3386,1,158.96],[2914,1,25.9269]]],[[4919.19,2657.03,0],0,true,[[3655,1,9.75315],[2996,1,230.564],[2086,1,6.99658]]], +[[5239.65,2904.64,0],0,true,[[3581,1,52.6972],[2500,1,25.0916],[2874,1,9.80316]]],[[3571.54,6593.31,0],0,true,[[1381,1,13.781],[2464,1,9.96707],[1141,1,1.90404],[484,1,12.9355]]],[[4033.28,4086.28,0],0,false,[[767,2,7.97924],[335,1,8.85074]]],[[7436.63,3120.82,0],0,false,[[2209,1,42.7402],[1225,1,4.19725]]],[[363.252,4718.27,0],0,true,[[2450,0,18.7798],[1343,0,0.749458],[245,0,19.4266],[334,0,16.0301]]], +[[5717.06,1895.18,0],0,false,[[1206,0,55.2973],[1688,0,80.0857]]],[[5756.62,2182.34,0],0,false,[[1969,1,153.393],[1176,1,76.231]]],[[5659.71,4431.04,0],0,true,[[90,1,21.4007],[2309,1,173.248],[3034,1,14.7348],[602,1,11.4906]]],[[7022.53,387.879,0],0,true,[[2479,0,13.3965],[80,0,83.3948],[3791,1,26.0886]]],[[7589.24,6499.97,0],0,true,[[2776,0,80.109],[3001,0,8.27026],[3005,0,17.2627]]], +[[1385.26,2322.33,0],0,false,[[3675,0,230.777],[3046,0,195.882]]],[[2304.14,1130.38,0],0,false,[[2856,0,179.905],[3472,0,257.582]]],[[3916.38,4574.69,0],0,false,[[3350,0,235.828],[3900,0,89.493]]],[[1025.15,1811,0],0,true,[[3460,1,7.02379],[2919,1,8.80061],[3787,2,8.30591]]],[[6088.3,899.781,0],0,true,[[479,0,125.419],[1282,0,14.3358],[1221,0,8.61356]]], +[[3742.56,4726.68,0],0,false,[[1878,0,368.557],[3347,0,235.828]]],[[4051.23,488.28,0],0,true,[[2823,0,142.839],[1070,0,211.692],[2001,0,110.616]]],[[5706.91,1842.54,0],0,false,[[1313,1,40.7093],[2920,1,181.092]]],[[7627.28,4437.03,0],0,true,[[1087,0,296.577],[3770,1,12.0039],[100,1,17.6051]]],[[646.573,46.4227,0],0,true,[[747,2,22.2092],[145,2,19.5067],[3646,2,12.6899]]], +[[7300.6,2590.19,0],0,true,[[37,0,9.25083],[1903,0,293.712],[2185,0,12.4055]]],[[5493.19,414.788,0],0,true,[[2611,0,20.485],[2314,0,201.296],[1578,0,255.889]]],[[2814.39,1211.16,0],0,true,[[10,2,17.0777],[42,2,72.3708],[23,2,14.4334],[2929,2,31.4199]]],[[5697.57,2874.2,0],0,false,[[1326,0,34.3004],[2341,0,145.337]]],[[879.68,4195.82,0],0,false,[[807,0,8.71164],[1376,0,77.3324]]], +[[6369.89,5445.05,0],0,false,[[3091,0,28.3098],[2637,0,10.1373]]],[[6239.76,937.248,0],0,false,[[3567,0,138.494],[2393,0,139.418]]],[[2914.19,4071.78,0],0,false,[[1964,0,53.3844],[989,0,150.579]]],[[1010.49,243.163,0],0,true,[[1118,0,15.1343],[841,2,13.4901],[3145,2,16.5776]]],[[3640.26,6641.12,0],0,false,[[454,0,172.66],[3200,0,32.7906]]], +[[2988.51,4325.81,0],0,true,[[682,0,11.7992],[1109,0,242.778],[326,0,17.1447]]],[[590.243,5982.39,0],0,false,[[2497,0,149.809],[462,0,143.111]]],[[5922.79,4868.3,0],0,true,[[3255,1,8.57497],[1478,0,64.0313],[2520,1,10.0675]]],[[849.183,8175.41,0],0,true,[[3766,1,299.014],[2465,1,21.6395],[60,1,15.5213]]],[[442.748,2012.76,0],0,false,[[973,0,78.4784],[439,0,20.1577]]], +[[4769.76,1097.68,0],0,true,[[3657,0,21.7181],[2949,0,25.0463],[1409,0,21.4278]]],[[3601.66,1956.93,0],0,true,[[2900,0,19.2507],[1297,0,18.0217],[2860,0,3.68932]]],[[2638.65,4424.08,0],0,false,[[1059,0,12.5497]]],[[3699.91,7022.27,0],0,true,[[2962,0,325.889],[1841,0,407.345],[2107,0,238.18]]],[[5668.95,2282.08,0],0,false,[[3531,0,74.4928]]], +[[4588.28,2333.47,0],0,true,[[1718,1,50.4838],[272,1,7.89893],[2014,1,13.7469]]],[[3965.45,5914.18,0],0,true,[[1255,1,78.3431],[2345,1,7.11738],[776,1,15.0877]]],[[820.172,1720.65,0],0,false,[[1251,0,286.83],[3457,0,60.9536]]],[[2891.93,4187.87,0],0,false,[[309,0,49.7467],[2218,0,11.996]]],[[5529.71,6470.12,0],0,false,[[3132,1,22.2171],[2172,1,93.8997]]], +[[2033.99,4079.94,0],0,false,[[3143,0,111.84]]],[[5073.56,5259.9,0],0,false,[[47,0,78.4717],[1936,1,5.45587]]],[[4370.56,2320.56,0],0,false,[[1528,0,9.5639],[256,0,9.5639]]],[[245.364,6060.96,0],0,false,[[2259,0,41.7963]]],[[4717.78,3469.19,0],0,false,[[3793,1,34.2746],[3173,1,58.7624]]], +[[6856.59,4360.69,0],0,true,[[3218,1,24.8228],[3444,1,22.4326],[1749,1,12.6443]]],[[3515.39,543.157,0],0,false,[[304,1,252.244],[3333,1,158.96]]],[[5776.69,240.917,0],0,false,[[3315,0,105.65]]],[[5083.29,6814.5,0],0,true,[[2741,1,17.8531],[1824,1,11.3844],[1329,1,10.6462]]],[[4946.26,4610.82,0],0,true,[[3501,0,49.1241],[1386,1,8.95197],[1650,0,13.5318],[1842,1,24.7054]]], +[[4158.09,6989.58,0],0,false,[[976,1,62.6555],[612,1,100.926]]],[[5237.1,3368.53,0],0,true,[[3280,0,20.9297],[3082,0,83.9539],[1352,0,134.566]]],[[4920.64,4616.02,0],0,false,[[1386,1,20.8003],[1940,1,151.127]]],[[5206.94,7682.48,0],0,false,[[1031,0,36.0252],[29,0,284.445]]],[[416.664,3706.17,0],0,false,[[1422,0,94.4492],[2592,0,180.366]]], +[[4476.76,2962.19,0],0,false,[[2806,1,42.1644]]],[[5369.27,7702.92,0],0,false,[[827,1,18.0382],[1086,1,210.736]]],[[5450.43,1331.66,0],0,false,[[3036,1,69.1084],[2045,1,249.156]]],[[2373.5,2915.51,0],0,false,[[951,0,135.873],[433,0,230.532]]],[[6082.42,6185.29,0],0,false,[[651,0,6.27033],[3761,0,172.818]]], +[[4140.48,1650.66,0],0,true,[[3038,0,2.87272],[2346,0,247.457],[152,0,10.879]]],[[4788.91,81.2375,0],0,true,[[1331,1,154.482],[564,1,16.1843],[183,1,11.5318]]],[[2965.84,932.202,0],0,false,[[3081,0,150.341],[310,0,101.356]]],[[2752.43,4523.57,0],0,false,[[3799,0,25.1133],[3225,0,94.4366]]],[[4944.2,1188.87,0],0,false,[[1044,1,308.451],[1603,1,132.309]]], +[[8088.27,1268.72,0],0,true,[[1204,0,10.8411],[1762,0,23.4304],[757,0,18.7667]]],[[4890.82,888.176,0],0,true,[[1773,1,27.9392],[1175,1,68.138],[1349,1,9.74789]]],[[4778.36,4319.55,0],0,true,[[1818,0,23.4986],[644,0,2.9635],[3244,0,5.45867]]],[[4332.39,2973.98,0],0,false,[[2984,1,20.1426],[1213,1,14.6749]]],[[3681.59,1124.88,0],0,false,[[1630,0,39.3614],[3882,0,14.8938]]], +[[2094.31,7500.44,0],0,true,[[906,0,25.7641],[3781,0,80.671],[50,0,43.7215]]],[[3324.6,7694.52,0],0,false,[[2607,1,190.26],[3532,1,179.621]]],[[2033.03,5701.63,0],0,false,[[3561,0,34.1464],[1362,1,12.3188]]],[[2149.34,4591.8,0],0,false,[[2581,0,144.227],[806,0,40.7691]]],[[663.997,2008.89,0],0,false,[[1771,0,180.494],[2811,0,123.807]]], +[[4386.13,4915.64,0],0,false,[[3039,1,3.89815],[2777,0,321.202]]],[[4686.94,3243.12,0],0,false,[[2434,1,34.8239],[661,1,21.9997]]],[[806.152,6091.47,0],0,false,[[3663,1,60.3721],[1440,1,201.277]]],[[4224.48,2895.04,0],0,true,[[2335,1,6.20392],[765,1,19.8359],[121,1,8.43048]]],[[155.338,7612.72,0],0,true,[[3826,0,12.9144],[659,0,17.7907],[3899,0,14.1445]]], +[[274.449,7370.62,0],0,true,[[1871,0,20.0825],[2556,0,65.2534],[1568,0,8.69702]]],[[6630.61,2903.32,0],0,true,[[3771,1,7.80484],[2979,0,187.477],[3632,1,13.199]]],[[1711.21,5861.23,0],0,false,[[468,0,142.873],[709,0,13.5119]]],[[4889.58,6951.05,0],0,true,[[2752,0,5.49051],[3809,0,142.793],[2206,0,6.26325]]],[[4559.51,3271.66,0],0,false,[[3196,1,49.5004],[924,1,33.8937]]], +[[344.212,4508.72,0],0,true,[[624,0,10.5838],[1515,0,14.8686],[1869,0,0.752986],[3242,0,15.5845]]],[[4181.24,2037.6,0],0,false,[[3160,0,124.206],[1276,0,147.909]]],[[2848.62,5945.85,0],0,false,[[469,0,141.682],[1585,0,199.035]]],[[3583.3,2384.23,0],0,false,[[1336,0,70.4592],[3719,1,6.11133]]],[[7082.81,5581.1,0],0,false,[[3033,0,25.0679],[750,0,41.9477]]], +[[2813.2,3656.63,0],0,true,[[1360,0,15.322],[1750,0,150.936],[105,1,18.5651],[3435,1,11.6275]]],[[6590.35,3646.09,0],0,true,[[3541,0,87.0602],[1164,0,16.772],[3165,0,13.169],[2804,0,24.9208]]],[[2135.79,3845.81,0],0,false,[[2691,0,125.166],[3729,0,157.296]]],[[1378.44,7473.47,0],0,false,[[305,1,135.911],[822,1,199.228]]],[[139.091,4678.6,0],0,false,[[795,0,200.045],[3730,0,168.867]]], +[[2816.72,3667.71,0],0,true,[[3627,1,89.9937],[3430,1,11.6275],[105,1,27.2789],[1360,1,15.9191]]],[[1168.77,2083.1,0],0,true,[[1645,1,16.3336],[3447,1,298.851],[460,1,16.6428],[2632,1,17.8479]]],[[5281.57,7484.92,0],0,true,[[2433,2,67.9798],[3131,2,35.0286],[36,2,16.726]]],[[2805.58,1966.82,0],0,true,[[257,1,27.522],[3135,1,30.3731],[3193,1,16.7969]]],[[2128.51,5205.62,0],0,false,[[72,1,106.459],[2285,1,259.672]]], +[[3629.03,6670.22,0],0,false,[[1973,1,27.4458],[3648,1,25.454]]],[[8003.62,7653.5,0],0,false,[[3258,1,94.075],[2675,1,31.3473]]],[[7549.66,6507.52,0],0,true,[[53,1,30.4975],[1879,1,7.25634],[1872,1,13.2029]]],[[5178.35,1978.79,0],0,false,[[1736,1,104.706],[1189,1,90.1123]]],[[6834.22,4359.18,0],0,true,[[3385,1,22.4326],[1357,1,251.711],[1749,1,10.5854]]], +[[378.996,1585.74,0],0,false,[[1971,0,265.485],[1989,0,16.0809]]],[[336.189,1566.47,0],0,false,[[1989,0,30.9348],[3087,0,208.527]]],[[1039.32,1816.47,0],0,true,[[3436,1,298.851],[2919,1,6.6957],[1757,1,7.07044]]],[[2963.5,1896.29,0],0,true,[[3757,1,11.4637],[2006,1,8.65578],[500,1,15.104]]],[[5984.74,5440.44,0],0,true,[[131,0,12.6937],[2753,0,105.438],[476,0,10.3048]]], +[[2680.38,2484.39,0],0,false,[[3158,0,46.8034]]],[[2111.64,6298.99,0],0,false,[[3201,0,55.8334],[2293,1,12.3364]]],[[4225.93,7486.66,0.000305176],0,false,[[1220,0,14.6755]]],[[7813.25,6503.71,0],0,true,[[244,0,73.0535],[2058,0,5.5411],[3693,0,6.4073]]],[[1854.94,894.95,0],0,true,[[1060,0,18.4429],[3,0,177.121],[2407,0,9.3587]]], +[[4932.77,7328.61,0],0,false,[[2280,0,299.939]]],[[7205.6,857.131,0],0,false,[[3238,0,143.276],[233,0,42.6052]]],[[875.103,1746.54,0],0,false,[[3377,0,60.9536],[226,0,21.8847]]],[[881.105,4054.26,0],0,false,[[1492,0,47.5299]]],[[3990.78,8066.12,0],0,true,[[1274,0,28.1811],[1210,0,17.6642],[3576,0,115.746],[1330,0,62.0669]]], +[[1018.75,1808.12,0],0,false,[[3348,1,7.02379],[3787,2,1.63236]]],[[7051.65,4347.46,0],0,true,[[3606,1,10.3008],[1787,1,146.462],[1008,1,14.3257]]],[[1933.37,7411.59,0],0,false,[[3498,0,46.4584],[1088,0,149.277]]],[[1302.89,3068.2,0],0,true,[[41,1,11.3837],[3053,1,286.962],[3814,1,26.3579]]],[[5499.45,2145.69,0],0,false,[[1688,0,253.465],[1921,0,83.2656]]], +[[7732.82,7836.82,0],0,false,[[1608,1,75.9815],[866,1,61.0283]]],[[5310.95,35.475,0],0,true,[[302,1,19.646],[2097,1,135.276],[2291,1,6.22156]]],[[5527.81,4935.24,0],0,false,[[1138,0,304.231],[1776,0,22.7946]]],[[2771.62,6920.6,0],0,false,[[2742,1,148.542],[1889,1,133.079]]],[[7414.08,6862.74,0],0,false,[[46,1,244.684],[3221,1,231.453]]], +[[4071.57,4476,0],0,true,[[3776,2,108.958],[3152,2,20.8324],[1552,2,11.7826]]],[[972.236,3465.51,0],0,false,[[3692,1,6.42274],[1659,1,6.42274]]],[[2451.59,1340.3,0],0,false,[[3346,0,257.582],[210,0,330.132]]],[[5045.8,4134.17,0],0,false,[[1913,0,20.0015],[2859,0,19.4134]]],[[4995.68,2765.07,0],0,true,[[1231,0,293.132],[1448,1,5.24267],[2657,1,11.8787]]], +[[3179.28,3196.39,0],0,true,[[3714,1,13.7114],[3702,1,290.752],[1523,1,22.4979]]],[[2550.73,1665.91,0],0,true,[[210,0,20.397],[2398,1,9.11653],[3114,1,13.7873]]],[[6049.77,7806,0],0,true,[[2033,0,26.9278],[1096,0,53.0212],[1899,1,25.0402],[2827,1,14.6382]]],[[2489.44,386.6,0],0,false,[[102,0,49.6217],[2211,0,303.997]]],[[3419.57,5870.83,0],0,false,[[2463,0,189.958],[3607,0,286.402]]], +[[6508.21,2245.89,0],0,true,[[3513,1,225.47],[3065,1,20.9239],[3597,1,10.3742]]],[[6757.68,2916.02,0],0,true,[[1263,1,17.371],[398,0,264.338],[3621,1,5.031]]],[[2597.34,4289.09,0],0,false,[[182,0,11.1947],[1262,0,114.951]]],[[4972.37,1977.13,0],0,false,[[1716,1,23.5494],[3124,1,25.5714]]],[[563.631,5824.81,0],0,true,[[3214,0,28.3778],[2497,0,14.08],[3250,0,6.76427]]], +[[2777.15,2101.96,0],0,true,[[2102,1,400.654],[3176,1,127.629],[3116,1,4.31734]]],[[2881.59,4131.02,0],0,false,[[1494,0,30.95]]],[[8012.58,1157.07,0],0,true,[[3624,0,27.128],[996,0,349.807],[3248,0,16.5825]]],[[5191.75,393.945,0],0,true,[[1516,0,3.90404],[1741,0,7.9239],[1106,0,0.398322]]],[[326.436,4835.53,0],0,true,[[3863,0,216.742],[392,0,7.39679],[3656,0,6.25135]]], +[[6054.47,4312.49,0],0,false,[[167,2,4.349],[1885,1,141.207]]],[[1004.38,1799.53,-1.4597],0,false,[[3787,2,15.585],[3195,2,4.45055]]],[[4785.75,3733.37,0],0,true,[[1887,1,17.5558],[1725,1,25.9424],[552,1,7.6805]]],[[2012.2,5714.78,0],0,true,[[367,1,27.0845],[3913,1,32.2602],[2915,1,17.0302],[1362,1,12.3188]]],[[2226.74,895.388,0],0,true,[[2146,2,31.1449],[1236,2,283.142],[1328,2,13.984],[1875,2,19.5968]]], +[[2855.49,4571.17,0],0,false,[[127,1,8.15871],[769,0,78.9088]]],[[4844.29,4073.62,0],0,false,[[1922,0,58.6068],[3842,0,44.0632]]],[[2389.01,3223.72,0],0,true,[[657,1,94.1067],[3511,1,25.6655],[2204,1,15.8125],[2357,1,17.0166]]],[[1970.39,7439.28,0],0,false,[[3462,0,46.4584],[2399,1,11.5752]]],[[8100.62,5357.41,0],0,true,[[2542,0,26.1],[3703,0,71.5018],[193,0,14.3256]]], +[[2625.84,791.643,0],0,true,[[3049,1,388.335],[3610,1,24.6909],[2966,1,11.0335]]],[[4922.82,4567.71,0],0,false,[[18,0,116.241],[3389,0,49.1241]]],[[7698.87,3912.45,0],0,true,[[2779,0,263.658],[1567,0,16.1622],[904,0,8.20686]]],[[4776.09,3463.9,0],0,false,[[878,0,20.8395]]],[[1610.54,3530.26,0],0,true,[[2324,0,5.43503],[1134,0,342.134],[1950,0,6.09083]]], +[[4402.86,2816.74,0],0,true,[[1862,2,24.0614],[3805,2,9.09614],[2391,2,4.58555]]],[[6195.88,1495.39,0],0,true,[[1408,0,11.3469],[1792,0,307.835],[2414,0,6.64453]]],[[5777.94,1837.46,0],0,true,[[3844,0,27.1016],[1206,0,28.8548],[833,1,10.9939]]],[[5609.73,7669.15,0],0,false,[[3609,0,246.918]]],[[5558.66,4366.59,0],0,false,[[1315,1,19.3189],[3180,1,25.1151]]], +[[890.219,6090.63,0],0,true,[[2743,0,15.7468],[872,0,51.3186],[353,1,14.1273],[3115,1,9.09051]]],[[2363.86,3228.71,0],0,true,[[2357,1,20.2999],[2255,1,155.416],[3497,1,25.6655],[2204,1,15.4401]]],[[7742.96,6552.71,0],0,false,[[2597,0,75.3935],[895,0,119.194]]],[[6470.62,2465.77,0],0,true,[[1553,1,28.348],[3480,1,225.47],[2188,1,16.8239]]],[[3270.38,2760.01,0],0,true,[[113,0,72.331],[503,0,90.9835],[3705,0,19.0548]]], +[[5266.76,7390.54,0],0,false,[[3131,2,60.8814],[260,2,30.0399]]],[[3914.77,1350.11,0],0,true,[[3169,0,111.435],[1238,0,8.92343],[995,0,5.53355]]],[[8166.71,6272.37,0],0,true,[[2865,1,27.3773],[5,1,181.405],[3103,1,12.3731]]],[[4002.43,4273.08,0],0,false,[[3540,1,53.0412],[1685,1,73.8806]]],[[5800.63,2898.65,0],0,false,[[1383,0,13.7194],[3330,0,335.431]]], +[[778.779,1794.7,0],0,true,[[2302,1,363.132],[3041,1,30.0327],[603,1,13.0181]]],[[1119.65,5685.3,0],0,true,[[3530,0,12.2806],[1028,0,17.2638],[2578,0,13.2844]]],[[2778.58,3175.42,0],0,true,[[2422,1,42.7069],[116,1,24.2793],[1426,1,21.0619]]],[[5331.39,4062.77,0],0,false,[[718,0,273.536],[1747,0,211.205]]],[[4044.57,4182.18,0],0,true,[[1471,1,19.9155],[2151,1,59.0985],[2013,2,10.0857]]], +[[7576.13,8122.25,0],0,false,[[2846,1,91.1604],[650,1,59.8793]]],[[4033.94,5429.51,0],0,false,[[909,1,11.7528],[1607,2,12.69]]],[[1620.91,8027.34,0],0,false,[[1956,0,179.343],[935,0,7.34492]]],[[4208.74,3931.71,0],0,false,[[2552,0,66.6435],[369,0,27.643]]],[[6775.21,1087.35,0],0,true,[[465,0,20.2584],[3171,0,24.4684],[188,0,11.3137]]], +[[1110.23,5693.15,0],0,false,[[1601,0,33.6242],[3521,0,12.2806]]],[[5650.66,2210.65,0],0,true,[[3871,1,17.7898],[3374,0,74.4928],[2515,1,16.2975],[2413,0,20.923]]],[[3427.65,7810.38,0],0,false,[[3411,1,179.621],[1270,1,263.557]]],[[138.556,7575.22,0],0,false,[[3002,0,125.94],[3899,0,27.59]]],[[8077.06,5346.25,0],0,false,[[32,0,38.467],[193,0,12.102]]], +[[2837.96,4444.3,0],0,true,[[701,1,16.3445],[2885,1,27.2838],[3816,1,27.44],[109,1,18.957]]],[[366.29,5148.65,0],0,false,[[2292,0,106.03],[1518,0,119.268]]],[[4501.36,6277.73,0],0,false,[[1248,0,73.2817],[3664,2,13.829]]],[[755.827,4700.85,0],0,false,[[2200,0,234.502]]],[[7534.5,2082.88,0],0,false,[[577,0,394.943],[2267,0,208.253]]], +[[4040.06,4305.5,0],0,false,[[1153,2,8.13828],[3518,1,53.0412]]],[[6617.71,3563.52,0],0,true,[[1708,0,18.2275],[3431,0,87.0602],[2289,0,9.50827]]],[[4521.1,3217.92,0],0,false,[[2921,2,22.7895],[286,2,28.2748]]],[[7411.82,1152.66,0],0,false,[[1743,0,133.566],[1007,0,37.7032]]],[[4946.05,2003.89,0],0,true,[[3019,1,17.6664],[3828,1,18.2134],[1586,1,6.59197]]], +[[2576.01,3923.78,0],0,false,[[3660,0,44.0853],[55,0,129.579]]],[[6469.81,2532.09,0],0,true,[[2728,1,114.802],[251,1,19.72],[174,1,12.8203]]],[[5732.13,3237.41,0],0,true,[[3322,0,9.77143],[3012,0,242.371],[3330,0,12.3566]]],[[2045.67,5517.81,0],0,false,[[360,0,327.133],[593,0,86.7988]]],[[5469.85,4491.14,0],0,true,[[2309,1,25.9005],[537,1,377.622],[522,1,10.8426]]], +[[5500.58,1256.49,0],0,true,[[120,0,12.2582],[699,0,10.0946],[427,0,3.7046],[2301,1,12.6293],[297,0,6.21284]]],[[5181.46,6209.98,0],0,true,[[3825,0,18.3704],[886,0,221.875],[925,0,10.497]]],[[3238.01,859.861,0],0,true,[[1507,0,5.06608],[825,0,87.2301],[2090,0,5.20289]]],[[1868.06,1424.86,0],0,false,[[2166,0,9.92437],[2374,0,44.6038]]],[[658.743,6657.48,0],0,true,[[3710,0,117.072],[2342,0,218.79],[863,0,58.2607]]], +[[1410.22,6740.51,0],0,true,[[2587,1,21.7034],[3096,1,261.139],[1988,1,8.66223]]],[[5469.49,4293.86,0],0,false,[[2489,1,56.4272],[2514,1,249.828]]],[[6957.1,2934.18,0],0,true,[[873,0,125.167],[166,1,9.08884],[205,1,9.53348]]],[[5437.7,3412.68,0],0,true,[[1341,0,188.381],[1079,0,20.9043],[3668,0,5.31413]]],[[7060.56,3788.66,0],0,false,[[2460,1,223.172],[2445,1,5.1416]]], +[[3190.88,7330.71,0],0,false,[[2168,0,82.7247],[2935,0,122.957]]],[[2064.44,5688.24,0],0,false,[[3412,0,34.1464],[3243,0,126.357]]],[[5688.4,432.865,0],0,false,[[2139,0,79.5464],[2314,0,44.2209]]],[[2.87673,5053.36,0],0,false,[[2053,0,73.9019]]],[[4586.76,2780.65,0],0,true,[[2349,1,3.97535],[2936,1,93.674],[704,1,10.525]]], +[[234.17,6105.8,0],0,true,[[988,1,26.5466],[453,1,28.2208],[2259,1,11.8764],[3137,1,11.778]]],[[748.112,7500.91,0],0,false,[[1537,0,68.2484],[517,0,188.592]]],[[6298.98,816.745,0],0,false,[[2595,0,45.6786],[3361,0,138.494]]],[[5516.04,4337.73,0],0,true,[[383,1,12.8785],[423,1,9.34378],[2489,1,7.72982],[628,1,4.60891]]],[[1545.15,5739.45,0],0,false,[[2421,0,163.556],[3008,0,230.139]]], +[[4418.5,3022.49,0],0,false,[[485,2,3.46017],[61,1,40.8796]]],[[4226.94,5138.8,0],0,false,[[2372,1,98.8389],[2214,1,123.351]]],[[4067.62,5331.59,0],0,true,[[24,2,18.995],[1580,2,20.7428],[1465,2,8.2877]]],[[3987.73,5372.07,0],0,false,[[1214,1,24.7923],[3590,1,295.214]]],[[4043.64,4245.34,0],0,false,[[1670,2,55.4577],[2013,2,56.3212]]], +[[3713.34,6289.33,0],0,true,[[3149,0,21.5471],[3585,1,7.52626],[805,1,12.9227]]],[[3945.02,8171.46,0],0,false,[[3459,0,115.746]]],[[4056.08,3293.75,0],0,false,[[3628,0,45.9944],[1994,0,61.4191]]],[[4540.91,3322.33,0],0,false,[[2220,2,204.163],[1067,2,42.5344]]],[[5877.84,1574.6,0],0,true,[[2356,0,109.885],[1613,0,21.4744],[580,0,11.4926]]], +[[1304.12,4280.32,0],0,true,[[380,0,16.4863],[2362,0,160.981],[2661,0,25.5876]]],[[5290.76,2917.34,0],0,false,[[2565,1,28.0614],[3335,1,52.6972]]],[[4920.24,2625.41,0],0,true,[[3655,1,22.5042],[1570,1,31.9673],[1444,1,17.4248]]],[[7616.62,1306.7,0],0,true,[[843,0,233.753],[3892,0,16.7655],[554,0,9.94285]]],[[2650.65,7665.92,0],0,false,[[1043,0,75.1864],[2432,0,20.2257]]], +[[3714.78,6281.95,0],0,true,[[1652,1,46.6398],[805,1,20.2838],[3575,1,7.52626]]],[[3272.53,3087.74,0],0,false,[[2363,0,241.789],[2681,0,149.712]]],[[5500.32,6758.03,0],0,false,[[2617,1,68.5208],[3299,1,25.6378]]],[[865.276,6067.52,0],0,false,[[242,0,18.9589],[1190,0,10.7203]]],[[5150.61,3361.06,0],0,true,[[3082,0,9.27537],[2722,0,18.9858],[2903,0,20.2351]]], +[[3799.67,5145.03,0],0,true,[[3573,1,295.214],[2239,1,6.5815],[106,1,15.0859],[2019,1,7.37921]]],[[6658.02,347.655,0],0,false,[[1110,0,14.9996],[2690,0,2.7938]]],[[5885.85,1055.64,0],0,false,[[1137,0,177.726],[479,0,131.796]]],[[8099.39,6517.03,0],0,false,[[472,0,73.377],[482,0,28.9212]]],[[4814.81,1079.51,0],0,true,[[2095,0,100.647],[3657,0,26.8628],[546,0,17.2516]]], +[[2831.86,1249.93,0],0,true,[[10,1,28.4684],[3069,1,5.8939],[2392,1,13.6583]]],[[3655.02,1102.17,0],0,false,[[1151,0,28.7987],[1584,0,113.682]]],[[6509,2235.58,0],0,true,[[3065,1,11.3813],[143,0,246.588],[3480,1,10.3742]]],[[4054.13,5545.34,0],0,true,[[2025,2,163.529],[2577,2,25.7572],[1351,2,11.5288]]],[[4235.56,7002.66,0],0,false,[[1156,0,57.7441],[976,1,16.4629]]], +[[7086.33,4185.45,0],0,true,[[2538,1,14.3429],[3287,1,42.1952],[3007,1,10.6014],[1787,1,20.4277]]],[[1500.59,3336,0],0,true,[[3854,1,53.1794],[1144,1,9.52435],[1403,1,19.3709]]],[[5840.06,7620.91,0],0,false,[[902,0,26.3584],[3129,0,200.328]]],[[411.885,1849.4,0],0,true,[[1706,1,64.2357],[2302,1,10.3051],[727,1,3.42587],[1971,1,6.73831]]],[[3962.65,2574.33,-0.0399323],0,false,[[2461,2,8.68949],[2089,2,15.6]]], +[[3786.89,5959.01,0],0,false,[[2786,0,63.0146],[2470,0,22.3668]]],[[7045.88,4355.99,0],0,true,[[3461,1,10.3008],[691,0,18.2486],[1008,1,5.37275]]],[[3452.99,5586.73,0],0,false,[[3479,0,286.402],[2783,0,57.924]]],[[1922.77,2833.34,0],0,true,[[3886,0,220.826],[1616,0,27.8813],[2171,0,24.4417]]],[[5369.1,7685.75,0],0,true,[[3862,0,5.50043],[3508,0,246.918],[827,1,5.14428]]], +[[2636.76,813.751,0],0,true,[[3500,1,24.6909],[110,1,28.0085],[2966,1,14.3358]]],[[4185.49,4356.54,0],0,false,[[1674,1,35.7569],[2308,1,26.0163]]],[[1261.62,7930.96,0],0,false,[[184,0,70.1407],[2662,0,22.9927]]],[[6121.11,1308.78,0],0,true,[[3219,1,13.3154],[349,1,105.296],[2553,1,9.9611]]],[[412.335,887.369,0],0,true,[[689,1,221.603],[1089,1,19.1993],[2957,1,9.39782]]], +[[4370.57,2958.99,0],0,true,[[3307,1,26.6799],[1655,1,32.8832],[668,1,16.599]]],[[2871.09,1241.89,0],0,true,[[320,2,154.642],[2929,2,33.0745],[308,2,21.0674]]],[[1025.52,3839.96,0],0,true,[[1402,0,112.415],[2389,0,11.2311],[1916,0,24.7152],[1152,0,22.9985]]],[[5862.65,308.598,0],0,true,[[169,1,41.2402],[1986,1,24.6073],[1931,1,9.3868]]],[[1400.65,5955.67,0],0,false,[[2039,1,139.704],[2269,1,57.0762]]], +[[6758.29,954.673,0],0,true,[[2947,1,13.8766],[188,0,131.988],[3756,0,9.44561],[1693,1,17.4557]]],[[6754.33,2912.27,0],0,true,[[1263,1,20.746],[3632,1,111.251],[3481,1,5.031]]],[[8186.74,2135.94,0],0,false,[[1606,0,72.6535]]],[[7714.36,655.649,0],0,false,[[2792,0,117.776],[2866,0,62.3416]]],[[8011.75,1184.16,0],0,true,[[2824,0,266.185],[3487,0,27.128],[3248,0,11.302]]], +[[7481.92,6367.79,0],0,false,[[3175,0,53.1724],[914,0,50.8256]]],[[3740.62,980.4,0],0,true,[[3681,1,5.24081],[705,0,5.15811],[3063,1,6.00043]]],[[2789.76,3753.47,0],0,false,[[2899,1,144.624],[3435,1,89.9937]]],[[4093.92,3289.24,0],0,false,[[1572,1,7.6271],[3577,0,45.9944]]],[[280.498,8022.75,0],0,true,[[123,0,168.677],[1165,0,180.601],[975,0,72.4414]]], +[[7483.41,621.021,0],0,false,[[1337,0,231.501],[2792,0,129.406]]],[[1541.75,6859.55,0],0,false,[[2733,0,42.3795],[1195,1,4.65427]]],[[6643.68,2901.52,0],0,true,[[3621,1,111.251],[3771,1,20.0225],[3421,1,13.199]]],[[1353.82,2144.03,0],0,false,[[3088,0,169.327],[461,0,78.0256]]],[[8187.56,4986.49,0],0,false,[[1077,0,70.2996]]], +[[7983.26,6086.83,0],0,false,[[2517,0,271.988],[3282,0,160.584]]],[[6840.63,2034.52,0],0,true,[[1789,0,13.2921],[875,0,320.56],[2513,0,14.286]]],[[4867.73,6630.63,0],0,false,[[2546,2,246.777],[2833,2,98.6175]]],[[8044.14,5359.8,0],0,false,[[1405,0,47.1545],[2542,0,30.5959]]],[[7791.39,675.457,0],0,false,[[2995,0,35.3884],[1041,0,57.2653]]], +[[4000.36,4473.63,0],0,true,[[1472,0,55.7652],[414,0,31.8039],[1552,0,66.8228]]],[[3103.62,6864.63,0],0,false,[[1502,1,153.431],[2933,1,109.313]]],[[1391.17,4010.32,0],0,false,[[3285,0,169.994],[2718,0,107.178]]],[[586.083,4405.28,0],0,true,[[2219,0,72.93],[1327,0,17.3533],[2931,0,15.768]]],[[4013.94,4685.84,0],0,false,[[1140,0,185.583],[2504,0,89.6141]]], +[[3302.9,6442.11,0],0,false,[[1435,0,337.306],[239,0,82.2295]]],[[636.998,38.0955,0],0,true,[[523,0,60.1699],[145,2,7.72425],[3354,2,12.6899]]],[[2853.94,3225.89,0],0,true,[[2232,0,0.615165],[1345,0,20.4538],[1340,0,12.1374],[1895,0,21.1953],[890,0,21.1988]]],[[3605.08,6678.51,0],0,true,[[3440,1,25.454],[2580,1,17.9054],[3685,1,4.99107]]],[[7549.31,1126.67,0],0,false,[[2571,0,163.26],[2496,0,11.9788]]], +[[5697.6,382.145,0],0,false,[[2314,0,18.5814],[1827,0,148.87]]],[[1847.08,4895.96,0],0,false,[[1132,0,5.26755],[1354,0,232.235]]],[[4453.71,7893.38,0],0,false,[[971,0,94.662]]],[[4524.14,2284.57,0],0,false,[[179,0,33.9173]]],[[8187.71,3070.66,0],0,false,[[672,1,322.989]]], +[[4922.35,2647.8,0],0,true,[[2086,1,12.4076],[3582,1,22.5042],[3334,1,9.75315]]],[[321.603,4831.58,0],0,true,[[3730,0,104.239],[392,0,4.1319],[3489,0,6.25135]]],[[4789.75,1089.19,0],0,false,[[3594,0,26.8628],[3370,0,21.7181]]],[[2857.99,2550.12,0],0,false,[[604,0,112.246],[3679,0,129.165]]],[[7862.8,7808.98,0],0,true,[[1997,1,19.2319],[3057,1,21.0089],[3263,1,6.48056],[2729,1,7.18058]]], +[[2572.58,3879.83,0],0,false,[[1833,0,19.1073],[3545,0,44.0853]]],[[6726.77,6560.55,0],0,false,[[336,1,141.948],[2201,1,267.367]]],[[3403.82,6701.25,0],0,false,[[2390,1,22.6042],[254,1,28.2764]]],[[865.112,6078.49,0],0,true,[[2198,1,15.6236],[3417,1,60.3721],[1190,1,9.28356]]],[[4494.21,6265.9,0],0,true,[[1513,2,26.3406],[276,2,181.068],[3537,2,13.829]]], +[[5072.7,3893.06,0],0,false,[[2132,0,205.668],[2676,0,15.359]]],[[2054.63,7300.41,0],0,true,[[1800,1,19.1613],[541,1,84.2501],[271,1,14.1322]]],[[4098.39,4161.53,0],0,true,[[3235,1,26.4036],[2151,1,11.9237],[3866,1,25.535]]],[[5441.98,3415.82,0],0,false,[[3558,0,5.31413],[3128,0,66.4846]]],[[4798.15,5489.33,0],0,false,[[1843,0,133.15],[694,0,135.139]]], +[[4458.8,4767.24,0],0,true,[[252,1,26.6571],[492,1,45.4106],[1615,1,6.7162],[467,1,11.4771]]],[[2521.19,100.474,0],0,false,[[452,0,74.6519],[3184,0,17.4487]]],[[7001.62,3776.47,0],0,false,[[2256,0,121.119],[2961,0,59.166]]],[[4295.3,6074.59,0],0,true,[[1025,2,57.8075],[837,2,19.5006],[2230,2,12.4432]]],[[6471.59,4218.52,0],0,true,[[15,0,134.153],[1855,0,9.53598],[2589,0,11.8073]]], +[[1156.19,2318.61,0],0,false,[[1758,1,8.14453],[3345,0,230.777]]],[[1740.39,7164.27,0],0,false,[[761,0,12.6383]]],[[7493.69,5835.98,0],0,false,[[598,0,208.764],[748,0,25.711]]],[[5983.61,4903.37,0],0,false,[[1832,0,50.795]]],[[2738.07,2536.17,0],0,true,[[3658,0,129.165],[1100,0,18.3034],[374,1,18.255]]], +[[3549.46,2901.05,0],0,false,[[2352,0,216.024],[1577,0,220.455]]],[[3737.15,984.321,0],0,true,[[3063,1,10.1008],[1798,1,54.6942],[3626,1,5.24081],[705,1,9.54022]]],[[7702.95,6460.69,0],0,true,[[3005,0,103.452],[1147,0,12.782],[2409,0,15.2566]]],[[1272.68,7949.35,0],0,false,[[225,0,66.1096]]],[[6080.08,4309.53,0],0,false,[[532,1,105.705],[2536,2,6.279]]], +[[3600.12,6678.11,0],0,false,[[231,0,13.1093],[3648,1,4.99107]]],[[7535.53,5929.19,0],0,false,[[748,0,123.847]]],[[4068.67,5357.18,0],0,false,[[1042,1,5.73412],[3328,1,22.6621]]],[[3024.37,7379.74,0],0,true,[[2706,0,246.893],[2911,0,10.2973],[3320,1,12.4873]]],[[7842.13,7828.76,0],0,false,[[2968,0,73.1722],[2729,0,21.8804]]], +[[554.67,8175.97,0],0,true,[[2761,0,13.2083],[300,1,18.6553],[3906,0,22.418],[3766,1,7.61507]]],[[2843.15,4417.88,0],0,false,[[2519,0,10.299],[2885,1,2.86725]]],[[966.738,3462.19,0],0,false,[[3224,0,187.442],[3471,1,6.42274],[787,0,9.88703]]],[[7814.38,6510.02,0],0,true,[[3453,0,6.4073],[2973,0,7.33737],[2058,0,2.82381]]],[[451.569,5523.25,0],0,false,[[3808,0,41.1604],[3214,0,301.141]]], +[[3434.36,2344.64,0],0,true,[[1919,0,8.29842],[340,0,302.398],[2545,0,7.56609]]],[[6519.88,5684.42,0],0,false,[[359,0,247.124],[502,0,21.9933]]],[[5312.25,5143.13,0],0,false,[[3275,1,258.882],[739,1,66.2928]]],[[5892.72,7894.83,0],0,false,[[2827,1,173.13],[2876,1,108.098]]],[[6936.54,1054.21,0],0,true,[[1728,0,181.25],[1004,0,15.9334],[135,0,15.0957],[3894,0,24.4425]]], +[[6493.97,2078.22,0],0,false,[[6,0,23.6219],[1663,0,221.186]]],[[6505,3390.93,0],0,false,[[3896,0,74.518],[2319,0,117.835]]],[[2893.94,3172,0],0,false,[[3475,1,290.752],[202,1,24.9739]]],[[8166.38,5384.34,0],0,true,[[3499,0,71.5018],[155,0,9.63846],[874,0,15.2677]]],[[2844.6,7022.89,0],0,true,[[1490,0,70.0372],[984,0,30.9451],[970,0,36.4361]]], +[[3267.01,2748.62,0],0,false,[[3514,0,19.0548],[1681,0,79.8141]]],[[3794.07,3515.93,5.1396],0,true,[[1561,1,15.8407],[1489,1,18.1751],[3734,1,11.0181],[1223,1,11.8022]]],[[6450.39,2057.12,0],0,true,[[1501,1,2.76548],[322,0,8.90612],[2261,1,6.9157]]],[[4082.79,3494,0],0,false,[[2167,1,8.37276],[3833,0,139.925]]],[[3551.49,6581.34,0],0,true,[[2543,1,21.512],[1667,1,30.1678],[2805,1,13.0178]]], +[[691.13,6769.58,0],0,false,[[2825,0,363.078],[3554,0,117.072]]],[[7148.67,7038.92,0],0,false,[[1380,0,63.8762],[2296,0,186.615]]],[[4007.8,4561.2,0],0,true,[[848,0,16.4153],[3181,0,27.5494],[2976,0,12.8937]]],[[7726.67,6702.3,0],0,true,[[859,1,8.40369],[20,1,100.184],[1185,1,8.90381]]],[[3189.31,3205.72,0],0,true,[[2987,0,302.233],[3475,1,13.7114],[1523,1,9.72514]]], +[[2549.83,3831.08,0],0,false,[[1831,0,18.9843],[1638,0,87.6684]]],[[6231.23,6493.11,0],0,true,[[1564,0,4.62295],[2435,0,59.1526],[2113,0,5.97744]]],[[2245.98,3954.46,0],0,false,[[3845,0,64.2699]]],[[7561.28,496.895,0],0,false,[[299,1,117.121],[2585,1,21.5492]]],[[3588.57,2381.13,0],0,true,[[387,1,77.0376],[1669,1,68.2176],[3428,1,6.11133]]], +[[2597.17,6861.27,0],0,true,[[1530,0,14.2124],[2040,0,44.2415],[1321,0,7.40649]]],[[1377.47,4690.91,0],0,false,[[464,0,122.534]]],[[2392.14,3260.33,0],0,false,[[348,0,398.881],[2357,0,23.9593]]],[[879.417,3598.48,0],0,false,[[2358,0,92.0047],[2397,0,125.721]]],[[7755.13,7915.78,0],0,true,[[1946,0,25.3603],[1755,0,24.7066],[2108,0,11.6525]]], +[[7489.01,2966.09,0],0,true,[[2207,1,214.755],[1581,1,11.8928],[640,1,7.22008]]],[[2894.84,3301.43,0],0,true,[[3726,0,0],[2325,0,22.6744],[2325,0,22.7382],[883,0,22.7427],[883,0,22.7427]]],[[5028.62,2591.35,0],0,false,[[2307,0,159.696],[1444,0,140.637]]],[[3496.42,4786.45,0],0,false,[[2972,0,116.084],[778,0,105.763]]],[[2106.6,3691.52,0],0,false,[[3432,0,157.296],[2945,0,80.3051]]], +[[217.886,4825.89,0],0,false,[[3434,0,168.867],[3656,0,104.239]]],[[3543.81,2310.59,0],0,true,[[2384,0,4.5423],[1049,0,30.0316],[387,1,8.02636]]],[[4087.05,3408.72,0],0,false,[[2402,1,48.8111],[3311,1,25.9215]]],[[7401.25,7913.55,0],0,false,[[1104,0,79.1716],[2769,0,54.3803]]],[[3785.05,3509.6,0],0,false,[[3706,1,11.0181],[1561,1,4.88246]]], +[[1948.71,4317.81,0],0,false,[[3163,0,165.341],[1995,0,235.636]]],[[6588.55,869.144,0],0,false,[[343,0,60.5586],[907,0,122.049]]],[[4107.5,5304.67,0],0,false,[[3328,1,42.6667],[1488,1,31.2483]]],[[1416.92,6979.18,0],0,false,[[2510,0,75.5429],[1421,0,219.767]]],[[1643.7,1235.84,0],0,false,[[2784,1,230.258],[2854,1,70.2787]]], +[[1890.54,7255.9,0],0,true,[[471,1,29.75],[3309,1,131.669],[3839,1,11.5618]]],[[2288.64,7485.45,0],0,false,[[3781,0,121.278],[2156,0,207.148]]],[[863.816,449.865,0],0,false,[[1123,0,202.321],[2144,0,179.047]]],[[4735.76,3535.29,0],0,false,[[987,1,58.3609],[3793,1,34.2858]]],[[6382.59,5887.1,0],0,false,[[2340,0,133.434],[178,0,63.9759]]], +[[754.652,7579.62,0],0,true,[[1703,0,157.441],[1537,0,11.6032],[544,0,11.3287]]],[[7812.4,731.09,0],0,false,[[477,0,20.8899],[2082,0,20.1123]]],[[3050.99,2544.65,0],0,true,[[1681,0,237.178],[84,0,26.7047],[34,0,21.5655]]],[[7093.46,7002.65,0],0,true,[[3221,1,118.582],[525,1,31.5555],[440,1,18.3753]]],[[3278.06,3246.35,0],0,true,[[786,1,256.904],[140,1,24.3509],[2681,1,9.65062]]], +[[347.642,4446.44,0],0,true,[[998,0,11.7765],[2937,0,0.751952],[888,0,12.4545],[3846,0,19.6056]]],[[5134.65,4902.99,0.624527],0,false,[[2459,0,19.9355],[3810,1,11.241]]],[[4707.44,3340.24,0],0,false,[[723,0,32.8929],[592,0,29.3023]]],[[4420.6,1218.4,0],0,false,[[1058,0,218.035],[716,0,160.244]]],[[2141.71,5506.79,0],0,false,[[1379,1,22.8764],[1198,1,48.8069]]], +[[1061.95,3258.5,0],0,false,[[3224,0,71.9185],[2820,0,220.093]]],[[6762.59,946.277,0],0,true,[[2518,0,44.0717],[3620,0,9.44561],[1693,1,9.49947]]],[[2964.71,1884.89,0],0,true,[[1707,1,24.0075],[3448,1,11.4637],[500,1,25.3384]]],[[5837.99,6376.21,0],0,true,[[1536,0,21.8433],[65,0,252.12],[836,0,9.87336]]],[[62.98,6097.11,0],0,true,[[453,1,143.213],[3170,1,9.05925],[2373,1,21.577]]], +[[3984.75,6447.49,0],0,true,[[2801,0,3.21803],[2897,0,14.074],[1972,0,11.3855]]],[[6236.25,6263.13,0],0,false,[[3399,0,172.818],[2411,0,152.562]]],[[7256.35,3569.62,0],0,true,[[1854,1,7.5526],[2235,0,48.7325],[98,1,7.80318]]],[[2606.35,6841.37,0],0,false,[[2023,1,25.3001],[88,1,26.9736]]],[[6909.68,4145.4,0],0,false,[[2419,0,111.109]]], +[[2569.93,3849.49,0],0,false,[[267,1,7.56252],[1833,0,11.3648]]],[[560.427,8171,0],0,true,[[300,1,22.7145],[3368,1,299.014],[3906,1,19.4546],[3690,1,7.61507]]],[[1218.21,7967.43,0],0,true,[[3044,1,146.772],[1186,1,8.11839],[2878,1,6.67397]]],[[4670.81,3969.67,0],0,true,[[2333,1,29.0719],[1062,1,205.081],[3293,1,14.8665]]],[[5091.54,2860.02,0],0,false,[[2626,1,24.1986],[1640,1,28.2266]]], +[[7615.28,4436.97,0],0,true,[[3353,1,12.0039],[2030,1,150.67],[100,1,28.9702]]],[[6623.76,2899.59,0],0,true,[[3421,1,7.80484],[1596,1,102.998],[3632,1,20.0225]]],[[7846.58,3554.34,0],0,false,[[2223,0,192.492]]],[[2441.81,399.694,0],0,false,[[1856,1,26.1425],[3049,1,44.9854]]],[[3448.64,2270.28,0],0,true,[[1121,1,14.2572],[3818,0,20.9968],[1237,1,9.27205]]], +[[2731.42,3027.68,0],0,false,[[1426,1,137.743],[1047,1,22.9868]]],[[4118.61,4574.05,0],0,false,[[1884,2,158.731],[3470,2,108.958]]],[[4341.26,2316.82,0],0,false,[[1528,0,20.6358],[2024,0,232.886]]],[[2806.98,7382.11,0],0,false,[[1427,0,57.3823],[3789,1,12.8474]]],[[3670.87,7889.74,0],0,false,[[846,0,133.026]]], +[[3759.26,1714.92,0],0,true,[[941,1,49.5823],[371,1,11.6496],[2544,2,11.1475],[1425,2,14.0998]]],[[2171.33,7507.42,0],0,false,[[3410,0,80.671],[3741,0,121.278]]],[[7377.66,5848.95,0],0,false,[[3029,1,20.8255],[1406,1,186.579]]],[[4481.83,4705.59,0],0,true,[[492,1,20.4887],[1480,1,19.6537],[2736,1,9.09465]]],[[3092.65,4898.7,0],0,false,[[2887,1,93.6215],[2917,1,78.7382]]], +[[7631.26,455.987,0],0,true,[[2585,1,59.6408],[2486,1,19.1841],[3915,1,9.00739],[2713,1,9.43051],[2713,1,9.46269]]],[[7594.7,3534.74,0],0,true,[[3897,0,28.0189],[3188,0,5.54083],[4,0,11.5359]]],[[1017.7,1807.61,-0.980843],0,true,[[3348,2,8.30591],[3491,2,15.585],[3460,2,1.63236]]],[[4242.6,1899.62,0],0,false,[[1714,0,28.4732],[152,0,260.259]]],[[2794.4,7384.67,0],0,true,[[1217,1,25.5164],[1886,1,23.6755],[3778,1,12.8474]]], +[[929.094,4043.8,0],0,true,[[2007,0,89.2241],[838,0,26.8313],[3123,0,13.0174]]],[[7044.03,402.617,0],0,true,[[2720,1,179.325],[2012,1,20.5032],[2479,1,15.4883],[3343,1,26.0886]]],[[6308.85,4749.1,0],0,false,[[2723,0,105.551],[512,0,349.755]]],[[4727.06,3502.16,0],0,true,[[3743,1,34.2858],[3384,1,34.2746],[1280,1,10.2577]]],[[7047.96,6475.7,0],0,true,[[2838,0,12.7847],[2347,1,11.4631],[1730,1,10.1754]]], +[[7748.93,6704.4,0],0,false,[[26,1,119.095],[1185,1,14.14]]],[[4500.24,2470.84,0],0,true,[[1876,2,24.7868],[1965,2,74.1326],[2028,2,14.5135]]],[[5440.23,6608.58,0],0,false,[[1704,0,71.8812],[1356,0,66.0492]]],[[5196.58,4309.28,0],0,false,[[1264,0,160.617],[972,0,64.1787]]],[[2736.22,4542.74,0],0,false,[[1822,0,321.894],[3403,0,25.1133]]], +[[3202.1,2218.34,0],0,false,[[494,0,125.26],[901,0,23.253]]],[[5073.39,4130.47,0.000183105],0,false,[[734,0,5.44906],[247,0,5.44906]]],[[1027.93,6165.09,0],0,false,[[288,1,275.664],[83,1,80.9111]]],[[7058.29,4374.96,0],0,true,[[1239,1,79.6851],[783,1,26.1203],[200,1,14.6271]]],[[2949.39,4377.6,0],0,false,[[1893,0,19.7398],[326,0,48.0578]]], +[[4406.5,2808.41,0],0,false,[[3505,2,9.09614],[1192,2,160.824]]],[[343.075,4774.77,0],0,true,[[2704,0,10.4993],[3142,0,18.6005],[1344,0,7.83964]]],[[3767.4,6141.89,0],0,false,[[3312,1,189.641],[1652,1,103.185]]],[[441.225,5483.48,0],0,false,[[3694,0,41.1604],[2511,0,16.6344]]],[[4751.85,6982.78,0],0,false,[[3423,0,142.793],[1724,0,268.88]]], +[[5139.13,4913.19,0],0,false,[[3751,1,11.241],[3275,1,46.4302]]],[[7446.84,167.905,0],0,false,[[3121,1,173.485],[3915,1,340.614]]],[[348.095,4560.9,0],0,true,[[1113,0,19.0181],[2178,0,19.2815],[2282,0,0.749458],[774,0,19.8962]]],[[668.86,2436.47,0],0,false,[[1654,0,183.562],[759,0,14.4183]]],[[1287.63,3089.66,0],0,true,[[1441,1,114.13],[3463,1,26.3579],[41,1,16.4101]]], +[[343.281,4609.72,0],0,true,[[571,0,12.914],[1177,0,15.7355],[2475,0,0.748841],[2098,0,16.4843]]],[[2837.02,4471.57,0],0,true,[[127,1,94.1801],[3535,1,27.44],[3225,1,8.95696],[109,1,8.64103],[701,1,11.4465]]],[[4504.25,1709.59,0],0,false,[[2229,0,140.86],[2125,0,306.095]]],[[3440.78,2289.42,0],0,false,[[3774,0,20.9968],[1919,0,48.8478]]],[[4304.3,4662.19,0],0,false,[[1649,0,153.829],[1676,0,145.005]]], +[[7996.93,6354.98,0],0,true,[[2517,0,12.857],[244,0,226.296],[2848,0,12.7454]]],[[5313.48,7064.92,0],0,false,[[589,0,359.029],[1804,0,219.64]]],[[1417.51,6883.83,0],0,false,[[3290,0,115.603],[2510,0,19.8993]]],[[2880.68,4182.02,0],0,true,[[3237,0,13.9338],[2218,0,9.49052],[2867,0,16.3448]]],[[2813.39,4049.11,0],0,false,[[999,1,92.8534],[2899,1,156.959]]], +[[5163.71,6205.26,0],0,true,[[2918,0,283.055],[3551,0,18.3704],[925,0,9.61617]]],[[157.363,7625.4,0],0,true,[[3419,0,12.9144],[123,0,254.151],[3899,0,26.4537]]],[[5819.22,4382.35,0],0,false,[[2498,1,46.03],[2695,1,97.7017]]],[[4929.53,2011.54,0],0,true,[[3544,1,18.2134],[3006,1,13.1682],[1586,1,12.6988]]],[[2753.29,1981.38,0],0,true,[[655,1,57.988],[2237,1,18.7341],[257,1,27.6122]]], +[[622.42,7130.74,0],0,true,[[2835,0,103.343],[3222,0,8.5126],[2825,0,14.9831]]],[[4708.93,1948.86,0],0,false,[[1012,0,57.7057],[1244,0,110.63]]],[[2079.41,4613.52,0],0,false,[[2925,1,17.3686],[2956,1,23.8661]]],[[4211.77,3491.6,0],0,true,[[3708,0,139.925],[1852,0,5.78902],[2655,0,4.07147]]],[[5625.67,7270.51,0],0,true,[[1078,0,22.0381],[589,0,18.9928],[1729,0,9.7167]]], +[[4815.48,3699.78,0],0,false,[[1032,0,33.5912],[2132,0,159.802]]],[[236.679,1157.53,0],0,true,[[507,0,20.8445],[3852,0,21.4023],[1479,0,20.3955],[2439,0,8.47028]]],[[504.77,2173.11,0],0,false,[[2989,0,154.003],[635,0,221.14]]],[[7289.28,4767.19,0],0,false,[[2812,0,223.724],[2892,0,330.368]]],[[1880.16,7250.83,0],0,true,[[471,1,18.5214],[1348,1,28.7016],[3740,1,11.5618]]], +[[2875.48,3737.69,0],0,false,[[1216,0,33.3009],[2533,0,86.4868]]],[[4724.72,1121.27,0],0,false,[[2949,0,25.8132],[2793,0,17.8782]]],[[4832.5,4116.01,0],0,false,[[3496,0,44.0632],[2771,0,186.91]]],[[5811.27,2879.1,0],0,true,[[446,1,374.643],[3895,1,25.7418],[1383,1,12.2335]]],[[5800.24,1822.08,0],0,false,[[2452,0,196.659],[3507,0,27.1016]]], +[[2204.57,4002.82,0],0,true,[[1656,0,19.3792],[3717,0,64.2699],[3017,0,19.3242]]],[[347.098,4465.99,0],0,true,[[2937,0,18.9455],[2096,0,0.752656],[3750,0,19.6056],[1575,0,13.8089]]],[[3.60985,5652.48,0],0,false,[[2153,0,71.9718]]],[[7060.58,5574.69,0],0,false,[[879,0,22.5753],[1751,0,63.5319]]],[[7002.11,1902.27,0],0,false,[[1810,0,281.176],[959,0,101.471]]], +[[5464.86,6279.13,0],0,false,[[22,0,48.6369],[2177,0,59.5396]]],[[3008.46,4866.99,0],0,false,[[2917,1,11.7801],[3021,1,229.201]]],[[215.758,1161.82,0],0,false,[[3836,0,21.4023],[119,0,244.045]]],[[5553.21,1629.57,0],0,true,[[2365,1,27.5702],[940,1,29.3524],[139,1,22.6927]]],[[1552.63,3325.19,0],0,false,[[2270,1,81.7565],[3601,1,53.1794]]], +[[2264.69,856.571,0],0,false,[[1875,0,40.1043]]],[[7539.7,6210.12,0],0,false,[[495,0,236.017],[2849,0,199.017]]],[[4442.64,4810.57,0],0,true,[[1582,1,22.1297],[252,1,19.803],[1684,1,5.66244]]],[[2145.89,6823.62,0],0,true,[[2104,0,273.564],[1828,0,51.7787],[2273,0,25.189]]],[[4222.05,3506.06,0],0,true,[[1363,0,163.943],[1852,0,12.0285],[2655,0,19.8887]]], +[[348.21,3478.03,0],0,false,[[2668,1,21.2273],[1690,1,349.95]]],[[6714.3,2628.62,0],0,false,[[144,0,232.229],[1846,0,239.561]]],[[5363.68,7684.79,0],0,true,[[763,0,11.7201],[3609,0,5.50043],[827,1,0.927976]]],[[362.105,5035.55,0],0,true,[[3093,1,14.8234],[3489,0,216.742],[2292,0,7.33024],[2708,1,12.1771]]],[[1831.27,1942.74,0],0,true,[[1026,1,25.0232],[1579,1,106.908],[1097,1,6.51117]]], +[[3693.93,3136.56,0],0,false,[[2665,0,16.1906],[2352,0,60.9973]]],[[4113.57,4182.06,0],0,true,[[2151,1,14.5704],[1930,1,28.2213],[2227,1,4.16849],[3667,1,25.535],[1571,1,12.8732]]],[[3049.34,2876.33,0],0,false,[[1372,0,85.5609],[3880,0,24.3323]]],[[2191.22,5675,0],0,true,[[2075,0,17.2824],[933,0,85.6517],[3243,0,6.21604]]],[[8011.71,5852.03,0],0,true,[[237,1,18.1455],[1996,1,209.207],[1534,1,13.2984]]], +[[6650.13,228.076,0],0,true,[[3914,0,22.5563],[1201,1,15.1179],[232,1,9.9133]]],[[5659.48,2195.25,0],0,true,[[1176,1,21.966],[3531,1,17.7898],[2413,1,8.94369],[2515,1,21.8934]]],[[3752.87,1055.97,0],0,false,[[1798,1,22.8765],[222,1,78.2796]]],[[1317.9,5624.72,0],0,false,[[68,0,59.6403],[3194,0,121.813]]],[[1786.01,149.007,0],0,true,[[856,0,21.2585],[2505,0,178.54],[656,0,8.56871]]], +[[6433.81,3320.13,0],0,false,[[2979,0,298.434],[3104,0,48.2334]]],[[1143.89,313.943,0],0,false,[[2547,2,398.23],[3145,2,134.46]]],[[7847.7,762.908,0],0,true,[[601,0,10.392],[422,0,10.9504],[1767,0,13.9736]]],[[4104.37,5846.55,0],0,false,[[2901,2,27.6262],[3332,2,33.3931]]],[[8175.76,5330.46,0],0,false,[[2830,0,51.6298],[2744,0,281.847]]], +[[3072.89,2870.28,0],0,false,[[3867,0,24.3323],[1496,0,13.7866]]],[[2924.39,3361.72,0],0,true,[[1525,0,13.0896],[2083,0,17.9228],[2083,0,17.9228],[1525,0,13.0896],[3881,0,0]]],[[3696.42,1126.21,0],0,false,[[3409,0,14.8938]]],[[2716.62,972.722,0],0,true,[[110,1,150.166],[1063,1,21.9119],[2187,1,12.6028]]],[[5812.4,5899.11,0],0,true,[[2980,1,17.5371],[2564,1,5.47577],[2588,1,9.20675]]], +[[5705.14,6533.48,0],0,true,[[1226,1,158.716],[1045,1,24.5749],[1626,1,10.9388]]],[[2109.48,2944.7,0],0,false,[[1016,0,330.106],[3608,0,220.826]]],[[4753.73,3663.78,0],0,false,[[1590,1,37.5191],[648,1,28.834]]],[[1940.38,2004.87,-1.21945],0,true,[[1095,2,15.7225],[2643,2,15.5972],[2658,2,2.43611]]],[[1361.71,5532.32,0],0,false,[[68,0,83.8951]]], +[[4070.7,3511.83,0],0,false,[[1304,1,141.436],[2167,1,23.8325]]],[[277.719,840.379,0],0,false,[[2590,1,2.57011],[1691,0,11.5147]]],[[7603.55,1317.08,0],0,true,[[3015,0,160.448],[3583,0,16.7655],[554,0,25.4587]]],[[395.616,1298.92,0],0,false,[[1279,0,30.6642],[811,0,35.5429]]],[[6942.68,1077.81,0],0,true,[[3699,0,24.4425],[2907,0,93.1769],[135,0,15.1452],[1004,0,13.3069]]], +[[5786.34,2885.45,0],0,true,[[1383,1,14.2208],[1692,1,93.0659],[3843,1,25.7418]]],[[6436.08,3372.35,0],0,true,[[3104,0,15.2506],[3701,0,74.518],[707,0,30.5993]]],[[7567.37,3528.83,0],0,true,[[3159,0,28.2717],[3786,0,28.0189],[1591,0,15.4392]]],[[5508.03,5727.86,0],0,true,[[1268,0,171.203],[2157,0,246.781],[831,0,26.6543]]],[[147.639,7601.05,0],0,true,[[3533,0,27.59],[3419,0,14.1445],[3826,0,26.4537]]], +[[3997.31,4537.44,0],0,true,[[3347,0,89.493],[3181,0,6.41276],[1472,0,10.5347]]],[[73.6124,5097.11,0],0,true,[[1605,1,17.2097],[898,1,10.5766],[428,1,24.6305],[279,1,6.9214]]],[[4979.07,265.283,0],0,false,[[652,0,182.672],[687,0,177.734]]],[[4538.7,2337.58,0],0,true,[[3223,1,29.602],[2954,1,13.3442],[3908,2,13.4614]]],[[1037.77,4395.78,0],0,false,[[3283,0,100.777],[2759,0,262.326]]], +[[2680.8,5627.58,0],0,false,[[2572,0,223.789],[469,0,236.678]]],[[551.303,8153.82,0],0,true,[[300,1,19.2739],[147,0,99.8781],[3766,1,19.4546],[3690,0,22.418]]],[[2827.38,3551.69,0],0,false,[[1458,0,39.4852],[283,0,17.3278]]],[[4530.49,2326.99,0],0,true,[[2954,2,13.9827],[1181,2,27.5798],[2881,2,15.6895],[179,2,11.5387],[3903,2,13.4614]]],[[1387.36,7272.39,0],0,false,[[927,0,122.339],[1618,0,13.562]]], +[[5810.98,650.492,0],0,false,[[150,1,18.8769],[2029,1,269.954]]],[[4701.36,6563.42,0],0,false,[[3013,0,168.553],[2686,0,69.9663]]],[[655.968,628.128,0],0,false,[[1123,0,155.933],[2052,0,317.66]]],[[2032.25,5689.51,0],0,false,[[3493,1,32.2602],[430,1,43.5414]]],[[6650.03,250.524,0],0,false,[[2690,0,97.8999],[3870,0,22.5563]]], +[[7637.59,449.599,0],0,true,[[3811,1,340.614],[2486,1,10.7546],[3785,1,9.00739],[2713,1,5.04624],[2713,1,5.11272]]],[[4221,7518.31,0],0,false,[[685,0,19.2752],[1628,0,26.697],[1754,0,12.2355],[1220,0,19.5572]]] +]; \ No newline at end of file diff --git a/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/onPlayerRespawn.sqf b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/onPlayerRespawn.sqf new file mode 100644 index 0000000000..0d38ff4d19 --- /dev/null +++ b/A3A/addons/maps/Antistasi_SPE_Mortain.SPE_Mortain/onPlayerRespawn.sqf @@ -0,0 +1 @@ +_this call A3A_fnc_onPlayerRespawn; diff --git a/A3A/addons/maps/Antistasi_SPE_Normandy.SPE_Normandy/mission.sqm b/A3A/addons/maps/Antistasi_SPE_Normandy.SPE_Normandy/mission.sqm index d5776dc356..ba5f7606a7 100644 --- a/A3A/addons/maps/Antistasi_SPE_Normandy.SPE_Normandy/mission.sqm +++ b/A3A/addons/maps/Antistasi_SPE_Normandy.SPE_Normandy/mission.sqm @@ -274,6 +274,7 @@ class Mission assetType="Free"; class Intel { + briefingName=$STR_antistasi_mission_info_SPE_Normandy_mapname_text; resistanceWest=0; timeOfChanges=1800.0002; startWeather=0.30000001; diff --git a/A3A/addons/maps/NavGrid.hpp b/A3A/addons/maps/NavGrid.hpp index 4f9d48e725..e76a9d17b4 100644 --- a/A3A/addons/maps/NavGrid.hpp +++ b/A3A/addons/maps/NavGrid.hpp @@ -13,6 +13,7 @@ class NavGrid { Malden = QPATHTOFOLDER(Antistasi_Malden.Malden\navGrid.sqf); pulau = QPATHTOFOLDER(Antistasi_pulau.pulau\navGrid.sqf); sara = QPATHTOFOLDER(Antistasi_sara.sara\navGrid.sqf); + SPE_Mortain = QPATHTOFOLDER(Antistasi_SPE_Mortain.SPE_Mortain\navGrid.sqf); SPE_Normandy = QPATHTOFOLDER(Antistasi_SPE_Normandy.SPE_Normandy\navGrid.sqf); Stratis = QPATHTOFOLDER(Antistasi_Stratis.Stratis\navGrid.sqf); takistan = QPATHTOFOLDER(Antistasi_takistan.takistan\navGrid.sqf); diff --git a/A3A/addons/maps/Stringtable.xml b/A3A/addons/maps/Stringtable.xml index 6f658497f9..03f38a341f 100644 --- a/A3A/addons/maps/Stringtable.xml +++ b/A3A/addons/maps/Stringtable.xml @@ -733,6 +733,7 @@ Revolution on Paradise Island! + Революция на Райском Острове! Be the Resistance Leader. Fight against a superior enemy in technology, number, assets and vehicles. Use guerrilla tactics in a totally dynamic world, with around 18 sidemissions, everywhere, anytime, anything. @@ -814,6 +815,18 @@ Antistasi - Sahrani'nin Kurtuluşu Antistasi - 解放 Sahrani + + French resistance in turmoil + + + Be the Resistance Leader. Fight against a superior enemy in technology, number, assets and vehicles. Use guerrilla tactics in a totally dynamic world, with around 18 sidemissions, everywhere, anytime, anything. + + + Antistasi Mortain + + + Antistasi - Resistance in Mortain + Vive la résistance! Lang lebe der Widerstand! diff --git a/A3A/addons/maps/config.cpp b/A3A/addons/maps/config.cpp index 2e0ac6048b..09fe2ff493 100644 --- a/A3A/addons/maps/config.cpp +++ b/A3A/addons/maps/config.cpp @@ -40,6 +40,7 @@ class CfgMissions A3A_Mission(Malden) A3A_Mission(pulau) A3A_Mission(sara) + A3A_Mission(SPE_Mortain) A3A_Mission(SPE_Normandy) A3A_Mission(takistan) A3A_Mission(Tanoa) diff --git a/A3A/addons/maps/mapInfo.hpp b/A3A/addons/maps/mapInfo.hpp index deb568c1f4..bd09606b25 100644 --- a/A3A/addons/maps/mapInfo.hpp +++ b/A3A/addons/maps/mapInfo.hpp @@ -13,6 +13,7 @@ class mapInfo { #include "Antistasi_Malden.Malden\mapInfo.hpp" #include "Antistasi_pulau.pulau\mapInfo.hpp" #include "Antistasi_sara.sara\mapInfo.hpp" + #include "Antistasi_SPE_Mortain.SPE_Mortain\mapInfo.hpp" #include "Antistasi_SPE_Normandy.SPE_Normandy\mapInfo.hpp" #include "Antistasi_Stratis.Stratis\mapInfo.hpp" #include "Antistasi_takistan.takistan\mapInfo.hpp" diff --git a/LICENSE b/LICENSE index 8810740780..d029ac56f1 100644 --- a/LICENSE +++ b/LICENSE @@ -65,3 +65,25 @@ SOFTWARE. Noncommercial - You may not use this material for any commercial purposes. Arma Only - You may not convert or adapt this material to be used in other games than Arma. No Derivatives - If you remix, transform, or build upon the material, you may not distribute the modified material. + +########################### + +# DoomMetal GUI: + Owner: + Caleb Sebastian Serafin + + Located in: + A3-Antistasi\gui\functions\GUI + + License: + ARMA PUBLIC LICENSE NO DERIVATIVES (APL-ND) + + Summary: + PLEASE, NOTE THAT THIS SUMMARY HAS NO LEGAL EFFECT AND IS ONLY OF AN INFORMATORY NATURE DESIGNED FOR YOU TO GET THE BASIC INFORMATION ABOUT THE CONTENT OF THIS LICENCE. THE ONLY LEGALLY BINDING PROVISIONS ARE THOSE IN THE ORIGINAL AND FULL TEXT OF THIS LICENCE. + + With this licence you are free to adapt (i.e. modify, rework or update) and share (i.e. copy, distribute or transmit) the material under the following conditions: + + Attribution - You must attribute the material in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the material). + Noncommercial - You may not use this material for any commercial purposes. + Arma Only - You may not convert or adapt this material to be used in other games than Arma. + No Derivatives - If you remix, transform, or build upon the material, you may not distribute the modified material. diff --git a/README.md b/README.md index 5977827308..857b0674b5 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

- Antistasi Version + Antistasi Version Issues diff --git a/changelog.rst b/changelog.rst index 3c78b6629e..a167646a7d 100644 --- a/changelog.rst +++ b/changelog.rst @@ -3,6 +3,59 @@ Changelog ========== +Version 3.7.0 +=============== + +.. note:: + 18th August 2024 + +.. admonition:: Major + + .. rubric:: :issue:`3371` Added Map Port of Mortain - 1.1 Update of the `Spearhead 1944 CDLC `_ + .. rubric:: :issue:`3356` Updated SPE-IFA Templates - 1.1 Update of the `Spearhead 1944 CDLC `_ + +.. admonition:: Minor + + * :issue:`3327` Reduced artillery/mortar ratio at high war tiers + * :issue:`3334` Added a tooltip for vehicle locktime + * :issue:`3335` Improve CUP and IFA plane turn rates when flown by AI + * :issue:`3343` Slowed down self-revive timeout when downed + * :issue:`3349` Created new classes for Antistasi AI units - Fixes ACE action blocking + * :issue:`3370` Added attributeMoreTrucks and IFV-only option to ground transport selection + * :issue:`3372` Made dive bomb runs less accurate against infantry targets + * :issue:`3377` Added flashlights to unit definitions (currently only SPE specific usage) + +.. admonition:: Template updates + + * :issue:`3363` Removed CUP Cluster MLRS + +.. admonition:: Bugfixes + + * :issue:`3320` Skip Time Improvements + * :issue:`3338` Fixed slow-server UI issue and incorrect licensing in arsenal limits + * :issue:`3359` Fixed issue where running destroyCity with CUP interiors could crash + * :issue:`3362` Disallowed sling-loading HQ objects + * :issue:`3364` Added workaround for Arma bug with CDLC detection and arma3.cfg mod loading method + * :issue:`3365` Small sell price rework + * :issue:`3367` Fixed support crew being provided for free and then refunded + * :issue:`3368` Fixed inability to rebuild non-outpost radio towers + * :issue:`3369` Added Ammobox Protection + * :issue:`3375` Replaced all uses of GETOUT waypoints + * :issue:`3381` Fixed SoldierGB inheritance chain for CBA XEH. + +.. admonition:: Groundwork + + * :issue:`3333` Adjusted DoomMetal GUI Header and license + +.. warning:: + + * Please note that this changelog may contain both spelling/grammatical errors and/or factual errors. Should any factual errors exist, we apologise but with the sheer number of changes made per version it can be easy to lose or mistake a change when writing up the changelog. + +| + +----- + + Version 3.6.0 ===============